@import "ie.1.css";

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-eercast:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-snowflake-o:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* 
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */

.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  display: none;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */

.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*! formstone v0.7.18 [number.css] 2015-08-30 | MIT License | formstone.it */

/**
	 * @class
	 * @name .fs-number-element
	 * @type element
	 * @description Target elmement
	 */

/**
	 * @class
	 * @name .fs-number
	 * @type element
	 * @description Base widget class
	 */

/**
	 * @class
	 * @name .fs-number.fs-number-disabled
	 * @type modifier
	 * @description Indicates disabled state
	 */

.fs-number {
  position: relative;
  border-radius: 3px;
  margin: 0 0 10px 0;
  overflow: hidden;
  /**
		 * @class
		 * @name .fs-number-arrow
		 * @type element
		 * @description Arrow elmement
		 */
  /**
		 * @class
		 * @name .fs-number-arrow:after
		 * @type element
		 * @description Arrow icon
		 */
  /**
		 * @class
		 * @name .fs-number-arrow.fs-number-up
		 * @type modifier
		 * @description Indicates up state
		 */
  /**
		 * @class
		 * @name .fs-number-arrow.fs-number-down
		 * @type modifier
		 * @description Indicates up state
		 */
}

.fs-number,
.fs-number:after,
.fs-number:before,
.fs-number *,
.fs-number *:after,
.fs-number *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: none;
  transition: none;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.fs-number-element {
  width: 100%;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 3px;
  color: #222222;
  font-size: 15px;
  line-height: 1;
  overflow: hidden;
  padding: 0 10px;
  -moz-appearance: textfield;
}

.fs-number-element::-webkit-inner-spin-button,
.fs-number-element::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.fs-number-element::-ms-clear {
  display: none;
}

.fs-number-element:focus {
  background-color: #ffffff;
}

.fs-number-disabled .fs-number-element {
  background: #ffffff;
  border-color: #cccccc;
  color: #cccccc;
}

.fs-number-arrow {
  width: 25px;
  height: 50%;
  position: absolute;
  right: 0;
  z-index: 1;
  background: #ffffff;
  border: 1px solid #cccccc;
  cursor: pointer;
  display: block;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
}

.no-opacity .fs-number-arrow {
  text-indent: -999999px;
}

.fs-number-arrow:focus {
  outline: none;
}

.fs-number-arrow:after {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  content: '';
  display: block;
  margin: auto;
}

.fs-number-arrow.fs-number-up {
  top: 0;
}

.fs-number-arrow.fs-number-up:after {
  border-bottom: 5px solid #666666;
}

.fs-number-arrow.fs-number-down {
  bottom: 0;
  border-top: none;
}

.fs-number-arrow.fs-number-down:after {
  border-top: 5px solid #666666;
}

.fs-number-disabled .fs-number-arrow {
  cursor: default;
}

.fs-number-disabled .fs-number-arrow:after {
  border-top-color: #cccccc;
  border-bottom-color: #cccccc;
}

/*
	@media screen and (min-width: 740px) {
		.stepper:hover .stepper-input { background-color: #fff; }

		.stepper .stepper-step:hover { background-color: #F9F9F9; }

		.stepper.disabled .stepper-arrow { background: #fff; border-color: #eee; cursor: default; }
	}

	.stepper.disabled .stepper-input { background: #fff; border-color: #eee; color: #ccc; }
	.stepper.disabled .stepper-arrow { background: #fff; border-color: #eee; cursor: default; }
*/

/* Preload images */

body:after {
  content: url("assets/images/lightbox/close.png") url("assets/images/lightbox/loading.gif") url("assets/images/lightbox/prev.png") url("assets/images/lightbox/next.png");
  display: none;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  border-radius: 3px;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-container {
  padding: 4px;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url("assets/images/lightbox/loading.gif") no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev,
.lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url("assets/images/lightbox/prev.png") left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url("assets/images/lightbox/next.png") right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url("assets/images/lightbox/close.png") top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.fsr-container {
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}

.fsr-image {
  position: absolute;
}

.fsr-hidden {
  display: none;
}

/* ------------------------------------------------------------ *	Bar
\* ------------------------------------------------------------ */

.bar {
  background: #fbfbfb;
  border-bottom: 1px solid #edebf5;
  color: #7b7983;
  /*  Mobile  */
}

.bar i {
  font-size: 18px;
}

.bar .bar-phone {
  float: left;
  margin: 0;
  font-size: 14px;
  line-height: 40px;
  padding-top: 4px;
  color: #27262c;
}

.bar .bar-phone i {
  vertical-align: middle;
  margin: 0 7px 0 0;
  color: #5b5965;
}

.bar .bar-phone a {
  color: #27262c;
}

.bar .bar-socials {
  float: right;
}

.bar .bar-socials ul {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  list-style: none outside none;
  overflow: hidden;
}

.bar .bar-socials li {
  float: left;
  line-height: 40px;
}

.bar .bar-socials li.header-actions a {
  margin: 0;
  min-width: 122px;
  border-left: none;
  background-color: #fa6f1c;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 2px 0;
}

.bar .bar-socials li.header-actions a:hover {
  background-color: #27262c;
}

.bar .bar-socials a {
  display: block;
  padding-top: 4px;
  width: 50px;
  border-left: 1px solid #edebf5;
  text-align: center;
  color: #7b7983;
}

.bar .bar-socials a {
  -webkit-transition: background .3s ease-out;
  transition: background .3s ease-out;
}

.bar .bar-socials a:hover {
  background: #edebf5;
}

@media (max-width: 767px) {
  .bar .bar-phone {
    float: none;
    padding: 9px 0;
    text-align: center;
    line-height: 1;
  }

  .bar .bar-socials {
    float: none;
    margin: 0 -15px;
    list-style: none outside none;
    text-align: center;
  }

  .bar .bar-socials li {
    line-height: 30px;
  }

  .bar .bar-socials a {
    width: 30px;
    padding-top: 0;
    border: 0;
  }
}

/* ------------------------------------------------------------ *	Header
\* ------------------------------------------------------------ */

.header {
  position: relative;
  z-index: 300;
}

.header .columns {
  position: static;
}

.header .header-logo {
  float: left;
  margin: 32px 0 0 0;
  font-size: 24px;
}

.header .header-logo img {
  width: 30%;
  height: auto;
}

.header .header-logo .site-description {
  color: #27262c;
  border-left: 1px solid #eaeaeb;
  padding-left: 15px;
  margin-left: 15px;
  font-size: 16px;
}

.header .header-inner {
  float: right;
  margin-top: 31px;
}

/* Fullscreen */

.fsr-container {
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}

.fsr-image {
  position: absolute;
}

.fsr-hidden {
  display: none;
}

/* ------------------------------------------------------------ *	Section Featured
\* ------------------------------------------------------------ */

.section-featured {
  padding: 65px 0 0px;
  /*  Mobile  */
}

.section-featured .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.section-featured .owl-dot {
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  border-radius: 50%;
  background: #a6a6a9;
}

.section-featured .owl-dot:hover,
.section-featured .owl-dot.active {
  background: #000;
}

.section-featured .section-head {
  margin-bottom: 42px;
  text-align: center;
}

.section-featured .section-head .section-title {
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.section-featured .section-head .section-image {
  margin-bottom: 10px;
  color: #fa6f1c;
}

.section-featured .section-head .section-image:before,
.section-featured .section-head .section-image:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 1px;
  margin: 0 6px;
  background: #fa6f1c;
}

.section-featured .section-head p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 2.2;
}

@media (max-width: 767px) {
  .section-featured {
    padding: 35px 0;
  }

  .section-featured .section-head .section-title {
    font-size: 18px;
  }

  .section-featured .section-head p {
    font-size: 12px;
    line-height: 1.8;
  }

  .section-featured .section-head p br {
    display: none;
  }
}

/* ------------------------------------------------------------ *	Section Text Widget
\* ------------------------------------------------------------ */

.custom-widgets-home {
  margin: 65px 0 0px;
}

.footer .custom-widgets-home {
  margin: 0px;
}

/* ------------------------------------------------------------ *	Section Sponsor
\* ------------------------------------------------------------ */

.wpl-section-sponsor {
  position: relative;
  background: #27262c;
  margin: 65px 0 0px;
  /*  Tablet Portrait  */
  /*  Mobile  */
}

.wpl-section-sponsor .section-inner {
  padding: 79px 0 65px 50px;
}

.wpl-section-sponsor .section-head {
  margin-bottom: 20px;
}

.wpl-section-sponsor .section-head h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.wpl-section-sponsor .section-head h2 {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.wpl-section-sponsor .section-head h2:after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  margin: 19px 0 25px;
  background: #fa6f1c;
}

.wpl-section-sponsor .section-head p {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 2.2;
  color: #a6a6a9;
  margin-bottom: 0;
}

.wpl-section-sponsor .section-body {
  margin-bottom: 43px;
}

.wpl-section-sponsor .section-body p {
  line-height: 1.95;
  color: #a6a6a9;
}

.wpl-section-sponsor .section-foot .button {
  width: 172px;
}

.wpl-section-sponsor .section-foot .section-foot-separator {
  display: inline-block;
  vertical-align: middle;
  width: 70px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.wpl-section-sponsor .section-foot .section-foot-contacts {
  display: inline-block;
  vertical-align: middle;
}

.wpl-section-sponsor .section-foot .section-foot-contacts span {
  display: block;
  margin-bottom: 1px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}

.wpl-section-sponsor .section-foot .section-foot-contacts a {
  color: #fa6f1c;
  font-weight: bold;
  text-transform: uppercase;
}

.wpl-section-sponsor .section-foot .section-foot-contacts a:hover {
  color: #fff;
}

@media (max-width: 1023px) {
  .wpl-section-sponsor .section-inner {
    padding: 35px 0;
  }
}

@media (max-width: 767px) {
  .wpl-section-sponsor .section-head h2 {
    font-size: 18px;
  }

  .wpl-section-sponsor .section-head p {
    font-size: 12px;
    line-height: 1.8;
  }
}

/* ------------------------------------------------------------ *	Section Updates
\* ------------------------------------------------------------ */

.section-updates {
  padding: 94px 0 36px;
  /*  Mobile  */
}

@media (max-width: 767px) {
  .section-updates {
    padding: 35px 0;
  }
}

/* ------------------------------------------------------------ *	Section News
\* ------------------------------------------------------------ */

.section-news {
  padding: 65px 0 0px;
  /*  Mobile  */
}

.section-news .section-title {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-news .section-title:after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  margin: 16px 0 35px;
  background: #fa6f1c;
}

.section-news .section-foot {
  padding: 40px 0 0 0;
}

.section-news .section-foot .section-foot-title {
  margin: 3px 0px 30px 0;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  overflow: hidden;
}

.section-news .section-foot .section-foot-title span {
  float: left;
  margin-right: 8px;
}

.section-news .section-foot .section-foot-title:after {
  content: '';
  position: relative;
  top: 11px;
  display: block;
  overflow: hidden;
  height: 1px;
  background: #dddbe8;
}

@media (max-width: 767px) {
  .section-news .section-foot .section-foot-title {
    margin-right: 0;
  }
}

/* ------------------------------------------------------------ *	Section Projects
\* ------------------------------------------------------------ */

.section-featured.projects {
  padding: 65px 0 0px;
}

.section-featured.projects .slide-overlay-inner a i {
  color: #fff;
  font-size: 25px;
}

.section-featured.projects .cptlist-list-meta {
  margin-bottom: 10px;
  color: #27262c;
}

.section-featured.projects .cptlist-list-meta i {
  margin-right: 5px;
}

/* ------------------------------------------------------------ *	Section Upcoming Event
\* ------------------------------------------------------------ */

.section-upcoming-event {
  position: relative;
  padding: 65px 0 0px;
  /*  Tablet Portrait  */
  /*  Mobile  */
}

.section-upcoming-event:before {
  content: '';
  position: absolute;
  left: -15px;
  top: -15px;
  bottom: 0;
  width: 1px;
  background: #dddbe8;
}

.section-upcoming-event .section-head {
  overflow: hidden;
}

.section-upcoming-event .section-head-actions {
  float: right;
}

.section-upcoming-event .section-head-actions .button {
  margin: 0;
}

.section-upcoming-event .section-title {
  margin-bottom: 0;
  float: left;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-upcoming-event .section-title:after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  margin: 16px 0 35px;
  background: #fa6f1c;
}

@media (max-width: 1023px) {
  .section-upcoming-event {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .section-upcoming-event .section-head {
    margin-bottom: 15px;
  }

  .section-upcoming-event .section-head-actions {
    float: none;
    margin-top: -15px;
  }

  .section-upcoming-event .section-title {
    float: none;
  }
}

/* ------------------------------------------------------------ *	Section Staff
\* ------------------------------------------------------------ */

.section-our-staff .section-head {
  padding: 70px 0 3px;
}

.section-our-staff .section-title {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-our-staff .section-title:after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  margin: 17px 0 35px;
  background: #fa6f1c;
}

/* ------------------------------------------------------------ *	Section Home page Content
\* ------------------------------------------------------------ */

.section-home-content {
  padding: 70px 0 3px;
}

/* ------------------------------------------------------------ *	Section Testimonials
\* ------------------------------------------------------------ */

.section-testimonials {
  padding: 65px 0 0;
  /*  Mobile  */
}

.section-testimonials .section-head {
  margin-bottom: 28px;
  text-align: center;
}

.section-testimonials .section-head .section-title {
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.section-testimonials .section-head .section-image {
  margin-bottom: 10px;
  color: #fa6f1c;
}

.section-testimonials .section-head .section-image:before,
.section-testimonials .section-head .section-image:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 1px;
  margin: 0 6px;
  background: #fa6f1c;
}

.section-testimonials .section-head p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 2.2;
}

@media (max-width: 767px) {
  .section-testimonials {
    padding: 35px 0 0;
  }

  .section-testimonials .section-head .section-title {
    font-size: 18px;
  }

  .section-testimonials .section-head p {
    font-size: 12px;
  }
}

/* ------------------------------------------------------------ *	Section Events
\* ------------------------------------------------------------ */

.section-events {
  padding: 65px 0 0px;
}

/* ------------------------------------------------------------ *	Section Staff
\* ------------------------------------------------------------ */

.section-staff {
  padding: 65px 0 0px;
  /*  Mobile  */
}

@media (max-width: 767px) {
  .section-staff {
    padding: 35px 0;
  }
}

/* ------------------------------------------------------------ *	Footer
\* ------------------------------------------------------------ */

.footer {
  color: #a6a6a9;
  /*  Tablet Portrait  */
  /*  Mobile  */
}

.footer .footer-section .footer-section-title {
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer .footer-section .footer-section-title:after {
  content: '';
  display: block;
  width: 46px;
  height: 1px;
  margin: 22px 0 40px;
  background: #fa6f1c;
}

.footer .footer-section .footer-section-body {
  overflow: hidden;
}

.footer .footer-section .footer-section-body > p {
  margin-bottom: 25px;
  letter-spacing: 0.025em;
}

.footer .footer-body {
  padding: 85px 0;
  background: #27262c url(assets/images/footer-bg.png) no-repeat center 0;
}

.footer .footer-body.custom-image {
  background-size: cover;
  background-position: center;
}

.footer .footer-body .widget {
  margin-bottom: 0;
}

.footer .footer-body .widget + .widget {
  margin-top: 15px;
}

.footer .footer-contacts {
  letter-spacing: 0.025em;
}

.footer .footer-contacts span {
  color: #fff;
}

.footer .footer-contacts p {
  margin: 0 0 12px;
}

.footer .footer-contacts a {
  color: inherit;
}

.footer .footer-contacts a:hover {
  color: #fff;
}

.footer .footer-contacts .fa {
  min-width: 14px;
  margin-right: 7px;
}

.footer .footer-bar {
  padding: 15px 0;
  background: #222126;
}

.footer .footer-credits {
  float: left;
  letter-spacing: 0.025em;
}

.footer .footer-credits p {
  margin: 0;
  line-height: 2.2;
}

.footer .footer-credits a {
  color: #fff;
}

.footer .footer-credits a:hover {
  opacity: .7;
}

.footer .footer-socials {
  float: right;
}

.footer .footer-socials ul {
  margin: 0;
  list-style: none outside none;
  overflow: hidden;
}

.footer .footer-socials li {
  float: left;
}

.footer .footer-socials li + li {
  margin-left: 24px;
}

.footer .footer-socials a {
  display: block;
  padding: 0 3px;
  color: inherit;
  font-size: 18px;
}

.footer .footer-socials a {
  -webkit-transition: color .2s ease-out;
  transition: color .2s ease-out;
}

.footer .footer-socials a:hover {
  color: #fff;
}

@media (max-width: 1023px) {
  .footer .footer-section {
    margin-bottom: 30px;
  }

  .footer .footer-section .footer-section-title:after {
    margin: 10px 0;
  }

  .footer .footer-section .footer-section-body > p {
    margin-bottom: 10px;
  }

  .footer .footer-body {
    padding: 40px 0;
  }

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

@media (max-width: 767px) {
  .footer .footer-credits,
  .footer .footer-socials {
    float: none;
    text-align: center;
  }

  .footer .footer-credits ul,
  .footer .footer-socials ul {
    display: inline-block;
    vertical-align: top;
  }

  .footer .footer-credits p {
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .footer .footer-body {
    padding-bottom: 0;
  }
}

/* ------------------------------------------------------------ *	Main
\* ------------------------------------------------------------ */

.main {
  /*  Mobile  */
}

.main .main-head {
  position: relative;
  height: 210px;
  background: #dfd5cc;
}

.main .main-head .main-head-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.main .main-head .main-head-content {
  position: relative;
  z-index: 10;
  padding-top: 60px;
}

.main .main-head .main-title {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.main .main-head .main-title.main-title-alt {
  color: #fff;
}

@media (max-width: 767px) {
  .main .main-head {
    height: 160px;
  }

  .main .main-head .main-head-content {
    padding-top: 20px;
  }

  .main .main-head .main-title {
    font-size: 18px;
  }
}

/* ------------------------------------------------------------ *	Sidebar
\* ------------------------------------------------------------ */

.sidebar {
  padding: 67px 0;
  /*  Mobile  */
}

.sidebar:before {
  content: '';
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #e8e6e7;
}

@media (max-width: 767px) {
  .sidebar {
    padding: 0 0 35px;
  }
}

/* ------------------------------------------------------------ *	Content
\* ------------------------------------------------------------ */

.content {
  padding: 67px 0;
  /*  Mobile  */
}

.content.columns {
  padding-left: 1.07143rem;
  padding-right: 1.07143rem;
}

@media (max-width: 767px) {
  .content {
    padding: 35px 0;
  }
}

.wp-caption:after,
.wp-caption-text:after,
.sticky:after,
.gallery-caption:after,
.bypostauthor:after,
.screen-reader-text:after {
  content: '';
}

.tax-wpl_gallery_category .content {
  padding-bottom: 0;
}

/*	----------------------------------------------------------
	Alignment
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ------------------------------------------------------------ *	Button
\* ------------------------------------------------------------ */

.button {
  padding: 11px 15px 12px;
  background: transparent;
  border: 2px solid #fa6f1c;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fa6f1c;
}

.button:hover,
.button:focus {
  background: #fa6f1c;
  color: #fff;
}

.button.button-white {
  border-color: #fff;
  color: #fff;
}

.button.button-orange {
  background: #fa6f1c;
  color: #fff;
}

.button.button-orange:hover {
  background: #fff;
  color: #fa6f1c;
}

.button.button-event-social {
  color: #fff;
  font-size: 13px;
  border-color: white;
  display: block;
}

.button.button-event-social .fa {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  font-size: 18px;
}

.button.button-event-social.button-facebook {
  background: #3a559f;
  border-color: #3a559f;
}

.button.button-event-social.button-facebook:hover {
  color: #3a559f;
  background: #fff;
}

.button.button-event-social.button-eventbrite {
  background: #ff8000;
  border-color: #ff8000;
}

.button.button-event-social.button-eventbrite:hover {
  color: #ff8000;
  background: #fff;
}

.button.button-event-social.button-custom {
  background: #75737f;
  border-color: #75737f;
}

.button.button-event-social.button-custom:hover {
  color: #75737f;
  background: #fff;
}

/* ------------------------------------------------------------ *	Button for login page
\* ------------------------------------------------------------ */

#wp-submit,
#searchsubmit {
  padding: 6px 10px 6px;
  background: #fa6f1c;
  border: 2px solid #fa6f1c;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
}

#wp-submit:hover,
#wp-submit:focus,
#searchsubmit:hover,
#searchsubmit:focus {
  background: #fff;
  color: #fa6f1c;
}

/* ------------------------------------------------------------ *	Button Menu
\* ------------------------------------------------------------ */

.button-burger {
  display: none;
  position: absolute;
  right: 20px;
  top: 40px;
  height: 9px;
  padding-top: 9px;
  /*  Tablet Portrait  */
}

.button-burger span {
  position: relative;
  display: block;
  width: 25px;
  height: 15px;
  border-top: 3px solid #27262c;
}

.button-burger span:before,
.button-burger span:after {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #27262c;
  content: '';
}

.button-burger span:before {
  top: -9px;
}

.button-burger span:after {
  top: 3px;
}

.button-burger span:before,
.button-burger span:after,
.button-burger span {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.button-burger.active span {
  border-color: transparent;
}

.button-burger.active span:before,
.button-burger.active span:after {
  background: #fa6f1c;
}

.button-burger.active span:before {
  -webkit-transform: rotate(45deg) translate(2.5px, 6px);
  transform: rotate(45deg) translate(2.5px, 6px);
}

.button-burger.active span:after {
  -webkit-transform: rotate(-45deg) translate(2.5px, -6px);
  transform: rotate(-45deg) translate(2.5px, -6px);
}

@media (max-width: 1023px) {
  .button-burger {
    display: block;
  }
}

/* ------------------------------------------------------------ *	Navigation
\* ------------------------------------------------------------ */

.nav {
  position: relative;
  z-index: 200;
  float: left;
  -webkit-font-smoothing: antialiased;
  /*  Small Desktop  */
  /*  Tablet Portrait  */
}

.nav ul {
  list-style: none outside none;
}

.nav > ul {
  float: left;
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

.nav > ul > li {
  position: relative;
  float: left;
  margin: 0 13px 0 14px;
  padding: 5px 0 30px;
}

.nav > ul > li span {
  display: none;
}

.nav > ul > li > a {
  display: block;
  padding: 5px 0;
  color: #27262c;
}

.nav > ul > li > a {
  -webkit-transition: color .2s ease-out;
  transition: color .2s ease-out;
}

.nav > ul > li > a:hover,
.nav > ul > li.current-menu-item > a {
  color: #fa6f1c;
}

.nav > ul > li > ul {
  position: absolute;
  left: 0;
  top: 100%;
  width: 240px;
  margin: 0;
  padding: 26px 0 30px;
  background: #27262c;
  visibility: hidden;
  opacity: 0;
  display: none;
}

.nav > ul > li > ul {
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.nav > ul > li > ul > li {
  position: relative;
}

.nav > ul > li > ul > li + li {
  margin-top: 17px;
}

.nav > ul > li > ul > li > a {
  display: block;
  padding: 4px 28px;
  color: #fff;
  border-right: 3px solid transparent;
}

.nav > ul > li > ul > li > a {
  -webkit-transition: border .2s ease-out;
  transition: border .2s ease-out;
}

.nav > ul > li > ul > li > a:hover,
.nav > ul > li > ul > li.current-menu-item > a {
  border-right: 3px solid #fa6f1c;
}

.nav > ul > li > ul > li ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 100%;
  top: 0;
  background: #27262c;
  padding: 20px 0 20px 20px;
  margin-left: 0;
  width: 200px;
  border-left: 3px solid #75737f;
}

.nav > ul > li > ul > li ul li a {
  color: white;
}

.nav > ul > li > ul > li ul li:hover {
  border-right: 3px solid #fa6f1c;
}

.nav > ul > li > ul > li ul li:hover a {
  color: white;
}

.nav > ul > li > ul > li:hover ul {
  visibility: visible;
  opacity: 1;
}

.nav > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
  display: block;
}

@media (max-width: 1199px) {
  .nav > ul {
    font-size: 13px;
  }

  .nav > ul > li {
    margin: 0 10px;
    height: 69px;
  }

  .nav > ul > li > ul {
    font-size: 13px;
    left: -190px;
  }
}

@media (max-width: 1023px) {
  .nav {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #fff;
  }

  .nav > ul {
    float: none;
  }

  .nav > ul > li {
    float: none;
    margin: 0;
    height: auto;
    padding: 0;
    border-top: 1px solid #f0eeee;
  }

  .nav > ul > li span {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    line-height: 38px;
    width: 38px;
    text-align: center;
    border-left: 1px solid #f0eeee;
  }

  .nav > ul > li > a {
    display: block;
    padding: 8px 15px;
  }

  .nav > ul > li > ul {
    background-color: #FFF;
    display: none;
    position: static;
    width: auto;
    visibility: visible;
    opacity: 1;
    padding: 0;
  }

  .nav > ul > li > ul {
    -webkit-transition: none;
    transition: none;
  }

  .nav > ul > li > ul li {
    border-top: 1px solid #f0eeee;
  }

  .nav > ul > li > ul li ul.sub-menu {
    visibility: visible;
    opacity: 1;
    display: none;
    position: static;
    background: none;
    width: 100%;
    max-width: 100%;
    border-left: none;
    padding: 0 0 0 40px;
  }

  .nav > ul > li > ul li ul.sub-menu li {
    padding: 10px 0;
  }

  .nav > ul > li > ul li ul.sub-menu li a,
  .nav > ul > li > ul li ul.sub-menu li a:hover {
    color: black;
  }

  .nav > ul > li > ul > li + li {
    margin-top: 0;
  }

  .nav > ul > li > ul > li > a {
    padding: 10px 25px;
    color: #27262c;
  }

  .nav > ul > li > ul > li > a:hover {
    color: #fa6f1c;
  }
}

/*------------------------------------------------------------
	User Navigation
============================================================*/

.user-nav dd.active a,
.user-nav dt.active a,
.user-nav li.active a {
  background-color: #fa6f1c;
}

.user-nav dd.active a:hover,
.user-nav dt.active a:hover,
.user-nav li.active a:hover {
  background-color: #27262c;
  cursor: pointer;
}

/* ------------------------------------------------------------ *	Slider Intro
\* ------------------------------------------------------------ */

.slider-intro {
  position: relative;
  clear: both;
  /* Animations */
  /* Animations */
  /*  Small Desktop  */
  /*  Tablet Portrait  */
  /*  Mobile  */
}

.slider-intro .owl-stage-outer {
  background-image: url("assets/images/loader.gif");
  background-position: center;
  background-repeat: no-repeat;
}

.slider-intro .slider-actions {
  position: absolute;
  z-index: 200;
  left: 0;
  top: 50%;
  width: 100%;
}

.slider-intro .owl-prev,
.slider-intro .owl-next {
  position: absolute;
  top: -17px;
  width: 40px;
  cursor: pointer;
  font-size: 24px;
  color: #fff;
  text-align: center;
}

.slider-intro .owl-prev,
.slider-intro .owl-next {
  -webkit-transition: color .2s ease-out;
  transition: color .2s ease-out;
}

.slider-intro .owl-prev:hover,
.slider-intro .owl-next:hover {
  color: #fa6f1c;
}

.slider-intro .owl-prev {
  left: 30px;
}

.slider-intro .owl-next {
  right: 30px;
}

.slider-intro .slides {
  list-style: none outside none;
}

.slider-intro .slide {
  position: relative;
  height: 780px;
}

.slider-intro .slide .slide-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.slider-intro .slide .slide-content {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  background: #fa6f1c;
  color: #fff;
}

.slider-intro .slide .slide-content p {
  margin-right: 40px;
  text-transform: uppercase;
  line-height: 2;
  letter-spacing: 0.05em;
}

.slider-intro .slide .slide-title {
  margin: 44px 0 18px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.slider-intro .slide .slide-aside {
  position: relative;
  color: #963e09;
  background: #fc8f30;
}

.slider-intro .slide .slide-tag {
  position: absolute;
  left: 50%;
  padding: 9px 22px;
  background: #fff;
  top: -19px;
  color: #27262c;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.slider-intro .slide .slide-tag {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.slider-intro .slide .slide-progress {
  overflow: hidden;
  border-bottom: 1px solid #e5832d;
  line-height: 1;
}

.slider-intro .slide .slide-progress span {
  display: block;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
}

.slider-intro .slide .slide-progress strong {
  display: block;
  font-size: 36px;
  color: #fff;
}

.slider-intro .slide .slide-raised,
.slider-intro .slide .slide-to-go {
  float: left;
  width: 50%;
  height: 124px;
  padding-top: 38px;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
}

.slider-intro .slide .slide-to-go {
  border-left: 1px solid #e5832d;
}

.slider-intro .slide .slide-actions a {
  display: block;
  line-height: 70px;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.1em;
}

.slider-intro .slide .slide-actions a {
  -webkit-transition: background .2s ease-out;
  transition: background .2s ease-out;
}

.slider-intro .slide .slide-actions a:hover {
  background: #e5832d;
}

.slider-intro .slide .slide-progress.one-column .slide-raised,
.slider-intro .slide .slide-progress.one-column .slide-to-go {
  width: 100%;
}

.slider-intro .active .slide .slide-content {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
  /* W3C and Opera */
  -moz-animation-delay: 0.3s;
  /* Firefox */
  -webkit-animation-delay: 0.3s;
  /* Safari and Chrome */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.slider-intro .slide-alt {
  position: relative;
  height: 780px;
}

.slider-intro .slide-alt .slide-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.slider-intro .slide-alt .slide-content {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
}

.slider-intro .slide-alt .slide-content {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.slider-intro .slide-alt .slide-content .slide-content-inner {
  max-width: 500px;
  padding: 45px 30px 35px;
  background: #fa6f1c;
  color: #fff;
}

.slider-intro .slide-alt .slide-content p {
  margin-bottom: 22px;
  text-transform: uppercase;
}

.slider-intro .slide-alt .slide-title {
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.slider-intro .slide-alt .slide-title:after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  margin: 18px 0;
  background: #b75013;
}

.slider-intro .slide-alt .slide-actions .button {
  margin: 0;
  width: 175px;
}

.slider-intro .active .slide-alt .slide-content .slide-content-inner {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
  /* W3C and Opera */
  -moz-animation-delay: 0.3s;
  /* Firefox */
  -webkit-animation-delay: 0.3s;
  /* Safari and Chrome */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

@media (max-width: 1199px) {
  .slider-intro .slide,
  .slider-intro .slide-alt {
    height: 600px;
  }

  .slider-intro .slide .slide-title {
    margin-top: 40px;
  }

  .slider-intro .slide .slide-content p {
    line-height: 1.5;
  }
}

@media (max-width: 1023px) {
  .slider-intro .slide .slide-aside {
    margin: 30px -15px 0;
  }

  .slider-intro .slide-alt .slide-content .slide-content-inner {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .slider-intro .owl-prev {
    left: 10px;
    width: auto;
    font-size: 18px;
  }

  .slider-intro .owl-next {
    right: 10px;
    width: auto;
    font-size: 18px;
  }

  .slider-intro .slide,
  .slider-intro .slide-alt {
    height: 440px;
  }

  .slider-intro .slide .slide-title,
  .slider-intro .slide-alt .slide-title {
    font-size: 18px;
  }

  .slider-intro .slide .slide-content p,
  .slider-intro .slide-alt .slide-content p {
    font-size: 12px;
  }

  .slider-intro .slide .slide-content {
    width: auto;
    margin: 0 15px;
  }

  .slider-intro .slide .slide-progress strong {
    font-size: 20px;
  }

  .slider-intro .slide .slide-to-go,
  .slider-intro .slide .slide-raised {
    height: auto;
    padding: 25px 0 15px;
  }

  .slider-intro .slide .slide-actions a {
    line-height: 40px;
    font-size: 16px;
  }
}

/* ------------------------------------------------------------ *	Slider Featured
\* ------------------------------------------------------------ */

.slider-featured {
  position: relative;
  /*  Small Desktop  */
  /*  Tablet Portrait  */
  /*  Mobile  */
}

.slider-featured .slider-actions {
  position: absolute;
  z-index: 200;
  left: 0;
  top: 68px;
  width: 100%;
}

.slider-featured .owl-prev,
.slider-featured .owl-next {
  position: absolute;
  top: 0;
  width: 40px;
  cursor: pointer;
  font-size: 24px;
  color: #27262c;
  text-align: center;
}

.slider-featured .owl-prev,
.slider-featured .owl-next {
  -webkit-transition: color .2s ease-out;
  transition: color .2s ease-out;
}

.slider-featured .owl-prev:hover,
.slider-featured .owl-next:hover {
  color: #fa6f1c;
}

.slider-featured .owl-prev {
  left: -72px;
}

.slider-featured .owl-next {
  right: -72px;
}

.slider-featured .slides {
  list-style: none outside none;
}

.slider-featured .slide {
  width: 270px;
}

.slider-featured .slide .slide-image {
  margin-bottom: 33px;
  position: relative;
}

.slider-featured .slide .slide-tag {
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 3px 13px;
  background: #fff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.025em;
  font-weight: bold;
  color: #27262c;
}

.slider-featured .slide .slide-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(39, 38, 44, 0.7);
  visibility: hidden;
  opacity: 0;
}

.slider-featured .slide .slide-overlay {
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.slider-featured .slide .slide-overlay .button {
  margin: 0;
  min-width: 154px;
  padding: 9px 10px;
  font-size: 13px;
}

.slider-featured .slide .slide-overlay-inner {
  position: absolute;
  left: 50%;
  top: 50%;
}

.slider-featured .slide .slide-overlay-inner {
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.slider-featured .slide .slide-image:hover .slide-overlay {
  visibility: visible;
  opacity: 1;
}

.slider-featured .slide .slide-image:hover .slide-overlay-inner {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.slider-featured .slide .slide-content {
  margin-bottom: 20px;
}

.slider-featured .slide .slide-content h3 {
  margin-bottom: 11px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.slider-featured .slide .slide-content h3 a {
  color: #27262c;
}

.slider-featured .slide .slide-content p {
  line-height: 1.75;
  letter-spacing: 0.025em;
}

.slider-featured .slide .slide-foot {
  color: #27262c;
  letter-spacing: 0.1em;
}

.slider-featured .slide .slide-foot span {
  color: #fa6f1c;
}

.slider-featured .slide .slide-foot .progressbar {
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .slider-featured {
    max-width: 870px;
    margin: 0 auto;
  }
}

@media (max-width: 1023px) {
  .slider-featured {
    max-width: 570px;
  }
}

@media (max-width: 767px) {
  .slider-featured {
    max-width: 270px;
  }

  .slider-featured .owl-prev {
    left: -20px;
    width: auto;
  }

  .slider-featured .owl-next {
    right: -20px;
    width: auto;
  }
}

/* ------------------------------------------------------------ *	Slider Sponsor
\* ------------------------------------------------------------ */

.slider-sponsor {
  position: absolute;
  left: 0;
  right: 50%;
  top: 0;
  height: 100%;
  /*  Tablet Portrait  */
}

.slider-sponsor .slider-actions {
  position: absolute;
  z-index: 200;
  left: 0;
  top: 50%;
  width: 100%;
}

.slider-sponsor .owl-prev,
.slider-sponsor .owl-next {
  position: absolute;
  top: -17px;
  width: 40px;
  cursor: pointer;
  font-size: 24px;
  color: #fff;
  text-align: center;
}

.slider-sponsor .owl-prev,
.slider-sponsor .owl-next {
  -webkit-transition: color .2s ease-out;
  transition: color .2s ease-out;
}

.slider-sponsor .owl-prev:hover,
.slider-sponsor .owl-next:hover {
  color: #fa6f1c;
}

.slider-sponsor .owl-prev {
  left: 30px;
}

.slider-sponsor .owl-next {
  right: 30px;
}

.slider-sponsor .slides {
  list-style: none outside none;
}

.slider-sponsor .slider-clip,
.slider-sponsor .slides,
.slider-sponsor .owl-stage-outer,
.slider-sponsor .owl-stage,
.slider-sponsor .owl-item,
.slider-sponsor .slide,
.slider-sponsor .slide-image {
  height: 100%;
}

@media (max-width: 1023px) {
  .slider-sponsor {
    position: relative;
    left: 0;
    right: 0;
    height: 350px;
  }
}

/* ------------------------------------------------------------ *	Slider News
\* ------------------------------------------------------------ */

.slider-news {
  position: relative;
  /*  Small Desktop  */
  /*  Tablet Portrait  */
  /*  Mobile  */
}

.slider-news .slider-actions {
  position: absolute;
  z-index: 200;
  right: 0;
  top: -80px;
}

.slider-news .owl-prev,
.slider-news .owl-next {
  float: left;
  width: 41px;
  line-height: 36px;
  cursor: pointer;
  font-size: 18px;
  color: #27262c;
  text-align: center;
  border: 1px solid #27262c;
}

.slider-news .owl-prev,
.slider-news .owl-next {
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.slider-news .owl-prev:hover,
.slider-news .owl-next:hover {
  background: #fa6f1c;
  border-color: #fa6f1c;
  color: #fff;
}

.slider-news .owl-next {
  margin-left: -1px;
}

.slider-news .slides {
  list-style: none outside none;
}

.slider-news .slide {
  overflow: hidden;
}

.slider-news .slide .slide-image {
  position: relative;
  float: left;
  width: 700px;
  margin-right: 25px;
}

.slider-news .slide .slide-image img {
  width: 100%;
}

.slider-news .slide .slide-bar {
  padding: 5px 0 10px 0px;
  background: none;
  letter-spacing: 0.025em;
}

.slider-news .slide .slide-bar span + span {
  display: inline-block;
  vertical-align: top;
  padding-left: 18px;
}

.slider-news .slide .slide-bar .fa {
  margin-right: 3px;
}

.slider-news .slide .slide-content {
  overflow: hidden;
}

.slider-news .slide .slide-content h4 {
  margin: -3px 0 18px;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.slider-news .slide .slide-content h4 a {
  color: #27262c;
}

.slider-news .slide .slide-content h4 a:hover {
  color: #fa6f1c;
}

.slider-news .slide .slide-content p {
  color: #52505b;
}

@media (max-width: 1199px) {
  .slider-news .slide .slide-image {
    width: 40%;
  }

  .slider-news .slide .slide-bar span {
    padding-right: 10px;
  }

  .slider-news .slide .slide-bar span + span {
    padding-left: 0;
  }
}

@media (max-width: 1023px) {
  .slider-news {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .slider-news .slide .slide-image {
    float: none;
    width: auto;
    margin: 0 0 15px;
  }
}

/* ------------------------------------------------------------ *	Slider Staff
\* ------------------------------------------------------------ */

.slider-staff {
  position: relative;
}

.slider-staff .slider-actions {
  position: absolute;
  z-index: 200;
  right: 4px;
  top: -78px;
}

.slider-staff .owl-prev,
.slider-staff .owl-next {
  float: left;
  width: 41px;
  line-height: 36px;
  cursor: pointer;
  font-size: 18px;
  color: #27262c;
  text-align: center;
  border: 1px solid #27262c;
}

.slider-staff .owl-prev,
.slider-staff .owl-next {
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.slider-staff .owl-prev:hover,
.slider-staff .owl-next:hover {
  background: #fa6f1c;
  border-color: #fa6f1c;
  color: #fff;
}

.slider-staff .owl-next {
  margin-left: -1px;
}

.slider-staff .slides {
  list-style: none outside none;
}

/* ------------------------------------------------------------ *	Slider Testimonials
\* ------------------------------------------------------------ */

.slider-testimonials {
  position: relative;
  padding: 60px 0 41px;
  background: #fa6f1c;
  /*  Tablet Portrait  */
  /*  Mobile  */
}

.slider-testimonials:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -6px;
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: #fff transparent;
}

.slider-testimonials .owl-dots {
  text-align: center;
}

.slider-testimonials .owl-dot {
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  border-radius: 50%;
  background: #c65410;
}

.slider-testimonials .owl-dot:hover,
.slider-testimonials .owl-dot.active {
  background: white;
}

.slider-testimonials .slides {
  margin: 0;
  list-style: none outside none;
}

.slider-testimonials .slide {
  color: #fff;
  text-align: center;
}

.slider-testimonials .slide .slide-entry p {
  font-size: 21px;
  font-style: italic;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.slider-testimonials .slide .slide-entry:after {
  content: '';
  display: block;
  max-width: 170px;
  height: 1px;
  margin: 28px auto 25px;
  background: #de6218;
}

.slider-testimonials .slide .slide-foot p {
  margin: 0 0 10px;
  color: white;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: bold;
}

.slider-testimonials .slide .slide-foot p a {
  color: white;
}

@media (max-width: 1023px) {
  .slider-testimonials .slide {
    padding: 0 20px;
  }

  .slider-testimonials .slide .slide-entry p br {
    display: none;
  }
}

@media (max-width: 767px) {
  .slider-testimonials .slide .slide-entry p {
    font-size: 16px;
  }

  .slider-testimonials .slide .slide-foot p {
    font-size: 14px;
  }
}

/* ------------------------------------------------------------ *	Slider Widgets
\* ------------------------------------------------------------ */

.slider-widget .owl-dots {
  padding: 14px 0 0;
  text-align: left;
}

.slider-widget .owl-dot {
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  margin: 0 6px 0 0;
  background: #cbcbcf;
}

.slider-widget .owl-dot:hover,
.slider-widget .owl-dot.active {
  background: #fa6f1c;
}

.slider-widget .slides {
  list-style: none outside none;
}

/* ------------------------------------------------------------ *	Global sliders
\* ------------------------------------------------------------ */

ul.slides {
  margin: 0;
}

.fsr-hidden {
  display: none !important;
}

/* ------------------------------------------------------------ *	Progressbar
\* ------------------------------------------------------------ */

.progressbar {
  height: 3px;
  background: #e3e1ee;
}

.progressbar .progressbar-inner {
  position: relative;
  height: 3px;
  width: 0;
  background: #27262c;
  -webkit-transition: width 1s ease-out;
  transition: width 1s ease-out;
}

.progressbar span {
  position: absolute;
  right: 0;
  bottom: 100%;
  margin-bottom: 10px;
  padding: 2px 10px;
  background: #fa6f1c;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: bold;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}

.progressbar span:after {
  content: '';
  position: absolute;
  top: 100%;
  margin-left: 0px;
  border-style: solid;
  border-color: #fa6f1c transparent;
}

.progressbar.progressbar-alt {
  height: 11px;
}

.progressbar.progressbar-alt .progressbar-inner {
  height: 11px;
}

/* ------------------------------------------------------------ *	Latest News
\* ------------------------------------------------------------ */

.latest-news-items {
  list-style: none outside none;
}

.latest-news-items .latest-news-item {
  overflow: hidden;
  margin-bottom: 10px;
  padding-right: 25px;
}

.latest-news-items .latest-news-item .latest-news-item-image {
  float: left;
  width: 80px;
  margin-right: 20px;
}

.latest-news-items .latest-news-item .latest-news-item-content {
  overflow: hidden;
}

.latest-news-items .latest-news-item .latest-news-item-content h4 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.latest-news-items .latest-news-item .latest-news-item-content h4 a {
  color: #27262c;
}

.latest-news-items .latest-news-item .latest-news-item-content h4 a:hover {
  color: #fa6f1c;
}

.latest-news-items .latest-news-item .latest-news-item-content p {
  margin: 0;
}

.latest-news-items .latest-news-item .latest-news-item-content i {
  margin-right: 5px;
}

/* ------------------------------------------------------------ *	Event
\* ------------------------------------------------------------ */

.events {
  list-style: none outside none;
  margin: 0 -15px;
}

.events li {
  padding: 0 15px;
}

.event {
  padding-bottom: 10px;
  margin-bottom: 41px;
}

.event .event-image {
  margin-bottom: 35px;
}

.event .event-image img {
  width: 100%;
}

.event .event-title {
  margin-bottom: 18px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.event .event-title a {
  color: #27262c;
}

.event .event-title a:hover {
  color: #fa6f1c;
}

.event .event-meta {
  margin-bottom: 28px;
  font-size: 14px;
  color: #52505b;
  letter-spacing: 0.05em;
}

.event .event-meta .fa {
  margin-right: 3px;
}

.event .event-meta span {
  display: inline-block;
  vertical-align: top;
  padding-right: 25px;
  white-space: nowrap;
}

.event .event-entry {
  margin-bottom: 32px;
  letter-spacing: 0.025em;
}

.event .event-entry p {
  margin-bottom: 0;
}

.event .event-actions .button {
  display: inline-block;
  vertical-align: middle;
}

.event .event-actions .button .fa {
  margin: 0;
  font-size: 17px;
}

/* ------------------------------------------------------------ *	Event Alt
\* ------------------------------------------------------------ */

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

.event-alt .event-image {
  margin-bottom: 27px;
}

.event-alt .event-image img {
  width: 100%;
}

.event-alt .event-title {
  margin-bottom: 14px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.event-alt .event-title a {
  color: #27262c;
}

.event-alt .event-title a:hover {
  color: #fa6f1c;
}

.event-alt .event-meta {
  margin-bottom: 24px;
  font-size: 14px;
  color: #52505b;
  letter-spacing: 0.05em;
}

.event-alt .event-meta .fa {
  margin-right: 3px;
}

.event-alt .event-meta span {
  display: inline-block;
  vertical-align: top;
  padding-right: 25px;
}

.event-alt .event-entry {
  letter-spacing: 0.025em;
}

.event-alt .event-entry p {
  margin-bottom: 0;
}

/* ------------------------------------------------------------ *	Event Small
\* ------------------------------------------------------------ */

.event-small {
  padding-bottom: 12px;
  border-bottom: 1px solid #dcdcdc;
}

.event-small .event-image {
  position: relative;
  margin-bottom: 21px;
}

.event-small .event-image img {
  width: 100%;
}

.event-small .event-date {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.event-small .event-date small {
  display: block;
  padding: 2px 0 1px;
  background: #27262c;
  font-size: 100%;
}

.event-small .event-date span {
  display: block;
  padding: 3px 0;
  background: #fa6f1c;
}

.event-small .event-content {
  margin-bottom: 31px;
}

.event-small .event-content h4 {
  margin-bottom: 16px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.9;
}

.event-small .event-content a {
  color: #27262c;
}

.event-small .event-content a:hover {
  color: #fa6f1c;
}

.event-small .event-content p {
  letter-spacing: 0.025em;
}

.event-small .event-actions .button {
  padding: 6px 16px;
  letter-spacing: 0.05em;
  font-size: 12px;
  display: inline-block;
}

.event-small .event-actions .button-event-social {
  margin-left: 5px;
  padding: 6px 14px;
}

.event-small .event-actions .button-event-social .fa {
  margin: 0;
  font-size: 14px;
}

/* ------------------------------------------------------------ *	Docs
\* ------------------------------------------------------------ */

.docs-icons {
  border: 2px solid #fa6f1c;
  text-align: center;
  padding: 4rem 1rem;
  background: transparent;
  color: #fa6f1c;
}

.docs-icons:hover {
  background: #fa6f1c;
}

.docs-icons:hover a {
  color: #fff;
}

.docs-icons .fa {
  font-size: 5rem;
}

.button-download {
  text-align: center;
  margin: 35px 0 0 0;
}

/* ------------------------------------------------------------ *	Project
\* ------------------------------------------------------------ */

.project {
  padding-bottom: 6px;
  border-bottom: 1px solid #dcdcdc;
}

.project + .project {
  margin-top: 34px;
}

.project .project-image {
  position: relative;
  margin-bottom: 23px;
}

.project .project-image img {
  width: 100%;
}

.project .project-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.project .project-overlay {
  -webkit-transition: background .2s ease-out;
  transition: background .2s ease-out;
}

.project .project-overlay:hover {
  background: rgba(250, 111, 28, 0.83);
}

.project .project-overlay a {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  font-size: 24px;
  visibility: hidden;
  opacity: 0;
}

.project .project-overlay a {
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.project .project-overlay:hover a {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.project .project-content h4 {
  margin-bottom: 10px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.9;
}

.project .project-content a {
  color: #27262c;
}

.project .project-content a:hover {
  color: #fa6f1c;
}

.project .project-content p {
  letter-spacing: 0.025em;
}

/* ------------------------------------------------------------ *	Staff
\* ------------------------------------------------------------ */

.staff-items {
  list-style: none outside none;
  margin: 0;
  /*  Small Desktop  */
  /*  Tablet Portrait  */
  /*  Mobile  */
}

.staff-items .staff-item {
  padding: 0;
}

.staff-items .staff-item {
  -webkit-transition: background .2s ease-out;
  transition: background .2s ease-out;
}

.staff-items .staff-item .staff-item-image {
  position: relative;
  float: left;
}

.staff-items .staff-item .staff-item-image:after {
  border-color: transparent #f0eeee;
  border-style: solid;
  border-width: 6px 6px 6px 0;
  content: '';
  margin-top: -6px;
  position: absolute;
  right: -1px;
  top: 50%;
  -webkit-transition: border-color .2s ease-out;
  transition: border-color .2s ease-out;
  z-index: 10;
}

.staff-items .staff-item .staff-item-content {
  border: 1px solid #f0eeee;
  height: 248px;
  overflow: hidden;
  position: relative;
}

.staff-items .staff-item .staff-item-content .staff-item-content-inner {
  left: 50%;
  padding: 0 30px;
  position: absolute;
  text-align: center;
  top: 15%;
  width: 100%;
}

.staff-items .staff-item .staff-item-content .staff-item-content-inner {
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.staff-items .staff-item .staff-item-content h4 {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.staff-items .staff-item .staff-item-content h4 a {
  color: #27262c;
}

.staff-items .staff-item .staff-item-content .staff-item-content-position {
  font-weight: 700;
  margin-bottom: 5px;
}

.staff-items .staff-item .staff-item-content p {
  letter-spacing: 0.05em;
}

.staff-items .staff-item .staff-item-content .staff-item-actions {
  text-align: center;
}

.staff-items .staff-item .staff-item-content .staff-item-actions:before {
  background: #fa6f1c;
  content: '';
  display: block;
  height: 1px;
  margin: 32px auto 10px;
  width: 46px;
}

.staff-items .staff-item .staff-item-content .staff-item-actions ul {
  display: inline-block;
  font-size: 16px;
  list-style: none outside none;
  margin: 0;
  overflow: hidden;
}

.staff-items .staff-item .staff-item-content .staff-item-actions li {
  float: left;
  padding: 0 7px;
}

.staff-items .staff-item .staff-item-content .staff-item-actions a {
  color: #27262c;
}

.staff-items .staff-item .staff-item-content .staff-item-actions a:hover {
  color: #fa6f1c;
}

.staff-items .staff-item:hover {
  background: #fa6f1c;
}

.staff-items .staff-item:hover .staff-item-image:after {
  border-color: transparent #fa6f1c;
}

.staff-items .staff-item:hover .staff-item-content h4,
.staff-items .staff-item:hover .staff-item-content,
.staff-items .staff-item:hover .staff-item-actions a {
  color: #fff;
}

.staff-items .staff-item:hover .staff-item-content h4 a {
  color: #fff;
}

.staff-items .staff-item:hover .staff-item-actions a:hover {
  color: #27262c;
}

.staff-items .staff-item:hover .staff-item-actions:before {
  background: #fff;
}

.staff-items .staff-item-alt .staff-item-image {
  float: right;
}

.staff-items .staff-item-alt .staff-item-image:after {
  right: auto;
  left: -1px;
  border-width: 6px 0 6px 6px;
}

.staff-items .staff-item-alt .staff-item-content .staff-item-content-inner {
  padding: 0 20px;
}

@media (max-width: 1199px) {
  .staff-items .staff-item .staff-item-content .staff-item-content-inner {
    padding: 0 15px;
  }

  .staff-items .staff-item .staff-item-content p {
    margin-bottom: 0;
    line-height: 1.5;
  }

  .staff-items .staff-item .staff-item-content .staff-item-actions:before {
    margin: 15px auto 5px;
  }
}

@media (max-width: 1023px) {
  .staff-items .staff-item {
    margin-bottom: -1px;
    width: 100%;
  }

  .staff-items .staff-item:last-child {
    margin-bottom: 0;
  }

  .staff-items .staff-item:nth-child(odd) .staff-item-image {
    float: left;
  }

  .staff-items .staff-item:nth-child(odd) .staff-item-image:after {
    border-width: 6px 6px 6px 0;
    left: auto;
    right: -1px;
  }

  .staff-items .staff-item:nth-child(even) .staff-item-image {
    float: right;
  }

  .staff-items .staff-item:nth-child(even) .staff-item-image:after {
    border-width: 6px 0 6px 6px;
    left: -1px;
    right: auto;
  }
}

@media (max-width: 767px) {
  .staff-items .staff-item:nth-child(n) {
    margin-bottom: 0;
  }

  .staff-items .staff-item:nth-child(n) .staff-item-image {
    background: #fff;
    float: none;
    text-align: center;
  }

  .staff-items .staff-item:nth-child(n) .staff-item-image:after {
    border-color: #fff transparent;
    border-width: 0 6px 6px;
    bottom: -1px;
    left: 50%;
    right: auto;
    top: auto;
  }

  .staff-items .staff-item:nth-child(n):hover .staff-item-image:after {
    border-color: #fa6f1c transparent;
  }
}

/* ------------------------------------------------------------ *	Callout
\* ------------------------------------------------------------ */

.callout {
  margin-top: 65px;
  padding: 43px 0;
  background: #000;
  /*  Small Desktop  */
  /*  Mobile  */
}

.callout .callout-title {
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.callout .callout-actions {
  padding: 18px 0;
  font-size: 0;
  text-align: right;
}

.callout .callout-actions .button-call {
  padding: 11px 15px 12px;
  background: transparent;
  border: 2px solid #fa6f1c;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fa6f1c;
  display: inline-block;
  vertical-align: top;
  margin: 0;
}

.callout .callout-actions .button-call:hover,
.callout .callout-actions .button-call:focus {
  background: #fa6f1c;
  color: #fff;
}

.callout .callout-separator {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

.callout .callout-separator span {
  display: inline-block;
  vertical-align: middle;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: #54525e;
  text-align: center;
  line-height: 43px;
  font-size: 12px;
}

.callout .callout-separator:before,
.callout .callout-separator:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  height: 1px;
  background: #54525e;
}

@media (max-width: 1199px) {
  .callout .columns {
    width: 100%;
  }

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

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

@media (max-width: 767px) {
  .callout .callout-separator {
    display: block;
    padding: 10px 0;
    text-align: center;
  }

  .callout .callout-separator:before,
  .callout .callout-separator:after {
    display: none;
  }
}

/* ------------------------------------------------------------ *	List Links
\* ------------------------------------------------------------ */

.footer-section-body .menu {
  float: left;
  margin: 0;
  list-style: none outside none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.025em;
}

.footer-section-body .menu li {
  padding: 6px 0;
  width: 50%;
  float: left;
  display: inline;
  font-weight: 300;
  margin-bottom: 0;
}

.footer-section-body .menu a {
  color: #7d7b87;
}

.footer-section-body .menu a:hover {
  color: #fa6f1c;
}

/* ------------------------------------------------------------ *	List Posts
\* ------------------------------------------------------------ */

.list-popular-posts {
  margin: 0;
  list-style: none outside none;
}

.list-popular-posts li {
  overflow: hidden;
}

.list-popular-posts li + li {
  margin-top: 34px;
}

.list-popular-posts li span {
  position: relative;
  float: left;
  width: 70px;
  margin-right: 17px;
}

.list-popular-posts li span:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 111, 28, 0);
  -webkit-transition: background .2s ease-out;
  transition: background .2s ease-out;
}

.list-popular-posts li span:hover:after {
  background: rgba(250, 111, 28, 0.83);
}

.list-popular-posts li span a {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  color: #fff;
  font-size: 20px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.list-popular-posts li span:hover a {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.list-popular-posts li div {
  float: none;
  overflow: hidden;
}

.list-popular-posts li h4 {
  margin: 0 0 5px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.list-popular-posts li h4 a {
  color: #27262c;
}

.list-popular-posts li h4 a:hover {
  color: #fa6f1c;
}

.list-popular-posts li p {
  margin: 0;
  font-size: 12px;
  color: #52505b;
  letter-spacing: 0.025em;
}

/* ------------------------------------------------------------ *	List Radios
\* ------------------------------------------------------------ */

.list-radios {
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0;
  list-style: none outside none;
  /*  Mobile  */
}

.list-radios li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 25px;
}

.list-radios input {
  display: none;
}

.list-radios input + label {
  margin: 0;
  font-size: 14px;
  color: #27262c;
}

.list-radios label:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  margin: -2px 5px 0 0;
  border-radius: 50%;
  border: 1px solid #b5b5b5;
}

.list-radios input:checked ~ label:before {
  -webkit-box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 10px #fa6f1c;
  box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 10px #fa6f1c;
}

@media (max-width: 767px) {
  .list-radios {
    display: block;
    padding: 10px 0;
  }

  .list-radios li {
    display: block;
  }
}

.cptlist {
  padding-bottom: 10px;
  margin-bottom: 41px;
}

.cptlist .cptlist-image {
  margin-bottom: 35px;
}

.cptlist .cptlist-image img {
  width: 100%;
}

.cptlist .cptlist-title {
  margin-bottom: 18px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.cptlist .cptlist-title a {
  color: #27262c;
}

.cptlist .cptlist-title a:hover {
  color: #fa6f1c;
}

.cptlist .cptlist-meta {
  margin-bottom: 28px;
  font-size: 14px;
  color: #52505b;
  letter-spacing: 0.05em;
}

.cptlist .cptlist-meta .fa {
  margin-right: 3px;
}

.cptlist .cptlist-meta span {
  display: inline-block;
  vertical-align: top;
  padding-right: 25px;
  white-space: nowrap;
}

.cptlist .cptlist-entry {
  margin-bottom: 32px;
  letter-spacing: 0.025em;
}

.cptlist .cptlist-entry p {
  margin-bottom: 0;
}

.cptlist-list {
  padding-bottom: 10px;
  margin-bottom: 41px;
}

.cptlist-list .cptlist-list-image {
  margin-bottom: 35px;
}

.cptlist-list .cptlist-list-image img {
  width: 100%;
}

.cptlist-list .cptlist-list-title {
  margin-bottom: 18px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.cptlist-list .cptlist-list-title a {
  color: #27262c;
}

.cptlist-list .cptlist-list-title a:hover {
  color: #fa6f1c;
}

.cptlist-list .cptlist-list-meta {
  margin-bottom: 18px;
  font-size: 14px;
  color: #52505b;
  letter-spacing: 0.05em;
}

.cptlist-list .cptlist-list-meta .fa {
  margin-right: 3px;
}

.cptlist-list .cptlist-list-meta span {
  display: inline-block;
  vertical-align: top;
  padding-right: 25px;
  white-space: nowrap;
}

.cptlist-list .cptlist-list-entry {
  margin-bottom: 32px;
  letter-spacing: 0.025em;
}

.cptlist-list .cptlist-list-entry p {
  margin-bottom: 0;
}

/* ------------------------------------------------------------ *	Gallery
\* ------------------------------------------------------------ */

.gallery-photos img {
  width: 100%;
  height: auto;
}

/* ------------------------------------------------------------ *	Subscribe
\* ------------------------------------------------------------ */

.subscribe {
  padding: 14px 0;
}

.subscribe .subscribe-btn {
  float: right;
  width: 50px;
  height: 40px;
  background: #fa6f1c;
  color: #fff;
  border: 0;
  cursor: pointer;
}

.subscribe .subscribe-btn:hover {
  background: #de6218;
}

.subscribe .subscribe-inner {
  overflow: hidden;
}

.subscribe .subscribe-field {
  margin: 0;
  height: 40px;
  font-size: 14px;
  padding: 0 18px;
  border: 0;
}

.subscribe .subscribe-field::-webkit-input-placeholder {
  color: #7d7b87;
}

.subscribe .subscribe-field:-moz-placeholder {
  color: #7d7b87;
}

.subscribe .subscribe-field::-moz-placeholder {
  color: #7d7b87;
}

.subscribe .subscribe-field:-ms-input-placeholder {
  color: #7d7b87;
}

/* ------------------------------------------------------------ *	Breadcrumbs
\* ------------------------------------------------------------ */

.breadcrumbs {
  display: inline-block;
  vertical-align: top;
  padding: 14px 20px;
  background: #fff;
  border-radius: 0;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
  /*  Mobile  */
}

.breadcrumbs a {
  color: #fa6f1c;
}

.breadcrumbs > *:before {
  content: '::';
  margin: 0 6px;
}

@media (max-width: 767px) {
  .breadcrumbs {
    padding: 10px;
  }

  .breadcrumbs > *:before {
    position: relative;
    top: -2px;
    margin: 0 2px;
  }
}

/* ------------------------------------------------------------ *	Widget
\* ------------------------------------------------------------ */

.widget {
  margin-bottom: 48px;
}

.widget .widget-title {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.widget .widget-title:after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  margin: 16px 0 30px;
  background: #fa6f1c;
}

.widget:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------ *	Widget list
\* ------------------------------------------------------------ */

.widget_categories ul,
.widget_nav_menu ul,
.widget_meta ul,
.widget_archive ul,
.widget_pages ul {
  margin: -5px 0 0;
  list-style: none outside none;
}

.widget_categories ul li,
.widget_nav_menu ul li,
.widget_meta ul li,
.widget_archive ul li,
.widget_pages ul li {
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.widget_categories ul a,
.widget_nav_menu ul a,
.widget_meta ul a,
.widget_archive ul a,
.widget_pages ul a {
  color: #75737f;
}

.widget_categories ul a:hover,
.widget_nav_menu ul a:hover,
.widget_meta ul a:hover,
.widget_archive ul a:hover,
.widget_pages ul a:hover {
  color: #fa6f1c;
}

.widget_categories ul a:before,
.widget_nav_menu ul a:before,
.widget_meta ul a:before,
.widget_archive ul a:before,
.widget_pages ul a:before {
  content: '\f105';
  display: inline-block;
  vertical-align: top;
  margin: -1px 10px -1px 0;
  font-family: FontAwesome;
  font-size: 14px;
  font-weight: normal;
}

/* ------------------------------------------------------------ *	Calendar Widget
\* ------------------------------------------------------------ */

#wp-calendar {
  width: 100%;
}

#wp-calendar tr td,
#wp-calendar tr th {
  text-align: center;
}

/* ------------------------------------------------------------ *	Widget Contact
\* ------------------------------------------------------------ */

.widget_wpl_contact_widget i {
  margin-right: 5px;
}

/* ------------------------------------------------------------ *	Widget Tagcloud
\* ------------------------------------------------------------ */

.widget_tag_cloud .tagcloud {
  font-size: 0;
  margin-bottom: -8px;
}

.widget_tag_cloud .tagcloud a {
  display: inline-block;
  vertical-align: top;
  padding: 5px 11px;
  margin: 0 9px 14px 0;
  border: 1px solid #27262c;
  color: #27262c;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.widget_tag_cloud .tagcloud a {
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.widget_tag_cloud .tagcloud a:hover {
  background: #fa6f1c;
  border-color: #fa6f1c;
  color: #fff;
}

/* ------------------------------------------------------------ *	Widget Gallery
\* ------------------------------------------------------------ */

.widget_gallery ul {
  list-style: none outside none;
  text-align: center;
}

.widget_gallery ul div {
  position: relative;
}

.widget_gallery ul div:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 111, 28, 0);
}

.widget_gallery ul div:after {
  -webkit-transition: background .2s ease-out;
  transition: background .2s ease-out;
}

.widget_gallery ul div:hover:after {
  background: rgba(250, 111, 28, 0.83);
}

.widget_gallery ul div a {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  color: #fff;
  font-size: 20px;
  visibility: hidden;
  opacity: 0;
}

.widget_gallery ul div a {
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.widget_gallery ul div:hover a {
  opacity: 1;
  visibility: visible;
}

.widget_gallery ul div:hover a {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* ------------------------------------------------------------ *	Widget Text
\* ------------------------------------------------------------ */

.widget_text .widget-body {
  margin: -6px 0 0;
}

.widget_text .widget-body p {
  margin-bottom: 25px;
  letter-spacing: 0.025em;
}

/* ------------------------------------------------------------ *	Widget Admin Links
\* ------------------------------------------------------------ */

.widget-admin a.button {
  color: white;
}

/*------------------------------------------------------------
	List details for widgets
============================================================*/

.widget-details .widget-title:after {
  margin: 16px 0 10px;
}

.widget-details .side-nav {
  padding-top: 0;
}

.widget-details .side-nav li {
  font-size: 0.9375rem;
  line-height: 20px;
  color: #5d5d5d;
  font-weight: 300;
  padding: 13px 0;
  border-bottom: 1px solid #e8e6e7;
  margin: 0;
}

.widget-details .side-nav li a {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: #5d5d5d;
}

.widget-details .side-nav li a:hover {
  background: none;
}

.widget-details .side-nav li:frist-child {
  padding-top: 0;
}

.widget-details .side-nav .fa {
  font-size: 1rem;
  text-align: center;
  width: 41px;
  margin-right: 9px;
  color: #75737f;
}

.widget_recent_entries ul,
.widget_rss ul {
  list-style: none outside none;
}

.widget_recent_entries ul li a,
.widget_rss ul li a {
  color: #75737f;
  margin: 0 0 5px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.widget_recent_entries ul li a:hover,
.widget_rss ul li a:hover {
  color: #fa6f1c;
}

.widget_recent_entries ul li a:before,
.widget_rss ul li a:before {
  content: '\f105';
  display: inline-block;
  vertical-align: top;
  margin: -1px 10px -1px 0;
  font-family: FontAwesome;
  font-size: 14px;
  font-weight: normal;
}

.widget_rss .widget-title .rsswidget {
  color: #27262c;
}

.widget_rss .widget-title .rsswidget img {
  display: none;
}

.widget_recent_comments ul {
  list-style: none outside none;
}

.widget_recent_comments ul li {
  color: #75737f;
  margin: 0 0 5px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.widget_recent_comments ul li a {
  color: #75737f;
  margin: 0 0 5px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.widget_recent_comments ul li a:hover {
  color: #fa6f1c;
}

.widget_recent_comments ul li:before {
  content: '\f105';
  display: inline-block;
  vertical-align: top;
  margin: -1px 10px -1px 0;
  font-family: FontAwesome;
  font-size: 14px;
  font-weight: normal;
}

/* ------------------------------------------------------------ *	Instagram widget
\* ------------------------------------------------------------ */

.widget_wpl_instagram_widget .instagram-follow {
  width: 100%;
}

/* ------------------------------------------------------------ *	Post
\* ------------------------------------------------------------ */

.post {
  /*  Format Video  */
  /*  Format Quote  */
  /*  Mobile  */
}

.post + .post {
  margin-top: 34px;
}

.post .post-title {
  margin-bottom: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.post .post-title a {
  color: #27262c;
}

.post .post-title a:hover {
  color: #fa6f1c;
}

.post .post-image {
  position: relative;
  z-index: 10;
}

.post .post-image ul {
  list-style: none outside none;
  margin: 0;
}

.post .post-image .owl-nav {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
}

.post .post-image .owl-prev,
.post .post-image .owl-next {
  position: absolute;
  top: -19px;
  width: 41px;
  line-height: 36px;
  cursor: pointer;
  font-size: 18px;
  color: #27262c;
  text-align: center;
  border: 1px solid #27262c;
}

.post .post-image .owl-prev,
.post .post-image .owl-next {
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.post .post-image .owl-prev:hover,
.post .post-image .owl-next:hover {
  background: #fa6f1c;
  border-color: #fa6f1c;
  color: #fff;
}

.post .post-image .owl-prev {
  left: 30px;
}

.post .post-image .owl-next {
  right: 30px;
}

.post .post-meta {
  position: relative;
  z-index: 200;
  padding: 11px 0 10px;
  margin-bottom: 25px;
  line-height: 26px;
  border-bottom: 1px solid #e8e6e7;
  letter-spacing: 0.025em;
}

.post .post-meta ul {
  margin: 0;
  list-style: none outside none;
}

.post .post-meta li {
  display: inline-block;
  vertical-align: top;
}

.post .post-meta li + li {
  padding-left: 19px;
  margin-left: 18px;
  border-left: 1px solid #e8e6e7;
}

.post .post-meta a {
  color: #75737f;
}

.post .post-meta a:hover {
  color: #fa6f1c;
}

.post .post-meta .fa {
  margin-right: 8px;
}

.post .post-meta .fa-large {
  font-size: 16px;
}

.post .post-author .post-author-image {
  display: inline-block;
  vertical-align: top;
  margin: -32px 6px -8px -5px;
  border-radius: 50%;
  border: 4px solid #fff;
  overflow: hidden;
}

.post .entry {
  margin-bottom: 26px;
}

.post .entry p {
  letter-spacing: 0.035em;
}

.post .post-actions .button {
  padding: 6px 17px;
}

.post.format-video .post-image:after {
  content: '';
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(39, 38, 44, 0.46);
}

.post.format-video .post-image-link {
  position: absolute;
  z-index: 20;
  left: 50%;
  top: 50%;
  font-size: 40px;
  color: #fff;
}

.post.format-video .post-image-link {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.post.format-video .post-image-link:hover {
  opacity: .7;
}

.post.format-quote .post-head {
  padding-top: 35px;
}

.post.format-quote .post-head blockquote {
  position: relative;
  padding: 58px 40px 60px;
  margin-bottom: 0;
  background: #f0f1f5;
}

.post.format-quote .post-head blockquote p {
  margin-bottom: 0;
  font-size: 20px;
  font-style: italic;
  font-weight: bold;
  color: #27262c;
  letter-spacing: 0.05em;
}

.post.format-quote .post-head blockquote:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 63px;
  height: 50px;
  margin: -25px 0 0 -33px;
  background: url(assets/images/ico-quotes.png) no-repeat 0 0;
}

@media (max-width: 767px) {
  .post + .post {
    margin-top: 20px;
  }

  .post .post-title {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .post .post-image .owl-prev {
    left: 10px;
  }

  .post .post-image .owl-next {
    right: 10px;
  }

  .post .post-meta {
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .post .post-meta li {
    display: block;
    margin-bottom: 10px;
  }

  .post .post-meta li + li {
    display: inline-block;
    border-left: 0;
    padding-left: 0;
    margin: 0 10px 0 0;
  }

  .post.format-quote .post-head blockquote {
    padding: 30px 15px;
  }

  .post.format-quote .post-head blockquote p {
    line-height: 1.4;
    font-size: 16px;
  }
}

/* ------------------------------------------------------------ *	Post Single
\* ------------------------------------------------------------ */

.post-single {
  padding: 11px 0 0;
  /*  Mobile  */
}

.post-single .post-meta {
  margin-bottom: 33px;
}

.post-single .entry p {
  margin-bottom: 24px;
}

.post-single .entry blockquote {
  padding: 0;
  margin: 4px 0;
  border: 1px solid #e8e8e8;
}

.post-single .entry blockquote p {
  margin-bottom: 0;
  padding: 25px 33px 28px;
  border-left: 3px solid #fa6f1c;
  color: #75737f;
  font-size: 15px;
  font-style: italic;
  line-height: 1.95;
  letter-spacing: 0.025em;
}

.post-single .post-cta {
  margin: 44px 0;
  background: #f3f4f8;
  overflow: hidden;
}

.post-single .post-cta .post-cta-image {
  float: left;
}

.post-single .post-cta .post-cta-content {
  padding: 32px 35px 0;
  overflow: hidden;
}

.post-single .post-cta .post-cta-content p {
  margin: 0;
  line-height: 2.1;
}

.post-single .post-items h4 {
  margin-bottom: 16px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
}

.post-single .post-items p {
  margin-bottom: 20px;
  line-height: 2.1;
}

.post-single .post-items .fa {
  min-width: 40px;
  font-size: 20px;
  color: #75737f;
}

.post-single .post-share {
  margin-bottom: 30px;
  padding: 20px 0 30px;
  border-bottom: 1px solid #dcdcdc;
}

.post-single .post-authorbox {
  background: #f3f4f8;
  overflow: hidden;
}

.post-single .post-authorbox .post-authorbox-image {
  float: left;
}

.post-single .post-authorbox .post-authorbox-image a {
  display: block;
}

.post-single .post-authorbox .post-authorbox-content {
  overflow: hidden;
  padding: 23px 25px;
}

.post-single .post-authorbox .post-authorbox-content h4 {
  margin-bottom: 13px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.post-single .post-authorbox .post-authorbox-content p {
  margin: 0;
  letter-spacing: 0.025em;
  line-height: 2.1;
}

.post-single .post-foot {
  margin-bottom: 43px;
}

@media (max-width: 767px) {
  .post-single .entry blockquote p {
    padding: 15px;
    line-height: 1.5;
  }

  .post-single .post-cta .post-cta-image {
    float: none;
  }

  .post-single .post-cta .post-cta-image img {
    width: 100%;
  }

  .post-single .post-cta .post-cta-content {
    padding: 15px;
  }

  .post-single .post-cta .post-cta-content p {
    margin: 0;
    line-height: 1.5;
  }

  .post-single .post-authorbox .post-authorbox-image {
    padding-top: 20px;
    float: none;
    text-align: center;
  }

  .post-single .post-authorbox .post-authorbox-content {
    padding: 15px;
  }

  .post-single .post-authorbox .post-authorbox-content p {
    line-height: 1.8;
  }
}

.post-body pre {
  overflow: auto;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.wp-caption {
  padding: 0.5em;
  text-align: center;
  width: 100% !important;
}

.wp-caption img {
  margin: 0.25em;
  max-width: 100%;
}

.wp-caption .wp-caption-text {
  margin: 0.5em;
  font-size: 12px;
}

.alignnone {
  max-width: 100% !important;
  height: auto !important;
}

.fluid-width-video-wrapper iframe,
.fluid-width-video-wrapper embed,
.fluid-width-video-wrapper object {
  width: 100%;
}

/* ------------------------------------------------------------ *	Post Cause
\* ------------------------------------------------------------ */

.post-cause {
  padding: 15px 0;
  /*  Mobile  */
}

.post-cause .post-head {
  overflow: hidden;
}

.post-cause .post-head .post-title {
  float: left;
  font-size: 24px;
  margin-right: 10px;
}

.post-cause .post-head span {
  float: left;
  margin-top: 10px;
  padding: 2px 8px;
  background: #27262c;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.post-cause .entry {
  margin-bottom: 42px;
}

.post-cause .entry p {
  margin-bottom: 30px;
  line-height: 2.2;
}

.post-cause .entry blockquote {
  margin: 42px 0;
}

.post-cause .post-share {
  padding: 5px 0;
  margin: 0;
  border: 0;
}

@media (max-width: 767px) {
  .post-cause .post-head .post-title {
    font-size: 16px;
  }

  .post-cause .post-head span {
    margin: 3px 0 10px;
  }
}

/* ------------------------------------------------------------ *	Post Event
\* ------------------------------------------------------------ */

.post-event {
  /*  Small Desktop  */
  /*  Mobile  */
}

.post-event .post-bar {
  padding: 10px 20px 12px;
  background: #fa6f1c;
  overflow: hidden;
  color: #fff;
}

.post-event .post-bar ul {
  margin: 7px 0 0;
  float: left;
  list-style: none outside none;
}

.post-event .post-bar ul li {
  float: left;
  padding: 2px 0;
  font-size: 14px;
  letter-spacing: 0.025em;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid #f4945b;
}

.post-event .post-bar ul li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}

.post-event .post-bar ul .fa {
  margin-right: 10px;
}

.post-event .post-bar .post-bar-actions {
  float: right;
}

.post-event .post-bar .post-bar-actions .button-event-social {
  margin-bottom: 5px;
  padding: 8px 15px 7px;
  border-color: white;
}

.post-event .post-bar .post-bar-actions .button-event-social .fa {
  margin-right: 10px;
}

.post-event .post-bar .post-bar-actions .button-event-social:last-child {
  margin-bottom: 0;
}

.post-event .post-map {
  height: 360px;
}

.post-event .post-map .fa {
  color: #27262c;
  font-size: 30px;
}

.post-event .post-event-meta {
  margin-bottom: 31px;
  padding: 22px 22px 19px 28px;
  background: #f4f4f4;
  overflow: hidden;
}

.post-event .post-event-meta .post-event-meta-inner {
  float: left;
  color: #27262c;
}

.post-event .post-event-meta .post-event-meta-inner > span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 30px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-size: 16px;
}

.post-event .post-event-meta .post-event-meta-inner ul {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  list-style: none outside none;
  overflow: hidden;
}

.post-event .post-event-meta .post-event-meta-inner ul li {
  float: left;
  height: 46px;
  padding: 4px 24px 0;
  text-align: center;
  line-height: 1.6;
}

.post-event .post-event-meta .post-event-meta-inner ul li + li {
  border-left: 1px solid #dfdfdf;
}

.post-event .post-event-meta .post-event-meta-inner ul span {
  display: block;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
}

.post-event .post-event-meta .post-event-meta-inner ul strong {
  font-weight: 900;
}

.post-event .post-event-meta .post-event-meta-actions {
  float: right;
}

.post-event .post-event-meta .post-event-meta-actions .button {
  margin: 5px 0 0;
  padding: 8px 30px;
}

.post-event .entry {
  margin-bottom: 42px;
}

.post-event .entry p {
  margin-bottom: 30px;
  line-height: 2.2;
}

.post-event .post-share {
  padding: 5px 0;
  margin: 0;
  border: 0;
}

@media (max-width: 1199px) {
  .post-event .post-event-meta .post-event-meta-inner span {
    margin-right: 0;
  }

  .post-event .post-event-meta .post-event-meta-inner ul li {
    padding: 4px 20px;
  }
}

@media (max-width: 767px) {
  .post-event .post-bar ul {
    float: none;
  }

  .post-event .post-bar ul li {
    float: none;
    padding-right: 0;
    margin-right: 0;
    border: 0;
  }

  .post-event .post-bar .post-bar-actions {
    float: none;
  }

  .post-event .post-map {
    height: 250px;
  }

  .post-event .post-event-meta {
    margin-bottom: 20px;
    padding: 15px;
  }

  .post-event .post-event-meta .post-event-meta-inner {
    float: none;
  }

  .post-event .post-event-meta .post-event-meta-inner > span {
    display: block;
    margin-bottom: 10px;
  }

  .post-event .post-event-meta .post-event-meta-inner ul li {
    padding: 0 10px;
  }

  .post-event .post-event-meta .post-event-meta-inner ul span {
    font-size: 11px;
  }

  .post-event .post-event-meta .post-event-meta-inner ul strong {
    font-size: 12px;
  }

  .post-event .post-event-meta .post-event-meta-actions {
    float: none;
    text-align: left;
  }
}

/* ------------------------------------------------------------ *	Pagination
\* ------------------------------------------------------------ */

ul.pagination {
  margin: 13px 0 0;
  padding: 50px 0 0;
  border-top: 1px solid #eaeaea;
}

ul.pagination.pagination-alt {
  margin: 0;
  border: 0;
}

ul.pagination li {
  margin: 0 5px;
}

ul.pagination li.current a {
  background: #fa6f1c;
  border-color: #fa6f1c;
  color: #fff;
}

ul.pagination li.current a:hover {
  background: #fa6f1c;
  border-color: #fa6f1c;
}

ul.pagination li a {
  width: 41px;
  height: 38px;
  line-height: 36px;
  padding: 0;
  border: 1px solid #27262c;
  border-radius: 0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #27262c;
}

ul.pagination li a:hover {
  background: #fa6f1c;
  border-color: #fa6f1c;
  color: #fff;
}

/* ------------------------------------------------------------ *	Socials
\* ------------------------------------------------------------ */

.socials span {
  display: block;
  margin-bottom: 5px;
  color: #27262c;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.socials ul {
  margin: 0;
  list-style: none outside none;
  font-size: 0;
}

.socials li {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
}

.socials li + li {
  margin-left: 6px;
}

.socials a {
  display: block;
  color: #fff;
  line-height: 27px;
  width: 41px;
  text-align: center;
  border: 2px solid #000;
  float: left;
  margin: 0 10px 10px 0;
  background: #27262c;
}

.socials a {
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.socials a:hover {
  background: #fff;
}

.socials .link-facebook a {
  background: #3a559f;
  border-color: #3a559f;
}

.socials .link-facebook a:hover {
  background: #fff;
  color: #3a559f;
}

.socials .link-twitter a {
  background: #1abdf3;
  border-color: #1abdf3;
}

.socials .link-twitter a:hover {
  background: #fff;
  color: #1abdf3;
}

.socials .link-googleplus a {
  background: #fa501c;
  border-color: #fa501c;
}

.socials .link-googleplus a:hover {
  background: #fff;
  color: #fa501c;
}

.socials .link-linkedin a {
  background: #3a7d9f;
  border-color: #3a7d9f;
}

.socials .link-linkedin a:hover {
  background: #fff;
  color: #3a7d9f;
}

/* ------------------------------------------------------------ *	Comments
\* ------------------------------------------------------------ */

.comments {
  /*  Mobile  */
}

.comments h3 {
  margin-bottom: 0;
  padding-bottom: 17px;
  border-bottom: 1px solid #dcdcdc;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comments .commentlist {
  margin: 0 0 15px;
  list-style: none outside none;
}

.comments .comment {
  padding: 30px 0 26px;
}

.comments .comment + .comment {
  border-top: 1px solid #ebebeb;
}

.comments .comment .comment-inner {
  overflow: hidden;
}

.comments .comment .comment-image {
  float: left;
  width: 72px;
  margin-right: 20px;
}

.comments .comment .comment-content {
  overflow: hidden;
}

.comments .comment .comment-content h4 {
  margin: 0 0 11px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.comments .comment .comment-content h4 a {
  color: #27262c;
}

.comments .comment .comment-content h4 a:hover {
  color: #fa6f1c;
}

.comments .comment .comment-content p {
  margin-bottom: 0;
  letter-spacing: 0.025em;
}

.comments .comment .comment-reply-link {
  padding: 3px 10px;
  background: #fa6f1c;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
}

.comments .comment .comment-reply-link:hover {
  opacity: .7;
}

.comments .children {
  margin: 25px 0 0;
  border-top: 1px solid #ebebeb;
}

.comments .children .comment {
  padding-left: 60px;
}

.comments .children .comment:last-child {
  padding-bottom: 0;
}

.comments .respond h3 {
  margin-bottom: 25px;
}

.comments .respond .field,
.comments .respond .textarea {
  padding-left: 0;
  border: 0;
  border-bottom: 2px solid #86848f;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 14px;
}

.comments .respond .field:focus,
.comments .respond .textarea:focus {
  background: #fff;
}

.comments .respond .field {
  margin-bottom: 9px;
  height: 52px;
  background: #f3f3f3;
  padding: 0 20px;
}

.comments .respond .textarea {
  margin-bottom: 30px;
  height: 113px;
  background: #f3f3f3;
  padding: 20px;
}

.comments .respond .field::-webkit-input-placeholder,
.comments .respond .textarea::-webkit-input-placeholder {
  color: #75737f;
}

.comments .respond .field:-moz-placeholder,
.comments .respond .textarea:-moz-placeholder {
  color: #75737f;
}

.comments .respond .field::-moz-placeholder,
.comments .respond .textarea::-moz-placeholder {
  color: #75737f;
}

.comments .respond .field:-ms-input-placeholder,
.comments .respond .textarea:-ms-input-placeholder {
  color: #75737f;
}

.comments .respond .button {
  padding: 6px 20px;
  font-size: 12px;
}

@media (max-width: 767px) {
  .comments .comment {
    padding: 15px 0;
  }

  .comments .comment .comment-image {
    width: 40px;
    margin-right: 15px;
  }

  .comments .children .comment {
    padding-left: 25px;
  }

  .comments .respond .field,
  .comments .respond .textarea {
    margin-bottom: 0;
  }

  .comments .respond .field {
    height: 40px;
  }
}

/* ------------------------------------------------------------ *	Cause
\* ------------------------------------------------------------ */

.cause {
  background: #f6f6f6;
  /*  Mobile  */
}

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

.cause .cause-image {
  position: relative;
}

.cause .cause-image img {
  width: 100%;
}

.cause .cause-tag {
  position: absolute;
  right: 17px;
  top: 16px;
  padding: 4px 13px;
  background: #fff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.025em;
  font-weight: bold;
  color: #27262c;
}

.cause .cause-body {
  padding: 30px 30px 28px;
}

.cause .cause-head {
  margin-bottom: 5px;
  overflow: hidden;
}

.cause .cause-head span {
  float: left;
  margin-top: 3px;
  padding: 2px 8px;
  background: #27262c;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #fff;
}

.cause .cause-head span a {
  color: #fff;
}

.cause .cause-title {
  float: left;
  margin-right: 12px;
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cause .cause-title a {
  color: #27262c;
}

.cause .cause-entry p {
  margin-bottom: 0;
  letter-spacing: 0.05em;
}

.cause .with-cause-amount .cause-entry {
  margin-bottom: 33px;
}

.cause .with-cause-amount .cause-entry p {
  margin-bottom: 33px;
}

.cause .cause-foot {
  padding: 23px 0;
  color: #27262c;
  overflow: hidden;
  font-size: 14px;
}

.cause .cause-foot .fa {
  display: inline-block;
  vertical-align: middle;
  font-size: 17px;
  margin-right: 3px;
}

.cause .cause-foot .cause-foot-content {
  float: left;
}

.cause .cause-foot .cause-foot-content span {
  padding-right: 40px;
}

.cause .cause-foot .cause-foot-aside {
  float: right;
  letter-spacing: 0.1em;
}

.cause .cause-actions .button {
  margin-bottom: 0;
  padding: 9px 30px;
  font-size: 13px;
}

@media (max-width: 767px) {
  .cause + .cause {
    margin-top: 20px;
  }

  .cause .cause-body {
    padding: 15px;
  }

  .cause .cause-foot .cause-foot-content {
    float: none;
  }

  .cause .cause-foot .cause-foot-aside {
    float: none;
    margin-top: 15px;
  }
}

/* ------------------------------------------------------------ *	Cause Single
\* ------------------------------------------------------------ */

.cause-single {
  margin-top: 11px;
  /*  Mobile  */
}

.cause-single .cause-body {
  padding: 8px 30px 8px;
}

.cause-single .cause-body.with-cause-amount {
  padding: 56px 30px 8px;
}

@media (max-width: 767px) {
  .cause-single .cause-body {
    padding: 10px 15px 10px;
  }

  .cause-single .cause-body.with-cause-amount {
    padding: 55px 15px 10px;
  }
}

.payment-errors {
  color: #de2d0f;
  display: block;
  padding: 1rem 0;
  font-weight: 700;
}

/* ------------------------------------------------------------ *	Tabs
\* ------------------------------------------------------------ */

.tabs-wrapper {
  background: #fff;
  /*  Mobile  */
}

.tabs-wrapper .tabs {
  margin: 0;
  list-style: none outside none;
  border: 1px solid #ececec;
}

.tabs-wrapper .tabs .tab-title {
  float: left;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 52px;
}

.tabs-wrapper .tabs .tab-title + .tab-title {
  border-left: 1px solid #ececec;
}

.tabs-wrapper .tabs .tab-title:last-child {
  border-right: 1px solid #ececec;
}

.tabs-wrapper .tabs .tab-title a {
  display: block;
  padding: 0 30px;
  color: #27262c;
  font-size: 13px;
  outline: none;
  background: #fff;
}

.tabs-wrapper .tabs .tab-title.active a {
  margin-bottom: -1px;
  border-bottom: 1px solid #fff;
}

.tabs-wrapper .tabs .tab-title .fa {
  font-size: 16px;
  color: #fa6f1c;
  margin-right: 7px;
}

.tabs-wrapper .tabs .tab-title .fa-paypal {
  color: #00457C;
}

.tabs-wrapper .tabs .tab-title .fa-money {
  color: #27262c;
}

.tabs-wrapper .tabs .tab-title .fa-cc-visa {
  color: #2C21A6;
}

.tabs-wrapper .tabs-content .content {
  padding: 19px 30px 35px;
  border-width: 0 1px 1px;
  border-style: solid;
  border-color: #ececec;
}

@media (max-width: 767px) {
  .tabs-wrapper .tabs .tab-title + .tab-title {
    border-left: 0;
    border-top: 1px solid #ececec;
  }

  .tabs-wrapper .tabs .tab-title {
    float: none;
    line-height: 40px;
  }

  .tabs-wrapper .tabs .tab-title a {
    padding: 0 15px;
  }

  .tabs-wrapper .tabs .tab-title.active a {
    background: #fafafa;
  }

  .tabs-wrapper .tabs-content .content {
    padding: 15px;
  }
}

/* ------------------------------------------------------------ *	Form Donation
\* ------------------------------------------------------------ */

.form-donation {
  /*  Mobile  */
}

.form-donation .form-body,
.form-donation .form-actions {
  display: inline-block;
  vertical-align: top;
}

.form-donation .form-actions {
  margin: 20px 0 0 10px;
}

.form-donation .form-actions .button {
  margin-bottom: 0;
  padding: 9px 30px;
  font-size: 13px;
}

.form-donation .form-label {
  margin-bottom: 8px;
  color: #27262c;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-donation .fs-number {
  display: inline-block;
  vertical-align: middle;
  width: 134px;
  margin-right: 15px;
}

@media (max-width: 767px) {
  .form-donation .form-body,
  .form-donation .form-actions {
    display: block;
    margin: 0;
  }
}

.form-donation.form-donation-pp-general .label-donation-for {
  margin-top: 20px;
}

.form-donation.form-donation-pp-general .form-actions {
  margin-left: 0;
}

.fs-number .fs-number-element {
  margin-bottom: 0;
  -moz-appearance: textfield;
}

.fs-number .fs-number-arrow {
  margin: 0;
  padding: 0;
}

.fs-number .fs-number-arrow:hover {
  background-color: #fa6f1c;
}

.fs-number .fs-number-arrow.fs-number-up:hover:after {
  border-bottom-color: white;
}

.fs-number .fs-number-arrow.fs-number-down:hover:after {
  border-top-color: white;
}

/* ------------------------------------------------------------ *	404 Error Page
\* ------------------------------------------------------------ */

.error-title {
  font-size: 15rem;
}

@media (max-width: 767px) {
  .error-title {
    font-size: 10rem;
  }
}

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

/* Shortcodes Styles */

.shortcode_heading_block {
  margin: 40px 0px;
  padding: 40px;
}

/* Lists */

ul.plain,
ul.border,
ul.ordered,
ul.unordered {
  margin: 0;
  padding: 0;
}

ul.plain li > ul,
ul.border li > ul,
ul.ordered li > ul,
ul.unordered li > ul {
  margin-top: 12px;
}

ul.plain li {
  list-style: none;
}

ul.ordered,
ul.unordered {
  padding-left: 24px;
}

ul.ordered li,
ul.unordered li {
  margin-bottom: 0.55em;
}

ul.ordered.ordered,
ul.unordered.ordered {
  list-style: decimal !important;
}

ul.ordered.unordered,
ul.unordered.unordered {
  list-style: disc !important;
}

ul.border {
  margin: 0;
  padding: 0;
}

ul.border li {
  width: 100%;
  line-height: inherit;
  padding: 12px 0;
  border-bottom: 1px solid rgba(64, 64, 64, 0.15);
}

ul.border li:last-child {
  border-bottom: none;
}

/* Buttons */

.button i {
  margin: 0 0 0 10px;
}

/* Highlight */

.shortcode_highlight {
  background-color: #fcfca8;
  padding: 4px;
}

/* WooCommerce Styles */

.woocommerce #tab-description,
.woocommerce #tab-reviews {
  padding: 20px 5px;
  background: #fff;
  border: none;
}

.fs-number {
  min-width: 70px;
}

/*# sourceMappingURL=style.css.map */