@charset "UTF-8";
.animate-rotate {
  -webkit-animation: rotation 0.7s infinite linear;
  -moz-animation: rotation 0.7s infinite linear;
  -o-animation: rotation 0.7s infinite linear;
  -ms-animation: rotation 0.7s infinite linear;
  animation: rotation 0.7s infinite linear;
  display: inline-block;
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -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;
}
@-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;
  -ms-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;
  -ms-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-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-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-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-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-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-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;
}
/*
   Animation example, for spinners
*/
.animate-spin {
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
  display: inline-block;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@font-face {
  font-family: "fontello";
  src: url("../fonts/fontello.eot?31266964");
  src: url("../fonts/fontello.eot?31266964#iefix") format("embedded-opentype"),
    url("../fonts/fontello.woff?31266964") format("woff"),
    url("../fonts/fontello.ttf?31266964") format("truetype"),
    url("../fonts/fontello.svg?31266964#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-mail:before {
  content: "\e800";
}
.icon-play:before {
  content: "\e801";
}
.icon-search:before {
  content: "\e802";
}
.icon-export:before {
  content: "\e803";
}
.icon-ok:before {
  content: "\e81d";
}
.icon-cancel:before {
  content: "\e81e";
}
.icon-comment:before {
  content: "\e824";
}
.icon-load:before {
  content: "\e838";
}
.icon-twitter:before {
  content: "\f099";
}
.icon-facebook:before {
  content: "\f09a";
}
.icon-instagram:before {
  content: "\f16d";
}
.icon-pinterest:before {
  content: "\f231";
}
body {
  font-family: "freight-big-pro", Georgia, serif;
  font-weight: 400;
  -moz-transition: padding 300ms linear;
  -webkit-transition: padding 300ms linear;
  -o-transition: padding 300ms linear;
  transition: padding 300ms linear;
  background-color: #ffffff;
  font-size: 20px;
  line-height: 26px;
  color: #222222;
  padding: 0;
  margin: 0;
  letter-spacing: 0.5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::-moz-selection {
  background: #7bccc6;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #7bccc6;
  color: #fff;
  text-shadow: none;
}
::-webkit-input-placeholder {
  color: #a5a59b;
}
:-moz-placeholder {
  color: #a5a59b;
}
::-moz-placeholder {
  color: #a5a59b;
}
:-ms-input-placeholder {
  color: #a5a59b;
}
h1,
h2 {
  font-family: "freight-big-pro", Georgia, serif;
  font-weight: 900;
  color: #000000;
}
h1 {
  font-size: 60px;
  line-height: 66px;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
h1.page-title,
h1.article-title {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
h1.page-title {
  font-size: 40px;
  line-height: 60px;
}
h2 {
  font-size: 51px;
  line-height: 60px;
  margin-bottom: 40px;
}
h2 + h6 {
  margin-top: -15px;
}
h3,
h4,
h5,
h6 {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 500;
}
h3 {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 40px;
  font-weight: 500;
  text-transform: uppercase;
}
h3 + h6 {
  margin-top: -15px;
}
h4 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: uppercase;
}
h5 {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
}
h6 {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  color: #888888;
}
h6 + h4,
h6 + h3 {
  margin-top: -10px;
}
p {
  margin: 0 0 20px;
}
a {
  -moz-transition: color 200ms linear;
  -webkit-transition: color 200ms linear;
  -o-transition: color 200ms linear;
  transition: color 200ms linear;
  color: #000000;
}
a:focus {
  color: #000000;
  text-decoration: none;
}
a:active {
  color: #fc9090;
  text-decoration: none;
}
a:hover {
  color: #fc9090;
  text-decoration: none;
}
ul,
ol {
  padding-left: 19px;
  margin-bottom: 20px;
}
img {
  max-width: 100%;
  height: auto;
}
blockquote {
  padding: 20px 20px 20px 30px;
}
blockquote h4 {
  color: #222222;
  font-weight: 200;
}
article {
  zoom: 1;
  clear: both;
}
article:before {
  content: "";
  display: block;
}
article:after {
  content: "";
  display: table;
  clear: both;
}
.btn {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 600;
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
  height: 50px;
  padding: 15px 30px;
  background-color: #000000;
  display: inline-block;
  color: #ffffff;
  border: 1px solid #e5e5e5;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.btn i {
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}
.btn,
.btn:visited,
.btn:active {
  color: #ffffff;
}
.btn,
.btn:active,
.btn:hover {
  text-decoration: none;
}
.btn:hover {
  text-decoration: none;
  background-color: #ffffff;
}
.btn:hover,
.btn:hover i {
  color: #000000;
}
input[type="submit"] {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 600;
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: center;
  line-height: 20px;
  height: 50px;
  padding: 15px 30px;
  background-color: #000000;
  display: inline-block;
  color: #ffffff;
  border: 1px solid #e5e5e5;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-size: 14px;
}
input[type="submit"] i {
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}
input[type="submit"],
input[type="submit"]:visited,
input[type="submit"]:active {
  color: #ffffff;
}
input[type="submit"],
input[type="submit"]:active,
input[type="submit"]:hover {
  text-decoration: none;
}
input[type="submit"]:hover {
  text-decoration: none;
  background-color: #ffffff;
}
input[type="submit"]:hover,
input[type="submit"]:hover i {
  color: #000000;
}
.alt-btn {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  color: #000000;
  border-color: #aaaaaa;
  background-color: #ffffff;
}
.alt-btn,
.alt-btn:visited,
.alt-btn:active {
  color: #000000;
}
.alt-btn,
.alt-btn:active,
.alt-btn:hover {
  text-decoration: none;
}
.alt-btn:hover {
  text-decoration: none;
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.lge-btn {
  border-width: 2px;
  line-height: 26px;
  font-size: 20px;
  height: 50px;
  padding: 10px 30px;
}
.sml-btn {
  line-height: 22px;
  font-size: 18px;
  font-weight: bold;
  height: 30px;
  padding: 3px 18px;
}
.header-top {
  background-color: #ffffff;
  z-index: 101;
  position: relative;
}
.header-top .logo-col {
  padding-top: 20px;
  padding-bottom: 20px;
}
.header-top .logo-col:before {
  padding-top: 20px;
  padding-bottom: 20px;
  background-image: url(wp-content/themes/show-3/images/girls.png);
  background-position: right 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-position: center 10px;
  border-radius: 50px;
}
.header-top .logo-col .search {
  float: left;
  margin: 20px 0;
  cursor: pointer;
  font-size: 25px;
}
.header-top .logo {
  margin: 0;
}
.header-top .logo a {
  -webkit-transform: scale(0.999);
  -moz-transform: scale(0.999);
  transform: scale(0.999);
  text-indent: -9999px;
  background-image: url("../images/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  max-width: 320px;
  margin: -10px auto;
  height: 90px;
  display: block;
}
.header-top .logo a:hover,
.header-top .logo a:active,
.header-top .logo a:focus {
  text-decoration: none;
}
.header-fixed {
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 100;
  height: 70px;
}
.header-fixed .navbar-toggle {
  float: left;
  padding: 22px 10px;
  position: relative;
  z-index: 101;
}
.header-fixed .navbar-toggle .icon-bar {
  width: 32px;
  height: 3px;
  margin-bottom: 6px;
}
.header-fixed .navbar-toggle:active .icon-bar {
  -webkit-box-shadow: 0 0 8px 1px rgba(123, 204, 198, 0.75);
  -moz-box-shadow: 0 0 8px 1px rgba(123, 204, 198, 0.75);
  box-shadow: 0 0 8px 1px rgba(123, 204, 198, 0.75);
}
.header-fixed .fixed-col {
  position: relative;
  height: 70px;
}
.header-fixed .header-fixed-top {
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  height: 70px;
  width: 100%;
  overflow: visible;
}
.header-fixed .header-fixed-top:after {
  -moz-transition: width linear 200ms;
  -webkit-transition: width linear 200ms;
  -o-transition: width linear 200ms;
  transition: width linear 200ms;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 80px;
  z-index: 104;
  height: 100%;
  background: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 68%,
    #ffffff 99%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 68%,
    #ffffff 99%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 68%,
    #ffffff 99%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
}
.header-fixed .header-fixed-top .fixed-left {
  position: absolute;
  top: 0;
  left: 20px;
  width: 240px;
}
.header-fixed .details {
  -moz-transition: all linear 300ms;
  -webkit-transition: all linear 300ms;
  -o-transition: all linear 300ms;
  transition: all linear 300ms;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  overflow: hidden;
  display: table;
}
.header-fixed .details .current-title {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 600;
  display: block;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  padding: 25px 0 20px 0;
  width: 1000px;
}
.header-fixed .details .current-title:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 80px;
  z-index: 104;
  height: 100%;
  background: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 68%,
    #ffffff 99%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 68%,
    #ffffff 99%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 68%,
    #ffffff 99%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
}
.header-fixed .details-row {
  display: table-row;
}
.header-fixed .details-cell {
  display: table-cell;
  vertical-align: middle;
}
.header-fixed .details-cell.logo-cell {
  width: 170px;
}
.header-fixed .details-cell .current-title {
  padding: 0;
  width: 90%;
}
.header-fixed .next-details {
  -moz-transition: opacity linear 300ms;
  -webkit-transition: opacity linear 300ms;
  -o-transition: opacity linear 300ms;
  transition: opacity linear 300ms;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 1;
}
.header-fixed .next-details .up-next {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.header-fixed .next-details .up-next.loading:after {
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
  display: inline-block;
  font-family: "fontello";
  content: "\e838";
  position: absolute;
  top: 23px;
  left: 130px;
  z-index: -1;
  font-size: 50px;
  color: #eeeeee;
}
.header-fixed .next-details .next-img {
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
}
.header-fixed .next-details .next-title {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 600;
  display: block;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  padding: 20px 0 20px 120px;
  height: 100%;
  color: #888888;
  overflow: hidden;
}
.header-fixed .next-details .next-title .title {
  display: block;
  width: 1000px;
  color: #222222;
  font-size: 15px;
}
.header-fixed .social-header {
  -moz-transition: all linear 300ms;
  -webkit-transition: all linear 300ms;
  -o-transition: all linear 300ms;
  transition: all linear 300ms;
  -moz-transform: translate(0, -150%);
  -webkit-transform: translate(0, -150%);
  -o-transform: translate(0, -150%);
  -ms-transform: translate(0, -150%);
  transform: translate(0, -150%);
  padding-top: 13px;
  position: absolute;
  top: 0;
  right: 20px;
  z-index: 101;
}
.header-fixed .social-header a {
  background-color: #f8f8f8;
  border-color: #eeeee9;
  cursor: pointer;
}
.header-fixed .social-header a.search {
  border-width: 0;
  background-color: #ffffff;
}
.header-fixed .social-header a.search i {
  font-size: 24px;
  position: relative;
  top: 3px;
}
.header-fixed .navbar {
  -moz-transition: all linear 400ms;
  -webkit-transition: all linear 400ms;
  -o-transition: all linear 400ms;
  transition: all linear 400ms;
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-color: #ffffff;
  position: absolute;
  top: 3px;
  left: 0;
  width: 100%;
  z-index: 1;
}
.header-fixed .navbar .menu-col-wrapper {
  -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
  border: 0;
}
.header-fixed .navbar .menu-main-menu-container {
  padding-top: 2px;
}
.header-fixed .logo {
  display: inline-block;
  width: 140px;
  height: 30px;
  margin: 10px 20px 10px 10px;
  position: relative;
  z-index: 101;
  float: left;
}
.header-fixed .logo a {
  -webkit-transform: scale(0.999);
  -moz-transform: scale(0.999);
  transform: scale(0.999);
  text-indent: -9999px;
  background-image: url("../images/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  margin: -10px auto;
  height: 50px;
  display: block;
}
.header-fixed .logo a:hover,
.header-fixed .logo a:active,
.header-fixed .logo a:focus {
  text-decoration: none;
}
.header-fixed.nav-active .header-fixed-top {
  -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.25);
}
.header-fixed.nav-active .navbar-toggle .icon-bar {
  -webkit-box-shadow: 0 0 8px 1px rgba(123, 204, 198, 0.75);
  -moz-box-shadow: 0 0 8px 1px rgba(123, 204, 198, 0.75);
  box-shadow: 0 0 8px 1px rgba(123, 204, 198, 0.75);
}
.header-fixed.nav-active .navbar {
  -moz-transform: translate(0, 100%);
  -webkit-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.header-fixed.no-more .next-details {
  opacity: 0;
  cursor: default;
}
.navbar {
  border: 0;
  z-index: 101;
}
.navbar-toggle {
  margin: 0;
}
.navbar-toggle .icon-bar {
  background-color: #000000;
}
.menu-col-wrapper {
  zoom: 1;
  clear: both;
}
.menu-col-wrapper:before {
  content: "";
  display: block;
}
.menu-col-wrapper:after {
  content: "";
  display: table;
  clear: both;
}
.menu-col-inner {
  zoom: 1;
  clear: both;
}
.menu-col-inner:before {
  content: "";
  display: block;
}
.menu-col-inner:after {
  content: "";
  display: table;
  clear: both;
}
.social-header {
  float: right;
  padding: 10px 0;
}
#search-form {
  display: none;
}
.navbar-nav {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 15px;
}
.navbar-nav > li a {
  height: auto;
  line-height: 35px;
  padding-left: 12px;
  padding-right: 12px;
}
.navbar-nav > li a:hover,
.navbar-nav > li a:active,
.navbar-nav > li a:focus {
  background-color: transparent;
}
.navbar-nav > li a .caret {
  display: none;
}
.navbar-nav > li:first-child a {
  padding-left: 0;
}
.navbar-nav > li.dropdown:hover ul.dropdown-menu {
  display: block;
}
.navbar-nav > li ul.dropdown-menu {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  padding: 18px 10px;
  margin: 0 0 0 -14px;
  max-height: 400px;
  overflow: auto;
}
.navbar-nav > li ul.dropdown-menu li {
  display: block;
  padding: 0 20px;
}
.navbar-nav > li ul.dropdown-menu li a {
  padding: 3px 0 0;
  display: inline-block;
}
.navbar-nav > li ul.dropdown-menu li,
.navbar-nav > li ul.dropdown-menu li a {
  font-weight: 600;
  line-height: 25px;
}
.navbar-nav > li ul.dropdown-menu > .active > a {
  color: #d05545;
  border-bottom: 3px solid #f7c7c1;
}
.navbar-nav > li ul.dropdown-menu > .active > a,
.navbar-nav > li ul.dropdown-menu > .active > a:focus,
.navbar-nav > li ul.dropdown-menu > .active > a:active {
  background-color: transparent;
}
.author-links a,
.social-icons a {
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  display: inline-block;
  border: 1px solid #aaaaaa;
  background-color: #f7f7f7;
  width: 35px;
  height: 35px;
  line-height: 31px;
  margin: 5px;
  text-align: center;
}
.author-links a i,
.social-icons a i {
  margin: 0;
  font-size: 17px;
}
.author-links a i:before,
.social-icons a i:before {
  margin: 0;
}
.author-links a:hover,
.social-icons a:hover {
  border-color: #000000;
  color: #000000;
}
.author-links a.podcast-link,
.social-icons a.podcast-link {
  background-image: url(/wp-content/themes/show-3/images/noun_podcast_648424.svg);
  background-repeat: no-repeat;
  background-size: auto 80%;
  background-position: center 6px;
}
.author-links a.podcast-link i:before,
.social-icons a.podcast-link i:before {
  content: "";
}
.footer {
  zoom: 1;
  clear: both;
  padding-top: 30px;
  padding-bottom: 20px;
}
.footer:before {
  content: "";
  display: block;
}
.footer:after {
  content: "";
  display: table;
  clear: both;
}
.footer .copyright {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-top: 30px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
}
.footer .social-col {
  float: right;
  text-align: right;
}
.footer .social-icons a {
  background-color: transparent;
}
.footer-nav {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 40px;
}
.footer-nav li {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 600;
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-size: 15px;
  display: inline-block;
  margin-right: 15px;
}
.footer-nav li:last-child {
  margin-right: 0;
}
.popup-search {
  -moz-transition: opacity linear 300ms;
  -webkit-transition: opacity linear 300ms;
  -o-transition: opacity linear 300ms;
  transition: opacity linear 300ms;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.92);
  z-index: -1;
}
.popup-search.active {
  opacity: 1;
}
.popup-search .search-form-wrapper {
  -webkit-box-shadow: 0 0 10em 10em #ffffff;
  -moz-box-shadow: 0 0 10em 10em #ffffff;
  box-shadow: 0 0 10em 10em #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -350px;
  margin-top: -100px;
  width: 700px;
}
.popup-search .search-form-wrapper form.searchform {
  display: block;
  border-bottom: 1px solid #cccccc;
  background-color: #ffffff;
}
.popup-search .search-form-wrapper:before {
  font-family: "fontello";
  float: left;
  margin-right: 15px;
}
.popup-search .search-form-wrapper button {
  background: none;
  border: none;
  font-size: 32px;
  padding: 5px 5px 5px 10px;
}
.popup-search .search-form-wrapper .close {
  float: right;
  width: 20px;
}
.popup-search .search-form-wrapper .close i:before {
  margin: 0;
}
.popup-search .searchform input {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 500;
  border: 0;
  font-size: 34px;
  padding: 10px;
  width: 80%;
}
.mobile-menu {
  -moz-transition: opacity 300ms linear;
  -webkit-transition: opacity 300ms linear;
  -o-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  z-index: -3;
  opacity: 0;
  overflow: auto;
}
.mobile-menu.active {
  opacity: 1;
}
.mobile-menu .close {
  margin-top: 15px;
  margin-right: 15px;
}
.mobile-menu .mobile-menu-inner {
  zoom: 1;
  clear: both;
  padding: 40px;
}
.mobile-menu .mobile-menu-inner:before {
  content: "";
  display: block;
}
.mobile-menu .mobile-menu-inner:after {
  content: "";
  display: table;
  clear: both;
}
.mobile-menu .logo {
  -webkit-transform: scale(0.999);
  -moz-transform: scale(0.999);
  transform: scale(0.999);
  text-indent: -9999px;
  background-image: url("../images/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  max-width: 165px;
  height: 55px;
  margin: 0 auto 20px;
  display: block;
}
.mobile-menu .logo:hover,
.mobile-menu .logo:active,
.mobile-menu .logo:focus {
  text-decoration: none;
}
.mobile-menu .navbar-nav > li a {
  padding: 0;
}
.mobile-menu .social-header {
  float: none;
}
.mobile-menu .search-form {
  zoom: 1;
  clear: both;
  border: 1.5px solid #cccccc;
  margin: 20px 0;
}
.mobile-menu .search-form:before {
  content: "";
  display: block;
}
.mobile-menu .search-form:after {
  content: "";
  display: table;
  clear: both;
}
.mobile-menu .search-form input {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 500;
  float: left;
  font-size: 18px;
  padding: 10px;
  min-width: 200px;
  width: 70%;
  border: 0;
}
.mobile-menu .search-form button {
  float: right;
  font-size: 20px;
  padding: 10px 5px;
  background-color: #ffffff;
  border: 0;
}
.mobile-menu .search-form button i:before {
  margin: 0;
}
form input,
form textarea,
form button,
form select {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 18px;
}
form input,
form textarea,
form input.form-control,
form textarea.form-control {
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #e5e5e5;
  padding: 5px 10px;
  height: auto;
  font-size: 24px;
  text-align: center;
}
form .wpcf7-form-control.wpcf7-submit {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 600;
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
  height: 50px;
  padding: 15px 30px;
  background-color: #000000;
  display: inline-block;
  color: #ffffff;
  border: 1px solid #e5e5e5;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
form .wpcf7-form-control.wpcf7-submit i {
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}
form .wpcf7-form-control.wpcf7-submit,
form .wpcf7-form-control.wpcf7-submit:visited,
form .wpcf7-form-control.wpcf7-submit:active {
  color: #ffffff;
}
form .wpcf7-form-control.wpcf7-submit,
form .wpcf7-form-control.wpcf7-submit:active,
form .wpcf7-form-control.wpcf7-submit:hover {
  text-decoration: none;
}
form .wpcf7-form-control.wpcf7-submit:hover {
  text-decoration: none;
  background-color: #ffffff;
}
form .wpcf7-form-control.wpcf7-submit:hover,
form .wpcf7-form-control.wpcf7-submit:hover i {
  color: #000000;
}
form .form-horizontal label.control-label {
  padding-top: 7px;
}
form .form-horizontal .wpcf7-captchac {
  margin-top: 7px;
}
.search-form {
  zoom: 1;
  clear: both;
}
.search-form:before {
  content: "";
  display: block;
}
.search-form:after {
  content: "";
  display: table;
  clear: both;
}
.search-form input:focus,
.search-form input:active {
  outline: none;
}
.fp-cat-title {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  text-transform: uppercase;
  margin: 0 0 15px 0;
}
.fp-cat-title a:hover,
.fp-cat-title a:visited {
  color: #000000;
}
.home-on-the-couch h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
  margin-bottom: 23px;
}
.home-on-the-couch .row {
  margin-left: -10px;
  margin-right: -10px;
}
.home-on-the-couch .col-sm-4 {
  padding-left: 10px;
  padding-right: 10px;
}
.home-on-the-couch .feat-img-cat-fp a {
  padding-bottom: 71.09%;
}
.home-on-the-couch .feat-img-cat-fp a:before {
  font-family: "fontello";
  content: "\e801";
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  color: #ffffff;
  font-size: 34px;
}
.home-video {
  zoom: 1;
  clear: both;
  position: relative;
  margin-bottom: 20px;
}
.home-video:before {
  content: "";
  display: block;
}
.home-video:after {
  content: "";
  display: table;
  clear: both;
}
.home-video img {
  margin: 0;
  max-width: 100%;
  height: auto;
  display: block;
}
.home-video .home-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.home-video .home-video-wrapper {
  display: table;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-video .home-video-inner {
  display: table-row;
}
.home-video .home-video-cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.home-video .home-video-cell i {
  font-size: 50px;
  color: #ffffff;
  margin-top: 40px;
  display: inline-block;
}
.home-video .home-video-cell h3 {
  font-family: "freight-big-pro", Georgia, serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 35px;
  margin: 20px 10% 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  text-transform: none;
  color: #ffffff;
}
.home-video .home-video-cell h3 a,
.home-video .home-video-cell h3 a:hover,
.home-video .home-video-cell h3 a:focus {
  color: #ffffff;
  text-decoration: none;
}
.article-table {
  display: table;
  margin-bottom: 26px;
  width: 100%;
}
.article-table .article-details {
  padding-left: 20px;
}
.article-row {
  display: table-row;
}
.article-cell {
  display: table-cell;
}
.article-cell.feat-img-cat-fp {
  vertical-align: top;
}
.article-cell.feat-img-cat-fp img {
  position: absolute;
  margin: 0;
  display: block;
  max-width: 100%;
  height: auto;
}
.article-cell.article-details {
  vertical-align: middle;
}
.ad-p-holder {
  zoom: 1;
  clear: both;
  font-family: "freight-big-pro", Georgia, serif;
  font-weight: 900;
  width: 100%;
  padding: 0;
  line-height: 100%;
  font-size: 36px;
  border: 1px solid #ecece6;
  text-align: center;
  margin-bottom: 30px;
}
.ad-p-holder:before {
  content: "";
  display: block;
}
.ad-p-holder:after {
  content: "";
  display: table;
  clear: both;
}
.ad-p-holder.p-970 {
  margin-bottom: 0px;
  max-width: 100%;
}
.ad-p-holder > div {
  margin: 40px auto;
  background-color: #f7f7f7;
  border: 1px solid #ecece6;
}
.ad-p-holder .ad-728 {
  width: 728px;
  height: 90px;
  line-height: auto;
}
.ad-p-holder .ad-970 {
  width: 970px;
  min-height: 90px;
  line-height: auto;
  margin: 20px auto 31px;
  border: 0;
  background: none;
}
.ad-p-holder .ad-970.home-970 {
  margin-bottom: 20px;
}
.ad-p-holder .ad-300 {
  width: 300px;
  height: 250px;
  line-height: auto;
}
.ad-p-holder .ad-600 {
  width: 300px;
  line-height: auto;
  height: auto;
  min-height: 250px;
}
.ad-section .ad-p-holder {
  border: 1px solid transparent;
}
.grey .ad-p-holder {
  background-color: #ffffff;
  border: 1px solid #ecece6;
}
.grey .ad-p-holder > div {
  background-color: #f7f7f7;
  border: 1px solid #f7f7f7;
}
.feat-img-cat-fp {
  position: relative;
}
.feat-img-cat-fp a {
  display: block;
  height: 0;
  padding-bottom: 71%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.feat-img-cat-fp a img {
  display: block;
  opacity: 0;
}
#on-the-couch-videos .feat-img-cat-fp a {
  padding-bottom: 56%;
}
.cats {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.cats,
.cats a {
  color: #888888;
}
.auth {
  padding-left: 70px;
  position: relative;
}
.auth .auth-img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  width: 50px;
  height: 50px;
  display: inline-block;
  margin-right: 15px;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
.auth .auth-img img {
  max-width: 100%;
  height: auto;
}
.auth .author {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #000000;
  letter-spacing: 0.7px;
  line-height: 14px;
  padding: 18px 0;
  height: 50px;
  display: inline-block;
  text-transform: uppercase;
}
.auth.with-date .author {
  line-height: 14px;
  height: auto;
  padding: 10px 0;
  text-transform: none;
}
.auth.with-date .author .date,
.auth.with-date .author .name {
  text-transform: uppercase;
}
.article-details {
  position: relative;
  padding-bottom: 60px;
}
.article-details .cats {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  color: #888888;
  letter-spacing: 0.7px;
}
.article-details a,
.article-details a:visited {
  color: #888888;
}
.article-details a:hover,
.article-details a:active {
  color: #000000;
}
.article-details h3 {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #000000;
}
.article-details h3 a,
.article-details h3 a:visited {
  color: #000000;
}
.article-details h3 a:hover,
.article-details h3 a:active {
  color: #fc9090;
}
.article-details .auth {
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 100%;
}
.cats {
  display: block;
  line-height: 16px;
}
.home-intro {
  margin-top: 40px;
  margin-bottom: 40px;
}
.home-intro .article-cell.feat-img-cat-fp {
  width: 43.8%;
  height: auto;
}
.home-intro .col-sm-6:last-child {
  padding-right: 25px;
  border-right: 1px solid #e5e5e5;
}
.home-intro .col-sm-6:first-child {
  padding-left: 25px;
}
.home-intro .col-sm-6.latest-col {
  float: right;
}
.home-intro .article-details {
  padding-bottom: 0;
}
.home-intro .article-details h3 {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 20px;
}
.large-articles .article-table {
  margin-bottom: 52px;
}
.large-articles .article-table .article-details {
  padding-left: 30px;
}
.large-articles .article-cell {
  vertical-align: top;
}
.large-articles .article-cell.feat-img-cat-fp {
  width: 48%;
}
.large-articles .article-details {
  position: relative;
}
.large-articles .article-details h3 {
  margin: 10px 0;
  font-size: 23px;
  line-height: 26px;
}
.large-articles .auth {
  left: 30px;
}
.section {
  zoom: 1;
  clear: both;
}
.section:before {
  content: "";
  display: block;
}
.section:after {
  content: "";
  display: table;
  clear: both;
}
.section .section-title {
  margin: 60px auto 30px;
  text-align: center;
}
.section.grey {
  background-color: #f7f7f7;
}
.section.grey + .section.grey .section-title {
  margin-top: 10px;
}
.section.white + .section.white .section-title {
  margin-top: 10px;
}
.section.no-title {
  padding-top: 90px;
}
.section.no-title .sidebar-articles {
  margin-top: 0;
}
.section.good-stuff .section-title {
  margin-bottom: 60px;
}
.modal,
.subscribe-section {
  padding-bottom: 40px;
}
.modal .section-title,
.subscribe-section .section-title {
  margin-bottom: 10px;
}
.modal form,
.subscribe-section form {
  display: block;
  margin: 0 auto;
  max-width: 400px;
}
.modal form div.MGLLabel,
.subscribe-section form div.MGLLabel {
  margin-bottom: 5px;
}
.modal form div.MGLField,
.subscribe-section form div.MGLField {
  margin-bottom: 15px;
}
.modal form div.MGLField input,
.subscribe-section form div.MGLField input {
  border: 1px solid #e5e5e5;
  padding: 5px 10px;
  height: auto;
  font-size: 24px;
  text-align: center;
}
.modal form .MGLSubmitBreak,
.subscribe-section form .MGLSubmitBreak {
  display: none;
}
.modal .social-icons,
.subscribe-section .social-icons {
  margin: 30px 0 0;
}
.modal .social-icons a,
.subscribe-section .social-icons a {
  margin: 0 10px 20px;
}
.modal #MGLSubmit,
.subscribe-section #MGLSubmit {
  z-index: 1;
}
.modal .MGLSuccessMessage,
.subscribe-section .MGLSuccessMessage {
  max-width: 400px;
  padding: 20px 20px 30px;
  margin: 10px auto;
  background-color: #f7f7f7;
}
.modal .MGLSuccessMessage h1,
.subscribe-section .MGLSuccessMessage h1 {
  font-weight: 900;
  font-size: 40px;
  letter-spacing: 0.5px;
  line-height: 50px;
  margin-top: 0;
  margin-bottom: 10px;
}
.modal .MGLSuccessMessage br,
.subscribe-section .MGLSuccessMessage br {
  display: none;
}
.modal {
  text-align: center;
}
.modal .logo {
  -webkit-transform: scale(0.999);
  -moz-transform: scale(0.999);
  transform: scale(0.999);
  text-indent: -9999px;
  background-image: url("../images/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  width: 180px;
  margin: 0 auto;
  height: 70px;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -90px;
}
.modal .logo:hover,
.modal .logo:active,
.modal .logo:focus {
  text-decoration: none;
}
.modal h2 {
  margin-bottom: 15px;
}
.modal a.no-thanks {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 16px;
  margin-top: 30px;
  display: inline-block;
  border-bottom: 2px solid #a0a0a0;
}
.modal .modal-body {
  padding-top: 20px;
  padding-bottom: 40px;
}
.modal-backdrop {
  background-color: #fff;
}
.modal-backdrop.in {
  opacity: 0.7;
}
.modal-content {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 0;
  -webkit-box-shadow: 0 0 25px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 0 25px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 25px 1px rgba(0, 0, 0, 0.25);
}
.modal-header {
  border-bottom: 0;
}
.going-off-articles {
  zoom: 1;
  clear: both;
  padding: 0 7.5px;
}
.going-off-articles:before {
  content: "";
  display: block;
}
.going-off-articles:after {
  content: "";
  display: table;
  clear: both;
}
.going-off-articles .article {
  float: left;
  padding: 0 7.5px;
  text-align: center;
}
.going-off-articles .article.fifth {
  width: 20%;
}
.going-off-articles .feat-img-cat-fp {
  position: relative;
  overflow: hidden;
}
.going-off-articles .feat-img-cat-fp img {
  max-height: 100%;
  margin: 0 auto;
}
.going-off-articles h3 {
  font-size: 16px;
  line-height: 20px;
  margin: 15px 0 20px;
}
.going-off-articles .post-no {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
  background-color: #ffffff;
  position: relative;
  width: 51px;
  height: 51px;
  line-height: 51px;
  margin: -20px auto 16px;
}
.pagination-container {
  display: block;
  clear: both;
}
.article span.more-link {
  display: block;
}
.article span.more-link > a {
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  color: #d05545;
  position: relative;
}
.article span.more-link > a:hover,
.article span.more-link > a:focus,
.article span.more-link > a:active {
  text-decoration: none;
}
.article span.more-link > a:after {
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #f7c7c1;
}
.article span.more-link > a:hover {
  color: #000000;
}
.article span.more-link > a:hover:after {
  background-color: #d05545;
}
.article-list {
  zoom: 1;
  clear: both;
  padding-bottom: 20px;
}
.article-list:before {
  content: "";
  display: block;
}
.article-list:after {
  content: "";
  display: table;
  clear: both;
}
.article-list > div.row {
  clear: both;
}
.article-list > div.row .col-md-4:nth-child(3n),
.article-list > div.row .col-sm-4:nth-child(3n) {
  clear: right;
}
.article-list > div.row .col-md-4:nth-child(3n + 1),
.article-list > div.row .col-sm-4:nth-child(3n + 1) {
  clear: left;
}
.article-list > div:nth-child(3n) {
  clear: right;
}
.article-list > div:nth-child(3n + 1) {
  clear: left;
}
.article-list .article {
  padding-bottom: 40px;
}
.article-list .article h3 {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  margin: 10px 0 10px;
}
.article-list .article p {
  font-size: 18px;
  line-height: 22px;
}
.article-list .article.otc-article p {
  display: none;
}
.article-list .article.otc-article .article-details {
  min-height: 150px;
}
.article-list .auth {
  left: 0;
}
.article-list .feat-img-cat-fp {
  overflow: hidden;
  margin-bottom: 22px;
}
.home-video-cell,
.feat-img-cat-fp {
  -moz-transition: opacity 200ms linear;
  -webkit-transition: opacity 200ms linear;
  -o-transition: opacity 200ms linear;
  transition: opacity 200ms linear;
  opacity: 1;
}
.home-video-cell:hover,
.feat-img-cat-fp:hover {
  opacity: 0.82;
}
.large-article-list {
  position: relative;
  padding-bottom: 50px;
}
.large-article-list .feat-img-cat-fp {
  width: 100%;
}
.large-article-list .article {
  height: auto;
  padding-bottom: 0;
  text-align: center;
}
.large-article-list .article .article-details {
  padding-bottom: 20px;
}
.large-article-list .article:nth-child(odd) {
  padding-right: 26px;
  border-right: 1px solid #e5e5e5;
}
.large-article-list .article:nth-child(even) {
  padding-left: 26px;
}
.large-article-list .article h3 {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  margin: 10px 0 10px;
}
.large-article-list .article p {
  font-size: 20px;
  line-height: 25px;
}
.large-article-list .auth {
  text-align: left;
  position: relative;
  left: 0;
  width: auto;
  display: inline-block;
  margin: 20px auto 0;
}
#infscr-loading {
  text-align: center;
}
#infscr-loading img {
  display: inline-block;
}
#infscr-loading div {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 500;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  padding-left: 10px;
}
.article-intro {
  text-align: center;
  margin-top: 10px;
}
.article-intro h1.article-title {
  text-transform: uppercase;
  font-size: 40px;
  line-height: 56px;
}
.auth-social {
  zoom: 1;
  clear: both;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
  margin-bottom: 30px;
}
.auth-social:before {
  content: "";
  display: block;
}
.auth-social:after {
  content: "";
  display: table;
  clear: both;
}
.auth-social.no-auth .social-container {
  float: left;
}
.social-container {
  float: right;
  margin-top: 4px;
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}
.social-container .st_pinterest_hcount,
.social-container .st_twitter_hcount,
.social-container .st_facebook_hcount {
  display: inline-block;
}
.social-container .st_pinterest_hcount .stArrow,
.social-container .st_twitter_hcount .stArrow,
.social-container .st_facebook_hcount .stArrow,
.social-container .st_pinterest_hcount .stMainServices,
.social-container .st_twitter_hcount .stMainServices,
.social-container .st_facebook_hcount .stMainServices {
  background: none !important;
}
.social-container .st_pinterest_hcount > span,
.social-container .st_twitter_hcount > span,
.social-container .st_facebook_hcount > span {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 600;
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
  height: 50px;
  padding: 15px 30px;
  background-color: #000000;
  display: inline-block;
  color: #ffffff;
  border: 1px solid #e5e5e5;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #ffffff !important;
  margin-left: 5px;
  height: 40px;
  padding-top: 9px;
  padding-bottom: 9px;
  position: relative;
}
.social-container .st_pinterest_hcount > span i,
.social-container .st_twitter_hcount > span i,
.social-container .st_facebook_hcount > span i {
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}
.social-container .st_pinterest_hcount > span,
.social-container .st_twitter_hcount > span,
.social-container .st_facebook_hcount > span,
.social-container .st_pinterest_hcount > span:visited,
.social-container .st_twitter_hcount > span:visited,
.social-container .st_facebook_hcount > span:visited,
.social-container .st_pinterest_hcount > span:active,
.social-container .st_twitter_hcount > span:active,
.social-container .st_facebook_hcount > span:active {
  color: #ffffff;
}
.social-container .st_pinterest_hcount > span,
.social-container .st_twitter_hcount > span,
.social-container .st_facebook_hcount > span,
.social-container .st_pinterest_hcount > span:active,
.social-container .st_twitter_hcount > span:active,
.social-container .st_facebook_hcount > span:active,
.social-container .st_pinterest_hcount > span:hover,
.social-container .st_twitter_hcount > span:hover,
.social-container .st_facebook_hcount > span:hover {
  text-decoration: none;
}
.social-container .st_pinterest_hcount > span:hover,
.social-container .st_twitter_hcount > span:hover,
.social-container .st_facebook_hcount > span:hover {
  text-decoration: none;
  background-color: #ffffff;
}
.social-container .st_pinterest_hcount > span:hover,
.social-container .st_twitter_hcount > span:hover,
.social-container .st_facebook_hcount > span:hover,
.social-container .st_pinterest_hcount > span:hover i,
.social-container .st_twitter_hcount > span:hover i,
.social-container .st_facebook_hcount > span:hover i {
  color: #000000;
}
.social-container .st_pinterest_hcount > span:before,
.social-container .st_twitter_hcount > span:before,
.social-container .st_facebook_hcount > span:before {
  font-family: "fontello";
  margin-right: 10px;
}
.social-container .st_pinterest_hcount > span,
.social-container .st_twitter_hcount > span,
.social-container .st_facebook_hcount > span,
.social-container .st_pinterest_hcount > span:active,
.social-container .st_twitter_hcount > span:active,
.social-container .st_facebook_hcount > span:active,
.social-container .st_pinterest_hcount > span:hover,
.social-container .st_twitter_hcount > span:hover,
.social-container .st_facebook_hcount > span:hover {
  text-decoration: none;
}
.social-container .st_pinterest_hcount > span,
.social-container .st_twitter_hcount > span,
.social-container .st_facebook_hcount > span,
.social-container .st_pinterest_hcount > span:visited,
.social-container .st_twitter_hcount > span:visited,
.social-container .st_facebook_hcount > span:visited,
.social-container .st_pinterest_hcount > span:active,
.social-container .st_twitter_hcount > span:active,
.social-container .st_facebook_hcount > span:active {
  color: #ffffff !important;
}
.social-container .st_pinterest_hcount > span:hover,
.social-container .st_twitter_hcount > span:hover,
.social-container .st_facebook_hcount > span:hover {
  background-color: #ffffff;
}
.social-container .st_pinterest_hcount > span > span,
.social-container .st_twitter_hcount > span > span,
.social-container .st_facebook_hcount > span > span {
  opacity: 0;
  text-indent: -999px;
  width: 10px;
  overflow: hidden;
  position: absolute;
}
.social-container .st_facebook_hcount > span {
  background-color: #20348c;
  border-color: #20348c;
}
.social-container .st_facebook_hcount > span:before {
  content: "\f09a";
}
.social-container .st_facebook_hcount > span:after {
  content: "Facebook";
}
.social-container .st_facebook_hcount > span:hover {
  border-color: #20348c;
}
.social-container .st_facebook_hcount > span:hover,
.social-container .st_facebook_hcount > span:hover i {
  color: #20348c !important;
}
.social-container .st_twitter_hcount > span {
  background-color: #00a6e1;
  border-color: #00a6e1;
}
.social-container .st_twitter_hcount > span:before {
  content: "\f099";
}
.social-container .st_twitter_hcount > span:after {
  content: "Twitter";
}
.social-container .st_twitter_hcount > span:hover {
  border-color: #00a6e1;
}
.social-container .st_twitter_hcount > span:hover,
.social-container .st_twitter_hcount > span:hover i {
  color: #00a6e1 !important;
}
.social-container .st_pinterest_hcount > span {
  background-color: #bd081c;
  border-color: #bd081c;
}
.social-container .st_pinterest_hcount > span:before {
  content: "\f231";
}
.social-container .st_pinterest_hcount > span:after {
  content: "Pinterest";
}
.social-container .st_pinterest_hcount > span:hover {
  border-color: #bd081c;
}
.social-container .st_pinterest_hcount > span:hover,
.social-container .st_pinterest_hcount > span:hover i {
  color: #bd081c !important;
}
.social-container .stButton .stFb,
.social-container .stButton .stTwbutton,
.social-container .stButton .stMainServices {
  height: 22px;
}
.social-container .stButton .stBubble_hcount {
  position: relative;
  top: -2px;
}
.site-main {
  -moz-transition: padding linear 300ms;
  -webkit-transition: padding linear 300ms;
  -o-transition: padding linear 300ms;
  transition: padding linear 300ms;
  padding-bottom: 0;
}
.site-main .ajax-article {
  margin-top: 0;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
}
.site-main .loader {
  -moz-transition: opacity linear 300ms;
  -webkit-transition: opacity linear 300ms;
  -o-transition: opacity linear 300ms;
  transition: opacity linear 300ms;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  text-align: center;
}
.site-main .loader span {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin: 30px 0 5px;
  position: relative;
  z-index: 2;
}
.site-main .loader i {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 80px;
  color: #eeeeee;
  margin: -40px auto 30px;
}
.site-main.loading {
  padding-bottom: 130px;
}
.site-main.loading .loader {
  height: 130px;
}
.article-content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  display: block;
}
.article-content img.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.article-content img.alignleft {
  margin-right: 40px;
  max-width: 50%;
}
.article-content img.alignright {
  margin-left: 40px;
  max-width: 50%;
}
.article-content div.alignright,
.article-content div.alignleft {
  margin-top: 10px;
}
.article-content div.alignleft {
  margin-right: 40px;
  max-width: 50%;
}
.article-content div.alignright {
  margin-left: 40px;
  max-width: 50%;
}
.article-content p em > a,
.article-content p > a {
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  color: #d05545;
  position: relative;
}
.article-content p em > a:hover,
.article-content p > a:hover,
.article-content p em > a:focus,
.article-content p > a:focus,
.article-content p em > a:active,
.article-content p > a:active {
  text-decoration: none;
}
.article-content p em > a:after,
.article-content p > a:after {
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #f7c7c1;
}
.article-content p em > a:hover,
.article-content p > a:hover {
  color: #000000;
}
.article-content p em > a:hover:after,
.article-content p > a:hover:after {
  background-color: #d05545;
}
.article-content .wp-caption {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  text-align: left;
  background-color: transparent;
  padding: 0;
  margin-bottom: 20px;
  width: auto;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.article-content .wp-caption.alignleft {
  margin-right: 30px;
}
.article-content .wp-caption.alignright {
  margin-left: 30px;
}
.article-content .wp-caption img {
  margin-bottom: 4px;
}
.article-content .wp-caption,
.article-content .wp-caption a {
  color: rgba(100, 100, 83, 0.7);
}
.article-content blockquote {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 36px;
  text-align: center;
  border: 0;
  position: relative;
  margin: 30px 0;
  padding-top: 30px;
  padding-bottom: 40px;
}
.article-content blockquote:before,
.article-content blockquote:after {
  font-family: "freight-big-pro", Georgia, serif;
  font-weight: 900;
  font-size: 26px;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 20px;
  text-align: center;
  color: #c8c8c8;
  background-image: url(../images/bc.png);
  background-repeat: no-repeat;
  background-position: center 5px;
}
.article-content blockquote:before {
  top: 0;
  content: "\201C";
  background-position: center 5px;
}
.article-content blockquote:after {
  bottom: 0;
  content: "\201D";
  background-position: center 2px;
}
.article-content > div.rve {
  position: relative;
  height: 0;
  padding-bottom: 56%;
}
.article-content > div.rve iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#couchHide {
  display: none;
  position: absolute;
  left: 0px;
  background-color: #fff;
  z-index: 1;
  height: 100%;
  border-bottom: 4px solid $aqua;
  box-sizing: border-box;
  max-height: 100%;
  padding: 10px 15px;
  width: 100%;
  background-color: black;
  white-space: nowrap;
  padding: 0;
  border: none;
  overflow-x: hidden;
  overflow-y: hidden;
}
#couchHide #hideCouchContainer {
  overflow-y: hidden;
}
#couchHide h4 {
  color: white;
  white-space: normal;
}
#couchHide a {
  float: left;
}
.tab-container {
  zoom: 1;
  clear: both;
  border: 1px solid #ecece6;
  position: relative;
}
.tab-container:before {
  content: "";
  display: block;
}
.tab-container:after {
  content: "";
  display: table;
  clear: both;
}
.tab-container .tabs {
  display: table;
  clear: both;
  width: 100%;
}
.tab-container .tabs .tabs-r {
  display: table-row;
}
.tab-container .tabs a {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 600;
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  width: 50%;
  text-transform: uppercase;
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  display: table-cell;
  vertical-align: middle;
  height: 60px;
  border-left: 1px solid #ecece6;
  border-bottom: 1px solid #ecece6;
  background-color: #f7f7f7;
  padding-top: 4px;
}
.tab-container .tabs a:first-child {
  border-left: none;
}
.tab-container .tabs a.active {
  border-bottom-color: #ffffff;
  background-color: #ffffff;
}
.tab-container .tabs a:hover {
  text-decoration: none;
}
.tab-container .tab-content {
  zoom: 1;
  clear: both;
  background-color: #ffffff;
}
.tab-container .tab-content:before {
  content: "";
  display: block;
}
.tab-container .tab-content:after {
  content: "";
  display: table;
  clear: both;
}
.tab-container .tab-content .tab {
  padding: 15px 15px 0;
  display: none;
}
.tab-container .tab-content .tab.active {
  display: block;
}
.sidebar-articles {
  margin: 10px 0 30px 0;
}
.sidebar-articles .article-details {
  padding: 0 0 0 15px;
}
.sidebar-articles .article-table {
  margin-bottom: 15px;
}
.sidebar-articles .feat-img-cat-fp {
  width: 105px;
}
.sidebar-articles .cats {
  font-size: 12px;
  line-height: 14px;
}
.sidebar-articles h3 {
  font-size: 14px;
  margin: 0px 0 0;
  line-height: 16px;
}
.sub-cat-title,
.cat-title {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 60px;
  text-transform: uppercase;
}
.sub-cat-title + h6.radio-subtitle,
.cat-title + h6.radio-subtitle {
  margin-top: -35px;
  margin-bottom: 35px;
  font-size: 20px;
}
a.aami {
  float: right;
  max-width: 110px;
  margin-top: 30px;
}
a.aami img {
  display: inline-block;
}
.otc-sub-cat-title {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
}
.cat-select {
  appearance: normal;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 500;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-top: 5px;
  font-size: 20px;
  line-height: 19px;
  float: right;
  background-image: url(../images/select-arrow.gif);
  background-position: right center;
  background-repeat: no-repeat;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 10px 50px 10px 20px;
  width: 210px;
}
.cat-select:focus {
  text-transform: none;
}
.cat-select option {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 14px;
}
#on-the-couch-videos .cat-select {
  font-size: 26px;
  line-height: 30px;
  text-transform: uppercase;
  margin-top: -1px;
  padding: 10px 50px 10px 25px;
  width: 230px;
}
#on-the-couch-videos .inline-cat-select {
  zoom: 1;
  clear: both;
}
#on-the-couch-videos .inline-cat-select:before {
  content: "";
  display: block;
}
#on-the-couch-videos .inline-cat-select:after {
  content: "";
  display: table;
  clear: both;
}
#on-the-couch-videos .inline-cat-select h1 {
  float: left;
}
#on-the-couch-videos .inline-cat-select .cat-select {
  float: left;
  margin-top: 20px;
  margin-left: 100px;
}
.feat-img {
  margin-bottom: 20px;
}
.feat-img a {
  display: block;
}
.feat-img a img {
  display: block;
  width: 100%;
  height: auto;
}
.feat-left-img {
  float: left;
  margin-right: 40px;
  max-width: 40%;
}
.feat-left-img a img {
  margin-bottom: 0;
}
.article-footer {
  padding: 20px 0;
  border-top: 1px solid #e5e5e5;
}
.article-footer .cats,
.article-footer .cats a {
  color: #000000;
}
.comments-section {
  overflow: visible;
  height: 100px;
}
.comments-section .comments-header {
  zoom: 1;
  clear: both;
  padding: 10px 0;
  border-top: 1px solid #e5e5e5;
  margin-bottom: 20px;
  height: 70px;
}
.comments-section .comments-header:before {
  content: "";
  display: block;
}
.comments-section .comments-header:after {
  content: "";
  display: table;
  clear: both;
}
.comments-section a.btn {
  height: 40px;
  padding-top: 9px;
  padding-bottom: 9px;
  margin-top: 4px;
}
.comments-section a.show-comments {
  background-color: #fa514d;
  border-color: #fa514d;
}
.comments-section a.show-comments,
.comments-section a.show-comments:visited,
.comments-section a.show-comments:active {
  color: #ffffff;
}
.comments-section a.show-comments,
.comments-section a.show-comments:active,
.comments-section a.show-comments:hover {
  text-decoration: none;
}
.comments-section a.show-comments:hover {
  text-decoration: none;
  background-color: #ffffff;
  border-color: #fa514d;
}
.comments-section a.show-comments:hover,
.comments-section a.show-comments:hover i {
  color: #fa514d;
}
.comments-section .comments {
  height: 0;
  overflow: hidden;
}
.comments-section.active {
  height: auto;
}
.comments-section.active .comments {
  height: auto;
}
.comments-section.no-comments .social-container {
  float: left;
}
.form-horizontal p {
  display: none;
}
.form-horizontal .control-label {
  padding-top: 0;
}
.form-captcha {
  margin: 20px 0;
  background-color: #f7f7f7;
  padding: 20px;
  border: 1px solid #e5e5e5;
}
.author-articles {
  clear: both;
  margin-top: 10px;
  border-top: 1px solid #e5e5e5;
  padding-top: 40px;
}
.authors-content-col {
  margin-top: -20px;
  padding-bottom: 20px;
}
.authors-content-col:before {
  content: "";
  width: 100%;
  display: block;
  border-top: 1px solid #e5e5e5;
  margin-bottom: 20px;
}
.author-article:nth-child(odd) {
  clear: left;
}
.author-article:nth-child(even) {
  clear: right;
}
.author-article h3 {
  margin-bottom: 10px;
}
.author-article .article-details {
  padding-bottom: 30px;
}
.author-links a {
  color: #000000;
}
.evolve-ad {
  max-width: 728px;
  margin: 0 auto;
}
.fb-like-wrapper {
  position: relative;
  max-width: 100%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  width: 100%;
  height: 0;
  padding-bottom: 12.5%;
}
.fb-like-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
  background-image: url("../images/728x90-bigger.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media (min-width: 1750px) {
  .header-fixed .logo {
    position: absolute;
    top: 0;
    margin-top: 20px;
    right: 100%;
  }
  .header-fixed .details-cell.logo-cell {
    width: 0;
  }
}
@media (min-width: 1340px) {
  .container {
    width: 1230px;
  }
}
@media (max-width: 1340px) {
  .header-fixed .header-fixed-top .fixed-left {
    position: relative;
  }
}
@media (min-width: 1200px) and (max-width: 1340px) {
  .container {
    width: 1170px;
  }
  .ad-p-holder > div {
    margin: 30px auto;
  }
  .home-intro .article-cell.feat-img-cat-fp {
    width: 43.9%;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  body {
    font-size: 16px;
    line-height: 20px;
  }
  .container {
    width: 970px;
  }
  .ad-p-holder > div.ad-300 {
    margin: -1px -3.333px;
  }
  .navbar-nav {
    font-size: 13px;
  }
  .navbar-nav > li a {
    padding: 15px 6px;
    letter-spacing: 0.3px;
  }
  .article-list .article-cell.feat-img-cat-fp,
  .large-articles .article-cell.feat-img-cat-fp {
    height: auto;
  }
  .large-articles .article-details h3 {
    font-size: 18px;
    line-height: 22px;
  }
  .home-intro {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .home-intro .article-cell.feat-img-cat-fp {
    width: 47.5%;
    height: auto;
  }
  .home-intro .col-sm-6:last-child {
    padding-right: 25px;
    border-right: 1px solid #e5e5e5;
  }
  .home-intro .col-sm-6:first-child {
    padding-left: 25px;
  }
  .home-intro .col-sm-6.latest-col {
    float: right;
  }
  .home-intro .article-details {
    padding-bottom: 0;
  }
  .home-intro .article-details h3 {
    margin: 6px 0 0;
    font-size: 16px;
    line-height: 20px;
  }
  .comments-section a.btn {
    padding: 9px 15px;
    font-size: 11px;
  }
  .social-container .st_pinterest_hcount > span,
  .social-container .st_twitter_hcount > span,
  .social-container .st_facebook_hcount > span {
    padding: 9px 15px;
    font-size: 11px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .container {
    width: 750px;
  }
  .home-intro {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .home-intro .col-sm-6:last-child {
    padding-right: 25px;
    border-right: 1px solid #e5e5e5;
  }
  .home-intro .col-sm-6:first-child {
    padding-left: 25px;
  }
  .home-intro .col-sm-6.latest-col {
    float: right;
  }
  .home-intro .article-details {
    padding-bottom: 0;
  }
  .home-intro .article-details h3 {
    margin: 6px 0 0;
    font-size: 16px;
    line-height: 20px;
  }
  .article-list .article,
  .large-articles .article {
    min-height: 0;
    padding-bottom: 0;
  }
  .article-list .article-table,
  .large-articles .article-table {
    margin-bottom: 20px;
  }
  .article-list .feat-img-cat-fp,
  .large-articles .feat-img-cat-fp {
    margin-bottom: 20px;
  }
  .article-list .article-cell.feat-img-cat-fp,
  .large-articles .article-cell.feat-img-cat-fp {
    height: auto;
  }
  .article-list .article-details,
  .large-articles .article-details {
    position: relative;
    padding-bottom: 80px;
    margin-bottom: 20px;
  }
  .article-list .article-details h3,
  .large-articles .article-details h3 {
    margin: 10px 0;
    font-size: 20px;
    line-height: 25px;
  }
  .article-list .auth,
  .large-articles .auth {
    bottom: 20px;
    left: 30px;
  }
  .large-article-list .auth {
    bottom: 0;
    margin-top: 10px;
  }
  .article-list .article-details h3 {
    font-size: 16px;
    line-height: 20px;
  }
  .article-list .article-details .auth {
    bottom: 20px;
    left: 0;
    padding-left: 60px;
  }
  .article-list .article {
    height: auto;
  }
}
@media (min-width: 992px) {
  .mobile-only {
    display: none;
  }
  .menu-col-wrapper {
    border-top: 1px solid #aaaaaa;
    border-bottom: 1px solid #aaaaaa;
  }
  .navbar-toggle {
    display: none;
  }
  .header-fixed .navbar-toggle {
    display: block;
  }
  .header-fixed.up .header-fixed-top:after {
    width: 0;
  }
  .header-fixed.up .next-details {
    opacity: 0;
  }
  .header-fixed.up .social-header {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .no-social .navbar-nav {
    float: none;
    text-align: center;
  }
  .no-social .navbar-nav > li {
    float: none;
    display: inline-block;
  }
  .article-list .article .article-details {
    min-height: 245px;
  }
  .article-list .article .article-details p {
    margin-bottom: 0;
  }
  .large-article-list .article .article-details {
    min-height: 0;
  }
}
@media (max-width: 992px) {
  .row {
    margin-left: -20px;
    margin-right: -20px;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .col-xs-1,
  .col-sm-1,
  .col-md-1,
  .col-lg-1,
  .col-xs-2,
  .col-sm-2,
  .col-md-2,
  .col-lg-2,
  .col-xs-3,
  .col-sm-3,
  .col-md-3,
  .col-lg-3,
  .col-xs-4,
  .col-sm-4,
  .col-md-4,
  .col-lg-4,
  .col-xs-5,
  .col-sm-5,
  .col-md-5,
  .col-lg-5,
  .col-xs-6,
  .col-sm-6,
  .col-md-6,
  .col-lg-6,
  .col-xs-7,
  .col-sm-7,
  .col-md-7,
  .col-lg-7,
  .col-xs-8,
  .col-sm-8,
  .col-md-8,
  .col-lg-8,
  .col-xs-9,
  .col-sm-9,
  .col-md-9,
  .col-lg-9,
  .col-xs-10,
  .col-sm-10,
  .col-md-10,
  .col-lg-10,
  .col-xs-11,
  .col-sm-11,
  .col-md-11,
  .col-lg-11,
  .col-xs-12,
  .col-sm-12,
  .col-md-12,
  .col-lg-12 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .mobile-hidden {
    display: none;
  }
  .navbar-toggle {
    display: block;
  }
  body {
    padding-top: 76px;
    font-size: 18px;
    line-height: 22px;
  }
  .container {
    max-width: 100%;
  }
  h1 {
    font-size: 36px;
    line-height: 40px;
  }
  h1 u {
    display: inline-block;
    text-decoration: none;
    border-bottom: 8px solid #2d46a0;
  }
  h1.sub-cat-title + h6.radio-subtitle,
  h1.cat-title + h6.radio-subtitle {
    margin-top: -5px;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 18px;
  }
  h2 {
    font-size: 32px;
    line-height: 34px;
    margin-bottom: 20px;
  }
  h2 + h6 {
    margin-top: -15px;
  }
  h3 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  h3 + h6 {
    margin-top: -15px;
  }
  h4 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 12px;
  }
  h5 {
    font-size: 14px;
    line-height: 20px;
  }
  h6 {
    font-size: 24px;
    line-height: 30px;
    font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
    font-weight: 300;
  }
  h6 + h4 {
    margin-top: -10px;
  }
  p {
    margin: 0 0 15px;
  }
  img {
    height: auto;
  }
  blockquote {
    padding: 20px 20px 20px 30px;
  }
  .btn {
    line-height: 12px;
    font-size: 13px;
    height: auto;
    padding: 14px 20px 11px;
  }
  .lge-btn {
    line-height: 24px;
    font-size: 19px;
    height: 40px;
    padding: 10px 30px;
    min-width: 240px;
  }
  .menu-container {
    border-bottom: 1px solid #e5e5e5;
  }
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: #ffffff;
  }
  .mobile-menu-inner .navbar-nav {
    float: none;
    width: auto;
  }
  .mobile-menu-inner .navbar-nav > li {
    float: none;
    display: block;
  }
  .menu-container .social-header {
    display: none;
  }
  .menu-col-wrapper {
    border-bottom: 1px solid #cccccc;
  }
  .menu-col-wrapper .navbar-collapse {
    border-top: 1px solid #cccccc;
  }
  .header-top .logo-col {
    background-image: none;
    padding: 10px;
  }
  .header-top .logo-col .search {
    margin: 5px 0;
  }
  .header-top .logo-col .search i {
    font-size: 30px;
  }
  .header-top .logo a {
    max-width: 165px;
    height: 35px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .header-top .navbar-header {
    float: right;
  }
  .social-icons a {
    width: 45px;
    height: 45px;
  }
  .social-icons a i {
    line-height: 41px;
  }
  .footer {
    text-align: center;
  }
  .footer .social-col {
    float: none;
    text-align: center;
  }
  .footer .copyright {
    max-width: 230px;
    margin: 0 auto;
  }
  .footer-nav {
    padding: 20px 0;
    text-align: center;
  }
  .footer-nav li {
    display: block;
    margin: 0;
    line-height: 20px;
    font-size: 13px;
  }
  .form-wrapper form.form-horizontal div.field-groups {
    display: block;
    width: auto;
    margin-bottom: 20px;
  }
  .form-wrapper form.form-horizontal div.field-groups > div.form-group {
    zoom: 1;
    clear: both;
    margin: 0;
    display: block;
  }
  .form-wrapper form.form-horizontal div.field-groups > div.form-group:before {
    content: "";
    display: block;
  }
  .form-wrapper form.form-horizontal div.field-groups > div.form-group:after {
    content: "";
    display: table;
    clear: both;
  }
  .form-wrapper form.form-horizontal div.field-groups > div.form-group > label {
    display: block;
    width: auto;
    text-align: left;
  }
  .form-wrapper form.form-horizontal div.field-groups > div.form-group > div {
    display: block;
  }
  .form-wrapper
    form.form-horizontal
    div.field-groups
    > div.form-group.with-msg
    > label {
    padding-top: 23px;
    vertical-align: top;
  }
  .form-wrapper form.form-horizontal select,
  .form-wrapper form.form-horizontal input[type="email"],
  .form-wrapper form.form-horizontal input[type="password"],
  .form-wrapper form.form-horizontal input[type="search"],
  .form-wrapper form.form-horizontal input[type="number"],
  .form-wrapper form.form-horizontal input[type="text"] {
    width: 100%;
  }
  .form-wrapper form.form-horizontal input[type="submit"] {
    margin-left: auto;
    margin-right: auto;
  }
  .form-wrapper form div.checkbox-row input[type="checkbox"] {
    margin-left: 0;
    float: left;
  }
  .form-wrapper form div.checkbox-row input[type="checkbox"] + label {
    padding: 0 0 0 30px;
    line-height: 20px;
    width: auto;
    display: block;
    text-align: left;
  }
  .popup-search .search-form-wrapper {
    left: 0;
    margin-left: 0;
    width: 100%;
  }
  .popup-search .search-form-wrapper form.searchform {
    margin: 0 10px;
  }
  .popup-search .search-form-wrapper button {
    font-size: 26px;
    padding-left: 0;
  }
  .popup-search .search-form-wrapper button i:before {
    margin: 0;
  }
  .popup-search .search-form-wrapper a.close {
    margin-top: 18px;
  }
  .popup-search .searchform input {
    width: 70%;
    font-size: 24px;
  }
  .home-intro {
    margin-top: 0;
    margin-bottom: 40px;
  }
  .home-intro .article-cell.feat-img-cat-fp {
    width: 41.5%;
  }
  .home-intro .col-sm-6:last-child {
    border-right: 1px solid #e5e5e5;
    padding-left: 20px;
    padding-right: 20px;
  }
  .home-intro .col-sm-6:first-child {
    padding-left: 20px;
    padding-right: 20px;
  }
  .home-intro .col-sm-6.latest-col {
    margin-bottom: 20px;
  }
  .home-intro .article-details {
    padding-bottom: 0;
  }
  .home-intro .article-details h3 {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 16px;
  }
  .home-video {
    height: 272px;
    overflow: hidden;
  }
  .home-video img.wp-post-image {
    position: absolute;
    top: 0;
    left: 50%;
    width: 413px;
    margin-left: -206.5px;
    height: 272px;
    max-width: 1000px;
  }
  .home-video .home-video-cell {
    vertical-align: bottom;
  }
  .home-video .home-video-cell h3 {
    font-size: 22px;
    line-height: 24px;
    margin: 20px 20px 50px;
  }
  .fp-cat-title {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 14px;
  }
  .home-on-the-couch h3 {
    font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
    font-weight: 500;
    text-align: center;
    margin: 6px 0 0;
    font-size: 12px;
    letter-spacing: 0;
  }
  .home-on-the-couch a.btn {
    margin-top: 20px;
  }
  .section .section-title {
    margin: 30px auto 30px;
  }
  .section.grey + .section.grey .section-title {
    margin-top: 30px;
  }
  .section.white + .section.white .section-title {
    margin-top: 30px;
  }
  .section.good-stuff .section-title {
    margin-bottom: 30px;
  }
  .article-details {
    padding-bottom: 0;
  }
  .article-details .cats {
    font-size: 10px;
    line-height: 12px;
  }
  .ad-p-holder {
    margin-bottom: 20px;
    border: 0;
    padding: 20px;
  }
  .ad-p-holder > div {
    padding: 0;
    margin: 20px auto;
    border: 0;
  }
  .ad-p-holder > div.ad-300,
  .ad-p-holder > div.ad-728 {
    margin: 0 auto;
    padding: 0;
  }
  .ad-p-holder > div.ad-970,
  .ad-p-holder > div.ad-728 {
    width: auto;
    max-width: 100%;
    overflow-x: hidden;
  }
  .ad-col {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .ad-col .p-970,
  .ad-col .p-728 {
    padding-left: 0;
    padding-right: 0;
  }
  .ad-col .p-970 {
    padding-top: 0;
  }
  .grey .ad-p-holder {
    border: 0;
  }
  .grey .ad-p-holder > div.ad-300,
  .grey .ad-p-holder > div.ad-728 {
    border: 0;
  }
  .subscribe-section form div.MGLField input {
    border: 1px solid #e5e5e5;
  }
  .subscribe-section .social-icons a i {
    line-height: 60px;
  }
  .nav li {
    overflow: hidden;
  }
  .navbar-nav {
    font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    font-size: 15px;
  }
  .navbar-nav > li a {
    height: auto;
    line-height: 35px;
  }
  .navbar-nav > li a:hover,
  .navbar-nav > li a:active,
  .navbar-nav > li a:focus {
    background-color: transparent;
  }
  .navbar-nav > li a .caret {
    display: none;
  }
  .navbar-nav > li:first-child a {
    padding-left: 0;
  }
  .navbar-nav > li.open ul.dropdown-menu {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    padding: 18px 10px;
    margin: 0 0 0 -14px;
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .navbar-nav > li.open ul.dropdown-menu li {
    display: block;
    text-align: center;
    padding: 0 20px;
  }
  .navbar-nav > li.open ul.dropdown-menu li a {
    padding: 3px 0 0;
    display: inline-block;
  }
  .navbar-nav > li.open ul.dropdown-menu li a.view-all {
    font-size: 14px;
    color: #888888;
  }
  .navbar-nav > li.open ul.dropdown-menu li,
  .navbar-nav > li.open ul.dropdown-menu li a {
    font-weight: 600;
    line-height: 30px;
  }
  .navbar-nav > li.open ul.dropdown-menu > .active > a {
    color: #d05545;
    border-bottom: 3px solid #f7c7c1;
  }
  .navbar-nav > li.open ul.dropdown-menu > .active > a,
  .navbar-nav > li.open ul.dropdown-menu > .active > a:focus,
  .navbar-nav > li.open ul.dropdown-menu > .active > a:active {
    background-color: transparent;
  }
  .going-off-articles .post-no {
    width: 31px;
    height: 31px;
    line-height: 31px;
    margin: -16px auto 7px;
  }
  .going-off-articles h3 {
    font-size: 12px;
    line-height: 14px;
  }
  .cat-select {
    margin-top: 10px;
  }
  #on-the-couch-videos .cat-select {
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    margin-top: 15px;
    padding: 10px 50px 10px 15px;
    width: 100%;
  }
  #on-the-couch-videos .inline-cat-select {
    zoom: 1;
    clear: both;
  }
  #on-the-couch-videos .inline-cat-select:before {
    content: "";
    display: block;
  }
  #on-the-couch-videos .inline-cat-select:after {
    content: "";
    display: table;
    clear: both;
  }
  #on-the-couch-videos .inline-cat-select h1 {
    float: none;
  }
  #on-the-couch-videos .inline-cat-select .cat-select {
    float: none;
    margin-top: 15px;
    margin-left: 0;
  }
  .sub-cat-title,
  .cat-title {
    font-size: 30px;
  }
  .comments-header,
  .auth-social {
    height: 70px;
    overflow: visible;
    position: relative;
  }
  .social-container {
    height: 40px;
    position: absolute;
    top: 0;
    right: -10px;
    padding: 10px;
    overflow: visible;
    width: auto;
    text-align: right;
  }
  .social-container.active {
    -webkit-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.25);
    height: 111px;
    background-color: #ffffff;
  }
  .social-container.active a.mobile-only {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  }
  .social-container.active .social-container-inner {
    display: block;
  }
  .social-container .st_pinterest_hcount > span,
  .social-container .st_twitter_hcount > span,
  .social-container .st_facebook_hcount > span {
    padding: 9px 15px;
  }
  .social-container .st_facebook_hcount > span,
  .social-container .st_twitter_hcount > span,
  .social-container .st_pinterest_hcount > span {
    font-size: 18px;
  }
  .social-container .st_facebook_hcount > span:before,
  .social-container .st_twitter_hcount > span:before,
  .social-container .st_pinterest_hcount > span:before {
    margin: 0;
  }
  .social-container .st_facebook_hcount > span:after,
  .social-container .st_twitter_hcount > span:after,
  .social-container .st_pinterest_hcount > span:after {
    content: "";
  }
  .social-container .social-container-inner {
    display: none;
    margin-top: 10px;
    text-align: right;
    position: relative;
    right: -3px;
  }
  .social-container a.mobile-only {
    background-color: #ffffff;
    border-color: #e5e5e5;
    color: #000000;
  }
  .comments-section {
    height: auto;
  }
  .comments-section a.btn {
    line-height: 22px;
  }
  .comments-section .comments-header {
    border: 0;
    padding: 0;
    height: auto;
  }
  .comments-section .comments-header .social-container {
    position: relative;
    width: 100%;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: both;
  }
  .comments-section .comments-header .social-container.active {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    height: auto;
  }
  .comments-section .comments-header .social-container a.mobile-only {
    display: block;
    margin-top: 0;
    border-color: #115bb8;
    background-color: #115bb8;
    color: #ffffff;
  }
  .comments-section .comments-header .social-container a.mobile-only i {
    color: #ffffff;
  }
  .comments-section .comments-header .social-container a.mobile-only:active,
  .comments-section .comments-header .social-container a.mobile-only:focus {
    border-color: #115bb8;
    background-color: #115bb8;
    color: #ffffff;
  }
  .comments-section .comments-header .social-container .social-container-inner {
    text-align: center;
    margin-bottom: 9px;
  }
  .comments-section .comments-header a.show-comments {
    display: block;
  }
  .article-content .wp-caption.alignleft {
    margin-right: 20px;
  }
  .article-content .wp-caption.alignright {
    margin-left: 20px;
  }
  .header-fixed {
    opacity: 1;
    top: auto;
    bottom: 0;
  }
  .header-fixed.init {
    opacity: 0;
  }
  .header-fixed,
  .header-fixed .header-fixed-top,
  .header-fixed .fixed-col {
    height: 50px;
  }
  .header-fixed .social-header,
  .header-fixed .details,
  .header-fixed .logo-cell,
  .header-fixed .fixed-left {
    display: none;
  }
  .header-fixed .next-details {
    position: relative;
    left: 0;
  }
  .header-fixed .next-details .next-img {
    width: 67px;
  }
  .header-fixed .next-details .next-title {
    font-size: 10px;
    line-height: 12px;
    padding: 13px 0 0 80px;
  }
  .header-fixed .next-details .next-title .title {
    font-size: 12px;
  }
  .header-fixed .next-details .up-next.loading:after {
    top: 14px;
    left: 50%;
    z-index: -1;
    font-size: 40px;
    color: #eeeeee;
    margin-left: -16px;
  }
  .header-fixed .fixed-col {
    padding: 0;
  }
  .header-fixed .navbar {
    display: none;
  }
  .header-fixed.no-more {
    -moz-transform: translate(0, 150%);
    -webkit-transform: translate(0, 150%);
    -o-transform: translate(0, 150%);
    -ms-transform: translate(0, 150%);
    transform: translate(0, 150%);
  }
  .fixed-col {
    width: 100%;
  }
}
@media (min-width: 767px) {
  .navbar-nav {
    zoom: 1;
    clear: both;
    width: 100%;
    display: block;
    float: none;
    text-align: center;
  }
  .navbar-nav:before {
    content: "";
    display: block;
  }
  .navbar-nav:after {
    content: "";
    display: table;
    clear: both;
  }
  .navbar-nav > li {
    display: inline-block;
    float: none;
  }
}
@media (max-width: 767px) {
  .cat-header {
    padding-bottom: 55px;
    margin-bottom: 20px;
    position: relative;
  }
  .cat-header .cat-select {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .cat-header .cat-title {
    font-size: 20px;
    line-height: 30px;
    margin: 0;
  }
  .sub-cat-title {
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 10px;
  }
  a.aami {
    max-width: 70px;
    margin-top: 3px;
  }
  .section.no-title {
    padding: 20px 0;
  }
  .section.grey + .section.grey .section-title {
    margin-top: 30px;
  }
  .section.white + .section.white .section-title {
    margin-top: 30px;
  }
  .section.good-stuff .section-title {
    margin-bottom: 30px;
  }
  .home-intro .col-sm-6.latest-col {
    float: none;
    border-bottom: 1px solid #e5e5e5;
  }
  .article-list .article,
  .large-articles .article {
    min-height: 0;
    height: auto;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .article-list .article-table,
  .large-articles .article-table {
    display: block;
    margin-bottom: 20px;
  }
  .article-list .article-table .article-details,
  .large-articles .article-table .article-details {
    padding-left: 0;
  }
  .article-list .article-row,
  .large-articles .article-row {
    display: block;
  }
  .article-list .feat-img-cat-fp,
  .large-articles .feat-img-cat-fp {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .article-list .article-cell,
  .large-articles .article-cell {
    display: block;
    vertical-align: top;
  }
  .article-list .article-cell.feat-img-cat-fp,
  .large-articles .article-cell.feat-img-cat-fp {
    width: 100%;
    height: auto;
  }
  .article-list .article-details,
  .large-articles .article-details {
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 20px;
    text-align: left;
  }
  .article-list .article-details h3,
  .large-articles .article-details h3 {
    font-size: 20px;
    line-height: 22px;
  }
  .large-article-list {
    padding: 0;
  }
  .large-article-list .article p {
    font-size: 18px;
    line-height: 24px;
  }
  .large-article-list .article:nth-child(odd) {
    padding-right: 20px;
    border-right: 0;
  }
  .large-article-list .article:nth-child(even) {
    padding-left: 20px;
  }
  .ma-t {
    display: table;
  }
  .ma-r {
    display: table-row;
  }
  .ma-r .ma-c:first-child {
    width: 31.5%;
  }
  .ma-c {
    display: table-cell;
    vertical-align: middle;
  }
  .home-on-the-couch .feat-img-cat-fp {
    padding-right: 10px;
    width: 48%;
  }
  .home-on-the-couch .col-sm-4 {
    zoom: 1;
    clear: both;
    margin-bottom: 17px;
  }
  .home-on-the-couch .col-sm-4:before {
    content: "";
    display: block;
  }
  .home-on-the-couch .col-sm-4:after {
    content: "";
    display: table;
    clear: both;
  }
  .home-on-the-couch h3 {
    font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
    font-weight: 500;
    text-align: left;
    margin: 0;
  }
  .home-on-the-couch a.btn {
    margin-top: 20px;
  }
  .going-off-articles {
    zoom: 1;
    clear: both;
    padding: 0 0 20px;
  }
  .going-off-articles:before {
    content: "";
    display: block;
  }
  .going-off-articles:after {
    content: "";
    display: table;
    clear: both;
  }
  .going-off-articles .article {
    position: relative;
    float: none;
    padding: 0 20px 10px;
    text-align: center;
  }
  .going-off-articles .article.fifth {
    width: auto;
  }
  .going-off-articles .feat-img-cat-fp {
    height: auto;
    background-color: #ffffff;
    float: left;
    overflow: hidden;
  }
  .going-off-articles .feat-img-cat-fp img {
    max-height: 100%;
    margin: 0 auto;
  }
  .going-off-articles h3 {
    font-size: 14px;
    line-height: 16px;
    margin: 8px 0 0;
  }
  .going-off-articles .article-details {
    padding-left: 20px;
    text-align: left;
  }
  .going-off-articles .post-no {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
    font-weight: 600;
    width: 28px;
    height: 28px;
    line-height: 28px;
    position: absolute;
    top: 42px;
    left: 31.5%;
    margin-left: -8px;
    margin-top: -18px;
    font-size: 12px;
  }
  .article-details .auth {
    margin-top: 10px;
    position: relative;
  }
  .auth {
    padding-left: 50px;
    left: 0 !important;
  }
  .auth .auth-img {
    width: 40px;
    height: 40px;
    top: 5px;
  }
  .article-intro h1.article-title {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 20px;
  }
  .article-content {
    max-width: 100%;
    overflow-x: hidden;
  }
  .article-content .wp-caption {
    max-width: 100%;
  }
  .article-content .wp-caption.alignright,
  .article-content .wp-caption.alignleft {
    max-width: 50%;
  }
  .modal .logo {
    width: 120px;
    height: 50px;
    margin-left: -60px;
  }
  .fb-like-wrapper {
    padding-bottom: 83.333333%;
  }
  .fb-like-banner {
    background-image: url("../images/300x250facey.jpg");
  }
}
@media (max-width: 320px) {
  .ad-p-holder {
    padding-left: 0;
    padding-right: 0;
    margin-left: -10px;
    margin-right: -10px;
  }
}
.ie9 .sign-in-form-logo #logo img,
.ie9 .logo-section #logo img {
  height: 39px;
  width: 355px;
}
.ie8 .sign-in-form-logo #logo,
.lt-ie9 .sign-in-form-logo #logo,
.ie8 .logo-section #logo,
.lt-ie9 .logo-section #logo {
  height: 39px;
  width: 355px;
  text-indent: -9999px;
  background-image: url(../img/icon/logo-ie.png);
  background-repeat: no-repeat;
  background-position: 0 0;
}
.ie8 .sign-in-form-logo #logo img,
.lt-ie9 .sign-in-form-logo #logo img,
.ie8 .logo-section #logo img,
.lt-ie9 .logo-section #logo img {
  visibility: hidden;
}
.ie8 .mobile-only,
.lt-ie9 .mobile-only {
  display: none;
}
.ie8 .dd-panel,
.lt-ie9 .dd-panel {
  display: none;
}
.ie8 .dd-panel.active,
.lt-ie9 .dd-panel.active {
  display: block;
}
.ie8 .nav-section li a,
.lt-ie9 .nav-section li a {
  font-size: 16px;
}

.menu-col-wrapper {
  position: relative;
}
.landing_page_btn {
  width: auto;
  position: absolute;
  top: 50%;
  right: 240px;
  transform: translateY(-50%);
}
.landing_page_btn a,
.landing_page_btn_mob a {
  background-color: #fc9090;
  color: #fff;
  width: 180px;
  display: block;
  text-align: center;
  border-radius: 10px;
  height: 32px;
  line-height: 32px;
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0;
  margin: 0 auto;
}

@media only screen and (max-width: 1650px) {
  .landing_page_btn {
    right: 150px;
  }
}

@media only screen and (max-width: 1400px) {
  .landing_page_btn {
    right: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .menu-col-wrapper {
    position: initial;
  }
}

body.home #fancybox-wrap {
  position: relative;
}
