@charset "UTF-8";
/* Components */
/*
==========================================================================
    # ACCORDION
==========================================================================
*/
/* Variables */
/* Global */
.accordion {
  overflow: hidden;
  margin: 0px;
  padding: 0px;
  list-style: none; }
  .accordion > * {
    margin-top: 20px 0 0 0; }
    .accordion > *:first-of-type {
      margin-top: 0px; }
    .accordion > *:last-child .accordion-title {
      border-bottom: none; }
    .accordion > * .accordion-title {
      width: 100%;
      display: inline-block;
      -moz-transition: all linear 0.15s;
      -o-transition: all linear 0.15s;
      -webkit-transition: all linear 0.15s;
      transition: all linear 0.15s; }
      .accordion > * .accordion-title.accordion-title:hover {
        text-decoration: none; }
    .accordion > *.active .accordion-title:hover {
      text-decoration: none; }
    .accordion > * .accordion-content {
      display: none;
      margin-top: 20px 0 0 0; }

/*
==========================================================================
    # ANIMATION
==========================================================================
*/
/* Variables */
/* Global */
.animation-hover:hover [class*="animation-"],
.animate {
  -o-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -o-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -o-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animate.reverse-animation,
.animation-hover:hover .reverse-animation {
  -o-animation-direction: reverse;
  -moz-animation-direction: reverse;
  -webkit-animation-direction: reverse;
  animation-direction: reverse; }

.animation-hover:not(:hover) {
  -o-animation-name: none;
  -moz-animation-name: none;
  -webkit-animation-name: none;
  animation-name: none; }

/* ## Fade In */
.animation-hover:hover .animation-fade-in,
.animation-fade-in.animate {
  -o-animation-name: animation-fade-in;
  -moz-animation-name: animation-fade-in;
  -webkit-animation-name: animation-fade-in;
  animation-name: animation-fade-in; }

@-webkit-keyframes animation-fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-moz-keyframes animation-fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-o-keyframes animation-fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes animation-fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

/* ## Fade In Down */
.animation-hover:hover .animation-fade-in-down,
.animation-fade-in-down.animate {
  -o-animation-name: animation-fade-in-down;
  -moz-animation-name: animation-fade-in-down;
  -webkit-animation-name: animation-fade-in-down;
  animation-name: animation-fade-in-down; }

@-webkit-keyframes animation-fade-in-down {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@-moz-keyframes animation-fade-in-down {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@-o-keyframes animation-fade-in-down {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@keyframes animation-fade-in-down {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

/* ## Fade In Up */
.animation-hover:hover .animation-fade-in-up,
.animation-fade-in-up.animate {
  -o-animation-name: animation-fade-in-up;
  -moz-animation-name: animation-fade-in-up;
  -webkit-animation-name: animation-fade-in-up;
  animation-name: animation-fade-in-up; }

@-webkit-keyframes animation-fade-in-up {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@-moz-keyframes animation-fade-in-up {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@-o-keyframes animation-fade-in-up {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@keyframes animation-fade-in-up {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

/* ## Fade In Left */
.animation-hover:hover .animation-fade-in-left,
.animation-fade-in-left.animate {
  -o-animation-name: animation-fade-in-left;
  -moz-animation-name: animation-fade-in-left;
  -webkit-animation-name: animation-fade-in-left;
  animation-name: animation-fade-in-left; }

@-webkit-keyframes animation-fade-in-left {
  from {
    opacity: 0;
    -moz-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@-moz-keyframes animation-fade-in-left {
  from {
    opacity: 0;
    -moz-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@-o-keyframes animation-fade-in-left {
  from {
    opacity: 0;
    -moz-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@keyframes animation-fade-in-left {
  from {
    opacity: 0;
    -moz-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

/* ## Fade In Right */
.animation-hover:hover .animation-fade-in-right,
.animation-fade-in-right.animate {
  -o-animation-name: animation-fade-in-right;
  -moz-animation-name: animation-fade-in-right;
  -webkit-animation-name: animation-fade-in-right;
  animation-name: animation-fade-in-right; }

@-webkit-keyframes animation-fade-in-right {
  from {
    opacity: 0;
    -moz-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@-moz-keyframes animation-fade-in-right {
  from {
    opacity: 0;
    -moz-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@-o-keyframes animation-fade-in-right {
  from {
    opacity: 0;
    -moz-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@keyframes animation-fade-in-right {
  from {
    opacity: 0;
    -moz-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

/* ## Fade In Down Small */
.animation-hover:hover .animation-fade-in-down-small,
.animation-fade-in-down-small.animate {
  -o-animation-name: animation-fade-in-down-small;
  -moz-animation-name: animation-fade-in-down-small;
  -webkit-animation-name: animation-fade-in-down-small;
  animation-name: animation-fade-in-down-small; }

@-webkit-keyframes animation-fade-in-down-small {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, -30%, 0);
    -o-transform: translate3d(0, -30%, 0);
    -ms-transform: translate3d(0, -30%, 0);
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@-moz-keyframes animation-fade-in-down-small {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, -30%, 0);
    -o-transform: translate3d(0, -30%, 0);
    -ms-transform: translate3d(0, -30%, 0);
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@-o-keyframes animation-fade-in-down-small {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, -30%, 0);
    -o-transform: translate3d(0, -30%, 0);
    -ms-transform: translate3d(0, -30%, 0);
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@keyframes animation-fade-in-down-small {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, -30%, 0);
    -o-transform: translate3d(0, -30%, 0);
    -ms-transform: translate3d(0, -30%, 0);
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

/* ## Fade In Up Small */
.animation-hover:hover .animation-fade-in-up-small,
.animation-fade-in-up-small.animate {
  -o-animation-name: animation-fade-in-up-small;
  -moz-animation-name: animation-fade-in-up-small;
  -webkit-animation-name: animation-fade-in-up-small;
  animation-name: animation-fade-in-up-small; }

@-webkit-keyframes animation-fade-in-up-small {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, 30%, 0);
    -o-transform: translate3d(0, 30%, 0);
    -ms-transform: translate3d(0, 30%, 0);
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@-moz-keyframes animation-fade-in-up-small {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, 30%, 0);
    -o-transform: translate3d(0, 30%, 0);
    -ms-transform: translate3d(0, 30%, 0);
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@-o-keyframes animation-fade-in-up-small {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, 30%, 0);
    -o-transform: translate3d(0, 30%, 0);
    -ms-transform: translate3d(0, 30%, 0);
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@keyframes animation-fade-in-up-small {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, 30%, 0);
    -o-transform: translate3d(0, 30%, 0);
    -ms-transform: translate3d(0, 30%, 0);
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

/* ## Fade In Left Small */
.animation-hover:hover .animation-fade-in-left-small,
.animation-fade-in-left-small.animate {
  -o-animation-name: animation-fade-in-left-small;
  -moz-animation-name: animation-fade-in-left-small;
  -webkit-animation-name: animation-fade-in-left-small;
  animation-name: animation-fade-in-left-small; }

@-webkit-keyframes animation-fade-in-left-small {
  from {
    opacity: 0;
    -moz-transform: translate3d(-30%, 0, 0);
    -o-transform: translate3d(-30%, 0, 0);
    -ms-transform: translate3d(-30%, 0, 0);
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@-moz-keyframes animation-fade-in-left-small {
  from {
    opacity: 0;
    -moz-transform: translate3d(-30%, 0, 0);
    -o-transform: translate3d(-30%, 0, 0);
    -ms-transform: translate3d(-30%, 0, 0);
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@-o-keyframes animation-fade-in-left-small {
  from {
    opacity: 0;
    -moz-transform: translate3d(-30%, 0, 0);
    -o-transform: translate3d(-30%, 0, 0);
    -ms-transform: translate3d(-30%, 0, 0);
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@keyframes animation-fade-in-left-small {
  from {
    opacity: 0;
    -moz-transform: translate3d(-30%, 0, 0);
    -o-transform: translate3d(-30%, 0, 0);
    -ms-transform: translate3d(-30%, 0, 0);
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

/* ## Fade In Right Small */
.animation-hover:hover .animation-fade-in-right-small,
.animation-fade-in-right-small.animate {
  -o-animation-name: animation-fade-in-right-small;
  -moz-animation-name: animation-fade-in-right-small;
  -webkit-animation-name: animation-fade-in-right-small;
  animation-name: animation-fade-in-right-small; }

@-webkit-keyframes animation-fade-in-right-small {
  from {
    opacity: 0;
    -moz-transform: translate3d(30%, 0, 0);
    -o-transform: translate3d(30%, 0, 0);
    -ms-transform: translate3d(30%, 0, 0);
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@-moz-keyframes animation-fade-in-right-small {
  from {
    opacity: 0;
    -moz-transform: translate3d(30%, 0, 0);
    -o-transform: translate3d(30%, 0, 0);
    -ms-transform: translate3d(30%, 0, 0);
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@-o-keyframes animation-fade-in-right-small {
  from {
    opacity: 0;
    -moz-transform: translate3d(30%, 0, 0);
    -o-transform: translate3d(30%, 0, 0);
    -ms-transform: translate3d(30%, 0, 0);
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

@keyframes animation-fade-in-right-small {
  from {
    opacity: 0;
    -moz-transform: translate3d(30%, 0, 0);
    -o-transform: translate3d(30%, 0, 0);
    -ms-transform: translate3d(30%, 0, 0);
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0); }
  to {
    opacity: 1;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; } }

/* ## Zoom In */
.animation-hover:hover .animation-zoom-in,
.animation-zoom-in.animate {
  -o-animation-name: animation-zoom-in;
  -moz-animation-name: animation-zoom-in;
  -webkit-animation-name: animation-zoom-in;
  animation-name: animation-zoom-in; }

@-webkit-keyframes animation-zoom-in {
  from {
    opacity: 0;
    -moz-transform: scale3d(0.3, 0.3, 0.3);
    -o-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 1; } }

@-moz-keyframes animation-zoom-in {
  from {
    opacity: 0;
    -moz-transform: scale3d(0.3, 0.3, 0.3);
    -o-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 1; } }

@-o-keyframes animation-zoom-in {
  from {
    opacity: 0;
    -moz-transform: scale3d(0.3, 0.3, 0.3);
    -o-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 1; } }

@keyframes animation-zoom-in {
  from {
    opacity: 0;
    -moz-transform: scale3d(0.3, 0.3, 0.3);
    -o-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 1; } }

/* ## Zoom Out */
.animation-hover:hover .animation-zoom-out,
.animation-zoom-out.animate {
  -o-animation-name: animation-zoom-out;
  -moz-animation-name: animation-zoom-out;
  -webkit-animation-name: animation-zoom-out;
  animation-name: animation-zoom-out; }

@-webkit-keyframes animation-zoom-out {
  from {
    opacity: 0;
    -moz-transform: scale3d(1.3, 1.3, 1.3);
    -o-transform: scale3d(1.3, 1.3, 1.3);
    -ms-transform: scale3d(1.3, 1.3, 1.3);
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
    transform: scale3d(1.3, 1.3, 1.3); }
  to {
    opacity: 1; } }

@-moz-keyframes animation-zoom-out {
  from {
    opacity: 0;
    -moz-transform: scale3d(1.3, 1.3, 1.3);
    -o-transform: scale3d(1.3, 1.3, 1.3);
    -ms-transform: scale3d(1.3, 1.3, 1.3);
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
    transform: scale3d(1.3, 1.3, 1.3); }
  to {
    opacity: 1; } }

@-o-keyframes animation-zoom-out {
  from {
    opacity: 0;
    -moz-transform: scale3d(1.3, 1.3, 1.3);
    -o-transform: scale3d(1.3, 1.3, 1.3);
    -ms-transform: scale3d(1.3, 1.3, 1.3);
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
    transform: scale3d(1.3, 1.3, 1.3); }
  to {
    opacity: 1; } }

@keyframes animation-zoom-out {
  from {
    opacity: 0;
    -moz-transform: scale3d(1.3, 1.3, 1.3);
    -o-transform: scale3d(1.3, 1.3, 1.3);
    -ms-transform: scale3d(1.3, 1.3, 1.3);
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
    transform: scale3d(1.3, 1.3, 1.3); }
  to {
    opacity: 1; } }

/* ## Shake */
.animation-hover:hover .animation-shake,
.animation-shake.animate {
  -o-animation-name: animation-shake;
  -moz-animation-name: animation-shake;
  -webkit-animation-name: animation-shake;
  animation-name: animation-shake; }

@-webkit-keyframes animation-shake {
  from, to {
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -moz-transform: translate3d(-8px, 0, 0);
    -o-transform: translate3d(-8px, 0, 0);
    -ms-transform: translate3d(-8px, 0, 0);
    -webkit-transform: translate3d(-8px, 0, 0);
    transform: translate3d(-8px, 0, 0); }
  20%, 40%, 60%, 80% {
    -moz-transform: translate3d(8px, 0, 0);
    -o-transform: translate3d(8px, 0, 0);
    -ms-transform: translate3d(8px, 0, 0);
    -webkit-transform: translate3d(8px, 0, 0);
    transform: translate3d(8px, 0, 0); } }

@-moz-keyframes animation-shake {
  from, to {
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -moz-transform: translate3d(-8px, 0, 0);
    -o-transform: translate3d(-8px, 0, 0);
    -ms-transform: translate3d(-8px, 0, 0);
    -webkit-transform: translate3d(-8px, 0, 0);
    transform: translate3d(-8px, 0, 0); }
  20%, 40%, 60%, 80% {
    -moz-transform: translate3d(8px, 0, 0);
    -o-transform: translate3d(8px, 0, 0);
    -ms-transform: translate3d(8px, 0, 0);
    -webkit-transform: translate3d(8px, 0, 0);
    transform: translate3d(8px, 0, 0); } }

@-o-keyframes animation-shake {
  from, to {
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -moz-transform: translate3d(-8px, 0, 0);
    -o-transform: translate3d(-8px, 0, 0);
    -ms-transform: translate3d(-8px, 0, 0);
    -webkit-transform: translate3d(-8px, 0, 0);
    transform: translate3d(-8px, 0, 0); }
  20%, 40%, 60%, 80% {
    -moz-transform: translate3d(8px, 0, 0);
    -o-transform: translate3d(8px, 0, 0);
    -ms-transform: translate3d(8px, 0, 0);
    -webkit-transform: translate3d(8px, 0, 0);
    transform: translate3d(8px, 0, 0); } }

@keyframes animation-shake {
  from, to {
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -moz-transform: translate3d(-8px, 0, 0);
    -o-transform: translate3d(-8px, 0, 0);
    -ms-transform: translate3d(-8px, 0, 0);
    -webkit-transform: translate3d(-8px, 0, 0);
    transform: translate3d(-8px, 0, 0); }
  20%, 40%, 60%, 80% {
    -moz-transform: translate3d(8px, 0, 0);
    -o-transform: translate3d(8px, 0, 0);
    -ms-transform: translate3d(8px, 0, 0);
    -webkit-transform: translate3d(8px, 0, 0);
    transform: translate3d(8px, 0, 0); } }

/*
==========================================================================
    # BADGE
==========================================================================
*/
/* Variables */
/* Global */
.badge, .card-badge {
  display: inline-block;
  border-radius: 3px;
  min-width: 1px;
  padding: 0px 5px;
  height: 20px;
  line-height: 20px; }

.badge:hover, .card-badge:hover {
  text-decoration: none; }

.badge.badge-squared, .badge-squared.card-badge {
  border-radius: 0; }

.badge.badge-rounded, .badge-rounded.card-badge {
  border-radius: 50px; }

.badge[data-caption]::after, [data-caption].card-badge::after {
  content: " " attr(data-caption); }

/*
==========================================================================
# BASE
-----------------------------------------------
Based on normalize.css (v7.0.0)
Licensed under MIT (http://github.com/necolas/normalize.css) 
==========================================================================
*/
/* ==========================================================================
HTML5 display definitions
========================================================================== */
/**
* Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
*/
/* Variables */
/* Global */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
* Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
*/
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

/**
* Prevent modern browsers from displaying `audio` without controls.
* Remove excess height in iOS 5 devices.
*/
audio:not([controls]) {
  display: none;
  height: 0; }

/**
* Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
* Known issue: no IE 6 support.
*/
[hidden] {
  display: none; }

/* ==========================================================================
Base
========================================================================== */
/**
* 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
*    `em` units.
* 2. Prevent iOS text size adjust after orientation change, without disabling
*    user zoom.
*/
html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */ }

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/**
* Address `font-family` inconsistency between `textarea` and other form
* elements.
*/
html,
button,
input,
select,
textarea {
  font-family: sans-serif; }

/**
* Address margins handled incorrectly in IE 6/7.
*/
body {
  margin: 0; }

/* ==========================================================================
Links
========================================================================== */
/**
* Address `outline` inconsistency between Chrome and other browsers.
*/
a:focus {
  outline: none; }

/**
* Improve readability when focused and also mouse hovered in all browsers.
*/
a:active,
a:hover {
  outline: none; }

/* ==========================================================================
Typography
========================================================================== */
/**
* Address styling not present in IE 7/8/9, Safari 5, and Chrome.
*/
abbr[title] {
  border-bottom: 1px dotted; }

/**
* Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
*/
b,
strong {
  font-weight: bold; }

blockquote {
  margin: 1em 40px; }

/**
* Address styling not present in Safari 5 and Chrome.
*/
dfn {
  font-style: italic; }

/**
* Address differences between Firefox and other browsers.
* Known issue: no IE 6/7 normalization.
*/
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
* Address styling not present in IE 6/7/8/9.
*/
mark {
  background: #ff0;
  color: #000; }

/**
* Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
*/
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  -font-family: 'courier new', monospace;
  font-size: 1em; }

kbd,
samp {
  padding: 2px 7px;
  background-color: #f2f2f2; }

/**
* Improve readability of pre-formatted text in all browsers.
*/
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  display: inline-block; }

/**
* Address inconsistent and variable font size in all browsers.
*/
small {
  font-size: 80%; }

/**
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
Lists
========================================================================== */
/**
* Address margins set differently in IE 6/7.
*/
dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0 0 0 40px; }

/**
* Address paddings set differently in IE 6/7.
*/
menu,
ol,
ul {
  padding: 0 0 0 40px; }

/**
* Correct list images handled incorrectly in IE 7.
*/
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* ==========================================================================
Embedded content
========================================================================== */
/**
* 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
* 2. Improve image quality when scaled in IE 7.
*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-style: none;
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */ }

/**
* Correct overflow displayed oddly in IE 9.
*/
svg:not(:root) {
  overflow: hidden; }

iframe {
  border: 0 none; }

/* ==========================================================================
Figures
========================================================================== */
/**
* Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
*/
figure {
  margin: 0; }

/* ==========================================================================
Forms
========================================================================== */
/**
* Correct margin displayed oddly in IE 6/7.
*/
form {
  margin: 0; }

/**
* Define consistent border, margin, and padding.
*/
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
* 1. Correct color not being inherited in IE 6/7/8/9.
* 2. Correct text not wrapping in Firefox 3.
* 3. Correct alignment displayed oddly in IE 6/7.
*/
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */ }

/**
* 1. Correct font size not being inherited in all browsers.
* 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
*    and Chrome.
* 3. Improve appearance and consistency in all browsers.
*/
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */ }

/**
* Address Firefox 3+ setting `line-height` on `input` using `!important` in
* the UA stylesheet.
*/
button,
input {
  line-height: normal; }

/**
* Address inconsistent `text-transform` inheritance for `button` and `select`.
* All other form control elements do not inherit `text-transform` values.
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
* Correct `select` style inheritance in Firefox 4+ and Opera.
*/
button,
select {
  text-transform: none; }

/**
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
*    and `video` controls.
* 2. Correct inability to style clickable `input` types in iOS.
* 3. Improve usability and consistency of cursor style between image-type
*    `input` and others.
* 4. Remove inner spacing in IE 7 without affecting normal text inputs.
*    Known issue: inner spacing remains in IE 6.
*/
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */ }

/**
* Re-set default cursor for disabled elements.
*/
button[disabled],
html input[disabled] {
  cursor: default; }

/**
* 1. Address box sizing set to content-box in IE 8/9.
* 2. Remove excess padding in IE 8/9.
* 3. Remove excess padding in IE 7.
*    Known issue: excess padding remains in IE 6.
*/
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */ }

/**
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
*    (include `-moz` to future-proof).
*/
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
* Remove inner padding and search cancel button in Safari 5 and Chrome
* on OS X.
*/
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
* Remove inner padding and border in Firefox 3+.
*/
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
* 1. Remove default vertical scrollbar in IE 6/7/8/9.
* 2. Improve readability and alignment in all browsers.
*/
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
Tables
========================================================================== */
/**
* Remove most spacing between table cells.
*/
table {
  border-collapse: collapse;
  border-spacing: 0; }

*, ::after, ::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit; }

/* ==========================================================================
Video
========================================================================== */
video {
  display: block;
  position: relative;
  top: 0;
  height: 100%;
  width: 100%; }

/*
==========================================================================
    # BREADCRUMB
==========================================================================
*/
/* Variables */
/* Global */
.breadcrumb {
  margin: 0px;
  padding: 0px;
  list-style: none; }
  .breadcrumb li {
    display: inline-block; }
  .breadcrumb li:not(.disabled) a:hover {
    text-decoration: none; }
  .breadcrumb li:nth-child(n+2)::before {
    font-family: FontAwesome;
    content: "/";
    display: inline-block;
    margin: 0 20px; }
  .breadcrumb li.disabled a {
    pointer-events: none; }
  .breadcrumb.breadcrumb-caret-divider > li:nth-child(n+2)::before {
    font-family: FontAwesome;
    content: "\f0da"; }
  .breadcrumb.breadcrumb-angle-divider > li:nth-child(n+2)::before {
    content: "\f105"; }

/*
==========================================================================
    # BUTTON
==========================================================================
*/
/* Variables */
/* Global */
.button {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -moz-transition: 0.1s ease-in-out;
  -o-transition: 0.1s ease-in-out;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  display: inline-block;
  margin-bottom: 0;
  padding: 1px 20px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  touch-action: manipulation;
  background-image: none;
  white-space: nowrap;
  border-radius: 5px;
  border: 1px solid transparent;
  outline: none;
  cursor: pointer; }
  .button.button-text {
    display: inline-block;
    padding: 0px;
    border: none;
    line-height: inherit;
    background: transparent;
    color: inherit;
    cursor: pointer; }
  .button.button-squared {
    border-radius: 0px; }
  .button.button-rounded {
    border-radius: 50px; }
  .button.button-small {
    line-height: 30px;
    padding: 0 15px; }
  .button.button-large {
    line-height: 55px;
    padding: 0 40px; }
  .button:hover {
    text-decoration: none;
    z-index: 1; }
  .button:focus {
    outline: none; }
  .button[disabled], .button.button-disabled {
    pointer-events: none; }

/* Button group */
.button-group {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle; }

.button-group .button {
  border-radius: 0px; }

.button-group .button-bordered:not(:first-child) {
  border-radius: 0px;
  margin-left: -1px; }

.button-group .button:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px; }

.button-group .button:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px; }

.button-group.button-squared .button:first-child {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px; }

.button-group.button-squared .button:last-child {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px; }

.button-group.button-rounded .button:first-child {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px; }

.button-group.button-rounded .button:last-child {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px; }

/*
==========================================================================
    # CARD
==========================================================================
*/
/* Variables */
/* Global */
/*
==========================================================================
    # BADGE
==========================================================================
*/
/* Variables */
/* Global */
.badge, .card-badge {
  display: inline-block;
  border-radius: 3px;
  min-width: 1px;
  padding: 0px 5px;
  height: 20px;
  line-height: 20px; }

.badge:hover, .card-badge:hover {
  text-decoration: none; }

.badge.badge-squared, .badge-squared.card-badge {
  border-radius: 0; }

.badge.badge-rounded, .badge-rounded.card-badge {
  border-radius: 50px; }

.badge[data-caption]::after, [data-caption].card-badge::after {
  content: " " attr(data-caption); }

.card {
  position: relative;
  border-radius: 5px;
  -moz-transition: box-shadow;
  -o-transition: box-shadow;
  -webkit-transition: box-shadow;
  transition: box-shadow;
  -moz-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out; }
  .card .card-header {
    padding: 40px 40px; }
    .card .card-header > :last-child {
      margin-bottom: 0; }
  .card.card-body {
    padding: 40px 40px; }
    .card.card-body > :last-child {
      margin-bottom: 0; }
    .card.card-body.card-small {
      padding: 20px 20px; }
    .card.card-body.card-large {
      padding: 70px 70px; }
  .card .card-body {
    padding: 40px 40px; }
    .card .card-body > :last-child {
      margin-bottom: 0; }
    .card .card-body.card-small {
      padding: 20px 20px; }
    .card .card-body.card-large {
      padding: 70px 70px; }
  .card .card-footer {
    padding: 20px 40px; }
    .card .card-footer > a:nth-child(n+2),
    .card .card-footer > button:nth-child(n+2) {
      margin-left: 10px; }
    .card .card-footer > :last-child {
      margin-bottom: 0; }
  .card.card-squared {
    border-radius: 0; }
  .card.card-rounded {
    border-radius: 15px; }
  .card.card-small .card-header {
    padding: 10px 20px; }
  .card.card-small .card-body {
    padding: 20px 20px; }
  .card.card-small .card-footer {
    padding: 10px 20px; }
  .card.large .card-header {
    padding: 35px 70px; }
  .card.large .card-body {
    padding: 70px 70px; }
  .card.large .card-footer {
    padding: 35px 70px; }
  .card.card-horizontal {
    display: inline-block;
    width: 100%;
    overflow: hidden; }

.card-media-left,
.card-media-right {
  position: absolute;
  top: 50%;
  padding: 0;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.card-media-left {
  float: left;
  left: 0; }

.card-media-left + div {
  float: right; }

.card-media-right {
  float: right;
  right: 0; }

@media (max-width: 768px) {
  .card-media-left,
  .card-media-right {
    position: relative;
    top: 0%;
    -moz-transform: translateY(0%);
    -o-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%); } }

.card-media-left img,
.card-media-right img {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%; }

.card-media-left + .card-body {
  float: right; }

.card-media-right + .card-body {
  float: left; }

.card-badge {
  z-index: 1; }
  .card-badge.position-left {
    margin-left: 20px; }
  .card-badge.position-right {
    margin-right: 20px; }
  .card-badge.position-top {
    margin-top: 20px; }
  .card-badge.position-top-left {
    margin-top: 20px;
    margin-left: 20px; }
  .card-badge.position-top-center {
    margin-top: 20px; }
  .card-badge.position-top-right {
    margin-top: 20px;
    margin-right: 20px; }
  .card-badge.position-center-left {
    margin-left: 20px; }
  .card-badge.position-center-right {
    margin-right: 20px; }
  .card-badge.position-bottom {
    margin-bottom: 20px; }
  .card-badge.position-bottom-left {
    margin-bottom: 20px;
    margin-left: 20px; }
  .card-badge.position-bottom-center {
    margin-bottom: 20px; }
  .card-badge.position-bottom-right {
    margin-bottom: 20px;
    margin-right: 20px; }

/*
==========================================================================
    # Column
==========================================================================
*/
/* Variables */
/* Global */
.column {
  position: relative;
  width: 100%;
  min-height: 1px;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%; }

/*
==========================================================================
    # SIZES
==========================================================================
*/
/* From xsmall screen */
.column.xs-12,
.column.xs-11,
.column.xs-10,
.column.xs-9,
.column.xs-8,
.column.xs-7,
.column.xs-6,
.column.xs-5,
.column.xs-4,
.column.xs-3,
.column.xs-2,
.column.xs-1 {
  max-width: 100%; }

.column.xs-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%; }

.column.xs-11 {
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  max-width: 91.66667%; }

.column.xs-10 {
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%; }

.column.xs-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%; }

.column.xs-8 {
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%; }

.column.xs-7 {
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  max-width: 58.33333%; }

.column.xs-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%; }

.column.xs-5 {
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  max-width: 41.66667%; }

.column.xs-4 {
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.column.xs-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%; }

.column.xs-2 {
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%; }

.column.xs-1 {
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  max-width: 8.33333%; }

.column.offset-12,
.column.xs-offset-12 {
  margin-left: 100%; }

.column.offset-11,
.column.xs-offset-11 {
  margin-left: 91.66667%; }

.column.offset-10,
.column.xs-offset-10 {
  margin-left: 83.33333%; }

.column.offset-9,
.column.xs-offset-9 {
  margin-left: 75%; }

.column.offset-8,
.column.xs-offset-8 {
  margin-left: 66.66667%; }

.column.offset-7,
.column.xs-offset-7 {
  margin-left: 58.33333%; }

.column.offset-6,
.column.xs-offset-6 {
  margin-left: 50%; }

.column.offset-5,
.column.xs-offset-5 {
  margin-left: 41.66667%; }

.column.offset-4,
.column.xs-offset-4 {
  margin-left: 33.33333%; }

.column.offset-3,
.column.xs-offset-3 {
  margin-left: 25%; }

.column.offset-2,
.column.xs-offset-2 {
  margin-left: 16.66667%; }

.column.offset-1,
.column.xs-offset-1 {
  margin-left: 8.33333%; }

/* From small screen */
@media (min-width: 576px) {
  .column.sm-12,
  .column.sm-11,
  .column.sm-10,
  .column.sm-9,
  .column.sm-8,
  .column.sm-7,
  .column.sm-6,
  .column.sm-5,
  .column.sm-4,
  .column.sm-3,
  .column.sm-2,
  .column.sm-1 {
    max-width: 100%; }
  .column.sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .column.sm-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .column.sm-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .column.sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .column.sm-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .column.sm-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .column.sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .column.sm-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .column.sm-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .column.sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .column.sm-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .column.sm-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .column.sm-offset-12 {
    margin-left: 100%; }
  .column.sm-offset-11 {
    margin-left: 91.66667%; }
  .column.sm-offset-10 {
    margin-left: 83.33333%; }
  .column.sm-offset-9 {
    margin-left: 75%; }
  .column.sm-offset-8 {
    margin-left: 66.66667%; }
  .column.sm-offset-7 {
    margin-left: 58.33333%; }
  .column.sm-offset-6 {
    margin-left: 50%; }
  .column.sm-offset-5 {
    margin-left: 41.66667%; }
  .column.sm-offset-4 {
    margin-left: 33.33333%; }
  .column.sm-offset-3 {
    margin-left: 25%; }
  .column.sm-offset-2 {
    margin-left: 16.66667%; }
  .column.sm-offset-1 {
    margin-left: 8.33333%; } }

/* From medium screen */
@media (min-width: 768px) {
  .column.md-12,
  .column.md-11,
  .column.md-10,
  .column.md-9,
  .column.md-8,
  .column.md-7,
  .column.md-6,
  .column.md-5,
  .column.md-4,
  .column.md-3,
  .column.md-2,
  .column.md-1 {
    max-width: 100%; }
  .column.md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .column.md-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .column.md-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .column.md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .column.md-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .column.md-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .column.md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .column.md-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .column.md-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .column.md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .column.md-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .column.md-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .column.md-offset-12 {
    margin-left: 100%; }
  .column.md-offset-11 {
    margin-left: 91.66667%; }
  .column.md-offset-10 {
    margin-left: 83.33333%; }
  .column.md-offset-9 {
    margin-left: 75%; }
  .column.md-offset-8 {
    margin-left: 66.66667%; }
  .column.md-offset-7 {
    margin-left: 58.33333%; }
  .column.md-offset-6 {
    margin-left: 50%; }
  .column.md-offset-5 {
    margin-left: 41.66667%; }
  .column.md-offset-4 {
    margin-left: 33.33333%; }
  .column.md-offset-3 {
    margin-left: 25%; }
  .column.md-offset-2 {
    margin-left: 16.66667%; }
  .column.md-offset-1 {
    margin-left: 8.33333%; } }

/* From large screen */
@media (min-width: 992px) {
  .column.lg-12,
  .column.lg-11,
  .column.lg-10,
  .column.lg-9,
  .column.lg-8,
  .column.lg-7,
  .column.lg-6,
  .column.lg-5,
  .column.lg-4,
  .column.lg-3,
  .column.lg-2,
  .column.lg-1 {
    max-width: 100%; }
  .column.lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .column.lg-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .column.lg-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .column.lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .column.lg-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .column.lg-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .column.lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .column.lg-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .column.lg-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .column.lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .column.lg-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .column.lg-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .column.lg-offset-12 {
    margin-left: 100%; }
  .column.lg-offset-11 {
    margin-left: 91.66667%; }
  .column.lg-offset-10 {
    margin-left: 83.33333%; }
  .column.lg-offset-9 {
    margin-left: 75%; }
  .column.lg-offset-8 {
    margin-left: 66.66667%; }
  .column.lg-offset-7 {
    margin-left: 58.33333%; }
  .column.lg-offset-6 {
    margin-left: 50%; }
  .column.lg-offset-5 {
    margin-left: 41.66667%; }
  .column.lg-offset-4 {
    margin-left: 33.33333%; }
  .column.lg-offset-3 {
    margin-left: 25%; }
  .column.lg-offset-2 {
    margin-left: 16.66667%; }
  .column.lg-offset-1 {
    margin-left: 8.33333%; } }

/* From large screen */
@media (min-width: 1200px) {
  .column.xl-12,
  .column.xl-11,
  .column.xl-10,
  .column.xl-9,
  .column.xl-8,
  .column.xl-7,
  .column.xl-6,
  .column.xl-5,
  .column.xl-4,
  .column.xl-3,
  .column.xl-2,
  .column.xl-1 {
    max-width: 100%; }
  .column.xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .column.xl-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .column.xl-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .column.xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .column.xl-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .column.xl-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .column.xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .column.xl-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .column.xl-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .column.xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .column.xl-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .column.xl-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .column.xl-offset-12 {
    margin-left: 100%; }
  .column.xl-offset-11 {
    margin-left: 91.66667%; }
  .column.xl-offset-10 {
    margin-left: 83.33333%; }
  .column.xl-offset-9 {
    margin-left: 75%; }
  .column.xl-offset-8 {
    margin-left: 66.66667%; }
  .column.xl-offset-7 {
    margin-left: 58.33333%; }
  .column.xl-offset-6 {
    margin-left: 50%; }
  .column.xl-offset-5 {
    margin-left: 41.66667%; }
  .column.xl-offset-4 {
    margin-left: 33.33333%; }
  .column.xl-offset-3 {
    margin-left: 25%; }
  .column.xl-offset-2 {
    margin-left: 16.66667%; }
  .column.xl-offset-1 {
    margin-left: 8.33333%; } }

/*
==========================================================================
    # COMMENT
==========================================================================
*/
/* Variables */
/* Global */
.comment-list {
  display: inline-block;
  margin: 0px;
  padding: 0px;
  list-style: none; }
  .comment-list ul {
    margin-top: 10px;
    padding-left: 100px; }
    @media screen and (max-width: 768px) {
      .comment-list ul {
        padding-left: 60px; } }
    @media screen and (max-width: 576px) {
      .comment-list ul {
        padding-left: 35px; } }

.comment .comment-avatar,
.comment .comment-header,
.comment .comment-body {
  position: relative;
  min-height: 1px; }

.comment .comment-header {
  display: inline-block;
  width: 100%;
  margin: 15px 0 0; }

.comment .comment-avatar {
  width: 100%;
  max-width: 100px;
  padding-right: 20px;
  float: left; }

.comment .comment-infos {
  display: inline-block;
  margin-top: 20px; }

.comment .comment-author {
  display: block; }

.comment .comment-body {
  margin-top: 20px; }

/*
==========================================================================
    # CONTAINER
==========================================================================
*/
/* Variables */
/* Global */
.container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem; }

.container-large {
  position: relative;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem; }

.container-expand {
  position: relative;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  padding: 0 !important; }

@media (min-width: 576px) {
  .container {
    width: 540px; } }

@media (min-width: 768px) {
  .container {
    width: 720px; } }

@media (min-width: 992px) {
  .container {
    width: 960px; } }

@media (min-width: 1200px) {
  .container {
    width: 1140px; } }

/*
==========================================================================
    # DESCRIPTION LIST
==========================================================================
*/
/* Variables */
/* Global */
.description-list dt {
  text-transform: uppercase; }

.description-list dd {
  margin: 0 0 15px 0;
  padding: 0 0 15px 0; }

.description-list.description-list-divider dd:not(:last-child) {
  border-bottom: 1px solid #efefef; }

/*
==========================================================================
    # DROPDOWN
==========================================================================
*/
/* Variables */
/* Global */
.dropdown {
  display: none;
  position: absolute;
  z-index: 10; }

/*
==========================================================================
    # FORM
==========================================================================
*/
/* Variables */
/* Global */
form {
  position: relative; }

fieldset {
  border: none;
  margin: 0;
  padding: 0; }

.merged-form {
  position: relative;
  display: inline-block;
  width: 100%; }

/*
==========================================================================
    # grid
==========================================================================
*/
/* Variables */
/* Global */
.grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: start;
  -moz-align-items: start;
  align-items: start;
  /*
    ==========================================================================
        # SPACING
    ==========================================================================
    */
  /*
    ==========================================================================
        # ALIGNMENT
    ==========================================================================
    */ }
  .grid.grid-spacing-off {
    margin-left: 0;
    margin-right: 0; }
    .grid.grid-spacing-off .column {
      padding: 0; }
  .grid > .column {
    padding-left: 0.75rem;
    padding-right: 0.75rem; }
  @media (min-width: 768px) {
    .grid.grid-spacing-medium > .column {
      padding-left: 1rem;
      padding-right: 1rem; }
    .grid.grid-spacing-large > .column {
      padding-left: 2rem;
      padding-right: 2rem; } }
  .grid.grid-spacing-off {
    margin-left: 0;
    margin-right: 0; }
    .grid.grid-spacing-off > .column {
      padding-left: 0;
      padding-right: 0; }
  .grid.grid-align-top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: start;
    -moz-align-items: start;
    align-items: start; }
  .grid.grid-align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
  .grid.grid-align-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end; }

/*
==========================================================================
    # CONTAINER GRID SPACING
==========================================================================
*/
.container .grid {
  /* default spacing */
  margin-left: -0.75rem;
  margin-right: -0.75rem; }
  .container .grid.grid-spacing-off {
    margin-left: 0;
    margin-right: 0; }
    .container .grid.grid-spacing-off > .column {
      padding-left: 0;
      padding-right: 0; }
  @media (min-width: 768px) {
    .container .grid.grid-spacing-medium {
      margin-left: -1rem;
      margin-right: -1rem; }
    .container .grid.grid-spacing-large {
      margin-left: -2rem;
      margin-right: -2rem; } }

/*
==========================================================================
    # ICON
==========================================================================
*/
/* Variables */
/* Global */
.icon-left {
  margin-right: 5px; }

.icon-right {
  margin-left: 5px; }

.icon.x12 {
  font-size: 12px; }

.icon.x14 {
  font-size: 14px; }

.icon.x16 {
  font-size: 16px; }

.icon.x18 {
  font-size: 18px; }

.icon.x24 {
  font-size: 24px; }

.icon.x32 {
  font-size: 32px; }

.icon.x48 {
  font-size: 48px; }

.icon.x64 {
  font-size: 64px; }

/*
==========================================================================
    # LABEL
==========================================================================
*/
/* Variables */
/* Global */
.label {
  display: inline-block;
  border-radius: 3px;
  min-width: 1px;
  padding: 0px 5px;
  height: 20px;
  line-height: 20px; }

.label:hover {
  text-decoration: none; }

.label.label-squared {
  border-radius: 0; }

.label.label-rounded {
  border-radius: 50px; }

/*
==========================================================================
    # LIGHTBOX
==========================================================================
*/
/* Variables */
/* Global */
.lightbox img {
  cursor: pointer; }

.win-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 120;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center; }
  .win-lightbox .lightbox-list {
    padding: 0;
    list-style: none; }
  .win-lightbox .lightbox-list .lightbox-item {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .win-lightbox .lightbox-list .lightbox-list-item > * {
    margin-left: auto;
    margin-right: auto;
    max-width: 100vw;
    max-height: 100vh; }
  .win-lightbox .lightbox-close-bar {
    position: fixed;
    top: 0;
    left: 0;
    text-align: right;
    width: 100%;
    z-index: 110; }
    .win-lightbox .lightbox-close-bar .lightbox-close {
      border: none;
      padding: 0;
      width: 65px;
      height: 50px;
      line-height: 56px;
      background: transparent; }
      .win-lightbox .lightbox-close-bar .lightbox-close i {
        font-size: 25px; }
  .win-lightbox .slider {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex; }
  .win-lightbox .owl-carousel .owl-item img {
    width: initial; }
  .win-lightbox .owl-item {
    height: 100vh;
    overflow: hidden; }
    .win-lightbox .owl-item .item-slider {
      position: relative;
      left: -50%;
      top: 50%;
      transform: translate(50%, -50%); }
  .win-lightbox .lightbox-caption {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7); }

/*
==========================================================================
    # LIST
==========================================================================
*/
/* Variables */
/* Global */
.list {
  list-style-type: none; }
  .list > * {
    padding: 5px 0px; }
  .list.list-bullet-square {
    list-style-type: square;
    padding-left: 15px; }
  .list.list-bullet-circle {
    list-style-type: disc;
    padding-left: 15px; }
  .list.list-bullet-decimal {
    list-style-type: decimal;
    padding-left: 15px; }
  .list.list-striped > * {
    margin: 0px;
    padding: 10px; }
  .list .list-divider {
    margin: 10px 0;
    padding: 0; }

/*
==========================================================================
    # MODAL
==========================================================================
*/
/* Variables */
/* Global */
/*
==========================================================================
    # OVERLAY
==========================================================================
*/
/* Variables */
/* Global */
.overlay, .modal .modal-overlay,
.background-overlay {
  position: absolute;
  text-align: center;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.75); }

.overlay-inverse {
  color: #424242;
  background-color: rgba(255, 255, 255, 0.75); }

.overlay.fullsize, .modal .fullsize.modal-overlay,
.background-overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: none; }
  .modal .modal-overlay {
    width: 100%;
    height: 100%; }
  .modal .modal-wrapper {
    position: relative;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    width: 600px;
    max-width: 100%; }
    .modal .modal-wrapper .modal-header .modal-title {
      margin: 0px; }

/*
==========================================================================
    # NAV
==========================================================================
*/
/* Variables */
/* Global */
.nav,
.nav .nav-sub {
  margin: 0px;
  padding: 0px;
  list-style: none; }

.nav > li {
  padding: 5px 0px; }

.nav > li a:hover {
  text-decoration: none; }

.nav > li.nav-divider {
  margin: 10px 0;
  padding: 0; }

/*
==========================================================================
    # NAVBAR
==========================================================================
*/
/* Variables */
/* Global */
.navbar {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  height: 50px;
  line-height: 50px;
  padding: 0 60px;
  width: 100%; }
  .navbar.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10; }
  .navbar .navbar-left,
  .navbar .navbar-right,
  .navbar .navbar-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
  .navbar .navbar-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    margin-right: auto; }
  .navbar .navbar-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto; }
  .navbar .navbar-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    margin-left: auto; }
  .navbar > *:not(.navbar-center):not(.navbar-right):first-child {
    margin-left: -15px; }
  .navbar > *:not(.navbar-center):not(.navbar-left):last-child {
    margin-right: -15px; }

/* Navbar brand */
.navbar-brand {
  display: block;
  padding-left: 15px;
  padding-right: 15px; }

/* Navbar item */
.navbar-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px; }

/* Navbar nav */
.navbar-nav {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%; }
  .navbar-nav > * {
    position: relative;
    height: 100%; }
    .navbar-nav > * > * {
      line-height: normal; }
    .navbar-nav > * > a,
    .navbar-nav > * > button {
      line-height: inherit;
      height: 100%; }

.navbar-nav > li > a {
  display: block;
  padding-left: 15px;
  padding-right: 15px; }

/*
==========================================================================
    # OFFCANVAS
==========================================================================
*/
/*
-----------------------------------------

    # OFF CANVAS

-----------------------------------------
*/
/* Variables */
/* Global */
.offcanvas {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  width: 300px;
  background: #fff;
  overflow-y: auto;
  height: 100vh;
  -webkit-overflow-scrolling: touch;
  z-index: 1000;
  display: none; }
  .offcanvas .offcanvas-header {
    padding: 20px 20px;
    position: relative; }
    .offcanvas .offcanvas-header .offcanvas-title {
      margin: 0; }
    .offcanvas .offcanvas-header .offcanvas-close {
      height: 100%;
      background: transparent; }
    .offcanvas .offcanvas-header .offcanvas-close-default {
      position: absolute;
      z-index: 11;
      top: 0;
      right: 0;
      width: 60px;
      padding: 0 10px;
      border: none;
      background: transparent; }
  .offcanvas .offcanvas-body {
    padding: 20px 20px; }

/*
==========================================================================
    # OVERLAY
==========================================================================
*/
/* Variables */
/* Global */
.overlay, .modal .modal-overlay,
.background-overlay {
  position: absolute;
  text-align: center;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.75); }

.overlay-inverse {
  color: #424242;
  background-color: rgba(255, 255, 255, 0.75); }

.overlay.fullsize, .modal .fullsize.modal-overlay,
.background-overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }

/*
==========================================================================
    # PAGINATION
==========================================================================
*/
/* Variables */
/* Global */
.pagination {
  margin: 0px;
  padding: 0px;
  list-style: none; }
  .pagination li {
    display: inline-block;
    cursor: default; }
    .pagination li.disabled {
      pointer-events: none; }
  .pagination .pagination-prev,
  .pagination .pagination-next {
    vertical-align: middle; }

/*
==========================================================================
    # PARALLAX
==========================================================================
*/
/* Variables */
/* Global */
.parallax {
  position: relative;
  top: 0px;
  width: 100%;
  background-attachment: scroll;
  background-repeat: repeat;
  background-position: center;
  background-size: auto auto;
  background-origin: padding-box;
  background-clip: border-box;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  will-change: transform, top; }

.parallax-layer {
  position: relative;
  overflow: hidden;
  min-height: 1px; }

/*
==========================================================================
    # PROGRESS
==========================================================================
*/
/* Variables */
/* Global */
.progress-bar {
  position: relative;
  display: inline-block;
  width: 100%;
  border: none;
  overflow: hidden; }
  .progress-bar .progression {
    position: absolute;
    top: 0;
    left: 0px;
    width: 0%;
    height: 100%; }
    .progress-bar .progression:after {
      content: " " attr(data-caption);
      line-height: inherit; }

/*
==========================================================================
    # SECTION
==========================================================================
*/
/* Variables */
/* Global */
.section {
  position: relative;
  padding: 7.4rem 1.5rem;
  overflow: hidden;
  /* Background layer */ }
  .section .background-layer:not(.parallax) {
    position: absolute;
    top: 0px;
    left: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat; }
    .section .background-layer:not(.parallax) img,
    .section .background-layer:not(.parallax) video {
      -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      display: block;
      position: relative;
      top: 50%;
      left: 50%;
      width: 100%;
      height: auto; }
    .section .background-layer:not(.parallax) video {
      width: 101%;
      /* Fix firefox white border left */ }
    @media (max-width: 576px) {
      .section .background-layer:not(.parallax) img,
      .section .background-layer:not(.parallax) video {
        width: 200%; } }

/* Spacing */
.section.section-padding-off {
  padding: 0; }

/* auto sm */
@media (max-width: 576px) {
  .section {
    padding: 5.5rem 1.5rem; } }

.section.section-padding-xs {
  padding: 2.8rem 1.5rem; }

.section.section-padding-sm {
  padding: 6.7rem 1.5rem; }

.section.section-padding-md {
  padding: 11rem 1.5rem; }

.section.section-padding-lg {
  padding: 14.8rem 1.5rem; }

.section.section-padding-xl {
  padding: 18rem 1.5rem; }

/*
==========================================================================
    # SUBNAV
==========================================================================
*/
/* Variables */
/* Global */
.subnav {
  margin: 0px;
  padding: 0px;
  list-style: none; }

.subnav > li {
  display: inline-block;
  padding-left: 20px; }

.subnav > li a {
  text-decoration: none; }

.subnav li:first-child {
  padding-left: 0px; }

/*
==========================================================================
    # TAB
==========================================================================
*/
/* Variables */
/* Global */
.tab-header {
  position: relative;
  margin: 0px;
  padding: 0px;
  list-style: none;
  /* Tab Bottom */
  /* Tab Left */
  /* Tab Right */ }
  .tab-header > * {
    display: inline-block; }
    .tab-header > * > a {
      display: block;
      border-bottom: 2px solid transparent; }
    .tab-header > *.disabled {
      pointer-events: none; }
      .tab-header > *.disabled a {
        color: inherit; }
  .tab-header::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1; }
  .tab-header.tab-bottom::before {
    border-bottom: none;
    top: 0;
    bottom: initial;
    z-index: -1; }
  .tab-header.tab-bottom > * > a {
    border-top: 2px solid transparent;
    border-bottom: none; }
  .tab-header.tab-left > * {
    display: block; }
  .tab-header.tab-left::before {
    right: 0;
    top: 0;
    bottom: initial;
    height: 100%;
    z-index: -1; }
  .tab-header.tab-left > * > a {
    border-right: 2px solid transparent;
    border-top: none;
    border-bottom: none; }
  .tab-header.tab-right > * {
    display: block; }
  .tab-header.tab-right::before {
    border-top: none;
    border-bottom: none;
    left: 0;
    top: 0;
    bottom: initial;
    height: 100%;
    z-index: -1; }
  .tab-header.tab-right > * > a {
    border-left: 2px solid transparent;
    border-top: none;
    border-bottom: none; }

.tab-content > * {
  display: none; }

.tab-content > *.active {
  display: block; }

/*
==========================================================================
    # TABLE
==========================================================================
*/
/* Variables */
/* Global */
.table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%; }
  .table th {
    vertical-align: bottom; }
  .table td {
    vertical-align: top; }

/*
==========================================================================
    # TRANSITION
==========================================================================
*/
/* Variables */
/* Global */
.transition-layer {
  overflow: hidden; }

[class*="transition-"] {
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out; }

/* ## Fade */
.transition-fade {
  opacity: 0; }

.transition-layer:hover .transition-fade {
  opacity: 1; }

/* ## Top */
.transition-fade-top {
  opacity: 0;
  -moz-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%); }

.transition-layer:hover .transition-fade-top {
  opacity: 1;
  -moz-transform: translateY(0%);
  -o-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  transform: translateY(0%); }

/* ## Bottom */
.transition-fade-bottom {
  opacity: 0;
  -moz-transform: translateY(100%);
  -o-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  transform: translateY(100%); }

.transition-layer:hover .transition-fade-bottom {
  opacity: 1;
  -moz-transform: translateY(0%);
  -o-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  transform: translateY(0%); }

/* ## Left */
.transition-fade-left {
  opacity: 0;
  -moz-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%); }

.transition-layer:hover .transition-fade-left {
  opacity: 1;
  -moz-transform: translateY(0%);
  -o-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  transform: translateY(0%); }

/* ## Right */
.transition-fade-right {
  opacity: 0;
  -moz-transform: translateX(100%);
  -o-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%); }

.transition-layer:hover .transition-fade-right {
  opacity: 1;
  -moz-transform: translateY(0%);
  -o-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  transform: translateY(0%); }

/* ## Zoom In */
.transition-zoom-in {
  -moz-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1); }

.transition-layer:hover .transition-zoom-in {
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05); }

/* ## Zoom out */
.transition-zoom-out {
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05); }

.transition-layer:hover .transition-zoom-out {
  -moz-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1); }

/*
==========================================================================
# TYPOGRAPHY
==========================================================================
*/
/* Variables */
/* Global */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px 0;
  text-transform: none;
  font-family: "Open Sans", Roboto, Arial, Helvetica, sans-serif; }

h1, .h1 {
  font-size: 4rem;
  line-height: 5rem;
  font-weight: bold;
  margin: 0 0 2rem 0; }

h2, .h2 {
  font-size: 2.8rem;
  line-height: 3.8rem;
  font-weight: bold;
  margin: 0 0 1.4rem 0; }

h3, .h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: bold;
  margin: 0 0 1.33333rem 0; }

h4, .h4 {
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: bold;
  margin: 0 0 1.4rem 0; }

h5, .h5 {
  font-size: 1rem;
  line-height: 2rem;
  font-weight: bold;
  margin: 0 0 1rem 0; }

h6, .h6 {
  font-size: 0.88rem;
  line-height: 1.88rem;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 0.88rem 0; }

p {
  font-size: inherit;
  margin: 0 0 1.5rem 0; }
  p:last-child {
    margin-bottom: 0; }

.text-lead {
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: normal;
  margin: 0 0 1.4rem 0; }

.text-truncate {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.text-small,
.text-meta {
  font-size: 0.88rem;
  line-height: 1.2rem;
  margin: 0 0 0.88rem 0; }

.text-large {
  font-size: 1.4rem;
  line-height: 1.4rem;
  margin: 0 0 1.4rem 0; }

.text-bold {
  font-weight: bold; }

.text-italic {
  font-style: italic; }

.text-uppercase {
  text-transform: uppercase; }

.text-lowercase {
  text-transform: lowercase; }

.text-capitalize {
  text-transform: capitalize; }

.text-fluid {
  font-size: 1rem; }

@media only screen and (min-width: 576px) {
  .text-fluid {
    font-size: 1.32rem; } }

@media only screen and (min-width: 768px) {
  .text-fluid {
    font-size: 1.232rem; } }

@media only screen and (min-width: 992px) {
  .text-fluid {
    font-size: 1.408rem; } }

@media only screen and (min-width: 1200px) {
  .text-fluid {
    font-size: 1.4rem; } }

/*
==========================================================================
    # UTILITY
==========================================================================
*/
/* Variables */
/* Global */
/*
==========================================================================
    # WIDTH
==========================================================================
*/
.width-100,
.width-xs-100 {
  width: 100%; }

.width-90,
.width-xs-90 {
  width: 90%; }

.width-80,
.width-xs-80 {
  width: 80%; }

.width-70,
.width-xs-70 {
  width: 70%; }

.width-60,
.width-xs-60 {
  width: 60%; }

.width-50,
.width-xs-50 {
  width: 50%; }

.width-40,
.width-xs-40 {
  width: 40%; }

.width-30,
.width-xs-30 {
  width: 30%; }

.width-20,
.width-xs-20 {
  width: 20%; }

.width-10,
.width-xs-10 {
  width: 10%; }

/* sm */
@media (min-width: 576px) {
  .width-sm-100 {
    width: 100%; }
  .width-sm-90 {
    width: 90%; }
  .width-sm-80 {
    width: 80%; }
  .width-sm-70 {
    width: 70%; }
  .width-sm-60 {
    width: 60%; }
  .width-sm-50 {
    width: 50%; }
  .width-sm-40 {
    width: 40%; }
  .width-sm-30 {
    width: 30%; }
  .width-sm-20 {
    width: 20%; }
  .width-sm-10 {
    width: 10%; } }

/* md */
@media (min-width: 768px) {
  .width-md-100 {
    width: 100%; }
  .width-md-90 {
    width: 90%; }
  .width-md-80 {
    width: 80%; }
  .width-md-70 {
    width: 70%; }
  .width-md-60 {
    width: 60%; }
  .width-md-50 {
    width: 50%; }
  .width-md-40 {
    width: 40%; }
  .width-md-30 {
    width: 30%; }
  .width-md-20 {
    width: 20%; }
  .width-md-10 {
    width: 10%; } }

/* lg */
@media (min-width: 992px) {
  .width-lg-100 {
    width: 100%; }
  .width-lg-90 {
    width: 90%; }
  .width-lg-80 {
    width: 80%; }
  .width-lg-70 {
    width: 70%; }
  .width-lg-60 {
    width: 60%; }
  .width-lg-50 {
    width: 50%; }
  .width-lg-40 {
    width: 40%; }
  .width-lg-30 {
    width: 30%; }
  .width-lg-20 {
    width: 20%; }
  .width-lg-10 {
    width: 10%; } }

/* xl */
@media (min-width: 1200px) {
  .width-xl-100 {
    width: 100%; }
  .width-xl-90 {
    width: 90%; }
  .width-xl-80 {
    width: 80%; }
  .width-xl-70 {
    width: 70%; }
  .width-xl-60 {
    width: 60%; }
  .width-xl-50 {
    width: 50%; }
  .width-xl-40 {
    width: 40%; }
  .width-xl-30 {
    width: 30%; }
  .width-xl-20 {
    width: 20%; }
  .width-xl-10 {
    width: 10%; } }

/*
==========================================================================
    # HEIGHT
==========================================================================
*/
.height-100,
.height-90,
.height-80,
.height-70,
.height-60,
.height-50,
.height-40,
.height-30,
.height-20,
.height-10 {
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px; }

.height-100 {
  min-height: 100vh; }

.height-90 {
  min-height: 90vh; }

.height-80 {
  min-height: 80vh; }

.height-70 {
  min-height: 70vh; }

.height-60 {
  min-height: 60vh; }

.height-50 {
  min-height: 50vh; }

.height-40 {
  min-height: 40vh; }

.height-30 {
  min-height: 30vh; }

.height-20 {
  min-height: 20vh; }

.height-10 {
  min-height: 10vh; }

/*
==========================================================================
    # VERTICAL ALIGNMENT
==========================================================================
*/
/* Modern browsers */
.valign,
.valign-center,
.valign-top,
.valign-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap; }

/* 
* For correct display on IE, wrap the content in .wrapper element
* .valign-center > .wrapper
*/
.wrapper {
  position: relative;
  width: 100%; }

.valign,
.valign-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center; }

.valign-top {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  align-items: baseline; }

.valign-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: end;
  -moz-align-items: end;
  align-items: end; }

/* Fix vertical alignment on IE */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .valign-center {
    display: table;
    table-layout: fixed; }
  .valign-center > * {
    display: table-cell;
    vertical-align: middle; } }

/*
==========================================================================
    # DISPLAY
==========================================================================
*/
/* Used in position context */
.inline-block {
  display: inline-block;
  position: relative;
  max-width: 100%;
  vertical-align: middle; }

/* Display */
.display-block {
  display: block; }

.display-inline {
  display: inline; }

.display-inline-block {
  display: inline-block; }

/*
==========================================================================
    # TEXT ALIGN
==========================================================================
*/
.text-left {
  text-align: left; }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

.center-all {
  text-align: center; }
  .center-all img {
    margin-left: auto;
    margin-right: auto; }
  .center-all [class*="valign-"],
  .center-all .valign,
  .center-all .grid,
  .center-all .column {
    justify-content: center; }

/*
==========================================================================
    # FLOATING
==========================================================================
*/
.left {
  float: left; }

.right {
  float: right; }

/*
==========================================================================
    # HIDDING
==========================================================================
*/
/* Hide on all devices */
.hide {
  display: none !important; }

/* Hide on mobile only */
@media (max-width: 768px) {
  .hide-xs {
    display: none !important; } }

/* Hide on tablet only */
@media (min-width: 768px) and (max-width: 992px) {
  .hide-sm {
    display: none !important; } }

/* Hide on tablet and below */
@media (max-width: 992px) {
  .hide-sm-down {
    display: none !important; } }

/* Hide on tablet and above */
@media (min-width: 768px) {
  .hide-sm-up {
    display: none !important; } }

/* Hide on desktop medium screen only */
@media (min-width: 992px) and (max-width: 1200px) {
  .hide-md {
    display: none !important; } }

/* Hide on desktop and below */
@media (max-width: 1200px) {
  .hide-md-down {
    display: none !important; } }

/* Hide on desktop and above */
@media (min-width: 992px) {
  .hide-md-up {
    display: none !important; } }

/* Hide on desktop large screen only */
@media (min-width: 1200px) {
  .hide-lg {
    display: none !important; } }

/*
==========================================================================
    # SHOWING
==========================================================================
*/
/* Show on mobile only */
@media (min-width: 768px) {
  .show-xs {
    display: none !important; } }

/* Show on tablet only */
@media (max-width: 768px) {
  .show-sm {
    display: none !important; } }

@media (min-width: 992px) {
  .show-sm {
    display: none !important; } }

/* Show on tablet and below */
@media (min-width: 992px) {
  .show-sm-down {
    display: none !important; } }

/* Show on tablet and above */
@media (max-width: 768px) {
  .show-sm-up {
    display: none !important; } }

/* Show on desktop medium screen only */
@media (max-width: 992px) {
  .show-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .show-md {
    display: none !important; } }

/* Show on desktop and below */
@media (min-width: 1200px) {
  .show-md-down {
    display: none !important; } }

/* Show on desktop and above */
@media (max-width: 992px) {
  .show-md-up {
    display: none !important; } }

/* Show on desktop large screen only */
@media (max-width: 1200px) {
  .show-lg {
    display: none !important; } }

/*
==========================================================================
    # MARGIN
==========================================================================
*/
/* Margin */
.margin-off {
  margin: 0px !important; }

* + .margin,
* + .margin-10,
* + .margin-small {
  margin-top: 10px !important; }

.margin,
.margin-10,
.margin-small {
  margin-bottom: 10px; }

* + .margin-20 {
  margin-top: 20px !important; }

.margin-20 {
  margin-bottom: 20px; }

* + .margin-30 {
  margin-top: 30px !important; }

.margin-30 {
  margin-bottom: 30px; }

* + .margin-40 {
  margin-top: 40px !important; }

.margin-40 {
  margin-bottom: 40px; }

* + .margin-50,
* + .margin-medium {
  margin-top: 50px !important; }

.margin-50,
.margin-medium {
  margin-bottom: 50px; }

* + .margin-60 {
  margin-top: 60px !important; }

.margin-60 {
  margin-bottom: 60px; }

* + .margin-70 {
  margin-top: 70px !important; }

.margin-70 {
  margin-bottom: 70px; }

* + .margin-80 {
  margin-top: 80px !important; }

.margin-80 {
  margin-bottom: 80px; }

* + .margin-90 {
  margin-top: 90px !important; }

.margin-90 {
  margin-bottom: 90px; }

* + .margin-100,
* + .margin-large {
  margin-top: 100px !important; }

.margin-100,
.margin-large {
  margin-bottom: 100px; }

/* Margin top */
.margin-top-off {
  margin: 0px !important; }

* + .margin-top,
* + .margin-top-10,
* + .margin-top-small {
  margin-top: 10px !important; }

.margin-top,
.margin-top-10,
.margin-top-small {
  margin-top: 10px; }

* + .margin-top-20 {
  margin-top: 20px !important; }

.margin-top-20 {
  margin-top: 20px; }

* + .margin-top-30 {
  margin-top: 30px !important; }

.margin-top-30 {
  margin-top: 30px; }

* + .margin-top-40 {
  margin-top: 40px !important; }

.margin-top-40 {
  margin-top: 40px; }

* + .margin-top-50,
* + .margin-top-medium {
  margin-top: 50px !important; }

.margin-top-50,
.margin-top-medium {
  margin-top: 50px; }

* + .margin-top-60 {
  margin-top: 60px !important; }

.margin-top-60 {
  margin-top: 60px; }

* + .margin-top-70 {
  margin-top: 70px !important; }

.margin-top-70 {
  margin-top: 70px; }

* + .margin-top-80 {
  margin-top: 80px !important; }

.margin-top-80 {
  margin-top: 80px; }

* + .margin-top-90 {
  margin-top: 90px !important; }

.margin-top-90 {
  margin-top: 90px; }

* + .margin-top-100,
* + .margin-top-large {
  margin-top: 100px !important; }

.margin-top-100,
.margin-top-large {
  margin-top: 100px; }

/* Margin right */
.margin-right-off {
  margin: 0px !important; }

* + .margin-right,
* + .margin-right-10,
* + .margin-right-small {
  margin-right: 10px !important; }

.margin-right,
.margin-right-10,
.margin-right-small {
  margin-right: 10px; }

* + .margin-right-20 {
  margin-right: 20px !important; }

.margin-right-20 {
  margin-right: 20px; }

* + .margin-right-30 {
  margin-right: 30px !important; }

.margin-right-30 {
  margin-right: 30px; }

* + .margin-right-40 {
  margin-right: 40px !important; }

.margin-right-40 {
  margin-right: 40px; }

* + .margin-right-50,
* + .margin-right-medium {
  margin-right: 50px !important; }

.margin-right-50,
.margin-right-medium {
  margin-right: 50px; }

* + .margin-right-60 {
  margin-right: 60px !important; }

.margin-right-60 {
  margin-right: 60px; }

* + .margin-right-70 {
  margin-right: 70px !important; }

.margin-right-70 {
  margin-right: 70px; }

* + .margin-right-80 {
  margin-right: 80px !important; }

.margin-right-80 {
  margin-right: 80px; }

* + .margin-right-90 {
  margin-right: 90px !important; }

.margin-right-90 {
  margin-right: 90px; }

* + .margin-right-100,
* + .margin-right-large {
  margin-right: 100px !important; }

.margin-right-100,
.margin-right-large {
  margin-right: 100px; }

/* Margin bottom */
.margin-bottom-off {
  margin: 0px !important; }

* + .margin-bottom,
* + .margin-bottom-10,
* + .margin-bottom-small {
  margin-bottom: 10px !important; }

.margin-bottom,
.margin-bottom-10,
.margin-bottom-small {
  margin-bottom: 10px; }

* + .margin-bottom-20 {
  margin-bottom: 20px !important; }

.margin-bottom-20 {
  margin-bottom: 20px; }

* + .margin-bottom-30 {
  margin-bottom: 30px !important; }

.margin-bottom-30 {
  margin-bottom: 30px; }

* + .margin-bottom-40 {
  margin-bottom: 40px !important; }

.margin-bottom-40 {
  margin-bottom: 40px; }

* + .margin-bottom-50,
* + .margin-bottom-medium {
  margin-bottom: 50px !important; }

.margin-bottom-50,
.margin-bottom-medium {
  margin-bottom: 50px; }

* + .margin-bottom-60 {
  margin-bottom: 60px !important; }

.margin-bottom-60 {
  margin-bottom: 60px; }

* + .margin-bottom-70 {
  margin-bottom: 70px !important; }

.margin-bottom-70 {
  margin-bottom: 70px; }

* + .margin-bottom-80 {
  margin-bottom: 80px !important; }

.margin-bottom-80 {
  margin-bottom: 80px; }

* + .margin-bottom-90 {
  margin-bottom: 90px !important; }

.margin-bottom-90 {
  margin-bottom: 90px; }

* + .margin-bottom-100,
* + .margin-bottom-large {
  margin-bottom: 100px !important; }

.margin-bottom-100,
.margin-bottom-large {
  margin-bottom: 100px; }

/* Margin left */
.margin-left-off {
  margin: 0px !important; }

* + .margin-left,
* + .margin-left-10,
* + .margin-left-small {
  margin-left: 10px !important; }

.margin-left,
.margin-left-10,
.margin-left-small {
  margin-left: 10px; }

* + .margin-left-20 {
  margin-left: 20px !important; }

.margin-left-20 {
  margin-left: 20px; }

* + .margin-left-30 {
  margin-left: 30px !important; }

.margin-left-30 {
  margin-left: 30px; }

* + .margin-left-40 {
  margin-left: 40px !important; }

.margin-left-40 {
  margin-left: 40px; }

* + .margin-left-50,
* + .margin-left-medium {
  margin-left: 50px !important; }

.margin-left-50,
.margin-left-medium {
  margin-left: 50px; }

* + .margin-left-60 {
  margin-left: 60px !important; }

.margin-left-60 {
  margin-left: 60px; }

* + .margin-left-70 {
  margin-left: 70px !important; }

.margin-left-70 {
  margin-left: 70px; }

* + .margin-left-80 {
  margin-left: 80px !important; }

.margin-left-80 {
  margin-left: 80px; }

* + .margin-left-90 {
  margin-left: 90px !important; }

.margin-left-90 {
  margin-left: 90px; }

* + .margin-left-100,
* + .margin-left-large {
  margin-left: 100px !important; }

.margin-left-100,
.margin-left-large {
  margin-left: 100px; }

/*
==========================================================================
    # PADDING
==========================================================================
*/
/* padding */
.padding-off {
  padding: 0px !important; }

* + .padding,
* + .padding-10,
* + .padding-small {
  padding-top: 10px !important; }

.padding,
.padding-10,
.padding-small {
  padding-bottom: 10px; }

* + .padding-20 {
  padding-top: 20px !important; }

.padding-20 {
  padding-bottom: 20px; }

* + .padding-30 {
  padding-top: 30px !important; }

.padding-30 {
  padding-bottom: 30px; }

* + .padding-40 {
  padding-top: 40px !important; }

.padding-40 {
  padding-bottom: 40px; }

* + .padding-50,
* + .padding-medium {
  padding-top: 50px !important; }

.padding-50,
.padding-medium {
  padding-bottom: 50px; }

* + .padding-60 {
  padding-top: 60px !important; }

.padding-60 {
  padding-bottom: 60px; }

* + .padding-70 {
  padding-top: 70px !important; }

.padding-70 {
  padding-bottom: 70px; }

* + .padding-80 {
  padding-top: 80px !important; }

.padding-80 {
  padding-bottom: 80px; }

* + .padding-90 {
  padding-top: 90px !important; }

.padding-90 {
  padding-bottom: 90px; }

* + .padding-100,
* + .padding-large {
  padding-top: 100px !important; }

.padding-100,
.padding-large {
  padding-bottom: 100px; }

/* padding top */
.padding-top-off {
  padding: 0px !important; }

* + .padding-top,
* + .padding-top-10,
* + .padding-top-small {
  padding-top: 10px !important; }

.padding-top,
.padding-top-10,
.padding-top-small {
  padding-top: 10px; }

* + .padding-top-20 {
  padding-top: 20px !important; }

.padding-top-20 {
  padding-top: 20px; }

* + .padding-top-30 {
  padding-top: 30px !important; }

.padding-top-30 {
  padding-top: 30px; }

* + .padding-top-40 {
  padding-top: 40px !important; }

.padding-top-40 {
  padding-top: 40px; }

* + .padding-top-50,
* + .padding-top-medium {
  padding-top: 50px !important; }

.padding-top-50,
.padding-top-medium {
  padding-top: 50px; }

* + .padding-top-60 {
  padding-top: 60px !important; }

.padding-top-60 {
  padding-top: 60px; }

* + .padding-top-70 {
  padding-top: 70px !important; }

.padding-top-70 {
  padding-top: 70px; }

* + .padding-top-80 {
  padding-top: 80px !important; }

.padding-top-80 {
  padding-top: 80px; }

* + .padding-top-90 {
  padding-top: 90px !important; }

.padding-top-90 {
  padding-top: 90px; }

* + .padding-top-100,
* + .padding-top-large {
  padding-top: 100px !important; }

.padding-top-100,
.padding-top-large {
  padding-top: 100px; }

/* padding right */
.padding-right-off {
  padding: 0px !important; }

* + .padding-right,
* + .padding-right-10,
* + .padding-right-small {
  padding-right: 10px !important; }

.padding-right,
.padding-right-10,
.padding-right-small {
  padding-right: 10px; }

* + .padding-right-20 {
  padding-right: 20px !important; }

.padding-right-20 {
  padding-right: 20px; }

* + .padding-right-30 {
  padding-right: 30px !important; }

.padding-right-30 {
  padding-right: 30px; }

* + .padding-right-40 {
  padding-right: 40px !important; }

.padding-right-40 {
  padding-right: 40px; }

* + .padding-right-50,
* + .padding-right-medium {
  padding-right: 50px !important; }

.padding-right-50,
.padding-right-medium {
  padding-right: 50px; }

* + .padding-right-60 {
  padding-right: 60px !important; }

.padding-right-60 {
  padding-right: 60px; }

* + .padding-right-70 {
  padding-right: 70px !important; }

.padding-right-70 {
  padding-right: 70px; }

* + .padding-right-80 {
  padding-right: 80px !important; }

.padding-right-80 {
  padding-right: 80px; }

* + .padding-right-90 {
  padding-right: 90px !important; }

.padding-right-90 {
  padding-right: 90px; }

* + .padding-right-100,
* + .padding-right-large {
  padding-right: 100px !important; }

.padding-right-100,
.padding-right-large {
  padding-right: 100px; }

/* padding bottom */
.padding-bottom-off {
  padding: 0px !important; }

* + .padding-bottom,
* + .padding-bottom-10,
* + .padding-bottom-small {
  padding-bottom: 10px !important; }

.padding-bottom,
.padding-bottom-10,
.padding-bottom-small {
  padding-bottom: 10px; }

* + .padding-bottom-20 {
  padding-bottom: 20px !important; }

.padding-bottom-20 {
  padding-bottom: 20px; }

* + .padding-bottom-30 {
  padding-bottom: 30px !important; }

.padding-bottom-30 {
  padding-bottom: 30px; }

* + .padding-bottom-40 {
  padding-bottom: 40px !important; }

.padding-bottom-40 {
  padding-bottom: 40px; }

* + .padding-bottom-50,
* + .padding-bottom-medium {
  padding-bottom: 50px !important; }

.padding-bottom-50,
.padding-bottom-medium {
  padding-bottom: 50px; }

* + .padding-bottom-60 {
  padding-bottom: 60px !important; }

.padding-bottom-60 {
  padding-bottom: 60px; }

* + .padding-bottom-70 {
  padding-bottom: 70px !important; }

.padding-bottom-70 {
  padding-bottom: 70px; }

* + .padding-bottom-80 {
  padding-bottom: 80px !important; }

.padding-bottom-80 {
  padding-bottom: 80px; }

* + .padding-bottom-90 {
  padding-bottom: 90px !important; }

.padding-bottom-90 {
  padding-bottom: 90px; }

* + .padding-bottom-100,
* + .padding-bottom-large {
  padding-bottom: 100px !important; }

.padding-bottom-100,
.padding-bottom-large {
  padding-bottom: 100px; }

/* padding left */
.padding-left-off {
  padding: 0px !important; }

* + .padding-left,
* + .padding-left-10,
* + .padding-left-small {
  padding-left: 10px !important; }

.padding-left,
.padding-left-10,
.padding-left-small {
  padding-left: 10px; }

* + .padding-left-20 {
  padding-left: 20px !important; }

.padding-left-20 {
  padding-left: 20px; }

* + .padding-left-30 {
  padding-left: 30px !important; }

.padding-left-30 {
  padding-left: 30px; }

* + .padding-left-40 {
  padding-left: 40px !important; }

.padding-left-40 {
  padding-left: 40px; }

* + .padding-left-50,
* + .padding-left-medium {
  padding-left: 50px !important; }

.padding-left-50,
.padding-left-medium {
  padding-left: 50px; }

* + .padding-left-60 {
  padding-left: 60px !important; }

.padding-left-60 {
  padding-left: 60px; }

* + .padding-left-70 {
  padding-left: 70px !important; }

.padding-left-70 {
  padding-left: 70px; }

* + .padding-left-80 {
  padding-left: 80px !important; }

.padding-left-80 {
  padding-left: 80px; }

* + .padding-left-90 {
  padding-left: 90px !important; }

.padding-left-90 {
  padding-left: 90px; }

* + .padding-left-100,
* + .padding-left-large {
  padding-left: 100px !important; }

.padding-left-100,
.padding-left-large {
  padding-left: 100px; }

/*
==========================================================================
    # POSITION
==========================================================================
*/
[class*="position-center"],
[class*="position-top"],
[class*="position-right"],
[class*="position-bottom"],
[class*="position-left"] {
  position: absolute !important; }

.position-center {
  display: table;
  top: 50%;
  left: 50%;
  width: -moz-max-content;
  max-width: 100%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.position-center-left,
.position-center-right {
  top: 50%;
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.position-top-center,
.position-bottom-center {
  display: table;
  left: 50%;
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }

.position-center-right {
  right: 0; }

.position-center-left {
  left: 0; }

.position-top {
  top: 0;
  left: 0;
  right: 0; }

.position-top-right {
  top: 0;
  right: 0; }

.position-top-center {
  top: 0; }

.position-top-left {
  top: 0;
  left: 0; }

.position-right {
  top: 0;
  bottom: 0;
  right: 0; }

.position-bottom {
  bottom: 0;
  left: 0;
  right: 0; }

.position-bottom-right {
  bottom: 0;
  right: 0; }

.position-bottom-center {
  bottom: 0; }

.position-bottom-left {
  bottom: 0;
  left: 0; }

.position-left {
  top: 0;
  bottom: 0;
  left: 0; }

/* Theme */
/*
==========================================================================
    # THEME
==========================================================================
*/
html {
  font-size: 14px;
  line-height: 1.3;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%; }

body {
  color: #555;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5; }

a {
  color: #1976D2;
  text-decoration: none; }

a:hover {
  color: #2196F3; }

/*
==========================================================================
    # ACCORDION THEME
==========================================================================
*/
/* Variables */
/* Global */
.accordion-default .accordion-title {
  height: 55px;
  line-height: 55px;
  padding: 0 25px;
  font-family: "Open Sans", Roboto, Arial, Helvetica, sans-serif;
  font-weight: 400;
  background-color: #f5f5f5;
  color: #888888;
  cursor: pointer; }
  .accordion-default .accordion-title:hover {
    background-color: #eeeeee;
    color: #888888; }
  .accordion-default .accordion-title a,
  .accordion-default .accordion-title a:hover {
    color: inherit; }

.accordion-default > *.active .accordion-title {
  font-weight: 500;
  background-color: #81C784;
  color: #ffffff; }
  .accordion-default > *.active .accordion-title:hover {
    background-color: #96E096;
    color: #ffffff; }

.accordion-default .accordion-content {
  margin-top: 0px;
  padding: 25px;
  border: 1px solid #eaeaea;
  border-top: none; }

.accordion-default > *.active .accordion-content {
  border: 1px solid #dddddd;
  border-top: none; }

.accordion-default.accordion-text .accordion-title {
  font-weight: 400;
  border-radius: 0px;
  color: #888888; }
  .accordion-default.accordion-text .accordion-title:hover {
    color: #424242; }

.accordion-default.accordion-text > *.active .accordion-title {
  font-weight: 500;
  color: #424242; }

/*
==========================================================================
    # ANIMATION THEME
==========================================================================
*/
/*
==========================================================================
    # BADGE THEME
==========================================================================
*/
/* Variables */
/* Global */
.badge, .card-badge {
  font-family: "Open Sans", Roboto, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 500; }

.badge-default {
  color: #424242;
  background-color: #f5f5f5;
  border: none; }

/*
==========================================================================
    # BASE THEME
==========================================================================
*/
/* Variables */
/* Global */
hr {
  border-top: none;
  border-bottom: 1px solid #eee; }

.link-muted {
  color: #888888; }
  .link-muted:hover {
    color: #424242; }

/*
==========================================================================
    # BREADCRUMBS THEME
==========================================================================
*/
/* Variables */
/* Global */
.breadcrumb li:not(.disabled) a {
  color: #888888; }

.breadcrumb li:not(.disabled) a:hover {
  color: #424242;
  text-decoration: none; }

.breadcrumb li:nth-child(n+2)::before {
  color: #888888; }

.breadcrumb li.disabled a {
  color: #999999; }

/*
==========================================================================
    # BUTTON THEME
==========================================================================
*/
/* Variables */
/* Global */
.button {
  font-family: "Open Sans", Roboto, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 12px;
  line-height: 40px;
  text-align: center; }

.button.button-default {
  border: none;
  background-color: #f5f5f5;
  color: #424242; }

.button.button-default:not(.disabled):hover {
  border: none;
  background-color: #eaeaea;
  color: inherit; }

/* Button bordered */
.button.button-bordered {
  border: 1px solid #e5e5e5;
  background-color: transparent;
  color: inherit; }

.button.button-bordered:not(.button-disabled):hover {
  border: 1px solid #b2b2b2;
  background-color: transparent;
  color: inherit; }

/* Button primary */
.button.button-primary {
  border: 1px solid transparent;
  background-color: #81C784;
  color: #ffffff; }

.button.button-primary:not(.button-disabled):hover {
  border: 1px solid transparent;
  background-color: #96E096;
  color: #ffffff; }

/* Button secondary */
.button.button-secondary {
  border: 1px solid transparent;
  background-color: #353535;
  color: #ffffff; }

.button.button-secondary:not(.button-disabled):hover {
  border: 1px solid transparent;
  background-color: #424242;
  color: #ffffff; }

/* Button danger */
.button.button-danger {
  border: 1px solid transparent;
  background-color: #e53935;
  color: #ffffff; }

.button.button-danger:not(.button-disabled):hover {
  border: 1px solid transparent;
  background-color: #d32f2f;
  color: #ffffff; }

/* Button disabled */
.button.button-default.button-disabled button.button.button-default[disabled] {
  border: 1px solid transparent;
  background-color: #f5f5f5;
  color: #999; }

/*
==========================================================================
    # CARD THEME
==========================================================================
*/
/* Variables */
/* Global */
.card-default {
  background-color: #fff;
  border: 1px solid #f3f3f3; }
  .card-default .card-header {
    border-bottom: 1px solid #efefef; }
  .card-default .card-footer {
    border-top: 1px solid #efefef; }

/*
==========================================================================
    # COLUMN THEME
==========================================================================
*/
/*
==========================================================================
    # COMMENT THEME
==========================================================================
*/
/*
==========================================================================
    # CONTAINER THEME
==========================================================================
*/
/*
==========================================================================
    # DESCRIPTION LIST
==========================================================================
*/
/*
==========================================================================
    # DROPDOWN THEME
==========================================================================
*/
/* Variables */
/* Global */
.dropdown-default {
  padding: 25px;
  background-color: white;
  border: 1px solid #efefef; }
  .dropdown-default .nav {
    min-width: 180px; }

/*
==========================================================================
    # FORM THEME
==========================================================================
*/
/* Variables */
/* Global */
/*
==========================================================================
    # BUTTON
==========================================================================
*/
/* Variables */
/* Global */
.button {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -moz-transition: 0.1s ease-in-out;
  -o-transition: 0.1s ease-in-out;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  display: inline-block;
  margin-bottom: 0;
  padding: 1px 20px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  touch-action: manipulation;
  background-image: none;
  white-space: nowrap;
  border-radius: 5px;
  border: 1px solid transparent;
  outline: none;
  cursor: pointer; }
  .button.button-text {
    display: inline-block;
    padding: 0px;
    border: none;
    line-height: inherit;
    background: transparent;
    color: inherit;
    cursor: pointer; }
  .button.button-squared {
    border-radius: 0px; }
  .button.button-rounded {
    border-radius: 50px; }
  .button.button-small {
    line-height: 30px;
    padding: 0 15px; }
  .button.button-large {
    line-height: 55px;
    padding: 0 40px; }
  .button:hover {
    text-decoration: none;
    z-index: 1; }
  .button:focus {
    outline: none; }
  .button[disabled], .button.button-disabled {
    pointer-events: none; }

/* Button group */
.button-group {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle; }

.button-group .button {
  border-radius: 0px; }

.button-group .button-bordered:not(:first-child) {
  border-radius: 0px;
  margin-left: -1px; }

.button-group .button:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px; }

.button-group .button:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px; }

.button-group.button-squared .button:first-child {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px; }

.button-group.button-squared .button:last-child {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px; }

.button-group.button-rounded .button:first-child {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px; }

.button-group.button-rounded .button:last-child {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px; }

.form-legend {
  display: block;
  width: 100%;
  font-size: 18px; }

.input,
.select,
.textarea {
  display: inline-block;
  max-width: 100%;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  font-weight: 400;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }
  .input[disabled],
  .select[disabled],
  .textarea[disabled] {
    background-color: #eeeeee !important;
    pointer-events: none; }

.input,
.select:not([multiple]):not([size]) {
  display: inline-block;
  height: 40px;
  padding: 0 15px;
  vertical-align: middle; }

.input.form-success,
.textarea.form-success {
  border-color: #43A047;
  color: #43A047; }

.input.form-danger,
.textarea.form-danger {
  border-color: #E53935;
  color: #E53935; }

.select {
  padding: 0 20px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4QoZECMyHDXnogAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAABD0lEQVQ4y+2TsUoEQQyGv4kWesUdFiLszo6dnY2I2IgPIT6BneC9mr6DNhaC2lxhd7PrITay4h3bTCxcZRj2Vh/AHwKT5E9ImD/QAedyAIoiu7A2O2/fXVQMS+BcvqPKY+vuel89/bmBc3YQQiiNMRtt6BXY9r5a9Db4GtOsAdfAfsK9BY6BxvvqJ7gSM+r6ndFoeAacAjXwEdkmMPO+uo9rVtORVLk0hisAYwyqGuU08I/fdVAU+VZfgffVS+xLB+cEmAAPiU3aXJ+QckRkPYRwA+wl3DvgCFjEQuqUsrXZQERmqjps//9NRPLptJyn3K4VKMvnuWo4ABqgETGHXcVL8X261mZja7NxfOIpPgFty1v9OHKNmwAAAABJRU5ErkJggg==");
  background-repeat: no-repeat;
  background-position: 99% 50%; }

/* IE Fix */
select::-ms-expand {
  display: none; }

.textarea {
  padding: 15px; }
  .textarea.form-squared {
    border-radius: 0; }
  .textarea.form-rounded {
    border-radius: 5px; }
  .textarea.form-small {
    font-size: 14px; }
  .textarea.form-large {
    font-size: 18px; }

.input.form-squared,
.select.form-squared {
  border-radius: 0; }

.input.form-rounded,
.select.form-rounded {
  border-radius: 50px; }

.input.form-small,
.select.form-small {
  height: 30px !important;
  font-size: 14px; }

.input.form-large,
.select.form-large {
  height: 55px !important;
  font-size: 18px; }

/* Radio & Checkbox */
.radio-label,
.checkbox-label {
  display: inline-block; }

/* Radio */
.radio:not(:checked), .radio:checked {
  position: absolute;
  left: -9999px; }

.radio:not(:checked) + label,
.radio:checked + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer; }

.radio:not(:checked) + label:before,
.radio:checked + label:before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 50%; }

.radio:checked + label:before {
  background-color: #81C784; }

.radio:not(:checked) + label:after,
.radio:checked + label:after {
  content: ' ';
  position: absolute;
  top: 3px;
  left: 4px;
  font-size: 14px;
  color: #ffffff;
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ffffff;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s; }

.radio:not(:checked) + label:after {
  opacity: 0;
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0); }

.radio:checked + label:after {
  opacity: 1;
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1); }

.radio:disabled:not(:checked) + label:before,
.radio:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbbbbb;
  background-color: #dddddd; }

.radio:disabled:checked + label:after {
  color: #999999; }

.radio:disabled + label {
  color: #aaaaaa; }

/* Checkbox */
.checkbox:not(:checked), .checkbox:checked {
  position: absolute;
  left: -9999px; }

.checkbox:not(:checked) + label,
.checkbox:checked + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer; }

.checkbox:not(:checked) + label:before,
.checkbox:checked + label:before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 5px; }

.checkbox:checked + label:before {
  background-color: #81C784; }

.checkbox:not(:checked) + label:after,
.checkbox:checked + label:after {
  content: '✓';
  position: absolute;
  top: 3px;
  left: 5px;
  height: 12px;
  line-height: 12px;
  font-size: 14px;
  color: #ffffff;
  border: none;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s; }

.checkbox:not(:checked) + label:after {
  opacity: 0;
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0); }

.checkbox:checked + label:after {
  opacity: 1;
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1); }

.checkbox:disabled:not(:checked) + label:before,
.checkbox:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbbbbb;
  background-color: #dddddd; }

.checkbox:disabled:checked + label:after {
  color: #999999; }

.checkbox:disabled + label {
  color: #aaaaaa; }

/* Range */
.range {
  -webkit-appearance: none;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none; }
  .range:focus {
    outline: none !important; }
  .range::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    box-shadow: 1px 1px 1px transparent, 0px 0px 1px rgba(13, 13, 13, 0);
    background: #fafafa;
    border-radius: 1.3px;
    border: 0.1px solid rgba(220, 220, 220, 0.48); }
  .range::-webkit-slider-thumb {
    -webkit-appearance: none;
    box-shadow: 0.9px 0.9px 1px rgba(0, 0, 49, 0), 0px 0px 0.9px rgba(0, 0, 75, 0);
    border: 1px solid #dcdcdc;
    height: 16px;
    width: 16px;
    border-radius: 50px;
    background: #ffffff;
    cursor: pointer;
    margin-top: -4px; }
  .range::-moz-range-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    box-shadow: 1px 1px 1px transparent, 0px 0px 1px rgba(13, 13, 13, 0);
    background: #fafafa;
    border-radius: 1.3px;
    border: 0.1px solid rgba(220, 220, 220, 0.48); }
  .range::-moz-range-thumb {
    box-shadow: 0.9px 0.9px 1px rgba(0, 0, 49, 0), 0px 0px 0.9px rgba(0, 0, 75, 0);
    border: 1px solid #dcdcdc;
    height: 16px;
    width: 16px;
    border-radius: 50px;
    background: #ffffff;
    margin-top: 0px;
    cursor: pointer; }
  .range::-ms-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent; }
  .range::-ms-fill-lower {
    background: #ededed;
    border: 0.1px solid rgba(220, 220, 220, 0.48);
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px transparent, 0px 0px 1px rgba(13, 13, 13, 0); }
  .range::-ms-fill-upper {
    background: #fafafa;
    border: 0.1px solid rgba(220, 220, 220, 0.48);
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px transparent, 0px 0px 1px rgba(13, 13, 13, 0); }
  .range::-ms-thumb {
    box-shadow: 0.9px 0.9px 1px rgba(0, 0, 49, 0), 0px 0px 0.9px rgba(0, 0, 75, 0);
    border: 1px solid #dcdcdc;
    height: 16px;
    width: 16px;
    border-radius: 50px;
    background: #ffffff;
    margin-top: 0px;
    cursor: pointer; }
  .range:focus::-ms-fill-lower {
    background: #fafafa; }
  .range:focus::-ms-fill-upper {
    background: #ffffff; }

/* Icon field */
.iconfield {
  position: relative;
  display: inline-block;
  width: 100%; }
  .iconfield .icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
    width: 40px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    pointer-events: none; }
  .iconfield .input {
    padding-left: 45px !important;
    margin-bottom: 0; }
  .iconfield.icon-right .icon {
    left: initial;
    right: 0; }
  .iconfield.icon-right .input {
    padding: 0 40px 0 15px; }

/* Merged form */
.merged-form {
  height: 40px;
  line-height: 40px; }
  .merged-form .input,
  .merged-form .button {
    margin: 0px;
    width: 100%;
    width: 100%;
    line-height: normal;
    vertical-align: bottom;
    height: 40px;
    display: inline-block; }
    .merged-form .input.button-bordered,
    .merged-form .button.button-bordered {
      border-left: none; }
  .merged-form .input {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important; }
  .merged-form .button {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding: 0; }
  .merged-form.form-squared .input,
  .merged-form.form-squared .button {
    border-radius: 0; }
  .merged-form.form-rounded .input,
  .merged-form.form-rounded .button {
    border-radius: 50px; }
  .merged-form.form-small {
    height: 30px !important;
    line-height: 30px; }
    .merged-form.form-small .input {
      font-size: 14px; }
    .merged-form.form-small .input,
    .merged-form.form-small .button {
      line-height: 30px;
      height: 30px; }
  .merged-form.form-large {
    height: 55px !important;
    line-height: 55px; }
    .merged-form.form-large .input {
      font-size: 18px; }
    .merged-form.form-large .input,
    .merged-form.form-large .button {
      line-height: 55px;
      height: 55px; }
  @media (max-width: 768px) {
    .merged-form {
      display: inline-table; }
      .merged-form .input {
        border-top-right-radius: 5px !important;
        border-bottom-right-radius: 5px !important; }
      .merged-form .button {
        margin-top: 15px;
        border-top-left-radius: 5px !important;
        border-bottom-left-radius: 5px !important; }
      .merged-form.form-squared .input {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important; }
      .merged-form.form-squared .button {
        margin-top: 15px;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important; }
      .merged-form.form-rounded .input {
        border-top-right-radius: 50px !important;
        border-bottom-right-radius: 50px !important; }
      .merged-form.form-rounded .button {
        margin-top: 15px;
        border-top-left-radius: 50px !important;
        border-bottom-left-radius: 50px !important; } }
  @media (max-width: 576px) {
    .merged-form {
      width: 100% !important; } }

/* File form */
.file-form {
  position: relative; }
  .file-form input[type=file] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden;
    font-size: 500px;
    z-index: 1;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
  .file-form .button {
    position: initial;
    width: 100%;
    height: 40px;
    line-height: 40px; }
  .file-form.form-squared .button {
    border-radius: 0; }
  .file-form.form-rounded .button {
    border-radius: 50px; }
  .file-form.form-small .button {
    line-height: 30px;
    height: 30px; }
  .file-form.form-large .button {
    line-height: 55px;
    height: 55px; }

/*
==========================================================================
    # GRID THEME
==========================================================================
*/
/*
==========================================================================
    # ICON THEME
==========================================================================
*/
/*
==========================================================================
    # LABEL THEME
==========================================================================
*/
/* Variables */
/* Global */
.label {
  font-family: "Open Sans", Roboto, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  background-color: #81C784;
  border: none; }
  .label.label-secondary {
    color: #ffffff;
    background-color: #353535;
    border: none; }
  .label.label-warning {
    color: #ffffff;
    background-color: #FB8C00;
    border: none; }
  .label.label-danger {
    color: #ffffff;
    background-color: #e53935;
    border: none; }
  .label.label-success {
    color: #ffffff;
    background-color: #43A047;
    border: none; }

/*
==========================================================================
    # LIGHTBOX THEME
==========================================================================
*/
/* Variables */
/* Global */
.win-lightbox {
  background: #000000;
  color: #ffffff; }
  .win-lightbox .lightbox-close-bar {
    background-color: rgba(0, 0, 0, 0.4); }
    .win-lightbox .lightbox-close-bar .lightbox-close {
      color: #ffffff; }

/*
==========================================================================
    # LIST THEME
==========================================================================
*/
/* Variables */
/* Global */
.list {
  margin: 0px;
  padding: 0px;
  list-style: none; }
  .list .list {
    padding-left: 40px; }
  .list .list-divider {
    border-bottom: 1px solid #efefef; }
  .list .list-header {
    color: #424242;
    font-weight: 500;
    font-family: "Open Sans", Roboto, Arial, Helvetica, sans-serif;
    font-size: 0.88rem;
    text-transform: uppercase; }
  .list.list-striped > *:nth-of-type(2n+1) {
    background-color: #F5F5F5;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef; }

/*
==========================================================================
    # MODAL
==========================================================================
*/
/* Variables */
/* Global */
.modal .modal-wrapper {
  background: #ffffff; }
  .modal .modal-wrapper .modal-header {
    position: relative;
    padding: 15px 30px;
    border-bottom: 1px solid #e5e5e5; }
  .modal .modal-wrapper .modal-close-default {
    width: 60px;
    height: 100%;
    font-size: 20px;
    background-color: transparent;
    color: #424242;
    z-index: 110 !important;
    border: 0; }
  .modal .modal-wrapper .modal-body {
    padding: 30px 30px; }
  .modal .modal-wrapper .modal-footer {
    padding: 15px 30px;
    border-top: 1px solid #e5e5e5;
    text-align: right; }

/*
==========================================================================
    # NAV THEME
==========================================================================
*/
/* Variables */
/* Global */
.nav-default li a {
  color: #888888; }

.nav-default a:hover,
.nav-default li.active a {
  color: #424242; }

.nav > li.nav-divider {
  border-bottom: 1px solid #efefef; }

.nav-default .nav-header {
  color: #424242;
  font-weight: 500;
  font-family: "Open Sans", Roboto, Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase; }

/*
==========================================================================
    # NAVBAR THEME
==========================================================================
*/
/* Variables */
/* Global */
.navbar-nav li a,
.navbar-nav li .button-text {
  color: #888888; }

.navbar-nav a:hover,
.navbar-nav li:hover .button-text,
.navbar-nav li.active a,
.navbar-nav li.active .button-text {
  color: #424242; }

.navbar-nav li .button-text {
  text-transform: none;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  vertical-align: baseline; }

.navbar-nav li button.button-text {
  cursor: default; }

/*
==========================================================================
    # OFFCANVAS THEME
==========================================================================
*/
/* Variables */
/* Global */
/*
==========================================================================
    # OVERLAY THEME
==========================================================================
*/
/* Variables */
/* Global */
.overlay, .modal .modal-overlay,
.background-overlay {
  padding: 40px; }

/*
==========================================================================
    # PAGINATION THEME
==========================================================================
*/
/* Variables */
/* Global */
.pagination li a {
  padding: 10px 20px;
  color: #888888; }
  .pagination li a:hover {
    color: #424242; }

.pagination li.active a {
  color: #424242; }

.pagination .pagination-prev::before,
.pagination .pagination-next::before {
  font-family: FontAwesome; }

.pagination .pagination-prev::before {
  content: ""; }

.pagination .pagination-next::before {
  content: ""; }

/*
==========================================================================
    # PARALLAX THEME
==========================================================================
*/
/* Variables */
/* Global */
/*
==========================================================================
    # PROGRESS BAR THEME
==========================================================================
*/
/* Variables */
/* Global */
.progress-bar {
  height: 20px;
  border-radius: 5px;
  background-color: #848484; }
  .progress-bar.squared {
    border-radius: 0px; }
  .progress-bar.rounded {
    border-radius: 50px; }
  .progress-bar .progression {
    font-size: 14px;
    background-color: #81C784;
    text-align: center;
    color: #ffffff; }

/*
==========================================================================
    # SECTION THEME
==========================================================================
*/
/*
==========================================================================
    # SUBNAV THEME
==========================================================================
*/
/* Variables */
/* Global */
.subnav li a {
  color: #888888; }

.subnav a:hover,
.subnav li.active a {
  color: #424242; }

/*
==========================================================================
    # TAB THEME
==========================================================================
*/
/* Variables */
/* Global */
.tab-header {
  background-color: transparent;
  /* Tab Bottom */
  /* Tab Left */
  /* Tab Right */ }
  .tab-header:not(.tab-bottom):not(.tab-left):not(.tab-right)::before {
    border-bottom: 1px solid #efefef; }
  .tab-header > * {
    text-align: center; }
    .tab-header > * > a {
      padding: 10px 20px;
      text-transform: uppercase;
      line-height: 20px;
      color: #999; }
    .tab-header > *.active > a {
      color: #424242;
      background-color: transparent; }
    .tab-header > *:hover > a {
      color: #424242;
      background-color: transparent; }
    .tab-header > *.disabled {
      color: #888888;
      background-color: transparent; }
  .tab-header.tab-bottom::before {
    border-top: 1px solid #efefef; }
  .tab-header.tab-bottom > * {
    text-align: center; }
  .tab-header.tab-left::before {
    border-right: 1px solid #efefef; }
  .tab-header.tab-left > * {
    text-align: right; }
  .tab-header.tab-right::before {
    border-left: 1px solid #efefef; }
  .tab-header.tab-right > * {
    text-align: left; }

.tab-content {
  background-color: transparent; }
  .tab-content > * {
    padding: 20px; }

/*
==========================================================================
    # TABLE THEME
==========================================================================
*/
/* Variables */
/* Global */
.table {
  text-align: left; }
  .table th {
    padding: 15px 10px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: inherit;
    /* Fix IE */ }
  .table td {
    padding: 15px 10px; }
  .table.table-divider > tr:not(:first-child),
  .table.table-divider > :not(:first-child) > tr,
  .table.table-divider > :first-child > tr:not(:first-child) {
    border-top: 1px solid #efefef; }
  .table.table-divider tbody tr:last-child {
    border-bottom: 1px solid #efefef; }
  .table.table-striped tbody tr:nth-child(2n+1) {
    background-color: #f8f8f8; }
  .table.table-hover tbody tr:hover {
    background-color: #f8f8f8; }

/*
==========================================================================
    # TRANSITION THEME
==========================================================================
*/
/*
==========================================================================
    # TYPOGRAPHY THEME
==========================================================================
*/
/* Variables */
/* Global */
.text-meta {
  color: #888888; }

/*
==========================================================================
    # UTILITY THEME
==========================================================================
*/
