/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

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

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

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

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-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-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-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-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-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 {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-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-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-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-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom; }

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
@keyframes flash {
  from, 50%, to {
    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 {
  from {
    -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); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes pulse {
  from {
    -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); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes rubberBand {
  from {
    -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); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes rubberBand {
  from {
    -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); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand; }

@-webkit-keyframes shake {
  from, to {
    -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 {
  from, to {
    -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 headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake; }

@-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); }
  to {
    -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); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  from {
    -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); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes tada {
  from {
    -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); }
  to {
    -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 {
  from {
    -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); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes wobble {
  from {
    -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); }
  to {
    -webkit-transform: none;
    transform: none; } }
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-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); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-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); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-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); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-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); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-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); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-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); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    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); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    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); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    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); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    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); }
  to {
    -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); }
  to {
    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); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    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); }
  to {
    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); }
  to {
    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); }
  to {
    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); }
  to {
    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); }
  to {
    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); }
  to {
    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); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  from {
    -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; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
@keyframes flip {
  from {
    -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; }
  to {
    -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 {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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); }
  to {
    -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 {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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); }
  to {
    -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 {
  from {
    -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; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }
@keyframes flipOutX {
  from {
    -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; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  from {
    -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; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }
@keyframes flipOutY {
  from {
    -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; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  from {
    -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; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes lightSpeedIn {
  from {
    -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; }
  to {
    -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 {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }
@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -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 {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -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 {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -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; }
  to {
    -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; }
  to {
    -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 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    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 {
  from {
    opacity: 1; }
  to {
    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 {
  from {
    opacity: 1; }
  to {
    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 {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
@keyframes zoomIn {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }
@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    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); }
  to {
    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); }
  to {
    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); }
  to {
    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); }
  to {
    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); }
  to {
    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); }
  to {
    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); }
  to {
    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); }
  to {
    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 {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown; }

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

/*------------------------------------*\
    #CUSTOM FONTS
\*------------------------------------*/

@font-face {
  font-family: "ITCAvantGardePro-XLt";
  src: url("../../assets/fonts/ITCAvantGardePro-XLt.eot?") format("eot"), url("../../assets/fonts/ITCAvantGardePro-XLt.woff2") format("woff2"), url("../../assets/fonts/ITCAvantGardePro-XLt.woff") format("woff"), url("../../assets/fonts/ITCAvantGardePro-XLt.ttf") format("truetype"), url("../../assets/fonts/ITCAvantGardePro-XLt.svg#ITCAvantGardePro-XLt") format("svg"); }
@font-face {
  font-family: "ITCAvantGardePro-XLtObl";
  src: url("../../assets/fonts/ITCAvantGardePro-XLtObl.eot?") format("eot"), url("../../assets/fonts/ITCAvantGardePro-XLtObl.woff2") format("woff2"), url("../../assets/fonts/ITCAvantGardePro-XLtObl.woff") format("woff"), url("../../assets/fonts/ITCAvantGardePro-XLtObl.ttf") format("truetype"), url("../../assets/fonts/ITCAvantGardePro-XLtObl.svg#ITCAvantGardePro-XLtObl") format("svg"); }
@font-face {
  font-family: "ITCAvantGardeProBK";
  src: url("../../assets/fonts/ITCAvantGardePro-Bk.eot?") format("eot"), url("../../assets/fonts/ITCAvantGardePro-Bk.woff2") format("woff2"), url("../../assets/fonts/ITCAvantGardePro-Bk.woff") format("woff"), url("../../assets/fonts/ITCAvantGardePro-Bk.ttf") format("truetype"), url("../../assets/fonts/ITCAvantGardePro-Bk.svg#ITCAvantGardeProBK") format("svg"); }
@font-face {
  font-family: "ITCAvantGardePro-BkObl";
  src: url("../../assets/fonts/ITCAvantGardePro-BkObl.eot?") format("eot"), url("../../assets/fonts/ITCAvantGardePro-BkObl.woff2") format("woff2"), url("../../assets/fonts/ITCAvantGardePro-BkObl.woff") format("woff"), url("../../assets/fonts/ITCAvantGardePro-BkObl.ttf") format("truetype"), url("../../assets/fonts/ITCAvantGardePro-BkObl.svg#ITCAvantGardePro-BkObl") format("svg"); }
@font-face {
  font-family: "ITCAvantGardeProMedium";
  src: url("../../assets/fonts/ITCAvantGardePro-Md.eot?") format("eot"), url("../../assets/fonts/ITCAvantGardePro-Md.woff2") format("woff2"), url("../../assets/fonts/ITCAvantGardePro-Md.woff") format("woff"), url("../../assets/fonts/ITCAvantGardePro-Md.ttf") format("truetype"), url("../../assets/fonts/ITCAvantGardePro-Md.svg#ITCAvantGardeProMedium") format("svg"); }
@font-face {
  font-family: "ITCAvantGardeProMediumObl";
  src: url("../../assets/fonts/ITCAvantGardePro-MdObl.eot?") format("eot"), url("../../assets/fonts/ITCAvantGardePro-MdObl.woff2") format("woff2"), url("../../assets/fonts/ITCAvantGardePro-MdObl.woff") format("woff"), url("../../assets/fonts/ITCAvantGardePro-MdObl.ttf") format("truetype"), url("../../assets/fonts/ITCAvantGardePro-MdObl.svg#ITCAvantGardeProMediumObl") format("svg"); }
@font-face {
  font-family: "ITCAvantGardeProDemi";
  src: url("../../assets/fonts/ITCAvantGardePro-Demi.eot?") format("eot"), url("../../assets/fonts/ITCAvantGardePro-Demi.woff2") format("woff2"), url("../../assets/fonts/ITCAvantGardePro-Demi.woff") format("woff"), url("../../assets/fonts/ITCAvantGardePro-Demi.ttf") format("truetype"), url("../../assets/fonts/ITCAvantGardePro-Demi.svg#ITCAvantGardeProDemi") format("svg"); } 
@font-face {
  font-family: "ITCAvantGardePro-Bold";
  src: url("../../assets/fonts/ITCAvantGardePro-Bold.eot?") format("eot"), url("../../assets/fonts/ITCAvantGardePro-Bold.woff2") format("woff2"), url("../../assets/fonts/ITCAvantGardePro-Bold.woff") format("woff"), url("../../assets/fonts/ITCAvantGardePro-Bold.ttf") format("truetype"), url("../../assets/fonts/ITCAvantGardePro-Bold.svg#ITCAvantGardePro-Bold") format("svg"); }
@font-face {
  font-family: "ITCAvantGardePro-BoldObl";
  src: url("../../assets/fonts/ITCAvantGardePro-BoldObl.eot?") format("eot"), url("../../assets/fonts/ITCAvantGardePro-BoldObl.woff2") format("woff2"), url("../../assets/fonts/ITCAvantGardePro-BoldObl.woff") format("woff"), url("../../assets/fonts/ITCAvantGardePro-BoldObl.ttf") format("truetype"), url("../../assets/fonts/ITCAvantGardePro-BoldObl.svg#ITCAvantGardePro-BoldObl") format("svg"); }
/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em; }

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

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

/*--------------------------------------------------------------
# HELPER CLASES
--------------------------------------------------------------*/
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden; }

/*------------------------------------*\
    #HTML Elements
\*------------------------------------*/
html {
  font-size: 100%;
  box-sizing: border-box; }

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

body {
  text-align:center;
  margin:0px auto;  
  font-family: 'ITCAvantGardeProBK';
  background: #fff;
  color: #000;
  font-size: 16px;
  overflow-x:hidden;  }

.wrapper
{
   width: 100%;
}

#page
{
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
  display:inline-block;
}
/* .site {
  overflow-x: hidden; } */

.pum-container.pum-responsive.pum-responsive-medium{
    width: 60% !important;
}
.pum-theme-26937 .pum-content, .pum-theme-lightbox .pum-content{
	color:#000 !important;
	font-size: 12px !important;
}
.pum-container, .pum-theme-lightbox .pum-container {
    padding: 0px !important;
    border-radius: 0px !important;
    border: 0px !important;
    box-shadow: initial !important;
    background-color: transparent !important;
}
.pum-content + .pum-close, .pum-theme-lightbox .pum-content + .pum-close{
	top: -135px !important;
  width: 36px !important;
  height: 36px !important;
  right:-18px !important;
  background: url("../images/close_button.png") no-repeat center !important;
  color: transparent !important;
  border: 0px !important;
  box-shadow: none !important;
  text-shadow: none !important;
}  
 
/* .pum-theme-26936 .pum-container, .pum-theme-default-theme .pum-container{
  padding: 0px !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

.pum-theme-26936 .pum-content + .pum-close, .pum-theme-default-theme .pum-content + .pum-close{
  top: -60px !important;
  right: 28px !important;
  width: 36px !important;
  height: 36px !important;
  background: url("../images/close_button.png") no-repeat center !important;
}

.pum-theme-26937 .pum-content + .pum-close, .pum-theme-lightbox .pum-content + .pum-close{
  top: -133px !important;
  width: 36px !important;
  height: 36px !important;
  right:-18px !important;
  background: url("../images/close_button.png") no-repeat center !important;
  color: transparent !important;
  border: 0px !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.pum-container.pum-responsive.pum-responsive-medium{
  width: 43% !important; 
} 

.pum-theme-26937 .pum-container, .pum-theme-lightbox .pum-container{
  border: 0px !important;
  box-shadow: none !important;
}

.pum-theme-25232 .pum-content + .pum-close, .pum-theme-lightbox .pum-content + .pum-close{
  top: -133px !important;
   width: 36px !important;
  height: 36px !important;
  background: url("../images/close_button.png") no-repeat center !important;
    background: url("../images/close_button.png") no-repeat center !important;
  color: transparent !important;
  border: 0px !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.pum-theme-25232 .pum-container, .pum-theme-lightbox .pum-container{
  border: 0px !important;
} */
#join-tab{
	display:none !important;
}
div#joinWrapper {
    position: relative;
}
#desk-join-img{
		display: block;
	}
#mob-join-img{
		display: none;;
	}
form.wpcf7-form {
	position: absolute;
        /*left: 5.5%;*/
        left: 29%;
        top: 58%;
        width: 40%;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-email.wpcf7-validates-as-email{
		width:96% !important;
		padding: 7px !important;	
		margin-top: 11px !important;
                color: #000;
	}

.join-text{
	font-size: 16px;
	text-transform: uppercase;
}
#joinContent >.agree{
	font-size: 10px;
	top: 8px;
	position: relative;
}

#joinContent > input[type="checkbox"]{
	font-size: 12px;
	margin-top: 10px;
	position: absolute;
	width: 20px;
}
#joinContent > input {
    width: 95%;
    border: 1px solid !important;
}
button, input[type="submit"], input[type="button"], input[type="reset"]{
	background: #000 !important;
	/*border: 0px !important;*/
	margin-top: 30px;
	text-transform: uppercase;
}
div#joinContent input[type="submit"]{
	color:#fff !important;
	padding: 0.7em 2.6em 0.7em !important;	
	padding-left: 2em !important;
    padding-right: 2em !important;
	margin-top:1.5em !important;

}
#joinContent a{
	text-decoration: underline;
	color: #000;
}
#joinForm1 {
    margin: 0;
    margin: 0 auto;
    text-align: center;
    margin-left: 30px;
    margin-top: 20px;
}
span.wpcf7-list-item{
	margin-bottom:0.5em;
}
@media only screen 
  and (min-width: 320px) 
  and (max-width: 3000px) {
		input#email{
			color:#000 !important;
		}
  }
/*------------------------------------*\
    #TAGS - CONTENT
\*------------------------------------*/
main {
  margin-top: 100px; }
  @media (max-width: 47.99em) {
    main {
      margin-top: 40px; } }

p {
  margin-top: 0; }
  @media (max-width: 47.99em) {
    p {
      font-size: .5em; } }

a {
  color: #000;
  text-decoration: none;
  transition: all 0.2s ease-out; }
  a:hover {
    transition: all 0.2s ease-in; }

/*------------------------------------*\
    #HEADINGS
\*------------------------------------*/
h1, .h1,
h2, .h2 {
  font-family: 'ITCAvantGardeProMedium';
  line-height: 1.13;
  text-transform: uppercase;
  margin-top: 0; }

h1, .h1 {
  font-size: 3.25rem;
  letter-spacing: .22em; }
  @media (min-width: 48em) and (max-width: 61.24em) {
    h1, .h1 {
      font-size: 2rem; } }
  @media (max-width: 47.99em) {
    h1, .h1 {
      font-size: 1.85em; } }

h2, .h2 {
  font-size: 1.250rem;
  letter-spacing: 0.1em;
  word-spacing: -0.2em; }

h3, .h3 {
  font-size: 0.813rem; }

/*------------------------------------*\
    #STRUCTURE
\*------------------------------------*/
.container-small {
  max-width: 643px;
  margin-left: auto;
  margin-right: auto; }
  @media (max-width: 47.99em) {
    .container-small {
      margin-left: 1em;
      margin-right: 1em; } }

.container-medium {
	clear:both;
 display:inline-block;	
  max-width: 1378px;
  margin-left: auto;
  margin-right: auto;
/*  margin-bottom:2%; */
  width: 100%;
   }
  @media (max-width: 92.49em) {
  /*  .container-medium {
      margin-left: 2em;
      margin-right: 2em;
      margin: 0 auto; */} }
  @media (min-width: 20em) and (max-width: 47.99em) {
    .container-medium {
      /*margin-left: 1em;
      margin-right: 1em;*/
      margin: 0 auto;} }

.module {
  position: relative; }

.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after {
  clear: both; }

@media (max-width: 47.99em) {
  .hide-mobile {
    display: none; } }

@media (max-width: 47.99em) {
  .show-mobile {
    display: block; } }

@media (max-width: 61.24em) {
  .hide-tablet {
    display: none; } }

/*------------------------------------*\
    #EMBED FLUID
\*------------------------------------*/

.embed-container { position: relative; padding-bottom: 67%; height: 0; overflow: hidden; max-width: 100%; margin: 35px 0; }
.embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/*------------------------------------*\
    #BUTTONS
\*------------------------------------*/
.button, .join-form #ninja_forms_field_11,
.button-cont a {
  /*border: thin solid #000;*/
  background-color: #f35583;
  color: #fff;
  display: inline-block;
  font-family:ITCAvantGardeProDemi !important ;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1em;
 /* padding: 0.7em 1.6em 0.5em; */
  padding: 1em 1.6em 1em;
  word-spacing: 0.1em;
  transition: all 0.5s;
  cursor: pointer;
  }
  
.button-join
{
  border: thin solid #000;
  background-color: #fef0f0;
  display: inline-block;
  font-family:ITCAvantGardeProDemi !important ;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1em;
 /* padding: 0.7em 1.6em 0.5em; */
  padding: 1em 1.6em 1em;
  word-spacing: 0.1em;
  transition: all 0.5s;
  cursor: pointer;
  }
  .button span, .button-join span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  .button:hover, .button-join:hover
  {
    background: #000;
    color: #fff;
    -ms-transform: scale(1.05); /* IE 9 */
    -webkit-transform: scale(1.05); /* Safari 3-8 */
    transform: scale(1.05); 
    transition-duration: 0.75s;
  }
  /*#denim-button .button:hover
  {
    transition-duration: 0.5s;
  }*/
  
  .join-form #ninja_forms_field_11:hover,
  .button-cont a:hover {
    background: #000;
    color: #fff;
  }
    
  .button .arrow-right{
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #fff;
    transition: 0.5s;
    margin-left: 8px;
  }
  
  .button:hover .arrow-right
  {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #fff;
    transition: 0.5s;
   }

  @media (max-width: 47.99em) {
    .button, .join-form #ninja_forms_field_11,
    .button-cont a {
      font-size: 0.45rem; } }

.relative-cont {
  position: relative; }

/*------------------------------------*\
    #TEXT FORMAT
\*------------------------------------*/
.text-hide {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.list-unstyled {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 0; }

/*------------------------------------*\
    #JS
\*------------------------------------*/
.top-element {
  backface-visibility: hidden;
  z-index: 149 !important;
  -moz-transform: scale(1.02);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1.02);
  -o-transform: translateZ(0) scale(1.02);
  -ms-transform: translateZ(0) scale(1.02);
  transform: translateZ(0) scale(1.02);
  transition: all 0.2s ease-in;
  filter: none;
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -ms-filter: blur(0px);
  filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='0'); }

.top-element:hover {
  backface-visibility: hidden;
  filter: none;
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -ms-filter: blur(0px); }

.fashion-feed--image--box {
  box-shadow: 20px 20px #F4DCDA; }

/*------------------------------------*\
    #FASHION-FEED
\*------------------------------------*/
_:-ms-fullscreen, :root .fashion-feed-cont {
  max-width: 1280px;
  margin: 0 auto; }

@media screen and (min-width: 0\0) {
  .fashion-feed-cont {
    max-width: 1280px;
    margin: 0 auto; } }
.fashion-feed {
  margin-bottom: 7.5em;
  margin-top: 5em;
  position: relative; }
  @media (max-width: 61.24em) {
    .fashion-feed {
      margin-bottom: 2.5em;
      margin-top: 4.5em; } }

.fashion-feed--label {
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  padding: .3em 1.9em .3em 0;
  position: absolute;
  word-spacing: -0.2em;
  z-index: 149; }
  @media (max-width: 47.99em) {
    .fashion-feed--label {
      font-size: .55rem; } }
  .fashion-feed--label::after {
    border-bottom: thin solid #000;
    bottom: 0;
    content: '';
    left: 0;
    display: block;
    width: 100%;
    transition: width 0.3s ease-in; }

.fashion-feed--label:hover::after {
  width: 0%;
  transition: width 0.3s ease-out; }

.fashion-feed--item {
  width: 33.3333%;
  position: relative;
  z-index: 101; }

.fashion-feed--images {
  margin-bottom: 2em;
  margin-left: -4%; }
  @media (max-width: 61.24em) {
    .fashion-feed--images {
      margin-left: -5%; } }

.fashion-feed--item:nth-child(1) {
  float: left;
  margin-top: 22%;
  right: -15%; 
  z-index: 103; }
  .fashion-feed--item:nth-child(1) .fashion-feed--label {
    bottom: 10%;
    left: -20%; }

.fashion-feed--item:nth-child(2) {
  float: left;
    z-index: 102;
   }
  .fashion-feed--item:nth-child(2) .fashion-feed--label {
    /*top: 10%;*/
    top: -15%;
    left: 40%; }

.fashion-feed--item:nth-child(3) {
  float: right;
  margin-top: 20%;
  left: -15%; }
  .fashion-feed--item:nth-child(3) .fashion-feed--label {
    right: -28%;
    /*bottom: 27%;*/
    bottom: -13%;}
    
    
    
.fashion-feed--layout-1 .fashion-feed--item:nth-child(1) .fashion-feed--label {
    bottom: 100%;
    left: 10%;
}
.fashion-feed--layout-1 .fashion-feed--item:nth-child(2) .fashion-feed--label {
    top: -13%;
    left: 23%;
}
.fashion-feed--layout-1 .fashion-feed--item:nth-child(3) .fashion-feed--label {
    right: -10%;
    bottom: 105%;
}



@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) {
 
  .fashion-feed--layout-1 .fashion-feed--item:nth-child(2) .fashion-feed--label {
      top: -13%;
      left: 10%;
  }
  
  .fashion-feed--item:nth-child(2) .fashion-feed--label{
        left: 38%;
  }
  
  .fashion-feed--layout-1 .fashion-feed--item:nth-child(1) .fashion-feed--label{
    left: 0%;
  }
  
  }
    
    
    @media (min-width: 92.5em) {
      .fashion-feed--item:nth-child(3) .fashion-feed--label {
        right: -20%; } }

.fashion-feed--cta-container {
  transition: all 2s cubic-bezier(0.42, 0.77, 0.45, 0.94); }
  @media (min-width: 92.5em) {
    .fashion-feed--cta-container .fashion-feed--title {
      max-width: 6em; } }

.fashion-feed--cta {
  padding-left: 1.250em;
  padding-top: 13.7em; }
  @media (min-width: 48em) and (max-width: 61.24em) {
    .fashion-feed--cta {
      padding-top: 2em; } }
  @media (max-width: 92.49em) {
    .fashion-feed--cta {
      padding-left: 0; } }
  @media (max-width: 47.99em) {
    .fashion-feed--cta {
      text-align: center;
      padding-left: 0 !important;
      padding-top: 0 !important; }
      .fashion-feed--cta .button, .fashion-feed--cta .join-form #ninja_forms_field_11, .join-form .fashion-feed--cta #ninja_forms_field_11 {
        font-size: 0.45rem; } }
  .fashion-feed--cta::before {
    content: '';
    background: #F4DCDA;
    display: block;
    height: 12px;
    margin-bottom: 2.5em;
    margin-left: 0.2em;
    width: 54px; }
    @media (max-width: 47.99em) {
      .fashion-feed--cta::before {
        display: none; } }

.fashion-feed--title {
  margin-bottom: 0.45em; }
  @media (max-width: 47.99em) {
    .fashion-feed--title {
      font-size: 1.55rem;
      margin-bottom: 0; } }

.fashion-feed--subtitle {
  padding-left: 0.2em; }
  @media (max-width: 47.99em) {
    .fashion-feed--subtitle {
      font-size: 0.7em;
      margin-bottom: 0.3em;
      margin-top: 0.5em; } }

.fashion-feed--layout-2 .fashion-feed--images {
  margin-left: 0;
  margin-right: -10%; }
  @media (max-width: 61.24em) {
    .fashion-feed--layout-2 .fashion-feed--images {
      margin-right: -5%; } }
@media (max-width: 47.99em) {
  .fashion-feed--layout-2 .fashion-feed--cta-container {
    display: none;
    text-align: center; } }
@media (min-width: 92.5em) {
  .fashion-feed--layout-2 .fashion-feed--title {
    max-width: 100%; } }
.fashion-feed--layout-2 .fashion-feed--mobile--cta-container {
  display: none; }
  @media (max-width: 47.99em) {
    .fashion-feed--layout-2 .fashion-feed--mobile--cta-container {
      display: inline-block; } }
.fashion-feed--layout-2 .fashion-feed--item:nth-child(1) .fashion-feed--label {
  bottom: -24%;
  left: 7%; }
.fashion-feed--layout-2 .fashion-feed--cta {
  padding-left: 1.6em;
  padding-top: 8.7em;
  text-align: right; }
  @media (min-width: 48em) and (max-width: 61.24em) {
    .fashion-feed--layout-2 .fashion-feed--cta {
      padding-top: 2em; } }
  @media (max-width: 47.99em) {
    .fashion-feed--layout-2 .fashion-feed--cta {
      text-align: center; } }
  .fashion-feed--layout-2 .fashion-feed--cta::before {
    margin-left: auto;
    margin-right: 0.2em; }
.fashion-feed--layout-2 .fashion-feed--title {
  letter-spacing: 0.12em; }

/*------------------------------------*\
    #STEP-INSIDE
\*------------------------------------*/
.step-inside {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 7.5em;
  width: 100%;
  min-height: 500px;
  transition: all 2s cubic-bezier(0.42, 0.77, 0.45, 0.94); }
  @media (max-width: 61.24em) {
    .step-inside {
      display: block;
      margin-bottom: 1em;
      min-height: 0; } }

_:-ms-fullscreen, :root .step-inside {
  display: block; }

.step-inside--image {
  position: absolute;
  z-index: 1;
  transition: all 2s cubic-bezier(0.42, 0.77, 0.45, 0.94);
  width: 45%; }
  .step-inside--image:nth-child(1) {
    left: 0;
    top: 75px;
    margin-left: 5%; }
  .step-inside--image:nth-child(2) {
    right: 0;
    margin-right: 5%; }

_:-ms-fullscreen, :root .step-inside--image:nth-child(1) {
  top: -96px !important; }

@media screen and (min-width: 0\0) {
  .step-inside--image:nth-child(1) {
    top: -96px !important; } }
_:-ms-fullscreen, :root .step-inside--image:nth-child(2) {
  top: -50px !important; }

@media screen and (min-width: 0\0) {
  .step-inside--image:nth-child(2) {
    top: -50px !important; } }
.step-inside--cto {
  background: #fff;
  margin-top: 3em;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2.5em;
  padding-top: 7em;
  position: relative;
  text-align: center;
  width: 502px;
  z-index: 99;
  transition: all 2s cubic-bezier(0.42, 0.77, 0.45, 0.94); }
  @media (max-width: 61.24em) {
    .step-inside--cto {
      padding-top: 3em;
      width: 100%; } }

_:-ms-fullscreen, :root .step-inside--cto {
  top: 100px !important; }

.step-inside--title {
  font-size: 3.250rem;
  letter-spacing: 0.1em; }
  @media (max-width: 61.24em) {
    .step-inside--title {
      font-size: 2rem; } }

@media (max-width: 61.24em) {
  .step-inside--image {
    display: none; } }

.step-inside--mobile {
  display: none;
  margin-top: 1em;
  position: relative; }
  @media (max-width: 61.24em) {
    .step-inside--mobile {
      display: block;
      font-size: 2rem; } }
  .step-inside--mobile .cycle-slideshow {
    overflow: visible !important; }

.cycle-pager {
  bottom: -20%;
  cursor: pointer;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 100; }
  @media (min-width: 48em) and (max-width: 61.24em) {
    .cycle-pager {
      bottom: -7%; } }
  .cycle-pager span {
    background: #fff;
    border: #000 thin solid;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5em;
    height: 10px;
    width: 10px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden; }
  .cycle-pager .cycle-pager-active {
    background: #000;
    border: #000 thin solid; }

/*------------------------------------*\
    #CTA - CALL TO ACTION Module
\*------------------------------------*/
.cta-container {
  text-align: center;
  padding: 6.5em 1em; }
  @media (max-width: 61.24em) {
    .cta-container {
      padding: 3em 1em; } }
	  
.shopcta-container {
  text-align: center;
  padding: 1em 1em 7.5em 1em; }
  @media (max-width: 61.24em) {
    .cta-container {
      padding: 1em 1em 3em 1em; } }
	  
.cta-inner,.shopcta-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 40em; }

.cta--title {
  letter-spacing: 0.05em;
  word-spacing: -0.1em; }
  @media (max-width: 47.99em) {
    .cta--title {
      font-size: 1.55rem; } }
	  
h2.shopcta--title.h1{
	font-size:1rem;
}
/*------------------------------------*\
    #SOCIAL NETWORK
\*------------------------------------*/
.social-networks {
  padding-top: 2em;
  padding-bottom: 0.5em;
  text-align: center; }
  @media (max-width: 61.24em) {
    .social-networks {
      padding-top: 5em;
      padding-bottom: 2em; } }

.social-network--item {
  display: inline-block;
  margin-right: 1.875em; }
  @media (max-width: 47.99em) {
    .social-network--item {
      width: 25%;
      margin-right: 0;
      margin-bottom: 7%; } }
  .social-network--item a {
    display: block; }
  .social-network--item svg path {
    transition: all 0.2s ease-in; }
  .social-network--item svg:hover path {
    fill: #DC548A;
    transition: all 0.2s ease-out; }

.social-network--image {
  height: 54px;
  width: 54px; }
.anchor1 {
  position: relative;
  height: 50px;
 /* top: -50px; */ }
.anchor {
  position: relative;
  height: 50px;
 /* top: -50px; */ }
  @media (max-width: 47.99em) {
    .anchor {
      display: none; } }

/*------------------------------------*\
    #HOME SLIDESHOW
\*------------------------------------*/
.home-slideshow .cycle-pager {
  right: 3%;
  bottom: 3%;
  text-align: right;
  z-index: 149; }
  @media (max-width: 47.99em) {
    .home-slideshow .cycle-pager {
      display: none; } }
  .home-slideshow .cycle-pager span {
    background: #F4DCDA;
    border: 1px solid #F4DCDA;
    height: 15px;
    width: 15px; }
  .home-slideshow .cycle-pager .cycle-pager-active {
    background: #fff; }

/*------------------------------------*\
    #HEADER
\*------------------------------------*/
.site-header {
/*  position: fixed; */
  transition: background 0.2s ease-in;
  width: 100%;
  z-index: 150; }
/*#header-section{
	max-width:1600px;
	margin:0px auto 10px;
	background: url(images/nav-bg.jpg) no-repeat;
 
} */
  @media (min-width: 20em) and (max-width: 61.24em) {
    .site-header {
      background: #fff; } }

.logo {

  display: inline-block;
  position: relative;
  z-index: 151; 
 }

.opaque-bg {
  background: rgba(255, 255, 255, 0.6);
  transition: background 550ms ease-in; }

.site-branding {
  float:left;
  padding-bottom: 1em;
  padding-top: 1em;
  text-align: center;
  display:inline-block;
  }
  @media (max-width: 47.99em) {
    .site-branding {
      padding-bottom: .2em;
      padding-top: .5em; }
      .site-branding img {
        width: 28%; } }

.main-banner {
  position: relative;
  z-index: -1;
  width: 100%; 
  clear:both;}
  @media (max-width: 61.24em) {
    .main-banner {
      top: 0; } }

.main-banner--image {
  width: 100%;
  text-align: center; }
  @media (max-width: 61.24em) {
    .main-banner--image {
      /*padding-top: 13%;*/ } }

/*------------------------------------*\
    #NAVIGATION
\*------------------------------------*/
.main-navigation {
 margin: 0em 0 3em; 
  }
 /* @media (min-width: 20em) and (max-width: 61.24em) {
   .main-navigation {
      display: none; } } */
ul#primary-menu{
	float:right;
	margin-top:3.5%;
}
.menu {
  font-size: 0.813rem;
/*  padding-left: 0;
  text-align: center; */ }
  .menu li {
    display: inline-block;
    list-style: none;
    letter-spacing: 0.19em;
    font-family: 'ITCAvantGardeProDemi';
    padding-right: 5em; }
 /* .menu li:nth-child(2) {
    padding-right: 20em; } */
  .menu a::after {
    border-bottom: thin solid #000;
    bottom: 0;
    content: '';
    left: 0;
    display: block;
    width: 0;
    transition: width 0.3s ease-in; }

.menu a:hover::after {
  width: 100%;
  transition: width 0.3s ease-out; }

/* Current page menu entry */
.current-menu-item a::after {
  border-bottom: thin solid #000;
  bottom: 0;
  content: '';
  left: 0;
  display: block;
  width: 100%; }

/* MOBILE MENU */
body {
  width: 100%;
  height: 100%; 
  }

.slideout-menu {
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 200;
  width: 256px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
  outline: none; }

.slideout-panel {
  position: relative;
  z-index: 1; }

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  overflow: hidden; }

.slideout-open .slideout-menu {
  display: block; }

.mobile-navigation {
  background: #fff;
  display: none;
  padding: 1.25em 0 0 2em; }
  @media (max-width: 61.24em) {
    .mobile-navigation {
      display: inline-block; } }
  .mobile-navigation .menu {
    padding-bottom: 2em; }
    .mobile-navigation .menu::after {
      content: '';
      background: #F4DCDA;
      display: inline-block;
      height: 6px;
      width: 27px;
      position: relative;
      top: 6px; }
  .mobile-navigation li {
    font-size: .913em;
    font-family: 'ITCAvantGardeProDemi';
    letter-spacing: .28em;
    display: block;
    text-align: left;
    padding-bottom: 1.838em; }
  .mobile-navigation li:nth-child(2) {
    padding-right: 0; }
  .mobile-navigation a {
    color: #666; }

.mobile-menu-on {
  left: 0; }

.mobile-nav-button--container {
  display: none;
  position: absolute;
  left: 5%;
  top: 25%;
  z-index: 100; }
  @media (max-width: 61.24em) {
    .mobile-nav-button--container {
      display: block; } }
  @media (min-width: 48em) and (max-width: 61.24em) {
    .mobile-nav-button--container {
      font-size: 2em; } }

.close-button {
  color: #ccc;
  position: absolute;
  right: 6%;
  top: 2%;
  font-family: ITCAvantGardePro-XLt;
  font-size: 1.5em; }

.footer-mobile-navigation {
  color: #808080;
  display: none !important;
  padding: 0 0 1.25em 2em; }
  @media (max-width: 47.99em) {
    .footer-mobile-navigation {
      display: block !important; } }
  .footer-mobile-navigation li {
    display: block;
    font-size: .888em;
    font-family: ITCAvantGardePro-XLt;
    letter-spacing: 0.09em;
    margin-bottom: 1.245em;
    text-align: left; }
  .footer-mobile-navigation a {
    color: #808080; }

#mobile-navigation .footer-copyright {
  color: #808080 !important;
  display: none;
  font-size: 0.688em;
  font-family: ITCAvantGardePro-XLt;
  letter-spacing: 0.09em;
  margin-bottom: 1.145em;
  text-align: left;
  padding-left: 2.9em;
  padding-top: 3em; }
  @media (max-width: 47.99em) {
    #mobile-navigation .footer-copyright {
      display: block; } }

.slideout-open #page::before {
  content: '';
  pointer-events: none;
  background: #000;
  display: block;
  height: 10000px;
  width: 100%;
  opacity: 0.5;
  z-index: 1000;
  position: absolute; }

.slideout-open .mobile-nav-button--container {
  left: 13%; }

/*------------------------------------*\
    #JOIN PAGE
\*------------------------------------*/
.page-template-template-thankyou,
.page-template-template-join {
  /*background: #F4DCDA;*/
  text-align: center; }
  .page-template-template-thankyou .site-header,
  .page-template-template-join .site-header {
    background: #fff; }
  .page-template-template-thankyou .entry-title,
  .page-template-template-join .entry-title {
    margin-top: 4em;
    margin-bottom: 0.15em; }
    @media (max-width: 47.99em) {
      .page-template-template-thankyou .entry-title,
      .page-template-template-join .entry-title {
        margin-top: 2.917em; } }
.row-form.row-form-chk{
	margin-bottom:10px;
}
.text a{
	text-decoration:underline;
}
.join-form select,
.join-form input[type='text'] {
  border: none;
  font-size: 1.25em;
  font-family: 'ITCAvantGardeProDemi';
  letter-spacing: 0.1em;
  margin-bottom: 1em;
  padding: 1.650em;
  text-align: center;
  text-transform: uppercase;
  /*width: 100%;*/ }
  @media (max-width: 47.99em) {
    .join-form select,
    .join-form input[type='text'] {
      font-size: 0.45em; } }
.join-form select {
  border-radius: 0;
  -webkit-appearance: none;
  background: url(../../assets/images/icon-arrow.svg) #fff no-repeat 90% center;
  background-size: 12px 8px;
  float: left;
  padding: 0.9em 1.9em;
  margin-left: 5px;
  text-transform: uppercase; }
  @media (max-width: 47.99em) {
    .join-form select {
      padding: 1.1em 2.8em 0.9em;
      background-size: 7px 5px; } }
.join-form input[type='checkbox'] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border-radius: 2em;
  cursor: pointer;
  display: inline-block;
  height: 50px;
  letter-spacing: 0.3em;
  margin-right: 1.538em;
  width: 50px;
  vertical-align: middle; }
  @media (max-width: 47.99em) {
    .join-form input[type='checkbox'] {
      height: 25px;
      width: 25px; } }
.join-form input[type=checkbox]:focus {
  outline: none; }
.join-form input[type=checkbox]:checked {
  background: #FF9999; }
.join-form .checkbox-wrap {
  font-size: 0.813em;
  font-family: 'ITCAvantGardeProBK';
  letter-spacing: 0.1em;
  text-align: left; }
  .join-form .checkbox-wrap label {
    overflow: hidden; }
    @media (max-width: 47.99em) {
      .join-form .checkbox-wrap label {
        font-size: 0.5em; } }
.join-form .field-wrap {
  position: relative; }
@media (max-width: 47.99em) {
  .join-form .field-wrap,
  .join-form #ninja_forms_required_items {
    margin-bottom: .8em; } }
.join-form .ninja-forms-error select,
.join-form .ninja-forms-error input {
  outline: solid red; }
.join-form .ninja-forms-field-error {
  font-size: 0.688rem;
  bottom: -1em;
  left: 0;
  position: absolute;
  text-align: left; }
.join-form .list-dropdown-wrap {
  display: inline-block;
  margin-right: 0.5em; }
  @media (max-width: 47.99em) {
    .join-form .list-dropdown-wrap {
      margin-right: 0; } }
.join-form #ninja_forms_field_8_div_wrap {
  margin-bottom: 3.75em; }
  @media (max-width: 47.99em) {
    .join-form #ninja_forms_field_8_div_wrap {
      margin-bottom: 1em; } }
.join-form #ninja_forms_field_27_div_wrap {
  margin-right: 0; }
.join-form #ninja_forms_field_11 {
  background: transparent;
  margin-bottom: 10em;
  margin-top: 5em;
  padding-left: 5.2em;
  padding-right: 5.2em; }
  @media (max-width: 47.99em) {
    .join-form #ninja_forms_field_11 {
      margin-bottom: 1em;
      margin-top: 1em; } }
.join-form ::-webkit-input-placeholder {
  color: #000; }
.join-form :-moz-placeholder {
  /* Firefox 18- */
  color: #000; }
.join-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #000; }
.join-form :-ms-input-placeholder {
  color: #000; }
.join-form .birth-label {
  display: inline-block;
  font-family: 'ITCAvantGardeProBK';
  letter-spacing: 0.3em;
  font-size: 0.650em;
  padding-right: 4.5em; }
  @media (max-width: 47.99em) {
    .join-form .birth-label {
      padding-right: 0; } }
.join-form .join-form--description {
  font-family: 'ITCAvantGardeProBK';
  letter-spacing: 0.3em;
  font-size: 0.650em;
  margin-bottom: 6.154em; }
  @media (max-width: 47.99em) {
    .join-form .join-form--description {
      line-height: 2;
      margin-bottom: 3em; } }

.page-template-template-thankyou main {
  min-height: 35em;
  display: flex;
  justify-content: center;
  align-items: center; }
.page-template-template-thankyou .entry-title {
  margin-top: 0; }
.page-template-template-thankyou p {
  font-family: 'ITCAvantGardeProBK';
  letter-spacing: 0.3em;
  font-size: 0.650em; }

/*------------------------------------*\
    #EYEWEAR PAGE
\*------------------------------------*/
.eyewear-form {
  margin-bottom: 1em;
  margin-top: 7.6em;
  margin-left: auto;
  margin-right: auto;
  max-width: 480px;
  text-align: center; }
  .eyewear-form ::-webkit-input-placeholder {
    color: #000; }
  .eyewear-form :-moz-placeholder {
    /* Firefox 18- */
    color: #000; }
  .eyewear-form ::-moz-placeholder {
    /* Firefox 19+ */
    color: #000; }
  .eyewear-form :-ms-input-placeholder {
    color: #000; }
  @media (max-width: 47.99em) {
    .eyewear-form {
      margin-bottom: 2.5em;
      margin-top: 2.5em;
      max-width: 16em; } }
  .eyewear-form input[type=number]::-webkit-inner-spin-button,
  .eyewear-form input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }

.eyewear-form form div input[type="number"]::-webkit-input-placeholder {
  color: #c3bcbc; }

.eyewear-form--title::before {
  content: '';
/*  background: #F4DCDA; */
  display: block;
  height: 10px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1.2em;
  text-align: center;
  width: 82px; }

.eyewear-form--number-field {
  border: none;
  font-size: 0.813em;
  font-family: 'ITCAvantGardeProBK';
  letter-spacing: 0.2em;
  margin-bottom: 4.3em;
  text-align: center;
  width: 100%;
  border: 1px solid gray;
  padding-bottom: 0.5em;
  padding-top: 0.5em; }
  @media (max-width: 47.99em) {
    .eyewear-form--number-field {
      margin-bottom: 1.3em; } }
  .eyewear-form--number-field:focus {
    outline: none; }

.eyewear-form--submit-field {
  display: block; }

/*------------------------------------*\
    #SARAH'S EDIT
\*------------------------------------*/
.video-full-width {
  margin-bottom: 5em; }
  @media (max-width: 47.99em) {
    .video-full-width {
      margin-bottom: 2.5em; } }

.home .video-full-width {
/*  margin-top: 9em; */ }

.page-template-template-blog .entry-title {
  margin-bottom: 0.45em; }
  @media (max-width: 47.99em) {
    .page-template-template-blog .entry-title::before {
      content: '';
      background: #F4DCDA;
      display: block;
      height: 6px;
      margin-bottom: 1em;
      text-align: right;
      width: 27px; } }

.blog--intro-content {
  margin-bottom: 4.442em;
  padding-top: 4.442em;
  width: 50%; }
  @media (max-width: 47.99em) {
    .blog--intro-content {
      margin-bottom: 0; } }
  .blog--intro-content::before {
    content: '';
    background: #F4DCDA;
    display: block;
    height: 12px;
    margin-right: auto;
    margin-left: 0;
    margin-bottom: 2.5em;
    text-align: center;
    width: 54px; }
    @media (max-width: 47.99em) {
      .blog--intro-content::before {
        display: none; } }
  @media (max-width: 47.99em) {
    .blog--intro-content {
      padding: 1em 0; } }
  .blog--intro-content .entry-title {
    margin-bottom: 0.5em; }
  .blog--intro-content p {
    font-family: 'ITCAvantGardeProBK';
    font-size: 0.813em;
    letter-spacing: 0.2em; }
    @media (max-width: 47.99em) {
      .blog--intro-content p {
        font-size: .5em; } }

.post {
  display: flex;
  top: -102px;
  justify-content: center;
  align-items: center;
  margin-bottom: 9.231em; }
  @media (max-width: 47.99em) {
    .post {
      display: block;
      margin-bottom: 2.5em; }
      .post .button, .post .join-form #ninja_forms_field_11, .join-form .post #ninja_forms_field_11 {
        display: none; } }

.post-link-mobile {
  display: none; }
  @media (max-width: 47.99em) {
    .post-link-mobile {
      color: #FF9999;
      display: inline-block; } }

.post--preview--title {
  clear: both;
  margin-bottom: 0.385em; }
  .post--preview--title::before {
    content: '';
    background: #F4DCDA;
    display: block;
    height: 12px;
    margin-right: 0.21em;
    margin-left: auto;
    margin-bottom: 0.8em;
    text-align: center;
    width: 54px; }
    @media (max-width: 47.99em) {
      .post--preview--title::before {
        display: none; } }

.post--column-1--inner {
  float: right;
  padding-right: 5em;
  max-width: 400px; }
  @media (max-width: 47.99em) {
    .post--column-1--inner {
      display: block;
      padding-right: 0;
      max-width: 200px; }
      .post--column-1--inner::before {
        content: '';
        background: #F4DCDA;
        display: block;
        height: 6px;
        float: right;
        margin-bottom: 1.3em;
        margin-left: 0.2em;
        text-align: right;
        width: 27px; } }

.post--preview--content {
  font-size: 0.813em;
  font-family: 'ITCAvantGardeProBK';
  letter-spacing: 0.2em;
  margin-bottom: 3em; }
  @media (max-width: 47.99em) {
    .post--preview--content {
      margin-bottom: 1em; } }

.post--column-1,
.post--column-2 {
  width: 50%; }
  @media (max-width: 47.99em) {
    .post--column-1,
    .post--column-2 {
      width: 100%; } }

.post--column-1 {
  text-align: right; }

@media screen and (min-width: 0\0) {
  .post--column-1 {
    float: left; }

  .post--column-2 {
    float: right; } }
.post:nth-child(even) {
  flex-direction: row-reverse; }
  .post:nth-child(even) .post--column-1 {
    text-align: left; }
  .post:nth-child(even) .post--column-1--inner {
    float: left;
    padding-left: 5em; }
    @media (max-width: 47.99em) {
      .post:nth-child(even) .post--column-1--inner {
        padding-left: 0; } }
    @media (max-width: 47.99em) {
      .post:nth-child(even) .post--column-1--inner::before {
        float: left; } }
  .post:nth-child(even) .post--preview--title::before {
    margin-right: auto;
    margin-left: 0.05em; }

.page-template-default .post-entry {
  font-size: 0.688em; }

.post--full {
  margin-top: 7.5em; }
  @media (max-width: 47.99em) {
    .post--full {
      margin-top: 0; } }
  .post--full .entry-header {
    margin-bottom: 7.5em; }
    @media (max-width: 47.99em) {
      .post--full .entry-header {
        margin-bottom: 1em; } }
  .post--full .entry-title {
    margin-bottom: .4em; }
    @media (max-width: 47.99em) {
      .post--full .entry-title {
        margin-bottom: 0; } }
  .post--full .entry-content p {
    font-size: 0.813em;
    font-family: 'ITCAvantGardeProBK';
    letter-spacing: 0.2em;
    line-height: 2.3;
    margin-bottom: 4em; }
  .post--full .entry-content img {
    margin-bottom: 7.5em;
    margin-left: 10em;
    margin-top: 7.5em; }

.entry-featured-image {
  margin-top: 5em; }

.entry-featured-image--inner {
  position: relative; }
  .entry-featured-image--inner::before {
    background: #F4DCDA;
    content: '';
    display: block;
    width: 100%;
    height: 120%;
    position: absolute;
    top: 0;
    left: 0;
    margin: -3.5em -4em 0;
    z-index: -1; }
    @media (max-width: 47.99em) {
      .entry-featured-image--inner::before {
        display: none; } }

.post--full--title-container {
  padding-left: 1.250em;
  padding-top: 13.7em; }
  @media (max-width: 47.99em) {
    .post--full--title-container {
      padding-left: 0;
      padding-top: 1em; } }
  .post--full--title-container::before {
    content: '';
    background: #F4DCDA;
    display: block;
    height: 12px;
    margin-bottom: 1.3em;
    margin-left: 0.2em;
    width: 54px; }

@media (max-width: 47.99em) {
  .social-share-container {
    display: none; } }
.social-share-container li {
  display: inline-block;
  margin-right: 2em; }

.social-share {
  display: inline-block;
  background-size: cover; }
  .social-share svg {
    height: 24px;
    width: 25px; }
  .social-share svg path {
    transition: all 0.2s ease-in; }
  .social-share svg:hover path {
    fill: #F4DCDA;
    transition: all 0.2s ease-out; }

.post-gallery {
  margin-right: -50%;
  margin-left: 50%;
  padding-bottom: 5em; }
  @media (max-width: 61.24em) {
    .post-gallery {
      margin: 0 !important; } }

.post--full .post-gallery img {
  margin: 0 0 1.5em;
  width: 100%; }

.post-gallery--nav {
  background: url(../../assets/images/icon-slide-nav.svg) no-repeat left top;
  display: inline-block;
  cursor: pointer;
  height: 53px;
  position: absolute;
  right: 0;
  width: 53px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.cycle-prev.post-gallery--nav {
  right: 63px; }

.cycle-next.post-gallery--nav {
  transform: rotate(180deg); }

.post-gallery--caption {
  bottom: 30px;
  font-family: ITCAvantGardeProBK;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  position: absolute;
  right: 140px; }

/*------------------------------------*\
    #PAGE
\*------------------------------------*/
.page-template-default .entry-title {
  text-align: right; }
  @media (max-width: 47.99em) {
    .page-template-default .entry-title {
      margin-top: 1em;
      text-align: left;
      width: 50%; } }
  .page-template-default .entry-title::before {
    content: '';
    background: #F4DCDA;
    float: right;
    display: block;
    height: 12px;
    margin-bottom: 0.8em;
    margin-left: 0.2em;
    width: 54px; }
    @media (max-width: 47.99em) {
      .page-template-default .entry-title::before {
        float: none;
        height: 6px;
        margin-left: 0;
        text-align: left;
        width: 27px; } }

.page-template-default .entry-content,
.page-template-default .entry-content p {
  color: #666;
  font-size: 1em;
  line-height: 2; }
  .page-template-default .entry-content a,
  .page-template-default .entry-content p a {
    color: #FF9999; }

/*------------------------------------*\
    #INSTAGRAM
\*------------------------------------*/
.instagram-feed {
  height: 850px;
  margin-top: 7.625em;
  position: relative;
 }
  @media (max-width: 61.24em) {
    .instagram-feed {
      display: none; } }

.instagram-feed--follow {
  background: #fff;
  bottom: 0;
  height: 168px;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  width: 360px;
  z-index: 99; }

.instagram-feed--title {
  font-size: 1.75em;
  margin-top: 1.4em;
  line-height: 1.25;
  letter-spacing: 0.23em; }
  .instagram-feed--title::after {
    background: #F4DCDA;
    content: '';
    display: block;
    height: 8px;
    margin: 0.3em auto 0;
    width: 48px; }
  .instagram-feed--title a {
    color: #FF9999; }

#sb_instagram {
  position: relative; }

.sbi_item {
  overflow: hidden;
  position: absolute;
  transition: transform 0.1s ease-in; }

.sbi_item:nth-child(1),
.sbi_item:nth-child(1) a {
  width: 240px !important;
  height: 240px !important; }
  @media (max-width: 78.5525em) {
    .sbi_item:nth-child(1),
    .sbi_item:nth-child(1) a {
      width: 200px !important;
      height: 200px !important; } }

.sbi_item:nth-child(1) {
  top: 78px;
  left: 20px;
  /*transform: translate3d(-1000%, 0, 0);
  -webkit-animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
  -vwebkit-animation-iteration-count: infinite;*/ }

.sbi_item:nth-child(2),
.sbi_item:nth-child(2) a {
  width: 375px !important;
  height: 375px !important; }
  @media (max-width: 92.49em) {
    .sbi_item:nth-child(2),
    .sbi_item:nth-child(2) a {
      width: 365px !important;
      height: 365px !important; } }
  @media (max-width: 78.5525em) {
    .sbi_item:nth-child(2),
    .sbi_item:nth-child(2) a {
      width: 300px !important;
      height: 300px !important; } }
  @media (max-width: 78.5525em) {
    .sbi_item:nth-child(2),
    .sbi_item:nth-child(2) a {
      width: 260px !important;
      height: 260px !important; } }

.sbi_item:nth-child(2) {
/*  left: 265px; */
  left: 300px;
  z-index: 50;
  transform: translate3d(-1000%, 0, 0); }

.sbi_item:nth-child(3),
.sbi_item:nth-child(3) a {
  width: 640px !important;
  height: 640px !important; }
  @media (max-width: 92.49em) {
    .sbi_item:nth-child(3),
    .sbi_item:nth-child(3) a {
      width: 620px !important;
      height: 620px !important; } }
  @media (max-width: 78.5525em) {
    .sbi_item:nth-child(3),
    .sbi_item:nth-child(3) a {
      width: 550px !important;
      height: 550px !important; } }
  @media (max-width: 74.4275em) {
    .sbi_item:nth-child(3),
    .sbi_item:nth-child(3) a {
      width: 500px !important;
      height: 500px !important; } }
  @media (max-width: 68.0525em) {
    .sbi_item:nth-child(3),
    .sbi_item:nth-child(3) a {
      width: 400px !important;
      height: 400px !important; } }

.sbi_item:nth-child(3) {
  right:20px;
  top: -102px;
  /*transform: translate3d(1000%, 0, 0); */}

.sbi_item:nth-child(4),
.sbi_item:nth-child(4) a {
  width: 195px !important;
  height: 195px !important; }

.sbi_item:nth-child(4) {
  top: 350px;
  left: 66px;
  transform: translate3d(-1000%, 0, 0); }

  
.sbi_item:nth-child(5),
.sbi_item:nth-child(5) a {
  width: 375px !important;
  height: 375px !important; }
  @media (max-width: 92.49em) {
    .sbi_item:nth-child(5),
    .sbi_item:nth-child(5) a {
      width: 370px !important;
      height: 370px !important; } }
  @media (max-width: 78.5525em) {
    .sbi_item:nth-child(5),
    .sbi_item:nth-child(5) a {
      width: 300px !important;
      height: 300px !important; } }

.sbi_item:nth-child(5) {
  top: 415px;
 /* left: 263px; */
  left: 300px;
  transform: translate3d(-1000%, 0, 0); }
  @media (max-width: 92.49em) {
    .sbi_item:nth-child(5) {
    top: 404px;
    left: 300px; } }

.sbi_item:nth-child(6),
.sbi_item:nth-child(6) a {
  width: 160px !important;
  height: 160px !important; }

.sbi_item:nth-child(6) {
  top: 570px;
  left: 718px;
  transform: translate3d(1000%, 0, 0); }
  @media (max-width: 92.49em) {
    .sbi_item:nth-child(6) {
      top: 550px;
      left: 710px;	  } }

.sbi_item:nth-child(2) {
  animation-delay: 182.58916256157636ms; }

.sbi_item:nth-child(3) {
  animation-delay: 149.8167487684729ms; }

.sbi_item:nth-child(6) {
  animation-delay: 510.31330049261084ms; }

.instagram-feed--follow {
  animation-delay: 657.9597359411779ms; }

.instagram-feed-mobile {
  display: none;
  position: relative;
  padding-bottom: 2em; }
  @media (max-width: 61.24em) {
    .instagram-feed-mobile {
      display: block; } }
  @media (min-width: 48em) and (max-width: 61.24em) {
    .instagram-feed-mobile {
      margin-left: 5em;
      margin-right: 5em; } }
  .instagram-feed-mobile img {
    max-width: 100%;
    display: block;
    height: auto;
    width: 100%; }
  .instagram-feed-mobile .cycle-slideshow {
    overflow: visible !important; }
  .instagram-feed-mobile .cycle-pager {
    bottom: -10%; }
  .instagram-feed-mobile .instagram-feed--follow {
    height: auto;
    position: static;
    width: 80%; }
    @media (min-width: 48em) and (max-width: 61.24em) {
      .instagram-feed-mobile .instagram-feed--follow {
        width: 50%;
        		} }
  .instagram-feed-mobile .instagram-feed--title {
    padding-top: 1.708em;
    font-size: 1.5em; }
    .instagram-feed-mobile .instagram-feed--title::after {
      display: none; }
    @media (min-width: 48em) and (max-width: 61.24em) {
      .instagram-feed-mobile .instagram-feed--title {
        padding-top: 3em; } }

/*------------------------------------*\
    #BLOG
\*------------------------------------*/
.single-post .post {
  display: block;
  position: static; }

/*------------------------------------*\
    #FASHION FEED PAGE
\*------------------------------------*/
.page-template-template-fashionfeed main {
  margin-top: 14em; }

/*------------------------------------*\
    #FOOTER
\*------------------------------------*/
.site-footer {
 /* border-top: thin solid #000; */
  color: #808080;
  font-family: 'ITCAvantGardeProBK';
  font-size: 0.688rem;
  letter-spacing: 0.1em;
  padding-bottom: 5em;
 /* padding-top: 3.7em; */
  text-align: center; }
  @media (max-width: 47.99em) {
    .site-footer {
      display: none; } }
  .site-footer a {
    color: #808080;
    font-size: 0.688rem; }
  .site-footer .menu{
	  margin: 0 auto !important;
      padding: 0;
   }
.site-footer .menu li{
      padding: 0 0 0 2em !important;
   }
.footer-navigation {
  display: inline-block; }
  .footer-navigation .menu {
    margin-top: 0; }
    .footer-navigation .menu li {
      padding-right: 1.375em; }

.footer-copyright {
  display: inline-block;
  margin-bottom: 1.545em;
  text-align: left;
  letter-spacing: 0.27em;
  font-family: 'ITCAvantGardeProDemi'; }
  @media (max-width: 47.99em) {
    .footer-copyright {
      display: block !important;
      font-size: .588em; } }
      
button, html input[type=button], input[type=reset], input[type=submit]{
  border: thin solid #000;
  background: transparent;
  display: inline-block;
  font-family: 'ITCAvantGardeProMedium';
  font-size: 0.750rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.7em 2.6em 1.5em;
  word-spacing: 0.1em;
  background: transparent;
  margin-bottom: 10em;
  margin-top: 5em;
  padding-left: 5.2em;
  padding-right: 5.2em;
}

button:hover, html input[type=button]:hover, input[type=reset]:hover, input[type=submit]:hover{
  background: #000;
    color: #fff;
}

.row-form.row-form-top.row-form-chk{
  margin-left: -37px;
  margin-bottom: 5px;
}

.row-form.row-form-select label{
  float: left;
  margin-top: 20px;
}

.row-form.row-form-select{
  margin-left: 70px;
}
/* p{
    font-family: 'ITCAvantGardeProBK';
    letter-spacing: 0.1em;
    font-size: 0.650em;
    margin-bottom: 6.154em;
   
} */


@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px){
  
  
  .fashion-feed--layout-1-mob-feed .fashion-feed--item{
    width: 98%;
    margin: 0 auto;
    left: 5.5%;
  }
  
  .fashion-feed--layout-2-mob-feed .fashion-feed--item{
     width: 98%;
     margin: 0 auto;
    left: 5.45%;
    margin-top: 10%;
  }
  
  .fashion-feed--layout-1-mob-feed .fashion-feed--item:nth-child(1) .fashion-feed--label {
    bottom: -8%;
    left: 39%;
  }
  
  .fashion-feed--layout-2-mob-feed .fashion-feed--item:nth-child(1) .fashion-feed--label {
    bottom: -8%;
    left: 39%;
  }
 
  .blog--intro-content p{
    font-size: 0.6em;
  } 
  
/*.main-banner {
    top: 60px;
}*/

.instagram-feed-mobile .instagram-feed--follow{
  position: absolute;
  top: 128%;
}
  
  .fashion-feed--item:nth-child(2)
  {
    left: 8%;

  }
  
  /*.fashion-feed--images{
    margin: 0 auto;
  }*/
  
  .pure-img{
   margin: 0 auto;
  }
 
  .fashion-feed--layout-1 .fashion-feed--item:nth-child(2) .fashion-feed--label {
      top: 100%;
      left: -1%;
  }
    
  .fashion-feed--item:nth-child(2) .fashion-feed--label{
    left: 0%;
    top: 101%;
  }
  
  .fashion-feed--layout-1 .fashion-feed--item:nth-child(1) .fashion-feed--label{
    bottom: -25%;
  }
  
  .fashion-feed--item:nth-child(3) .fashion-feed--label{
    bottom: -26%;
  }
  
  .fashion-feed--layout-2 .fashion-feed--item:nth-child(1) {
    left: 1%;
    top: 100%;
    right: 0%;
  }
  
  .fashion-feed--layout-2 .fashion-feed--item:nth-child(3) {
   left: -7%;
  }
  
  .fashion-feed--layout-1 .fashion-feed--item:nth-child(1) {
    right: 0%;
    left: 7%;
  }
  
  .fashion-feed--layout-2 .fashion-feed--item:nth-child(2) {
    left: 1%;
  }
  
  .fashion-feed--layout-1 .fashion-feed--item:nth-child(2) {
    left: 7.5%;
  }
  
  .fashion-feed--layout-3 .fashion-feed--item:nth-child(1) {
    left: 1%;
    top: 100%;
    right: 0%;
  }
  
  .fashion-feed--item:nth-child(3)
  {
        left: 5%;
  }
  
  
  /* Home page updates */
  
  .fashion-feed--layout-1-home .fashion-feed--item:nth-child(1) {
    margin-top: 10%;
    left: 5.4%;
  }
  
  .fashion-feed--layout-1-home .fashion-feed--item:nth-child(1) .fashion-feed--label{
    bottom: -10%;
    left: 38%;
  }
  
  .fashion-feed--layout-1-home .fashion-feed--item:nth-child(2) {
    margin-top: 10%;
    right: 0px;
    left: 6.25%;
  }
  
   .fashion-feed--layout-1-home .fashion-feed--item:nth-child(2) .fashion-feed--label{
      left: 38%;
  }
  
  .fashion-feed--layout-1-home .fashion-feed--item:nth-child(3) {
    margin-top: 8%;
    left: 2%;
    right: 0px;
  }
  
   .fashion-feed--layout-1-home .fashion-feed--item:nth-child(3) .fashion-feed--label{
    right: 35%;
    bottom: -8%;
    left: 42%;
  }
  
  .fashion-feed--layout-1-home .fashion-feed--cta-container{
    margin-top: 30px;
  }
  
  
  
   .fashion-feed--layout-2-home .fashion-feed--item:nth-child(1) {
    margin-top: 10%;
    right: -6%;
  }
  
  .fashion-feed--layout-2-home .fashion-feed--item:nth-child(1) .fashion-feed--label{
    bottom: -6%;
    left: 36%;
  }
  
  .fashion-feed--layout-2-home .fashion-feed--item:nth-child(2) {
    margin-top: 18%;
    right: 0px;
    left: 6%;
  }
  
   .fashion-feed--layout-2-home .fashion-feed--item:nth-child(2) .fashion-feed--label{
      left: 38%;
  }
  
   .fashion-feed--layout-2-home .fashion-feed--image--box{
         box-shadow: inherit;
  }
  
  .fashion-feed--layout-2-home .fashion-feed--item:nth-child(3) {
    left: 4%;
  }
  
   .fashion-feed--layout-2-home .fashion-feed--item:nth-child(3) .fashion-feed--label{
    right: 37%;
    bottom: -6%;
    left: 42%;
  }
  
  .fashion-feed--layout-2-home .fashion-feed--cta-container{
    margin-top: 10px;
  }
  
   .step-inside--mobile{
    margin-top: -120px;
  }
  
  .step-inside{
    margin-bottom: -6em;
  }
  
 .pure-g.fashion-feed--layout.fashion-feed--layout-2-mob-feed {
    margin-top: -150px;
}

.fashion-feed--item {
  width: 98%;
  }
  .blog--intro-content {
      margin: 0 auto;
      width: 90%;
      }
      
  .social-networks {
  margin: 0 auto;
  margin-left: 6%;
  } 
  
  }
  
  
@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 667px) {
  
  .fashion-feed--item {
  width: 98%;
  }
  
  .social-networks {
      margin: 0 auto;
      margin-left: 6%;
  } 

  
   .blog--intro-content {
      margin: 0 auto;
      width: 90%;
      } 
  
  .step-inside--mobile{
    margin-top: -120px;
  }
  
.pure-g.fashion-feed--layout.fashion-feed--layout-2-mob-feed {
    margin-top: -150px;
}
  
  .step-inside{
    margin-bottom: -6em;
  }
  
  .fashion-feed--layout-1-mob-feed .fashion-feed--item{
    width: 98%;
    margin: 0 auto;
    left: 6%;
  }
  
  .fashion-feed--layout-2-mob-feed .fashion-feed--item{
     width: 98%;
    margin: 0 auto;
    left: 6%;
    margin-top: 10%;
  }
  
   .fashion-feed--layout-1-mob-feed .fashion-feed--item:nth-child(1) .fashion-feed--label {
    bottom: -8%;
    left: 40%;
  }
  
  .fashion-feed--layout-2-mob-feed .fashion-feed--item:nth-child(1) .fashion-feed--label {
    bottom: -8%;
    left: 40%;
  }
  
  .blog--intro-content p{
    font-size: 0.6em;
  }
  
  .fashion-feed--item:nth-child(2)
  {
    left: 8%;

  }
  
  .instagram-feed-mobile .instagram-feed--follow{
  position: absolute;
  top: 140%;
  }
  
  .pure-img{
   margin: 0 auto;
  }
 
  .fashion-feed--layout-1 .fashion-feed--item:nth-child(2) .fashion-feed--label {
      top: 100%;
      left: -1%;
  }
    
  .fashion-feed--item:nth-child(2) .fashion-feed--label{
    left: 0%;
    top: 101%;
  }
  
  .fashion-feed--layout-1 .fashion-feed--item:nth-child(1) .fashion-feed--label{
    bottom: -25%;
  }
  
  .fashion-feed--item:nth-child(3) .fashion-feed--label{
    bottom: -26%;
  }
  
  .fashion-feed--layout-2 .fashion-feed--item:nth-child(1) {
    left: 1%;
    top: 100%;
    right: 0%;
  }
  
  .fashion-feed--layout-2 .fashion-feed--item:nth-child(3) {
   left: -7%;
  }
  
  .fashion-feed--layout-1 .fashion-feed--item:nth-child(1) {
    right: 0%;
    left: 7%;
  }
  
  .fashion-feed--layout-2 .fashion-feed--item:nth-child(2) {
    left: 1%;
  }
  
  .fashion-feed--layout-1 .fashion-feed--item:nth-child(2) {
    left: 7.5%;
  }
  
  .fashion-feed--layout-3 .fashion-feed--item:nth-child(1) {
    left: 1%;
    top: 100%;
    right: 0%;
  }
  
  .fashion-feed--item:nth-child(3)
  {
        left: 5%;
  }
    
  .fashion-feed--layout-1-home .fashion-feed--item:nth-child(1) {
    margin-top: 10%;
  }
  
  .fashion-feed--layout-1-home .fashion-feed--item:nth-child(1) .fashion-feed--label{
    bottom: -10%;
    left: 40%;
  }
  
  .fashion-feed--layout-1-home .fashion-feed--item:nth-child(2) {
    margin-top: 10%;
    right: 0px;
    left: 6.25%;
  }
  
   .fashion-feed--layout-1-home .fashion-feed--item:nth-child(2) .fashion-feed--label{
      left: 38%;
  }
  
  .fashion-feed--layout-1-home .fashion-feed--item:nth-child(3) {
    margin-top: 8%;
    left: 2%;
    right: 0px;
  }
  
   .fashion-feed--layout-1-home .fashion-feed--item:nth-child(3) .fashion-feed--label{
    right: 34%;
    bottom: -8%;
  }
  
  .fashion-feed--layout-1-home .fashion-feed--cta-container{
    margin-top: 30px;
  }
  
  
  
   .fashion-feed--layout-2-home .fashion-feed--item:nth-child(1) {
    margin-top: 10%;
  }
  
  .fashion-feed--layout-2-home .fashion-feed--item:nth-child(1) .fashion-feed--label{
    bottom: -6%;
    left: 36%;
  }
  
  .fashion-feed--layout-2-home .fashion-feed--item:nth-child(2) {
    margin-top: 18%;
    right: 0px;
    left: 6%;
  }
  
   .fashion-feed--layout-2-home .fashion-feed--item:nth-child(2) .fashion-feed--label{
      left: 38%;
  }
  
   .fashion-feed--layout-2-home .fashion-feed--image--box{
         box-shadow: inherit;
  }
  
  .fashion-feed--layout-2-home .fashion-feed--item:nth-child(3) {
    left: 4%;
  }
  
   .fashion-feed--layout-2-home .fashion-feed--item:nth-child(3) .fashion-feed--label{
    right: 39%;
    bottom: -6%;
    left: 40%;
  }
  
  .fashion-feed--layout-2-home .fashion-feed--cta-container{
    margin-top: 10px;
  }  
  
.fashion-feed--layout-2-home .fashion-feed--item:nth-child(3) .fashion-feed--label {
    right: 39%;
    left: 43%;
}

.fashion-feed--layout-2-home .fashion-feed--item:nth-child(2) .fashion-feed--label {
    right: 32%;
    left: 39%;
}

.fashion-feed--layout-1-home .fashion-feed--item:nth-child(3) .fashion-feed--label {
    right: 35%;
    left: 43%;
}
  
}
  

/*# sourceMappingURL=candies.main.css.map */
/* ------ Custom CSS --------- */

#site-navigation{
/*	display:inline-block; */
	    
}
.menu li:last-child{
	padding-right: 0em !important;
}
#sliderContainer{
	max-width: 1698px;
    position: relative;
    margin: 0 auto;
    margin-top: 20px;
    display: block;
}
.bx-wrapper{
    box-shadow: none !important;
    border: 0px !important;
    margin: 0 auto !important;
}

.bx-wrapper .bx-next{
	right: 30px !important;
	left: auto !important;
	background-position: -89px -103px !important;
	background: url(images/next.png) no-repeat !important;
	width: 54px !important;
	height: 80px !important;
}

.bx-wrapper .bx-prev {
    background: url(images/prev.png) no-repeat !important;
    width: 46px !important;
    height: 80px !important;
}

.bx-wrapper img {
    margin: 0 auto;
}
.bx-wrapper .bx-pager{
	display:none !important;
}
 ul.bxslider{
    margin:0 !important;   
    }
.cycle-pager{
	display:none;
}
.img_format img,#hero_image img,#bottom_image img {
	margin:0px auto;
	text-align:center;
	width:100%;
        display: inline-block;
}

.hero_txt_image img
{
    width: auto !important;
    text-align: right;
    vertical-align: top;
}
#hero_image,#denimimage,#workimage,#bottom_image
{
  position: relative;
}

.medium_txt
{
    font-size: 21px;
    font-family:ITCAvantGardeProDemi !important;
    line-height: 2rem;
    letter-spacing: 1px;
    font-weight: 100;
}

.featured_txt
{
    margin-bottom: 0;
    text-align: right;
    position: absolute;
    bottom: 52%;
    right: 15%;
    letter-spacing: 4px;
}

.image1_txt
{
    display: inline-block;
    z-index: 50;
    margin-bottom: 0;
    text-align: left;
    position: absolute;
    bottom: 42%;
    left: 36%;
    letter-spacing: 4px;
    transform: translate3d(-500%, 0, 0);
    -o-transform: translate3d(-500%, 0, 0);
    -moz-transform: translate3d(-500%, 0, 0);
    -webkit-transform: translate3d(-500%, 0, 0);
}

.image1_txt div:nth-of-type(1) {
    right: 25%;
    display: block;
    position: relative;
    letter-spacing: 4px;
}

.image2_txt
{
    margin-bottom: 0;
    text-align: left;
    position: absolute;
    bottom: 45%;
    right: 33%;
    letter-spacing: 4px;
}

.image2_txt div:nth-of-type(1) {
    right: 20%;
    display: block;
    position: relative; 
}

.image3_txt
{
    margin-bottom: 0;
    text-align: left;
    position: absolute;
    bottom: 35%;
    left: 8%;
    letter-spacing: 4px;
    transform: translate3d(-180%, 0, 0);
    -o-transform: translate3d(-180%, 0, 0);
    -moz-transform: translate3d(-180%, 0, 0);
    -webkit-transform: translate3d(-180%, 0, 0);
}
.heroImage-overlay {
  /*background: rgba(222,183,182,0.4);*/
  position: absolute;
  /*height: 90%;
  width: 95%;
  left: 2.5%;
  top: 4.5%;*/
  height: 99%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

#featured{
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 70px;
}
#featured-list ul{
    margin: 0px !important;
    padding: 0px !important;
}

#featured-list li{
    list-style: none;
    display: inline-block;
    width:31%;
    margin-right:25px;
}
#featured-list img{
    width:100%;
}
#featured-list li:first-child{
    float: left;
    left: 0px;
}
#featured-list li:last-child{
    float: right;
    right: 0px;
    margin-right:-15px;
}
#featured-list li img:hover{
    opacity: 0.7;
}	
/* #eyewear-content{
	background-color:#f4dcda;
} */
.cta-container{
    margin:90px auto;
    max-width: 1330px; 
    padding-top:100px;
    width:90%;
}
.row.display-flex {
    display: flex;
    flex-wrap: wrap;
}
.row.display-flex > [class*='col-'] {
  /*display: flex;*/
  flex-direction: column;
}
h2.cta--title.h1{
    font-size: 40px;
    font-family:ITCAvantGardeProMedium !important;
    line-height: 4rem;
    letter-spacing: 4.5px;
    font-weight: 100;
}
.homewidth{
    width:90%;
    max-width:1330px;
    margin:0px auto;
 }
.homewidth img{
    width:100%; 
 }
 #video{
    position:relative;
    margin-top:-300px;
 }
p.line1,p.line2,p.line3,p.line4{
    font-size: 35px;
    font-family:ITCAvantGardeProMedium !important;
    line-height: 5rem;
    letter-spacing: 5px;
    font-weight: 100;
    margin-bottom: 0;
    color: #000;
    text-transform: uppercase;
}
.image_text{
	   background: url(images/background.jpg) no-repeat !important;
	   padding-top: 150px;
    padding-bottom: 270px;
    margin-top: 100px;
}
.text_align {
  margin-top: -5%;
}

#bottom_image{
	margin:0px auto;
	max-width:1600px;
	margin-top:80px;
	margin-bottom:80px;
}
a#shop-denim,a#shop-workwear,a#shop-holiday,a#shop-perfect{
	padding: 0.8em 1.9em 0.6em !important;
}

#denimimage, #workimage,#hero_eyewear{
  position: relative;
  text-align: center;
}

#denimimage img, #workimage img
{
  filter:         url(~"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
    -moz-filter:    grayscale(0%);
    -ms-filter:     grayscale(0%);
    -o-filter:      grayscale(0%);
    cursor: pointer;
   filter: none;
   transition-duration: 1.0s;
   width: 100%;
}
/*#denimimage img.image1_overlay
{
   -webkit-filter: grayscale(75%);
    -moz-filter:    grayscale(75%);
    -ms-filter:     grayscale(75%);
    -o-filter:      grayscale(75%);
    filter: gray;
    transition-duration: 1.0s;
  }*/
  
/*#workimage img.image2_overlay
{
   -webkit-filter: grayscale(90%);
    -moz-filter:    grayscale(90%);
    -ms-filter:     grayscale(90%);
    -o-filter:      grayscale(90%);
    filter: gray;
    transition-duration: 1.0s;
  }*/

/*#holiday-button {
    position: absolute;
    transform: translate(-50%,-50%);
    bottom: 23%;
    right: 8%;
    }
*/
@media only screen 
and (min-width : 1700px) 
 {
	 #holiday-button {
    right: 9% !important;
}
#cta-work {
    right: 16% !important;
}
 }
@media only screen 
and (min-width : 1400px) 
and (max-width : 1680px)
 {
	 #holiday-button {
    right: 9% !important;
}
#cta-work {
    right: 16% !important;
}
 }
#holiday-button {
    position: absolute;
    transform: translate(-50%,-50%);
    bottom: 18%;
    right: 8%;
}
/*#denim-button {
      position: absolute;
      /*transform: translate(-50%,-50%);*/
     /* top: 14%;
      left: 40%;
      transform: translate3d(-1000%, 0, 0);
      -o-transform: translate3d(-1000%, 0, 0);
      -moz-transform: translate3d(-1000%, 0, 0);
      -webkit-transform: translate3d(-1000%, 0, 0);
    }*/
	
#denim-button {
    position: absolute;
    transform: translate(-50%,-50%);
    bottom: 2%;
    left: 75%;
    /*transform: translate3d(-1000%, 0, 0);
    -o-transform: translate3d(-1000%, 0, 0);
    -moz-transform: translate3d(-1000%, 0, 0);
    -webkit-transform: translate3d(-1000%, 0, 0);*/
}

#cta-work{
    position: absolute;
    transform: translate(-50%,-50%);
    bottom: 20%;
    right: 14%;
}
/*#perfect-btn{
    position: absolute;
    /*transform: translate(-50%,-50%);*/
    /*top: 30%;
    right: 7%;
    transform: translate3d(-1000%, 0, 0);
    -o-transform: translate3d(-1000%, 0, 0);
    -moz-transform: translate3d(-1000%, 0, 0);
    -webkit-transform: translate3d(-1000%, 0, 0);
}*/ 
#perfect-btn {
    position: absolute;
    /* transform: translate(-50%,-50%); */
    /* top: 9%; */
    left: -26%;
    text-align: center;
    /* margin: 0 auto; */
    width: 100%;
    bottom: 30%;
    /*transform: translate3d(-1000%, 0, 0);
    -o-transform: translate3d(-1000%, 0, 0);
    -moz-transform: translate3d(-1000%, 0, 0);
    -webkit-transform: translate3d(-1000%, 0, 0);*/
}
#perfect-btn1 {
    position: absolute;
    transform: translate(-50%,-50%);
    /* top: 9%; */
    bottom: 2%;
    /* right: 7%; */
    left: 24%;
    /* text-align: center; */
    /* margin: 0 auto; */
    /* width: 100%; */
    /*transform: translate3d(-1000%, 0, 0);
    -o-transform: translate3d(-1000%, 0, 0);
    -moz-transform: translate3d(-1000%, 0, 0);
    -webkit-transform: translate3d(-1000%, 0, 0);*/
}
#eye-button{
	position:absolute;
	transform: translate(-50%,-50%);
	top:73%;
	left:15%;
	font-family:ITCAvantGardeProDemi;
	font-size:22px;
	letter-spacing:0.1em;
	background:white;
	padding:1.3% 2% 1% 22%;
}
@media only screen 
and (min-width : 1025px) 
and (max-width : 1120px){
	p.line1, p.line2, p.line3{
		font-size: 30px;
	}
}
@media (max-width: 1360px) {
  .medium_txt
  {
      font-size: 18px;
  }
  .button
  {
      font-size: 16px;
  }
}
@media (max-width: 1200px) {
  #page {
    max-width: 100%;
  }
  .medium_txt
  {
      font-size: 14px;
      line-height: 23px;
      letter-spacing: 1px;
  }
  .button
  {
      font-size: 14px;
  }
  .image1_txt div:nth-of-type(1) {
      letter-spacing: 1px;
  }
}
@media only screen 
  and (min-width: 768px) 
  and (max-width: 4000px) {
	.logo {
	  float:left !important;
   }
  }
@media only screen 
and (min-width : 768px) 
and (max-width : 900px)  {  
/* .sbi_item:nth-child(6), .sbi_item:nth-child(2){
	display:none !important;
}  */
} 
@media only screen 
and (min-width : 768px) 
and (max-width : 1024px)  {
/*.main-banner {
    top: 110px;
}*/
.pum-theme-26937 .pum-content, .pum-theme-lightbox .pum-content{
	font-size: 8px !important;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-email.wpcf7-validates-as-email{
	    padding: 2px !important;
}
input[type=submit]{
	    font-size: 0.50rem;
}
ul#primary-menu{
	float:right;
	margin-top:6.5% !important;
}
.fashion-feed--item:nth-child(2) .fashion-feed--label{
  left: 25%;
  top: inherit;
}

.fashion-feed--item:nth-child(1) .fashion-feed--label {
    left: 20%;
    bottom: -17%;
}

.step-inside--mobile .pure-img{
  left: 12.5% !important;
}
/* June 2018 Ipad */
a#shop-denim, a#shop-workwear, a#shop-holiday, a#shop-perfect{
	    padding: 0.8em 1.5em 0.5em !important; 
}
/* #denim-button{
	    left: 78.3%;
} */
.button, .join-form #ninja_forms_field_11, .button-cont a{
	font-size:14px;
}
p.line1, p.line2, p.line3{
	font-size:25px;
}
#eye-button{
	top: 73%;
        left: 22%;
	font-size: 15px;
	padding: 0.02% 1.04% 0.02% 10%;
		
}
#eyewear-content{
	width: 100% !important;
    margin: 0 auto;
}

/* June 2018 Ipad End */
}
@media only screen 
and (min-width : 980px) 
and (max-width : 767px)
 {
	/* .sbi_item:nth-child(2),  .sbi_item:nth-child(3),  .sbi_item:nth-child(4)96px,  .sbi_item:nth-child(5),.sbi_item:nth-child(6) {
		    transform: translate3d(0%, 0, 0) !important;
	} */
 }
@media only screen 
and (min-width : 768px) 
and (max-width : 1024px)
 {
	p.line1, p.line2, p.line3, p.line4{
		    font-size: 20px;
        line-height: 3rem;
	}
	/*#holiday-button{
		   bottom: 18%;
                   right: 7%;
	}*/
	#holiday-button{
		   bottom: 15%;
			right: 8%;
	}
	#denim-button {
    bottom: 2%;
    left: 77%;
}
	/*#perfect-btn{
		    top: 28%;
                    right: 3%;
	}*/
	#perfect-btn{
		    bottom: 28%;
	}
        #cta-work
        {
          bottom: 20%;
    right: 7%;
        }
	.sbi_item:nth-child(2){
		    transform: translate3d(0%, 0, 0) !important;
	}
	.instagram-feed-mobile .instagram-feed--title{
		    padding-top: 0em !important;
	}
}
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px)
and (orientation: landscape)  {
	#eye-button{
    left: 20%;
    padding: 1% 2% 1% 10%;	
  }
}
@media only screen 
  and (min-width: 320px) 
  and (max-width: 767px) {
  body{
      width:100% !important;
  }
  .main-navigation{
	  margin:0 !important;
  }
   main{
      margin-top: 10px !important;
   }
   
   .menu
   {
	   margin: 0 auto !important;
	   padding: 0 0 2em 0 !important;
   }
   .menu li {
    padding-right: 2em !important; 
	font-family:ITCAvantGardeProDemi !important;
	}
	.cta-inner{
		padding-top: 25px;
	}
  .instagram-feed-mobile{
	   display:none;
   }
   .site-footer{
	   display:block;
   }
   .site-footer a{
      color:#000000;
      font-size: 0.7rem;
   }
   .site-footer .menu li{
      padding: 0 0 0 2em !important;
   }
   .footer-copyright{
	   display:inline-block !important;
           padding: 0 !important;
   }
   img
   {
      margin-bottom:10px;
   }
   .site-branding {
    float:none !important;
    padding-top: 1em;
    padding-bottom: 1em;
    text-align: center;
    display:inline-block;
  }
  .site-branding img {
        width: 90% !important; 
  }
  h2.cta--title.h1{
	/* font-size: 1.5rem !important;
	line-height: 2rem !important;  */
  }
  .row-form.row-form-select{
    margin-left: 0 !important;
  }
  .row-form.row-form-select label{
    margin-top: 6px !important;
  }
  
  .row-form.row-form-top.row-form-chk{
    position: relative;
    left: 30px; !important;
    margin-bottom: 5px;
  }
  .instagram-feed{
	  display:none !important;
  }
  .instagram-feed-mobile{
	  display:block !important;
  }
  /* June 2018 */
  #header-section{
	 margin: 0px auto 5px;
         /*background: url(images/nav-bg.jpg) repeat;*/
  }
  #mob-hero img{
	  width:100%;
  }
  .cta-container{
	width: 90%;
        margin: 0px auto;
	padding-top:30px;
  }
  h2.cta--title.h1{
	  font-size:17px;
	  line-height: 2.5rem;
	  letter-spacing: 1.5px;
  }
  .button, .join-form #ninja_forms_field_11, .button-cont a{
	  font-family:ITCAvantGardeProDemi !important;
	  font-size: 10px !important;
	  margin-top:0px;
	  padding: 1em 1.9em 1em;
  }
  .social-networks{
	  padding-bottom:0em;
  }
  .site-footer{
	  border-top: thin solid #000;
          padding-top: 3.7em;		  
  }
  /* Home Page */
  /*.site-header{
	  background-image: url("../images/mob-background.jpg") !important;
  }*/
  #img1, #img2,#img4{
	 margin-top: 50px;
  }
  #img3{
	   margin-top: 50px;
     margin-bottom: 50px;
  }
   #img1,#img3{
	   width:90%;
   }
  #img4{
	  margin-bottom:20px;
  }
  .embed-container{
	  margin:0px auto;
	  margin-top:-28px !important;
  }
  /* Eyewear Page */
  h2.eyewear-form--title.h1{
	  font-size:20px !important;
	  letter-spacing: 8px !important;
      line-height: 30px !important;
	  max-width: 250px !important;
	       margin-bottom: 0px !important; 
  }
  #wpsl-search-wrap input, #wpsl-search-wrap #wpsl-search-btn{
	  font-family: ITCAvantGardeProDemi !important;
	  font-size: 9px !important;
          color: #000 !important;
  }
  
  #wpsl-stores.wpsl-not-loaded{
	  height:25px;
  }
  #wpsl-search-wrap input{
	      border: 1px solid black;
  }
  /* Join Page */
   #desk-join-img{
		display: none;
  }
  #mob-join-img{
		display: block;
  }
  .pum-theme-26937 .pum-content, .pum-theme-lightbox .pum-content{
	  font-size: 8px !important;
  }
  form.wpcf7-form{
	  width: 79%;
	  left: 12.5%;
      top: 53%;
  }
  label.text{
	  font-size: 8px;
  }
  input{
	  color:#fff !important;
  }
  div#joinContent input[type="submit"]{
	 font-size: 0.5rem;
	 padding-left: 1em !important;
    padding-right: 1em !important;
    margin-top: 1.5em !important;
  }
  /* June 2018 */
  .instagram-feed-mobile .instagram-feed--follow{
  position: relative !important;
  }
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 767px) 
  and (orientation:landscape){
	  .img_format img, #hero_image img, #bottom_image img,#mob-hero img{
		  width:auto;
	  }  
  }
@media only screen 
	and (min-device-width : 414px) 
	and (max-device-width : 767px) 
	and (orientation:landscape){
.wpsl-mobile{
	margin-left: 180px !important;
}
} 
@media only screen 
	and (min-device-width : 320px) 
	and (max-device-width : 413px) 
	and (orientation:landscape){
.wpsl-mobile{
	margin-left: 155px !important ;
}
} 
@media (max-width: 767px) { 
   #featured{
	margin-top: 30px;
    }
  #featured-list li:last-child{
	float: none;
	margin: 0 auto;
    }
    #featured-list li {
    list-style: none;
    display: block;
    width: 200px;
    margin-right: 114px;
    text-align: center;
    margin: 0 auto;
    } 
 }	
/* ------ Custom CSS --------- */
a:focus, a:hover{
	color: #000;
	text-decoration:none;
}
@media only screen 
	and (min-width : 683px) 
	and (max-width : 767px) {
		p.line1, p.line2, p.line3{
			font-size: 16px !important;
		}
		.image_text{
			padding-top: 60px;
		}
	}
@media only screen 
  and (min-width: 2100px) 
  and (max-width: 2200px) {
	 .pum-content + .pum-close, .pum-theme-lightbox .pum-content + .pum-close{
              right: 93px !important;
			  top: -131px !important;
	  } 
	   
  }	
@media only screen 
  and (min-width: 2201px) 
  and (max-width: 2500px) {
	 .pum-content + .pum-close, .pum-theme-lightbox .pum-content + .pum-close{
              right: 93px !important;
			  top: -131px !important;
	  }   
  }
@media only screen 
  and (min-width: 2201px) 
  and (max-width: 3000px) { 
  input.wpcf7-form-control.wpcf7-text.wpcf7-email.wpcf7-validates-as-email{
		width:70% !important;
		padding: 7px !important;	
		margin-top: 11px !important;
                color: #000;
	}
  }
@media only screen 
  and (min-width: 2530px) 
  and (max-width: 3000px) {
	 .pum-content + .pum-close, .pum-theme-lightbox .pum-content + .pum-close{
		      right: 320px !important;
              top: -135px !important;
	  }   
  }
  

@media only screen 
  and (min-width: 320px) 
  and (max-width: 767px) and (orientation:landscape) {
	  input.wpcf7-form-control.wpcf7-text.wpcf7-email.wpcf7-validates-as-email {
            width: 70% !important;
	  }
	  .pum-content + .pum-close, .pum-theme-lightbox .pum-content + .pum-close {
            width: 232px !important;
  }
      label.text {
            font-size: 7px;
     }
  }
  @media only screen 
  and (min-width: 500px) 
  and (max-width: 770px) {
	 .pum-container.pum-responsive.pum-responsive-medium {
    width: 40% !important;
}  
  }