/* Minification failed. Returning unminified contents.
(15268,1): run-time error CSS1019: Unexpected token, found '}'
 */
@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */

@-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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-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-duration: 0.75s;
  animation-duration: 0.75s;
  -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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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-duration: 0.75s;
  animation-duration: 0.75s;
  -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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -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-duration: 0.75s;
  animation-duration: 0.75s;
  -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-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* 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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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;
}

.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.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}


/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:FontAwesome;src:url(../fonts/FontAwesome/fontawesome-webfont.eot?v=4.7.0);src:url(../fonts/FontAwesome/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(../fonts/FontAwesome/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(../fonts/FontAwesome/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(../fonts/FontAwesome/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(../fonts/FontAwesome/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-address-card:before,.fa-vcard:before{content:"\f2bb"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
@font-face {
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: local('Font Awesome\ 5 Free');
    src: url("../fonts/FontAwesome/fa--400.eot");
    src: url("../fonts/FontAwesome/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/FontAwesome/fa-brands-400.woff2") format("woff2"), url("../fonts/FontAwesome/fa-brands-400.woff") format("woff"), url("../fonts/FontAwesome/fa-brands-400.ttf") format("truetype"), url("../fonts/FontAwesome/fa-brands-400.svg#fontawesome") format("svg");
}

.fab {
    font-family: 'Font Awesome 5 Brands';
}

@font-face {
    font-family: 'Font Awesome\ 5 Free';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Font Awesome\ 5 Free');
    src: url("../fonts/FontAwesome/fa-regular-400.eot");
    src: url("../fonts/FontAwesome/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../fonts/FontAwesome/fa-regular-400.woff2") format("woff2"), url("../fonts/FontAwesome/fa-regular-400.woff") format("woff"), url("../fonts/FontAwesome/fa-regular-400.ttf") format("truetype"), url("../fonts/FontAwesome/fa-regular-400.svg#fontawesome") format("svg");
}

.far {
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}

@font-face {
    font-family: 'Font Awesome\ 5 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local('Font Awesome\ 5 Free');
    src: url("../fonts/FontAwesome/fa-solid-900.eot");
    src: url("../fonts/FontAwesome/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/FontAwesome/fa-solid-900.woff2") format("woff2"), url("../fonts/FontAwesome/fa-solid-900.woff") format("woff"), url("../fonts/FontAwesome/fa-solid-900.ttf") format("truetype"), url("../fonts/FontAwesome/fa-solid-900.svg#fontawesome") format("svg");
}

.fa,
.fas {
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
}

/* Compatibility styles for frameworks like bootstrap, foundation e.t.c */
.xzoom-source img, .xzoom-preview img, .xzoom-lens img {
  display: block;
  max-width: none;
  max-height: none;
}
/* --------------- */

/* xZoom Styles below */
.xzoom-container { 
  display: inline-block; 
}

.xzoom-thumbs {
  text-align: center;
  margin-bottom: 10px;
}

.xzoom { 
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);  
  margin-bottom: 0px; 
}
.xzoom2, .xzoom3, .xzoom4, .xzoom5 {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);  
  margin-bottom: 15px;  
}

/* Thumbs */
.xzoom-gallery, .xzoom-gallery2, .xzoom-gallery3, .xzoom-gallery4, .xzoom-gallery5 { 
  border: 1px solid #cecece; 
  margin-left: 5px;
  margin-bottom: 10px;
}

.xzoom-source, .xzoom-hidden {
  display: block;
  position: static;
  float: none;
  clear: both;
}

/* Everything out of border is hidden */
.xzoom-hidden {
  overflow: hidden;
}

/* Preview */
.xzoom-preview {
  border: 1px solid #888;
  background: #2f4f4f;
  box-shadow: -0px -0px 10px rgba(0,0,0,0.50);
}

/* Lens */
.xzoom-lens {
  border: 1px solid #555;
  box-shadow: -0px -0px 10px rgba(0,0,0,0.50);
  cursor: crosshair;
}

/* Loading */
.xzoom-loading {
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 100%;
  opacity: .7;
  background: url(../images/xloading.gif);
  width: 48px;
  height: 48px;
}

/* Additional class that applied to thumb when it is active */
.xactive {  
  -webkit-box-shadow: 0px 0px 3px 0px rgba(74,169,210,1);
  -moz-box-shadow: 0px 0px 3px 0px rgba(74,169,210,1);
  box-shadow: 0px 0px 3px 0px rgba(74,169,210,1); 
  border: 1px solid #4aaad2;
}

/* Caption */
.xzoom-caption {
  position: absolute;
  bottom: -43px;
  left: 0;
  background: #000;
  width: 100%;
  text-align: left;
}

.xzoom-caption span {
  color: #fff;
  font-family: Arial, sans-serif;
  display: block;
  font-size: 0.75em;
  font-weight: bold;
  padding: 10px;
}
/*
 * ******************************************************************************
 *  jquery.mb.components
 *  file: mb.zoomify.css
 *
 *  Copyright (c) 2001-2014. Matteo Bicocchi (Pupunzi);
 *  Open lab srl, Firenze - Italy
 *  email: matbicoc@gmail.com
 *  site: 	http://pupunzi.com
 *  blog:	http://pupunzi.open-lab.com
 * 	http://open-lab.com
 *
 *  Licences: MIT, GPL
 *  http://www.opensource.org/licenses/mit-license.php
 *  http://www.gnu.org/licenses/gpl.html
 *
 *  last modified: 15/05/14 21.57
 *  *****************************************************************************
 */

/*mb.zoomify css property*/



/*
* {
  -webkit-user-select: none !important;
  -moz-user-select: -moz-none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}
*/


.zoomOverlay{
  /*box-shadow: inset 0 0 20px rgba(0,0,0,.8);*/
}

.zoomWrapper{
}

.zoomIn{
  cursor:url("zoomin.png"), -moz-zoom-in ;
}

.zoomOut{
  cursor: url("zoomout.png"), -moz-zoom-in ;
}

.move{
  cursor: url("cursor-hand.png"), -moz-zoom-in !important;
}

.grab{
  cursor: url("cursor-grab.png"), -moz-zoom-in !important;
}

#loader{
  background: rgba(0,0,0,.5);
}

img.zoomify{
  cursor:url("zoomin.png"), -moz-zoom-in;
}

.zoomControls{
  position:absolute;
  bottom:45px;
  right:10px;
  background: rgba(0,0,0,.6);
  padding: 5px 5px 0 5px ;
  text-align: center;
  border-radius: 8px;
  margin-top: 3px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.zoomInControl{
  display: inline-block;
  width: 30px;
  height: 25px;
  background:   url("zoomin.png") no-repeat center center;
  cursor: pointer;
  opacity: .5;
  border-right: 1px solid #666;
}

.zoomOutControl{
  display: inline-block;
  width: 30px;
  height: 25px;
  background:  url("zoomout.png") no-repeat center center;
  cursor: pointer;
  opacity: .5;
}

.zoomCloseControl{
  display: inline-block;
  position: fixed;
  top:20px;
  right: 20px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  opacity: .5;
  background: #000;
  padding: 10px 0 10px 0;
  text-align: center;
  border-radius: 50px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 110000;
}

.zoomCloseControl:after{
  content: "close";
  color:white;
  line-height: 40px;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Open Sans Condensed","Open sans","Helvetica Neue", Arial, san-serif;
}

.zoomOutControl:hover,
.zoomInControl:hover,
.zoomCloseControl:hover {
  opacity: 1;
}

.zoomOutControl.disabled, .zoomInControl.disabled {
  opacity: .2 !important;
}

#zoomScreenOver{
  background: rgba(0,0,0,.5);
  z-index: 100000 !important;
}

#zoomScreenOver img{
  max-width: none !important;
  max-height: none !important;
}

#zoomScreen{
  width: 80%;
  height: 80%;
  background: #000000;
  /*border: 5px solid rgba(255,255,255,0.3);*/
  border: 5px solid rgba(0,0,0,0.7);

  -webkit-user-select: none !important;
  -moz-user-select: -moz-none !important;
  -webkit-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;

}

#zoomScreen.isTouch{
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  border: 0px solid white;
}


@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: local('Lato Hairline'),local('Lato-Hairline'),url(https://fonts.gstatic.com/s/lato/v17/S6u8w4BMUTPHh30AXC-q.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Lato Light'),local('Lato-Light'),url(https://fonts.gstatic.com/s/lato/v17/S6u9w4BMUTPHh7USSwiPGQ.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Lato Regular'),local('Lato-Regular'),url(https://fonts.gstatic.com/s/lato/v17/S6uyw4BMUTPHjx4wXg.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Lato Bold'),local('Lato-Bold'),url(https://fonts.gstatic.com/s/lato/v17/S6u9w4BMUTPHh6UVSwiPGQ.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local('Lato Black'),local('Lato-Black'),url(https://fonts.gstatic.com/s/lato/v17/S6u9w4BMUTPHh50XSwiPGQ.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: local('Raleway'),url(https://fonts.gstatic.com/s/raleway/v17/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: local('Raleway'),url(https://fonts.gstatic.com/s/raleway/v17/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Raleway'),url(https://fonts.gstatic.com/s/raleway/v17/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Raleway'),url(https://fonts.gstatic.com/s/raleway/v17/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Raleway'),url(https://fonts.gstatic.com/s/raleway/v17/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Raleway'),url(https://fonts.gstatic.com/s/raleway/v17/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Raleway'),url(https://fonts.gstatic.com/s/raleway/v17/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: local('Raleway'),url(https://fonts.gstatic.com/s/raleway/v17/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local('Raleway'),url(https://fonts.gstatic.com/s/raleway/v17/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}
@font-face {
    font-family: 'CochocibScript';
    src: url('../fonts/CochocibScriptLatinPro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'CochocibScriptLatinProOpen';
    src: url('../fonts/CochocibScriptLatinProOpen.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

html {
    height: 100%;
    scroll-behavior: smooth
}

body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: #383838;
    font-family: Raleway,sans-serif;
    display: flex;
    flex-direction: column
}

    body.overflow-y {
        overflow: hidden !important;
        padding-right: 17px
    }

    body .container {
        max-width: 1808px;
        width: auto;
        margin-left: auto;
        margin-right: auto
    }

    body img {
        max-width: 100%
    }

        body img.right-align {
            float: right
        }

        body img.left-align {
            float: left
        }

    body .graybg {
        background-color: #F8F8F8
    }

    body h1, body h2, body h3, body h4, body h5, body h6 {
        margin: 0;
        padding: 0
    }

    body h1 {
        text-transform: uppercase;
        font: normal normal normal 52px/1.25em raleway,sans-serif;
        letter-spacing: normal;
        line-height: 1.25em;
        visibility: inherit
    }

    body h2 {
        font-size: 30px;
        font-weight: 500;
        color: #383838;
        line-height: 1.25em
    }

    body h3 {
        font-size: 26px;
        font-weight: 500;
        color: #383838;
        line-height: 1.5em
    }

    body h4 {
        font-size: 34px;
        position: relative;
        text-align: center;
        text-transform: uppercase;
        display: inline-block;
        width: auto;
        margin: 0 auto 60px;
        padding-bottom: 15px
    }

        body h4.lg {
            font-size: 45px
        }

        body h4::after {
            position: absolute;
            bottom: 0;
            width: 150%;
            border-bottom: solid 1px #383838;
            content: '';
            left: -25%
        }

    body h6 {
        font-size: 16px
    }

    body .nfont {
        font-family: Lato,sans-serif !important
    }

    body .hide {
        display: none !important
    }

    body p {
        font-size: 18px;
        line-height: 36px;
        margin-bottom: 20px
    }

        body p a {
            color: #383838
        }

            body p a:hover {
                color: inherit;
                text-decoration: underline
            }

    body .link-underline {
        text-decoration: underline
    }

    body li {
        font-size: 18px
    }

    body .form-group {
        padding-bottom: 20px
    }

        body .form-group.upload-div {
            position: relative
        }

            body .form-group.upload-div .browser:hover {
                border: solid 3px #dddddd;
                box-shadow: 0 0 3px #dddddd
            }

            body .form-group.upload-div .fa-times {
                position: absolute;
                top: 42px;
                right: 10px;
                background: #383838;
                padding: 1px;
                cursor: pointer;
                color: #ffffff
            }

        body .form-group label {
            font-weight: 500;
            font-size: 16px
        }

        body .form-group .form-control {
            border-radius: 0;
            border: solid 1px #dddddd;
            font-size: 16px
        }

            body .form-group .form-control::placeholder {
                font-size: 14px;
                opacity: .5
            }

            body .form-group .form-control:focus {
                outline: none;
                border: solid 1px #dddddd;
                box-shadow: 0 0 0 3px #dddddd
            }

            body .form-group .form-control:disabled, body .form-group .form-control[readonly] {
                background-color: #dddddd;
                color: #383838
            }

                body .form-group .form-control:disabled::placeholder, body .form-group .form-control[readonly]::placeholder {
                    font-size: 14px;
                    opacity: .5
                }

    body .field-validation-error {
        color: red
    }

    body .ctbnDisabled {
        border: 1px solid #F8F8F8;
        color: #F8F8F8;
        filter: opacity(.5);
        pointer-events: none
    }

    body .cbtn, body .cbtn-dark {
        font-size: 16px;
        border-radius: 0;
        border: solid 1px #383838;
        background-color: #ffffff;
        padding: 0 60px;
        font-weight: 600;
        color: #383838;
        height: 45px;
        line-height: 45px;
        display: inline-block;
        cursor: pointer;
        outline: none;
        border-radius: 5px;
        text-decoration: none;
        text-transform: uppercase;
        transition: all .45s ease-in-out
    }

        body .cbtn:hover, body .cbtn-dark:hover, body .cbtn:focus, body .cbtn-dark:focus {
            background-color: #383838;
            color: #ffffff;
            outline: none;
            border: solid 1px #383838
        }

        body .cbtn.loadmore, body .cbtn-dark.loadmore {
            padding: 0 30px
        }

            body .cbtn.loadmore span, body .cbtn-dark.loadmore span {
                position: relative;
                top: -2px
            }

            body .cbtn.loadmore .spinner-border, body .cbtn-dark.loadmore .spinner-border {
                display: inline-block;
                width: 24px;
                margin-top: 10px;
                margin-left: 10px;
                height: 24px;
                vertical-align: text-bottom;
                border: 3px solid #383838;
                border-right-color: transparent;
                border-radius: 50%;
                -webkit-animation: spinner-border .75s linear infinite;
                animation: spinner-border .75s linear infinite
            }

            body .cbtn.loadmore:hover .spinner-border, body .cbtn-dark.loadmore:hover .spinner-border, body .cbtn.loadmore:focus .spinner-border, body .cbtn-dark.loadmore:focus .spinner-border {
                border: 3px solid #ffffff;
                border-right-color: transparent
            }

@keyframes spinner-border {
    to {
        transform: rotate(360deg)
    }
}

body .overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: none;
    z-index: 9
}

    body .overlay.active {
        display: block;
        z-index: 9
    }

body .btn {
    color: #000000;
    border: solid 1px #383838;
    border-radius: 0 !important;
    background-color: rgba(255,255,255,0.7);
    padding: 0 20px;
    height: 45px;
    line-height: 42px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all .7s ease-in-out
}

    body .btn:hover {
        background-color: #fff;
        color: #000000
    }

body .arrow-right {
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid #383838;
    display: inline-block
}

body .flt {
    filter: grayscale(100%)
}

    body .flt:hover {
        filter: none
    }

body section.search-list {
    padding: 60px 0 0
}

body section.small-content {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 60px 0px
}

body.notfound h2 {
    margin-bottom: 3rem
}

body.notfound .link {
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    color: #383838
}

    body.notfound .link::before {
        left: 0;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        content: '';
        border-top: solid 1px #383838;
        bottom: -2px;
        position: absolute;
        opacity: .7
    }

    body.notfound .link:hover::before {
        animation: intro .5s ease-in-out
    }

.nolink {
    cursor: default !important
}

main {
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

    main #site-alerts {
        position: absolute;
        right: 20px;
        width: 400px;
        max-width: 100%;
        z-index: 9999;
        margin-top: 120px;
        padding: 0
    }

        main #site-alerts .icon-warning {
            background-color: rgba(255,255,255,0.94);
            padding: 10px 10px 10px 10px;
            text-align: center;
            font-family: Lato,sans-serif;
            font-size: 16px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.3)
        }

        main #site-alerts .popup_close {
            right: -15px;
            top: -15px;
            width: 30px;
            height: 30px;
            left: auto;
            padding-top: 2.5px;
            padding-left: 1px;
            cursor: pointer
        }

@keyframes intro {
    0% {
        opacity: 0;
        transform: translateY(40px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes finger {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        transform: translateY(10px)
    }
}

@keyframes slide-out-slide-in {
    0% {
        width: 100%
    }

    25% {
        width: 0%;
        right: 0px;
        left: auto
    }

    50% {
        width: 0%;
        left: 0px
    }

    100% {
        width: 100%;
        left: 0px
    }
}

#slider-menu, #myaccount-menu {
    width: 650px;
    position: fixed;
    top: 0;
    left: -650px;
    height: 100vh;
    z-index: 20;
    background: #fff;
    transition: all .3s;
    overflow: hidden;
    max-width: 100%
}

    #slider-menu.active, #myaccount-menu.active {
        left: 0px;
        z-index: 9999
    }

    #slider-menu #wrapper, #myaccount-menu #wrapper, #slider-menu .wrapper, #myaccount-menu .wrapper {
        width: 100%;
        padding-right: 17px;
        overflow: auto;
        height: 100%
    }

        #slider-menu #wrapper::-webkit-scrollbar, #myaccount-menu #wrapper::-webkit-scrollbar, #slider-menu .wrapper::-webkit-scrollbar, #myaccount-menu .wrapper::-webkit-scrollbar {
            width: .5em
        }

        #slider-menu #wrapper::-webkit-scrollbar-track, #myaccount-menu #wrapper::-webkit-scrollbar-track, #slider-menu .wrapper::-webkit-scrollbar-track, #myaccount-menu .wrapper::-webkit-scrollbar-track {
            -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0)
        }

        #slider-menu #wrapper ::-webkit-scrollbar-thumb, #myaccount-menu #wrapper ::-webkit-scrollbar-thumb, #slider-menu .wrapper ::-webkit-scrollbar-thumb, #myaccount-menu .wrapper ::-webkit-scrollbar-thumb {
            background-color: #dcbe84;
            outline: 1px solid slategrey
        }

        #myaccount-menu .wrapper .nav-content {
            height: calc(100% - 100px)
        }

            #myaccount-menu .wrapper .nav-content .sub-content:first-child {
                margin-bottom: 30px
            }

                #myaccount-menu .wrapper .nav-content .sub-content:first-child li:hover {
                    border-color: transparent
                }

        #myaccount-menu .wrapper .menu_footer {
            height: 75px
        }

#call-myaccount-menu .loggedin {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    color: #383838;
    line-height: 18px;
    font-weight: 900;
    transition: all .45s ease-in-out;
    border: solid 1px #383838
}

#call-myaccount-menu:hover .loggedin {
    background-color: #383838;
    color: #ffffff
}

.menu_footer {
    width: 100%;
    text-align: center;
    padding: 0 0 10px
}

    .menu_footer .contact-info {
        width: 50%
    }

        .menu_footer .contact-info .facetime {
            border: solid 1px #ffffff;
            color: #383838;
            font-size: 20px;
            background-color: #ffffff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: block;
            line-height: 40px;
            font-weight: 300
        }

            .menu_footer .contact-info .facetime i {
                font-weight: 300
            }

                .menu_footer .contact-info .facetime i::before {
                    font-family: FontAwesome
                }

            .menu_footer .contact-info .facetime:hover {
                color: #ffffff;
                background-color: #383838;
                border: solid 1px #383838
            }

    .menu_footer h3 {
        font-size: 17px;
        font-family: Lato,sans-serif;
		  
    margin-bottom: 5px;
    }

    .menu_footer .cbtn {
        width: 50%;
        margin: 20px 0 40px
    }

    .menu_footer .logo {
        margin-bottom: 5px
    }

        .menu_footer .logo img {
            max-width: 120px
        }

    .menu_footer .social-media {
        padding: 0
    }

        .menu_footer .social-media ul {
            margin: 0;
            display: flex;
            padding: 0;
            position: absolute;
            left: 15px;
            top: 200px;
            width: 60px;
            flex-wrap: wrap;
            text-align: center;
            justify-content: center;
            margin-bottom: 0
        }

            .menu_footer .social-media ul li {
                margin: 0 15px 15px 0
            }

                .menu_footer .social-media ul li a {
                    color: #ffffff;
                    font-size: 20px;
                    background-color: #383838;
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    display: block;
                    line-height: 40px;
                    font-weight: 300
                }

                    .menu_footer .social-media ul li a i {
                        font-weight: 300
                    }

                        .menu_footer .social-media ul li a i::before {
                            font-family: FontAwesome
                        }

                    .menu_footer .social-media ul li a:hover {
                        background-color: #ffffff;
                        border: solid 1px #383838
                    }

                .menu_footer .social-media ul li.facebook:hover a {
                    color: #3b5998;
                    content: "\f0d5" !important
                }

                .menu_footer .social-media ul li.youtube:hover a {
                    color: #c4302b
                }

                .menu_footer .social-media ul li.instagram:hover a {
                    color: #d12d7f
                }

                .menu_footer .social-media ul li.facetime:hover a {
                    color: #34da4f
                }

                .menu_footer .social-media ul li.google i::before {
                    content: "\f0d5" !important
                }

                .menu_footer .social-media ul li.google:hover a {
                    color: #db4a39
                }

    .menu_footer p {
        font-size: 13px;
        margin-bottom: 17px;
        text-transform: uppercase;
        color: #383838;
        margin-bottom: 30px
    }

    .menu_footer h3 a {
        color: #383838
    }

#wrapper .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 50px 0px 100px
}

    #wrapper .menu-header .logo img {
        max-width: 180px
    }

    #wrapper .menu-header .user-help-icon {
        margin-bottom: 0px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-left: 0;
        margin-top: 10px
    }

        #wrapper .menu-header .user-help-icon li {
            margin-right: 0;
            display: flex
        }

            #wrapper .menu-header .user-help-icon li a {
                color: #ffffff;
                margin-right: 20px;
                font-size: 24px
            }

            #wrapper .menu-header .user-help-icon li:first-child {
                flex-grow: 1
            }

            #wrapper .menu-header .user-help-icon li .srhinput {
                width: 100%;
                position: relative
            }

                #wrapper .menu-header .user-help-icon li .srhinput input {
                    width: 100%;
                    background-color: transparent;
                    border: 0;
                    border-bottom: solid 1px rgba(0,0,0,0.3);
                    outline: none;
                    color: #383838;
                    font-size: 14px;
                    font-weight: 600;
                    padding: 5px 10px 5px 39px;
                    text-transform: uppercase
                }

                #wrapper .menu-header .user-help-icon li .srhinput button {
                    border: 0;
                    outline: none;
                    position: relative;
                    background-color: transparent;
                    position: absolute;
                    top: 0;
                    right: 0;
                    font-size: 20px;
                    font-weight: 300;
                    opacity: 1;
                    color: #383838;
                    cursor: pointer;
                    border: solid 1px transparent;
                    border-radius: 50%
                }

                    #wrapper .menu-header .user-help-icon li .srhinput button:hover i::after {
                        width: 12px;
                        height: 12px;
                        content: '';
                        border-radius: 50%;
                        position: absolute;
                        background: #383838;
                        margin-left: -14px;
                        margin-top: 1px
                    }

.mol {
    width: 200px
}

    .mol ul {
        display: block;
        list-style: none;
        padding-left: 0
    }

        .mol ul li {
            display: inline-block;
            padding: 0 15px 0 0;
            vertical-align: top
        }

            .mol ul li.announcement {
                padding: 0 0 0 15px
            }

                .mol ul li.announcement .announcement-link {
                    border-radius: 25px;
                    padding: 0 10px;
                    width: auto;
                    text-decoration: none;
                    transition: all .45s ease-in-out
                }

                    .mol ul li.announcement .announcement-link:hover {
                        color: red
                    }

                    .mol ul li.announcement .announcement-link.announcement-link-icon {
                        min-width: 40px;
                        min-height: 40px;
                        margin-top: 9px;
                        background-size: contain;
                        background-image: url(../images/covid-19-d-icon.png);
                        cursor: pointer;
                        background-position: center;
                        background-repeat: no-repeat
                    }

                        .mol ul li.announcement .announcement-link.announcement-link-icon:hover {
                            background-color: transparent
                        }

            .mol ul li a {
                display: inline-block;
                font-size: 17px;
                margin-top: 10px;
                background-color: #383838;
                color: #ffffff;
                border-radius: 50%;
                width: 40px;
                height: 40px;
                line-height: 38px;
                text-align: center;
                border: solid 1px transparent;
                transition: all .45s ease-in-out;
                position: relative
            }

                .mol ul li a:hover {
                    border: solid 1px #383838;
                    background-color: #ffffff;
                    color: #383838
                }

                    .mol ul li a:hover > div {
                        background-color: #383838 !important
                    }

            .mol ul li:nth-child(2) a {
                font-size: 20px
            }

            .mol ul li.scart .nos {
                position: absolute;
                width: 20px;
                height: 20px;
                background-color: #ffffff;
                border-radius: 50%;
                font-size: 12px;
                color: #383838;
                line-height: 17px;
                font-weight: 600;
                transition: all .45s ease-in-out;
                border: solid 1px #383838
            }

            .mol ul li.scart a {
                margin-top: 9px
            }

                .mol ul li.scart a:hover .nos {
                    background-color: #383838;
                    color: #ffffff
                }

    .mol .menuOverlay {
        height: 100%;
        width: 100%;
        display: none;
        position: fixed;
        z-index: 25;
        top: 0;
        left: 0;
        background-color: #000;
        background-color: rgba(0,0,0,0.9)
    }

        .mol .menuOverlay .overlay-content {
            position: relative;
            top: 46%;
            max-width: 550px;
            transform: translateY(-46%);
            margin: auto;
            background: #ffefba;
            background: linear-gradient(to right, #ffefba, #ffffff);
            padding: 20px 35px;
            border-radius: 5px
        }

        .mol .menuOverlay input {
            padding: 0px;
            font-size: 17px;
            border: none;
            float: left;
            width: 100%;
            padding-bottom: 15px;
            border-bottom: 1px solid #555;
            margin-bottom: 1rem;
            background: transparent
        }

            .mol .menuOverlay input:nth-child(2) {
                margin-bottom: 3rem
            }

            .mol .menuOverlay input:focus {
                outline: none
            }

        .mol .menuOverlay .submit {
            width: 140px;
            font-size: 17px;
            cursor: pointer;
            background: #dcbe84;
            padding: 10px 20px;
            border-radius: 24px;
            margin: auto;
            display: block;
            border: 1px solid #dcbe84;
            margin-bottom: 1rem
        }

            .mol .menuOverlay .submit:hover {
                background: transparent
            }

        .mol .menuOverlay h3 {
            margin-bottom: 2rem;
            color: #000;
            text-align: center
        }

    .mol .small {
        margin: 0px;
        text-align: center;
        color: #000
    }

        .mol .small a {
            color: #dcbe84
        }

#slider-menu .nav-content, #myaccount-menu .nav-content {
    padding: 1vw 50px 0 100px
}

    #slider-menu .nav-content hr, #myaccount-menu .nav-content hr {
        margin-top: 0px;
        border-top: 1px solid rgba(0,0,0,0.3)
    }

        #slider-menu .nav-content hr.nobrdr, #myaccount-menu .nav-content hr.nobrdr {
            border: 0 !important
        }

#slider-menu ul, #myaccount-menu ul {
    list-style: none
}

    #slider-menu ul.sub-content, #myaccount-menu ul.sub-content {
        width: max-content
    }

        #slider-menu ul.sub-content li, #myaccount-menu ul.sub-content li {
            padding-bottom: .25rem;
            position: relative;
            padding-top: .25rem
        }

            #slider-menu ul.sub-content li a, #myaccount-menu ul.sub-content li a {
                color: #383838;
                font-size: 14px;
                text-decoration: none;
                position: relative;
                z-index: 999;
                font-weight: 600
            }

            #slider-menu ul.sub-content li.main-menu.with-submenu > a::after, #myaccount-menu ul.sub-content li.main-menu.with-submenu > a::after {
                display: inline-block;
                width: 0;
                height: 0;
                margin-left: .255em;
                vertical-align: .255em;
                content: "";
                border-top: .3em solid;
                border-right: .3em solid transparent;
                border-bottom: 0;
                border-left: .3em solid transparent
            }

            #slider-menu ul.sub-content li:hover, #myaccount-menu ul.sub-content li:hover {
                border-color: #383838;
                text-decoration: none
            }

                #slider-menu ul.sub-content li:hover > .sub-menu, #myaccount-menu ul.sub-content li:hover > .sub-menu {
                    display: block;
                    z-index: 1
                }

                #slider-menu ul.sub-content li:hover > a, #myaccount-menu ul.sub-content li:hover > a {
                    color: #383838;
                    opacity: .7
                }

                    #slider-menu ul.sub-content li:hover > a::after, #myaccount-menu ul.sub-content li:hover > a::after {
                        transform: rotate(-90deg)
                    }

        #slider-menu ul.sub-content > li, #myaccount-menu ul.sub-content > li {
            border-top: 1px solid transparent;
            position: relative;
            width: max-content
        }

        #slider-menu ul.sub-content .sub-menu, #myaccount-menu ul.sub-content .sub-menu {
            display: none;
            position: absolute;
            padding: 16px 0 16px 16px;
            top: -1px;
            padding-top: 0px;
            min-width: 365px;
            left: 70px;
            border-top: 1px solid #383838
        }

            #slider-menu ul.sub-content .sub-menu ul, #myaccount-menu ul.sub-content .sub-menu ul {
                max-width: 250px;
                margin-left: auto
            }

                #slider-menu ul.sub-content .sub-menu ul li, #myaccount-menu ul.sub-content .sub-menu ul li {
                    background: #ffffff;
                    padding-left: 10px
                }

                    #slider-menu ul.sub-content .sub-menu ul li a, #myaccount-menu ul.sub-content .sub-menu ul li a {
                        color: #383838;
                        font-weight: 500
                    }

                        #slider-menu ul.sub-content .sub-menu ul li a:hover, #myaccount-menu ul.sub-content .sub-menu ul li a:hover {
                            color: #383838;
                            text-decoration: none
                        }

#call-side-menu-1, .popup_close, #call-myaccount-menu-1 {
    position: absolute;
    margin-top: 0;
    left: 1rem;
    top: 25px;
    width: 40px;
    height: 40px;
    border: solid 1px #383838;
    border-radius: 50%;
    padding-top: 7px;
    padding-left: 7px;
    background-color: #ffffff
}

    #call-side-menu-1 .bar1, .popup_close .bar1, #call-myaccount-menu-1 .bar1, #call-side-menu-1 .bar2, .popup_close .bar2, #call-myaccount-menu-1 .bar2, #call-side-menu-1 .bar3, .popup_close .bar3, #call-myaccount-menu-1 .bar3 {
        width: 14px;
        height: 1px;
        background-color: #383838;
        margin: 5px 0;
        transition: all .45s ease-in-out
    }

    #call-side-menu-1 .bar2, .popup_close .bar2, #call-myaccount-menu-1 .bar2 {
        width: 25px;
        opacity: 0
    }

    #call-side-menu-1 .bar1, .popup_close .bar1, #call-myaccount-menu-1 .bar1 {
        transform: rotate(-45deg) translate(0, 9px)
    }

    #call-side-menu-1 .bar3, .popup_close .bar3, #call-myaccount-menu-1 .bar3 {
        transform: rotate(45deg) translate(0, -8px)
    }

    #call-side-menu-1:hover, .popup_close:hover, #call-myaccount-menu-1:hover {
        background-color: #383838
    }

        #call-side-menu-1:hover > div, .popup_close:hover > div, #call-myaccount-menu-1:hover > div {
            background-color: #ffffff
        }

    #call-side-menu-1.change .bar1, .popup_close.change .bar1, #call-myaccount-menu-1.change .bar1, #call-side-menu-1.change .bar3, .popup_close.change .bar3, #call-myaccount-menu-1.change .bar3 {
        transform: translateX(-2px) translateY(2px) rotate(-45deg);
        width: 14px
    }

    #call-side-menu-1.change .bar2, .popup_close.change .bar2, #call-myaccount-menu-1.change .bar2 {
        opacity: 1
    }

    #call-side-menu-1.change .bar3, .popup_close.change .bar3, #call-myaccount-menu-1.change .bar3 {
        transform: translateX(-1px) translateY(-2px) rotate(45deg)
    }

#call-side-menu {
    transition: all .45s ease-in-out;
    padding-top: 10px
}

    #call-side-menu.inactive {
        display: none;
        transition: all .45s ease-in-out
    }

    #call-side-menu .bar1, #call-side-menu .bar2, #call-side-menu .bar3 {
        width: 20px;
        height: 1px;
        background-color: #ffffff;
        display: block;
        margin: 4px auto;
        transition: all .3s ease-in-out
    }

    #call-side-menu .bar2 {
        width: 14px
    }

    #call-side-menu.change .bar1, #call-side-menu.change .bar3 {
        transform: translateX(7px) translateY(2px) rotate(45deg);
        width: 14px
    }

    #call-side-menu.change .bar2 {
        width: 25px;
        margin: 5px auto
    }

    #call-side-menu.change .bar3 {
        transform: translateX(7px) translateY(-2px) rotate(-45deg)
    }

.side-nav {
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0
}

    .side-nav li {
        list-style: none;
        margin: 0;
        padding: 0 20px;
        line-height: 2.5;
        text-transform: uppercase;
        border-bottom: solid 0 #dddddd
    }

        .side-nav li a {
            font-weight: 500
        }

        .side-nav li.current a {
            font-weight: 700
        }

            .side-nav li.current a::before {
                display: none
            }

body header {
    width: 100%;
    position: fixed;
    z-index: 20;
    top: 0;
    height: 101px;
    transition: all .35s ease-in-out
}

    body header .nav-link {
        padding-right: 0px !important
    }

        body header .nav-link img {
            transition: all .35s ease-in-out;
            max-width: 2000px
        }

    body header .navbar {
        padding-left: 0;
        padding-right: 0
    }

    body header .logo-container {
        text-align: center
    }

        body header .logo-container .navbar-brand {
            position: relative;
            padding: 15px 0px;
            background: url(../images/govindjis-logo2.png) no-repeat 0 0;
            width: 200px;
            height: 27px;
            margin: 0
        }

            body header .logo-container .navbar-brand img {
                max-width: 200px;
                transition: all .45s ease-in-out
            }

    body header.trans {
        background-color: rgba(255,255,255,0.7);
        transition: all .35s ease-in-out
    }

    body header.scrolled {
        background-color: #efefef
    }

        body header.scrolled .navbar-brand {
            background-image: url(../images/govindjis-logo2.png)
        }

        body header.scrolled .mol ul li a {
            background-color: #383838;
            color: #ffffff
        }

            body header.scrolled .mol ul li a > div {
                background-color: #ffffff !important
            }

            body header.scrolled .mol ul li a:hover {
                background-color: #ffffff;
                color: #383838
            }

                body header.scrolled .mol ul li a:hover > div {
                    background-color: #383838 !important
                }

body#home header::before {
    position: fixed;
    left: 0;
    top: 0;
    height: 100px;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.4), transparent);
    transition: all .35s ease-in-out;
    content: ''
}

body#home .navbar-brand {
    background-image: url(../images/govindjis-logo.png);
    background-repeat: no-repeat
}

body#home .mol ul li.announcement .announcement-link {
    color: red
}

    body#home .mol ul li.announcement .announcement-link:hover {
        background-color: #383838;
        color: #ffffff
    }

    body#home .mol ul li.announcement .announcement-link.announcement-link-icon {
        background-image: url(../images/covid-19-icon.png)
    }

        body#home .mol ul li.announcement .announcement-link.announcement-link-icon:hover {
            background-color: transparent
        }

body#home .mol ul li a {
    color: #383838;
    background-color: #ffffff
}

    body#home .mol ul li a:hover {
        background-color: #383838;
        color: #ffffff
    }

    body#home .mol ul li a#call-side-menu > div {
        background-color: #383838
    }

    body#home .mol ul li a#call-side-menu:hover {
        background-color: #383838
    }

        body#home .mol ul li a#call-side-menu:hover > div {
            background-color: #ffffff !important
        }

body#home .scrolled {
    background-color: #efefef
}

    body#home .scrolled::before {
        background-image: none
    }

    body#home .scrolled #call-side-menu:hover {
        background-color: #ffffff
    }

        body#home .scrolled #call-side-menu:hover > div {
            background-color: #383838 !important
        }

    body#home .scrolled .mol ul li.announcement .announcement-link {
        color: #ffffff
    }

        body#home .scrolled .mol ul li.announcement .announcement-link:hover {
            background-color: #ffffff;
            color: red
        }

        body#home .scrolled .mol ul li.announcement .announcement-link.announcement-link-icon {
            background-image: url(../images/covid-19-d-icon.png)
        }

            body#home .scrolled .mol ul li.announcement .announcement-link.announcement-link-icon:hover {
                background-color: transparent
            }

    body#home .scrolled .mol ul li a {
        background-color: #383838;
        color: #ffffff
    }

        body#home .scrolled .mol ul li a:hover {
            border: solid 1px #383838;
            color: #383838;
            background-color: #ffffff
        }

    body#home .scrolled .navbar-brand {
        background-image: url(../images/govindjis-logo2.png);
        background-repeat: no-repeat
    }

footer {
    background-color: #222;
    width: 100%;
    padding: 50px 0 0
}

    footer .ph-bloc {
        padding-top: 30px
    }

    footer .addr-blc, footer .socal-blc {
        margin-top: -35px
    }

    footer p {
        font-size: 18px;
        line-height: 36px;
        margin-bottom: 30px;
        color: #ffffff;
        font-family: Lato,sans-serif
    }

        footer p a:not(.nodec) {
            color: #ffffff;
            text-decoration: none;
            transition: all .2s ease-in-out;
            position: relative
        }

            footer p a:not(.nodec)::before {
                left: 50%;
                width: 100%;
                max-width: 0;
                overflow: hidden;
                content: '';
                border-top: solid 1px #ffffff;
                bottom: -2px;
                position: absolute;
                opacity: .7;
                transition: all .2s ease-in-out
            }

            footer p a:not(.nodec):hover {
                color: #ffffff;
                text-decoration: none
            }

                footer p a:not(.nodec):hover::before {
                    left: 0;
                    max-width: 100%
                }

        footer p span {
            padding: 0 10px
        }

    footer .social-media ul {
        list-style: none;
        margin-top: 0
    }

        footer .social-media ul li {
            display: inline-block
        }

            footer .social-media ul li a {
                color: #ffffff;
                font-size: 22px;
                font-weight: 300
            }

                footer .social-media ul li a i {
                    font-weight: 300
                }

                    footer .social-media ul li a i::before {
                        font-family: FontAwesome;
                        font-weight: 300
                    }

                footer .social-media ul li a:hover {
                    text-decoration: none
                }

            footer .social-media ul li.facebook a:hover {
                color: #3b5998
            }

            footer .social-media ul li.youtube a:hover {
                color: #c4302b
            }

            footer .social-media ul li.instagram a:hover {
                color: #d12d7f
            }

            footer .social-media ul li.facetime a:hover {
                color: #34da4f
            }

    footer hr {
        width: 100%;
        border-top: solid 1px rgba(255,255,255,0.1)
    }

    footer .sub-f p {
        font-size: 15px;
        font-weight: 300
    }

.banner {
    width: 100%;
    padding: 0
}

    .banner.rol {
        padding: 0
    }

    .banner.d-flex {
        min-height: 500px;
        position: relative;
        background-size: cover;
        margin-bottom: 50px;
        padding: 0;
        margin-top: 100px;
        background-position: center;
        background-repeat: no-repeat
    }

        .banner.d-flex.short {
            min-height: 250px
        }

            .banner.d-flex.short hr {
                margin: 15px auto
            }

        .banner.d-flex hr {
            width: 30%;
            border-top: solid 1px #ffffff;
            margin: 25px auto
        }

        .banner.d-flex::before {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            content: '';
            background-color: rgba(0,0,0,0.4)
        }

        .banner.d-flex h1, .banner.d-flex h3 {
            color: #ffffff
        }

        .banner.d-flex h3 {
            font-weight: 400;
            margin: 0
        }

            .banner.d-flex h3 span {
                padding: 0 20px
            }

    .banner .carousel {
        width: 100%
    }

    .banner .carousel-caption {
        transform: translateY(-43%);
        top: 57%;
        max-width: 650px;
        margin-left: auto
    }

        .banner .carousel-caption h5 {
            font-size: 42px;
            line-height: 35px;
            margin-bottom: 25px;
            text-transform: uppercase;
            color: #000;
            font-weight: normal;
            font-family: 'HelveticaNeueLight'
        }

        .banner .carousel-caption .btn-on-slider {
            background-color: #383838;
            border-radius: 44px;
            border: none;
            color: #fff;
            padding: 29.5px 0;
            text-transform: uppercase;
            width: 357px;
            font-size: 18px;
            letter-spacing: 1px;
            cursor: pointer;
            outline: none;
            font-family: 'HelveticaNeueMed'
        }

    .banner .carousel-control-prev, .banner .carousel-control-next {
        position: absolute;
        top: 0;
        cursor: pointer;
        bottom: 0;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 15%;
        color: #fff;
        text-align: center;
        opacity: .5
    }

        .banner .carousel-control-prev:hover, .banner .carousel-control-next:hover {
            background-color: rgba(0,0,0,0.2)
        }

        .banner .carousel-control-prev .fa, .banner .carousel-control-next .fa {
            font-size: 70px;
            color: #fff;
            text-shadow: 2px 2px 2px #383838
        }

    .banner .carousel-control-prev {
        left: 0
    }

    .banner .carousel-indicators {
        transform: translateY(-85%);
        bottom: 15%
    }

        .banner .carousel-indicators li {
            text-indent: 0px;
            background-color: #bbbbbb;
            margin: 0;
            margin: auto 20px;
            width: 33.33%;
            height: 6px
        }

            .banner .carousel-indicators li:after {
                width: 0;
                bottom: 0;
                transition: width .1s linear
            }

            .banner .carousel-indicators li.active:after {
                width: 100%;
                background-color: #383838;
                height: 6px;
                transition: width 5s linear
            }

            .banner .carousel-indicators li::before {
                display: none
            }

            .banner .carousel-indicators li:hover {
                background-color: #383838
            }

        .banner .carousel-indicators p {
            font-family: Freight-medium;
            position: relative;
            bottom: 40px;
            color: #fff;
            margin-bottom: 0px
        }

    .banner .carousel-item {
        width: 100%;
        height: calc((9 / 16) * 80vw)
    }

        .banner .carousel-item img {
            position: relative;
            width: 100% !important;
            overflow: hidden
        }

        .banner .carousel-item video {
            height: inherit
        }

        .banner .carousel-item .details-banner-container {
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 50%
        }

            .banner .carousel-item .details-banner-container.rolex .cbtn-dark {
                background-color: #147549;
                border-color: #147549
            }

            .banner .carousel-item .details-banner-container .logo {
                width: auto
            }

            .banner .carousel-item .details-banner-container p {
                color: #fff;
                margin: 0;
                max-width: 90%;
                font-size: 2rem;
                line-height: normal
            }

                .banner .carousel-item .details-banner-container p.description {
                    color: #fff;
                    font-size: 1rem;
                    position: relative;
                    margin-top: 40px;
                    padding-top: 40px
                }

                    .banner .carousel-item .details-banner-container p.description::before {
                        position: absolute;
                        top: 0;
                        width: 50%;
                        border-bottom: solid 1px #ddd;
                        content: '';
                        left: 25%
                    }

            .banner .carousel-item .details-banner-container .cbtn-dark {
                border: solid 1px #383838;
                background-color: #383838;
                color: #ffffff;
                display: block;
                width: auto;
                z-index: 2
            }

                .banner .carousel-item .details-banner-container .cbtn-dark:hover, .banner .carousel-item .details-banner-container .cbtn-dark:focus {
                    background-color: #ffffff;
                    color: #383838
                }

        .banner .carousel-item .full-click-banner {
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 100%;
            z-index: 1
        }

        .banner .carousel-item.active, .banner .carousel-item-next, .banner .carousel-item-prev {
            display: block;
            transition: -webkit-transform .6s ease;
            transition: transform .6s ease;
            transition: transform .6s ease,-webkit-transform .6s ease
        }

    .banner .mouse {
        z-index: 10;
        position: absolute;
        width: 23px;
        height: 42px;
        bottom: 5%;
        left: 50%;
        margin-left: -12px;
        border-radius: 15px;
        border: 2px solid #fff;
        animation: intro 1s
    }

        .banner .mouse .scroll {
            display: block;
            width: 3px;
            height: 9px;
            margin: 6px auto;
            border-radius: 4px;
            background: #fff;
            animation: finger 1s infinite
        }

.sr-popup, .mailing-list-popup {
    position: fixed;
    width: 1204px;
    height: auto;
    left: 50%;
    max-width: 90%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    display: none;
    z-index: 999;
    box-shadow: 0 8px 12px rgba(0,0,0,0.5)
}

    .sr-popup.show {
        display: block
    }
	.mailing-list-popup.show{
		display: block;
	}

    .sr-popup .popup_close, .mailing-list-popup .mailing-popup_close {
        position: absolute;
        left: 100%;
        z-index: 99;
        top: -20px;
        margin-left: -20px
    }

.banner.lt {
    filter: grayscale(0%)
}

.banner.grayfilter {
    filter: grayscale(100%)
}

.banner.faq {
    background-position: 90% center
}

.banner.contact {
    background-position: right 0
}

.banner.guide {
    background-position: 20% 0
}

    .banner.guide::before {
        background-color: rgba(0,0,0,0.4)
    }

.banner.foundingspirit {
    background-position: 0 0
}

    .banner.foundingspirit::before {
        background-color: rgba(0,0,0,0)
    }

    .banner.foundingspirit h1, .banner.foundingspirit h3 {
        color: #383838
    }

    .banner.foundingspirit hr {
        border: solid 1px #383838
    }

.banner.style {
    background-position: 0 center
}

    .banner.style h1, .banner.style h3 {
        color: #383838
    }

    .banner.style hr {
        border: solid 1px #383838
    }

.banner.mission::before {
    background-color: rgba(0,0,0,0.4)
}

.banner.video::before {
    background-color: rgba(0,0,0,0.5)
}

.banner.account {
    background-position: 75% bottom
}

.banner.cart {
    background-position: 20% center
}

    .banner.cart::before {
        background-color: rgba(0,0,0,0.5)
    }

.banner.pagenotfound {
    background-position: 0% center
}

.banner.outofstock {
    background-position: 0% center
}

.banner.brand::before {
    opacity: .8
}

.banner.brand hr {
    border-top: solid 1px #ffffff
}

.banner.brand.sim {
    background-position: right center
}

.banner.brand.tcori {
    background-position: 0 center
}

    .banner.brand.tcori::before {
        background-color: rgba(0,0,0,0.3)
    }

.banner.brand.lladro {
    background-position: 0 center
}

    .banner.brand.lladro::before {
        background-color: rgba(0,0,0,0)
    }

    .banner.brand.lladro h1, .banner.brand.lladro h3 {
        color: #000000
    }

    .banner.brand.lladro hr {
        border: solid 1px #000000
    }

.banner.brand.mik {
    background-position: top right
}

    .banner.brand.mik h1, .banner.brand.mik h3 {
        color: #ffffff
    }

.banner.brand.corpmont {
    background-position: right center
}

    .banner.brand.corpmont::before {
        background-color: rgba(0,0,0,0.4)
    }

.banner.brand.acsmont {
    background-position: right center
}

    .banner.brand.acsmont::before {
        background-color: rgba(0,0,0,0.4)
    }

.banner.brand.timerado {
    background-position: right center
}

    .banner.brand.timerado::before {
        background-color: rgba(0,0,0,0.5)
    }

.banner.brand.timebellr {
    background-position: 0 center
}

    .banner.brand.timebellr::before {
        background-color: rgba(0,0,0,0.5)
    }

.banner.brand.timemont {
    background-position: center
}

.banner.brand.timewolf {
    background-position: 45% center
}

    .banner.brand.timewolf::before {
        background-color: rgba(0,0,0,0.1)
    }

    .banner.brand.timewolf h1, .banner.brand.timewolf h3 {
        color: #000000
    }

    .banner.brand.timewolf hr {
        border: solid 1px #000000
    }

.banner.brand.timepreown {
    background-position: center
}

    .banner.brand.timepreown::before {
        background-color: rgba(0,0,0,0.5)
    }

.banner.prods {
    background-position: 0 center
}

    .banner.prods::before {
        opacity: .8
    }

    .banner.prods hr {
        border-top: solid 1px #ffffff
    }

    .banner.prods.dia_jwl::before {
        background-color: rgba(0,0,0,0)
    }

    .banner.prods.dia_jwl h1, .banner.prods.dia_jwl h3 {
        color: #000000
    }

    .banner.prods.dia_jwl hr {
        border: solid 1px #000000
    }

    .banner.prods.ant_jwl {
        background-position: 10% center
    }

        .banner.prods.ant_jwl::before {
            background-color: rgba(0,0,0,0)
        }

        .banner.prods.ant_jwl h1, .banner.prods.ant_jwl h3 {
            color: #000000
        }

        .banner.prods.ant_jwl hr {
            border: solid 1px #000000
        }

    .banner.prods.baby_jwl {
        background-position: right center
    }

        .banner.prods.baby_jwl::before {
            background-color: rgba(0,0,0,0)
        }

        .banner.prods.baby_jwl h1, .banner.prods.baby_jwl h3 {
            color: #000000
        }

        .banner.prods.baby_jwl hr {
            border: solid 1px #000000
        }

    .banner.prods.loose_dia {
        background-position: center
    }

        .banner.prods.loose_dia::before {
            background-color: rgba(0,0,0,0.3)
        }

.banner.timeout {
    background-position: center bottom;
    background-size: unset
}

    .banner.timeout::before {
        opacity: 0
    }

.items {
    position: relative
}

    .items > a {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: block;
        z-index: 9
    }

    .items.cs h5 {
        position: absolute;
        bottom: 20px;
        right: 20px;
        opacity: 0;
        z-index: 2;
        transition: all .3s ease-in-out
    }

    .items .imgDiv {
        position: absolute;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        height: 100%;
        left: 0;
        top: 0;
        width: 100%;
        transition: all .3s ease-in-out;
        background-position: center top
    }

    .items.zm {
        transition: all .7s ease-in-out
    }

        .items.zm > a {
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            z-index: 99
        }

    .items.cs:hover h5 {
        opacity: 1
    }

    .items:hover .cta {
        opacity: 1
    }

    .items:hover .imgDiv {
        transform: scale(1.05);
        filter: none
    }

    .items:hover h3 {
        background-color: #383838;
        color: #ffffff
    }

    .items.nz:hover .imgDiv {
        transform: scale(1);
        filter: none
    }

body .cta {
    width: 200px;
    max-width: 250px;
    height: 45px;
    line-height: 48px;
    background-color: #383838;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    position: absolute !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff !important;
    border: solid 1px rgba(255,255,255,0.5);
    white-space: nowrap;
    font-weight: 600;
    padding: 0 30px;
    border-radius: 5px;
    transition: all .3s ease-in-out;
    text-align: center;
    opacity: 0;
    z-index: 9
}

    body .cta::before {
        display: none
    }

    body .cta:hover {
        background-color: #ffffff;
        color: #383838 !important;
        border: solid 1px #383838
    }

    body .cta.icon {
        width: 75px;
        height: 75px;
        line-height: 77px;
        border-radius: 50%;
        padding: 0;
        font-size: 30px
    }

        body .cta.icon:hover {
            box-shadow: 0 5px 8px rgba(0,0,0,0.7)
        }

    body .cta.sm {
        width: 60px;
        height: 60px;
        line-height: 62px
    }

section {
    width: 100%;
    padding: 60px 0
}

    section.thinner .container {
        max-width: 1400px
    }

    section.tagline {
        padding: 80px 0
    }

    section .items {
        width: 100%;
        display: flex;
        align-items: center
    }

        section .items .inrwrp {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
            opacity: 0;
            transition: all .3s ease-in-out;
            flex-grow: 0;
            flex-shrink: 0;
            max-width: 558px;
            margin: 0 auto;
            align-items: center;
            z-index: 9
        }

            section .items .inrwrp .inr {
                width: 140px;
                height: 140px;
                margin: 0 5px;
                line-height: 140px;
                background-color: #ededed;
                color: #383838;
                overflow: hidden;
                display: flex;
                justify-content: center;
                align-items: center;
                position: relative
            }

                section .items .inrwrp .inr img {
                    transition: all .3s ease-in-out;
                    max-width: 100%
                }

                section .items .inrwrp .inr h5 {
                    position: absolute;
                    bottom: 10px;
                    margin: 0;
                    padding: 0;
                    font-size: 14px;
                    color: #383838;
                    left: 0;
                    width: 100%;
                    z-index: 99;
                    transition: all .2s ease-in-out
                }

                section .items .inrwrp .inr a span {
                    color: #383838;
                    text-decoration: none;
                    font-weight: 600;
                    display: block;
                    font-size: 16px;
                    transition: all .3s ease-in-out;
                    line-height: 20px
                }

                section .items .inrwrp .inr a:hover {
                    text-decoration: none
                }

                section .items .inrwrp .inr:hover img, section .items .inrwrp .inr:hover h5 {
                    transform: scale(1.2)
                }

                section .items .inrwrp .inr.button {
                    color: #383838;
                    position: relative;
                    width: 140px;
                    height: 40px;
                    line-height: 40px;
                    font-size: 16px;
                    display: block;
                    text-align: center;
                    text-decoration: none;
                    font-weight: 600;
                    border: solid 1px #383838
                }

                    section .items .inrwrp .inr.button a {
                        line-height: 40px;
                        height: 40px;
                        transition: all .3s ease-in-out
                    }

                        section .items .inrwrp .inr.button a span {
                            line-height: 40px
                        }

                        section .items .inrwrp .inr.button a:hover span {
                            transform: scale(1.2)
                        }

                section .items .inrwrp .inr.trans {
                    background-color: transparent !important
                }

                    section .items .inrwrp .inr.trans a {
                        color: #383838
                    }

        section .items:hover .inrwrp {
            opacity: 1
        }

        section .items h2 {
            z-index: 9;
            transition: all .7s ease-in-out;
            position: absolute;
            width: calc(100% - 30px);
            left: 0;
            text-transform: uppercase
        }

        section .items h3 {
            position: relative;
            z-index: 9;
            padding: 0;
            width: 100%;
            text-align: left;
            transition: all .7s ease-in-out;
            text-transform: uppercase;
            border: solid 1px transparent
        }

            section .items h3 a {
                text-decoration: none;
                color: inherit;
                display: block;
                height: 100%;
                width: 100%;
                padding: 25px
            }

            section .items h3:hover {
                background-color: #ffffff;
                color: #383838;
                border: solid 1px #383838
            }

    section.inc .item_wrapper {
        width: calc(50% - 10px);
        height: 424px;
        margin: 0 0 20px 0;
        position: relative;
        overflow: hidden;
        display: flex;
        transition: all .7s ease-in-out
    }

    section.inc .three-col .item_wrapper {
        width: calc(33.33333% - 10px)
    }

    section.inc .four-col .item_wrapper {
        width: calc(25% - 15px)
    }

    section.inc.master .item_wrapper {
        height: 550px
    }

        section.inc.master .item_wrapper .items {
            flex-wrap: wrap
        }

            section.inc.master .item_wrapper .items .inr {
                width: 210px
            }

            section.inc.master .item_wrapper .items h2 {
                margin: 30px 0 0 30px
            }

        section.inc.master .item_wrapper.dj .inrwrp::after, section.inc.master .item_wrapper.aj .inrwrp::after {
            content: '';
            width: 210px;
            height: 100px;
            margin: 0 5px
        }

        section.inc.master .item_wrapper.gj .inrwrp, section.inc.master .item_wrapper.dj .inrwrp {
            height: 460px;
            margin-top: 60px
        }

        section.inc.master .item_wrapper.lt .inrwrp {
            height: 460px;
            margin-bottom: 60px
        }

        section.inc.master .item_wrapper.aj .inrwrp {
            height: 300px
        }

        section.inc.master .item_wrapper.aj .items h2, section.inc.master .item_wrapper.lt .items h2 {
            bottom: 30px
        }

        section.inc.master .item_wrapper.dj .items h2, section.inc.master .item_wrapper.lt .items h2 {
            margin: 30px 30px 0 0
        }

    section.exc .item_wrapper {
        width: calc(33.3333% - 13.3333px);
        height: auto;
        margin: 0 0 50px 0
    }

        section.exc .item_wrapper h3 {
            text-align: left;
            margin-top: 15px;
            text-transform: uppercase
        }

        section.exc .item_wrapper .items {
            overflow: hidden;
            height: 424px
        }

            section.exc .item_wrapper .items .inrwrp {
                max-width: 100%
            }

        section.exc .item_wrapper.lg .items .inrwrp .inr {
            margin-bottom: 10px
        }

    section.exc .two-col .item_wrapper {
        width: calc(50% - 10px)
    }

    section.exc .four-col .item_wrapper {
        width: calc(25% - 15px)
    }

    section.showroom {
        background-size: cover;
        margin-bottom: 60px;
        padding: 0 0 40px;
        position: relative;
        overflow: hidden;
        min-height: 907px
    }

        section.showroom .items {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%
        }

        section.showroom .imgDiv {
            transition: all .7s ease-in-out;
            cursor: default !important;
            background-position: center top
        }

        section.showroom .btn_wrapper {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 140px;
            height: 40px;
            transform: translateY(-50%);
            display: inline-block;
            border: solid 1px #383838;
            display: block;
            opacity: 0;
            transition: all .3s ease-in-out;
            text-align: center;
            overflow: hidden;
            background-color: #ffffff
        }

            section.showroom .btn_wrapper a {
                color: #383838;
                position: relative;
                width: 100%;
                height: 40px;
                line-height: 40px;
                font-size: 16px;
                display: block;
                text-align: center;
                text-decoration: none;
                font-weight: 600;
                transition: all .3s ease-in-out
            }

                section.showroom .btn_wrapper a:hover {
                    transform: scale(1.2)
                }

        section.showroom .content_wrapper {
            position: absolute;
            left: 0;
            z-index: 4;
            width: 100%;
            top: 50px
        }

            section.showroom .content_wrapper h3 {
                display: inline-block;
                padding-right: 20px;
                margin-right: 20px;
                position: relative;
                text-transform: uppercase;
                font-weight: 700;
                color: #454545
            }

            section.showroom .content_wrapper h4 {
                margin: 0;
                padding: 0
            }

                section.showroom .content_wrapper h4::after {
                    display: none
                }

        section.showroom:hover .btn_wrapper {
            opacity: 1
        }

        section.showroom:hover .content_wrapper h3 {
            background-color: transparent;
            color: inherit
        }

body main section.map {
    filter: grayscale(100%);
    padding-bottom: 0
}

    body main section.map iframe {
        width: 100%;
        height: 600px;
        border: none
    }

body main section .corum iframe {
    width: 100%;
    height: 720px
}

body main section.rol_page {
    margin-top: 100px;
    padding-top: 20px
}

body main section ul {
    padding-left: 15px
}

    body main section ul li {
        line-height: 36px
    }

body main section.thinner a:not(.cbtn):not(.refreshCaptcha) {
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    color: #383838
}

    body main section.thinner a:not(.cbtn):not(.refreshCaptcha)::before {
        left: 0;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        content: '';
        border-top: solid 1px #383838;
        bottom: -2px;
        position: absolute;
        opacity: .7
    }

    body main section.thinner a:not(.cbtn):not(.refreshCaptcha):hover::before {
        animation: intro .5s ease-in-out
    }

    body main section.thinner a:not(.cbtn):not(.refreshCaptcha).tel-below-m {
        cursor: default
    }

        body main section.thinner a:not(.cbtn):not(.refreshCaptcha).tel-below-m::before {
            display: none
        }

    body main section.thinner a:not(.cbtn):not(.refreshCaptcha).nodec {
        white-space: normal
    }

        body main section.thinner a:not(.cbtn):not(.refreshCaptcha).nodec::before {
            display: none
        }

body main section.thinner .account-email a::before {
    display: none
}

body main section.thinner a.video-link::before {
    display: none
}

body main section.thinner .noprodtitle {
    text-align: center;
    margin-bottom: 55px
}

body main section.thinner.faqs .col-md-5 {
    padding-right: 50px;
    padding-bottom: 80px
}

    body main section.thinner.faqs .col-md-5 h3 {
        line-height: 1.7
    }

body main section.thinner.faqs .rolex-location h1 {
    font-size: 26px;
    font-weight: 500;
    color: #383838;
    line-height: 1.5em;
    text-transform: none
}

@keyframes intro {
    0% {
        left: 0;
        max-width: 100%
    }

    50% {
        left: 50%;
        max-width: 1%
    }

    100% {
        left: 0;
        max-width: 100%
    }
}

body main section.thinner .col-sm-5 h3 {
    padding-right: 50px
}

body main section.thinner .dv-wrapper .divider {
    border-top: solid 1px #dddddd;
    margin-top: 60px;
    margin-bottom: 80px
}

    body main section.thinner .dv-wrapper .divider.trans {
        opacity: 0;
        margin-top: 0;
        margin-bottom: 50px
    }

body main section.thinner .det_col {
    padding-bottom: 80px
}

    body main section.thinner .det_col h6:first-child, body main section.thinner .det_col h5:first-child {
        margin-top: 0 !important
    }

    body main section.thinner .det_col p:last-child {
        margin-bottom: 0
    }

    body main section.thinner .det_col h5 {
        font-size: 23px;
        margin-top: 40px;
        margin-bottom: 10px
    }

    body main section.thinner .det_col h6 {
        font-weight: 600;
        margin-top: 20px;
        line-height: 1.7
    }

    body main section.thinner .det_col .table-format {
        border: 0;
        margin-bottom: 20px
    }

        body main section.thinner .det_col .table-format td, body main section.thinner .det_col .table-format th {
            border-bottom: solid 1px #dddddd;
            padding: 5px 10px
        }

        body main section.thinner .det_col .table-format th {
            border-right: solid 1px #dddddd
        }

        body main section.thinner .det_col .table-format:last-child {
            margin: 0
        }

body main section.search-list .dropdown-toggle::after {
    border-top: 8px solid;
    border-right: 8px solid transparent;
    border-bottom: 0;
    border-left: 8px solid transparent
}

body main section.search-list .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
    border: 0;
    box-shadow: 0 0 5px rgba(0,0,0,0.2)
}

    body main section.search-list .dropdown-menu li {
        padding: 0px 15px
    }

        body main section.search-list .dropdown-menu li.divider {
            height: 1;
            margin: 0;
            overflow: hidden;
            border-top: 1px solid #383838
        }

        body main section.search-list .dropdown-menu li a {
            display: block;
            padding: 2px 0
        }

            body main section.search-list .dropdown-menu li a::before {
                display: none
            }

        body main section.search-list .dropdown-menu li:hover {
            background-color: #f4f4f4
        }

body main section .social-media {
    padding-top: 0
}

    body main section .social-media ul {
        display: flex;
        list-style: none;
        width: 100%;
        padding: 0
    }

        body main section .social-media ul li {
            list-style: none;
            margin: 0 15px 15px 0
        }

            body main section .social-media ul li a {
                color: #ffffff !important;
                font-size: 20px;
                background-color: #383838;
                width: 40px;
                height: 40px;
                text-align: center;
                border-radius: 50%;
                display: block;
                line-height: 40px;
                font-weight: 300
            }

                body main section .social-media ul li a::before {
                    display: none
                }

                body main section .social-media ul li a i {
                    font-weight: 300
                }

                    body main section .social-media ul li a i::before {
                        font-family: FontAwesome
                    }

                body main section .social-media ul li a:hover {
                    background-color: #ffffff;
                    border: solid 1px #383838
                }

            body main section .social-media ul li.facebook:hover a {
                color: #3b5998 !important;
                content: '\f0d5' !important
            }

            body main section .social-media ul li.youtube:hover a {
                color: #c4302b !important
            }

            body main section .social-media ul li.instagram:hover a {
                color: #d12d7f !important
            }

            body main section .social-media ul li.facetime:hover a {
                color: #34da4f !important
            }

section.sb {
    margin-bottom: 50px
}

.shopping-items {
    padding-bottom: 50px
}

    .shopping-items .img-cont, .shopping-items .prod-qty, .shopping-items .prod-price {
        width: 12%;
        vertical-align: top;
        text-align: center;
        position: relative
    }

        .shopping-items .img-cont img, .shopping-items .prod-qty img, .shopping-items .prod-price img {
            min-width: 100px;
            border: solid 1px #dddddd;
            vertical-align: top
        }

    .shopping-items .img-cont {
        min-width: 100px
    }

        .shopping-items .img-cont .lastcall {
            top: -20px;
            right: -20px;
            font-size: 11px;
            width: 40px;
            height: 40px
        }

            .shopping-items .img-cont .lastcall sup {
                color: red;
                font-size: 16px
            }

    .shopping-items .prod-qty p {
        margin-top: 20px
    }

    .shopping-items .prod-del {
        width: 20px;
        vertical-align: top;
        text-align: center;
        position: absolute;
        top: 15px;
        left: 15px
    }

    .shopping-items .det {
        flex-grow: 1;
        width: 70%
    }

    .shopping-items .prod-price, .shopping-items .price {
        text-align: right
    }

        .shopping-items .prod-price p, .shopping-items .price p {
            font-family: Lato,sans-serif
        }

            .shopping-items .prod-price p.fe-old-price, .shopping-items .price p.fe-old-price {
                text-decoration: line-through
            }

    .shopping-items .popup_close {
        width: 20px;
        height: 20px;
        position: absolute !important;
        right: 0;
        left: auto;
        top: 0
    }

        .shopping-items .popup_close .bar1, .shopping-items .popup_close .bar3 {
            width: 10px
        }

        .shopping-items .popup_close .bar1 {
            transform: rotate(-45deg) translate(0, -5px)
        }

        .shopping-items .popup_close .bar3 {
            transform: rotate(45deg) translate(-13px, -8.5px)
        }

        .shopping-items .popup_close::before {
            display: none
        }

    .shopping-items .prod-det {
        padding: 0 50px 0 25px;
        width: 64%
    }

        .shopping-items .prod-det h6 {
            font-size: 12px;
            margin-bottom: 15px;
            font-family: Lato,sans-serif
        }

        .shopping-items .prod-det h5 {
            font-weight: 600;
            margin-bottom: 10px
        }

        .shopping-items .prod-det p {
            font-size: 15px;
            line-height: 24px
        }

    .shopping-items .items {
        display: flex;
        justify-content: space-between;
        padding: 50px 15px;
        align-items: flex-start;
        border-bottom: solid 1px #dddddd
    }

        .shopping-items .items:hover {
            background-color: #f9f9f9
        }

        .shopping-items .items a {
            white-space: normal !important
        }

            .shopping-items .items a::before {
                display: none
            }

.items-total {
    width: 50%;
    float: right
}

    .items-total .items {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 20px;
        padding: 0 15px
    }

        .items-total .items .amt-label, .items-total .items .prod-price {
            width: 50%
        }

            .items-total .items .amt-label p, .items-total .items .prod-price p, .items-total .items .amt-label h5, .items-total .items .prod-price h5 {
                margin: 0;
                text-align: right
            }

        .items-total .items .prod-price {
            width: 50%
        }

            .items-total .items .prod-price p {
                font-family: Lato,sans-serif
            }

        .items-total .items.tot {
            border-top: solid 1px #dddddd;
            padding-top: 30px
        }

            .items-total .items.tot h6, .items-total .items.tot h5 {
                font-weight: 600;
                font-size: 24px
            }

            .items-total .items.tot h5 {
                font-family: Lato,sans-serif
            }

.buttons {
    clear: both;
    margin: 0;
    padding: 20px 0 0 0;
    text-align: left;
    display: flex
}

    .buttons a:not(.cbtn) {
        height: 22px;
        top: 7px
    }

    .buttons .cbtn {
        margin-right: 40px
    }

    .buttons.flex-row-reverse .cbtn {
        margin-right: 0
    }

body section .lastcall {
    width: 50px;
    height: 50px;
    border: solid 1px #dddddd;
    border-radius: 50%;
    right: 0px;
    top: 0px;
    position: absolute;
    text-align: center;
    line-height: 1;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    border-bottom: 0;
    z-index: 9;
    background-color: #dddddd;
    color: red;
    text-transform: uppercase
}

    body section .lastcall sup {
        color: red;
        right: 5px;
        top: 5px;
        font-size: 20px
    }

body section .lastcall_txt, body section p.lastcall_txt {
    font-size: 15px;
    color: red;
    font-style: italic
}

    body section .lastcall_txt sup, body section p.lastcall_txt sup {
        color: red;
        font-size: 100%;
        font-size: 20px;
        top: 0 !important
    }

body section.prods .container {
    max-width: 1808px;
    margin: 0 auto
}

body section.prods .product-list {
    text-align: center
}

    body section.prods .product-list .prod-item {
        text-align: center;
        width: 100%;
        min-width: 290px
    }

        body section.prods .product-list .prod-item .img-wrapper {
            text-align: center;
            border: solid 1px #ffffff;
            overflow: hidden;
			position:relative;
			
			
        }

            body section.prods .product-list .prod-item .img-wrapper a {
                position: initial
            }

                body section.prods .product-list .prod-item .img-wrapper a:before {
                    display: none
                }

                body section.prods .product-list .prod-item .img-wrapper a img {
                    height: 408px;
                    width: 408px
                }

            /* body section.prods .product-list .prod-item .img-wrapper:hover { */
                /* border: solid 1px #dddddd */
            /* } */

                body section.prods .product-list .prod-item .img-wrapper:hover img {
                    transform: scale(1.09)
                }

                body section.prods .product-list .prod-item .img-wrapper:hover .cta {
                    opacity: 1
                }

        body section.prods .product-list .prod-item .prod-detail h5 {
            line-height: 1.6;
            font-size: 16px;
            white-space: normal
        }

        body section.prods .product-list .prod-item .prod-detail h6 {
            font-size: 12px;
            text-transform: uppercase
        }

        body section.prods .product-list .prod-item .prod-detail p {
            font-size: 14px;
            font-weight: 700;
            font-family: Lato,sans-serif
        }

            body section.prods .product-list .prod-item .prod-detail p span.fe-old-price {
                padding-right: 30px;
                font-weight: 400;
                text-decoration: line-through
            }

body section.product-details .details-image {
    width: 100%;
    height: auto;
    background-size: contain;
    background-position: center;
    border: solid 1px #dddddd;
    background-repeat: no-repeat;
    margin-right: 40px;
    /*margin-bottom: 20px;*/
    position: relative
}

body section.product-details .links {
    font-size: 14px;
    text-align: center;
    margin-top: 50px;
    /*margin-left: 13%;*/
}

    body section.product-details .links span {
        padding: 0 10px
    }

body section.product-details .details-description {
    text-align: center;
    padding-top: 50px;
    width: 100%
}

    body section.product-details .details-description h6, body section.product-details .details-description h2 {
        margin-bottom: 30px
    }

    body section.product-details .details-description h2 {
        line-height: 1.6
    }

    body section.product-details .details-description p {
        line-height: 1.5;
        padding: 0 10%
    }

    body section.product-details .details-description .price {
        font-size: 32px;
        font-weight: 600;
        line-height: 50px;
        border-bottom: solid 1px #dddddd;
        margin-bottom: 40px;
        padding: 0 0 20px;
        width: 60%;
        font-family: Lato,sans-serif;
        margin-left: 20%
    }

        body section.product-details .details-description .price span.fe-old-price {
            text-decoration: line-through;
            opacity: .5;
            padding-right: 20px;
            font-weight: 500;
            font-size: 20px
        }

    body section.product-details .details-description .cbtn {
        margin-bottom: 25px
    }

.share-links {
    text-align: right
}

    .share-links > div {
        overflow: hidden
    }

    .share-links .share-container {
        z-index: 0;
        right: 0;
        transform: translate(calc(100% + 10px), 0);
        -webkit-transform: translate(calc(100% + 10px), 0);
        -o-transform: translate(calc(100% + 10px), 0);
        -moz-transform: translate(calc(100% + 10px), 0);
        transition: transform .3s ease-out
    }

        .share-links .share-container.show {
            transform: translate(-10px, 0);
            -webkit-transform: translate(-10px, 0);
            -o-transform: translate(-10px, 0);
            -moz-transform: translate(-10px, 0)
        }

    .share-links a.share-icon {
        color: #ffffff !important;
        background-color: #383838;
        text-align: center;
        border-radius: 5px;
        width: 25px;
        height: 25px;
        display: inline-block;
        border: solid 1px #383838
    }

        .share-links a.share-icon::before {
            border: none !important
        }

        .share-links a.share-icon:hover {
            background-color: #ffffff
        }

            .share-links a.share-icon:hover.facebook {
                color: #3b5998 !important
            }

            .share-links a.share-icon:hover.pinterest {
                color: #bd081c !important
            }

            .share-links a.share-icon:hover.email {
                color: #ce4f24 !important
            }

            .share-links a.share-icon:hover.whatsapp {
                color: #25d366 !important
            }

            .share-links a.share-icon:hover.twitter {
                color: #1da1f2 !important
            }

            .share-links a.share-icon:hover.copy-link {
                color: #6001d2 !important
            }

.share-text {
    z-index: 2;
    background-color: #ffffff
}

.frame360 .image-wrap .image-container {
    position: relative;
    padding-bottom: 65.189%;
    height: 0;
    overflow: hidden
}

    .frame360 .image-wrap .image-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%
    }

#live-container #cartier-page-container .cartier-header {
    z-index: 2
}

    #live-container #cartier-page-container .cartier-header section.cartier-header-submenu {
        position: relative
    }

#live-container #cartier-page-container article.cartier-header-submenu-collections.shrinked {
    max-width: 100%
}

    #live-container #cartier-page-container article.cartier-header-submenu-collections.shrinked .cartier-header-submenu-collection {
        width: auto;
        max-width: 100%
    }

#live-container #cartier-page-container #cartier-stories-inner-container .latest-news .latest-news-item__title {
    white-space: normal
}

#live-container #cartier-page-container #cartier-stories-inner-container .push--domino .push__content h3.push__title, #live-container #cartier-page-container #cartier-stories-inner-container .push--square .push__content h3.push__title {
    white-space: normal
}

#live-container #cartier-page-container .cartier-plp-product-container .cartier-plp-product-info .cartier-plp-product-name {
    white-space: normal
}

#live-container #cartier-page-container .cartier-plp-product-container .cartier-plp-product-info .cartier-plp-product-description {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

@media only screen and (min-width:1501px) {
    body section.exc .item_wrapper .items .inrwrp .inr {
        width: 120px;
        height: 120px
    }

    body .banner .carousel-item .details-banner-container p {
        font-size: 3rem
    }

        body .banner .carousel-item .details-banner-container p.description {
            font-size: 1.5rem
        }
}

@media only screen and (max-width:1500px) and (min-width:1401px) {
    body h1 {
        font: normal normal normal 48px/1.25em raleway,sans-serif
    }

    body section.exc .item_wrapper .items .inrwrp .inr {
        width: 120px;
        height: 120px
    }
}

@media only screen and (max-width:1400px) and (min-width:1201px) {
    body h1 {
        font: normal normal normal 42px/1.25em raleway,sans-serif
    }

    body main section.exc .item_wrapper .items .inrwrp {
        width: 450px
    }

        body main section.exc .item_wrapper .items .inrwrp .inr {
            width: 120px;
            height: 120px
        }

            body main section.exc .item_wrapper .items .inrwrp .inr:hover h5 {
                transform: scale(1)
            }

    body main section.exc .item_wrapper .items.bj .items .inrwrp::after {
        content: "";
        width: 120px;
        margin: 0 5px
    }

    body main section.inc.master .item_wrapper .items .inrwrp {
        max-width: 100%;
        padding: 0 20px;
        justify-content: center
    }

        body main section.inc.master .item_wrapper .items .inrwrp .inr {
            width: 160px;
            max-width: 33%
        }

            body main section.inc.master .item_wrapper .items .inrwrp .inr h5 {
                font-size: 12px;
                bottom: 20px
            }

            body main section.inc.master .item_wrapper .items .inrwrp .inr:hover h5 {
                transform: scale(1)
            }

    body main section.inc.master .item_wrapper.dj .inrwrp::after, body main section.inc.master .item_wrapper.aj .inrwrp::after {
        content: "";
        width: 160px
    }

    body main section.thinner.prods .container {
        max-width: 1180px;
        margin: 0 auto
    }

    body main section.thinner.prods .prod_wrapper .prod_items {
        margin-right: 80px
    }

        body main section.thinner.prods .prod_wrapper .prod_items:nth-child(3n) {
            margin-right: 0
        }
}

@media only screen and (max-width:1200px) {
    .video-collection .vids {
        width: 80%;
        margin: 0 auto 20px;
        text-align: center
    }

        .video-collection .vids p {
            line-height: normal
        }

    .video-collection .video-category, .video-collection .video-subcategory {
        text-align: center
    }

    .banner .carousel-item .details-banner-container p {
        max-width: 100%;
        font-size: 1.5rem
    }

        .banner .carousel-item .details-banner-container p.description {
            font-size: 1rem;
            margin-top: 15px;
            padding-top: 15px;
            margin-bottom: 10px
        }

    .banner .carousel-item .details-banner-container .logo {
        width: 80px
    }
}

@media only screen and (max-width:1200px) and (min-width:1024px) {
    body h1 {
        font: normal normal normal 36px/1.25em raleway,sans-serif
    }

    body main section.tagline.banner.d-flex {
        margin-bottom: 10px;
        padding: 0
    }

        body main section.tagline.banner.d-flex hr {
            margin: 5px auto
        }

    body main section.exc .item_wrapper .items .inrwrp {
        width: 450px
    }

        body main section.exc .item_wrapper .items .inrwrp .inr {
            width: 120px;
            height: 120px;
            margin-bottom: 10px
        }

            body main section.exc .item_wrapper .items .inrwrp .inr:hover h5 {
                transform: scale(1)
            }

    body main section.exc .item_wrapper.lg .inrwrp::after, body main section.exc .item_wrapper.bj .inrwrp::after {
        content: "";
        width: 120px;
        margin: 0 5px
    }

    body main section.inc.master .item_wrapper .items .inrwrp {
        max-width: 100%;
        padding: 0 20px;
        justify-content: center;
        height: 390px
    }

        body main section.inc.master .item_wrapper .items .inrwrp .inr {
            width: 120px;
            height: 120px
        }

            body main section.inc.master .item_wrapper .items .inrwrp .inr h5 {
                font-size: 12px;
                bottom: 10px
            }

            body main section.inc.master .item_wrapper .items .inrwrp .inr:hover h5 {
                transform: scale(1)
            }

    body main section.inc.master .item_wrapper.dj .inrwrp::after, body main section.inc.master .item_wrapper.aj .inrwrp::after {
        content: "";
        width: 120px
    }

    body main section.inc.master .item_wrapper.aj .inrwrp {
        height: 260px
    }

    body main section.thinner.prods .container {
        max-width: 992px;
        margin: 0 auto
    }

    body main section.thinner.prods .prod_wrapper .prod_items {
        margin-right: 50px;
        min-width: 285px
    }

        body main section.thinner.prods .prod_wrapper .prod_items:nth-child(3n) {
            margin-right: 0
        }
}

@media only screen and (max-width:1024px) {
    body header #slider-menu #wrapper .nav-content ul.sub-content .sub-menu, body header #myaccount-menu #wrapper .nav-content ul.sub-content .sub-menu, body header #slider-menu .wrapper .nav-content ul.sub-content .sub-menu, body header #myaccount-menu .wrapper .nav-content ul.sub-content .sub-menu {
        display: none
    }

    body header #slider-menu #wrapper .nav-content ul.sub-content li > a::after, body header #myaccount-menu #wrapper .nav-content ul.sub-content li > a::after, body header #slider-menu .wrapper .nav-content ul.sub-content li > a::after, body header #myaccount-menu .wrapper .nav-content ul.sub-content li > a::after {
        transform: rotate(0deg)
    }

    body header #slider-menu #wrapper .nav-content ul.sub-content li:hover > a::after, body header #myaccount-menu #wrapper .nav-content ul.sub-content li:hover > a::after, body header #slider-menu .wrapper .nav-content ul.sub-content li:hover > a::after, body header #myaccount-menu .wrapper .nav-content ul.sub-content li:hover > a::after {
        transform: rotate(0deg)
    }

    body header #slider-menu #wrapper .nav-content ul.sub-content li.open .sub-menu, body header #myaccount-menu #wrapper .nav-content ul.sub-content li.open .sub-menu, body header #slider-menu .wrapper .nav-content ul.sub-content li.open .sub-menu, body header #myaccount-menu .wrapper .nav-content ul.sub-content li.open .sub-menu {
        display: block
    }

    body header #slider-menu #wrapper .nav-content ul.sub-content li.open > a::after, body header #myaccount-menu #wrapper .nav-content ul.sub-content li.open > a::after, body header #slider-menu .wrapper .nav-content ul.sub-content li.open > a::after, body header #myaccount-menu .wrapper .nav-content ul.sub-content li.open > a::after {
        transform: rotate(-90deg)
    }

    body section {
        padding: 30px 10px
    }
    section.thinner.product-details.catalogs-iframe {
        padding: 60px 0;
    }

        body section.banner.prods, body section.banner.d-flex {
            min-height: 275px
        }

        body section.banner .carousel-item {
             min-height: 100vh; 
			 
			    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
        }

			    body section.banner .carousel-item video {
        object-fit: initial;
        width: 100%;
        height: auto;
    }

        body section.small-content {
            margin: 0px 0px
        }

        body section .carousel-indicators {
            width: 0
        }

        body section.inc.master .item_wrapper .items h2 {
            font-size: 22px
        }

    body main div.detXZoom .modal-dialog .imgContainer {
        margin-top: 65px
    }
}

@media only screen and (max-width:1023px) and (min-width:768px) {
	
    body .side-nav li {
        padding: 0 15px;
        font-size: 14px;
        font-weight: 600
    }

    body h1 {
        font: normal normal normal 36px/1.25em raleway,sans-serif
    }

    body main section.profile-dashboard {
        padding-top: 0
    }

    body main section.tagline {
        margin-bottom: 20px
    }

        body main section.tagline.banner.d-flex {
            padding: 0;
            min-height: 250px;
            margin-top: 100px;
            margin-bottom: 0px
        }

            body main section.tagline.banner.d-flex hr {
                margin: 5px auto
            }

    body main section.prods .container {
        margin: 0 auto;
        max-width: 900px
    }

        body main section.prods .container .prod_wrapper .prod_items {
            margin-right: 50px;
            width: 300px;
            margin-bottom: 75px
        }

            body main section.prods .container .prod_wrapper .prod_items:nth-child(2n) {
                margin-right: 0
            }

    body main section.product-details .details-description {
        padding-top: 0
    }

    body main section.product-details .links {
        font-size: 12px
    }

    body main section.showroom {
        min-height: 500px
    }

    body main section.exc .item_wrapper .items .inrwrp {
        width: 450px
    }

        body main section.exc .item_wrapper .items .inrwrp .inr {
            width: 120px;
            height: 120px;
            margin-bottom: 10px
        }

            body main section.exc .item_wrapper .items .inrwrp .inr:hover h5 {
                transform: scale(1)
            }

    body main section.exc .item_wrapper.lg .inrwrp::after, body main section.exc .item_wrapper.bj .inrwrp::after {
        content: "";
        width: 120px;
        margin: 0 5px
    }

    body main section.exc .four-col .item_wrapper {
        width: calc(50% - 15px)
    }

    body main section.inc.master .item_wrapper {
        width: 100%
    }

        body main section.inc.master .item_wrapper .items .inrwrp {
            max-width: 500px;
            padding: 0 20px;
            justify-content: center;
            height: 390px
        }

            body main section.inc.master .item_wrapper .items .inrwrp .inr {
                width: 120px;
                height: 120px
            }

                body main section.inc.master .item_wrapper .items .inrwrp .inr h5 {
                    font-size: 12px;
                    bottom: 10px
                }

                body main section.inc.master .item_wrapper .items .inrwrp .inr:hover h5 {
                    transform: scale(1)
                }

        body main section.inc.master .item_wrapper.dj .inrwrp::after, body main section.inc.master .item_wrapper.aj .inrwrp::after {
            content: "";
            width: 120px
        }

        body main section.inc.master .item_wrapper.aj .inrwrp {
            height: 260px
        }

    body main section.video-collection .instagram-media {
        height: 470px;
        width: 416px !important
    }

    body main section.video-collection .video-iframe {
        height: 280px;
        width: 510px !important
    }

    body main section.video-collection .s-videos {
        max-width: 432px;
        height: 540px
    }

        body main section.video-collection .s-videos.short {
            height: 236px !important
        }

        body main section.video-collection .s-videos.med {
            height: 420px !important
        }

    body .banner .carousel-item .details-banner-container.rolex {
        justify-content: flex-end !important;
        padding-bottom: 40px !important;
        width: 100%
    }

        body .banner .carousel-item .details-banner-container.rolex p {
            font-size: 1.5rem
        }

    body .banner .carousel-item .details-banner-container p {
        max-width: 100%;
        font-size: 1rem
    }
}

@media only screen and (max-width:991px) {
    body main section.video-collection .video-assemble .video-list {
        padding-left: 10px;
        padding-right: 10px
    }

    body main section .banner .carousel-item .details-banner-container p {
        max-width: 100%;
        font-size: 1.2rem
    }

        body main section .banner .carousel-item .details-banner-container p.description {
            font-size: .8rem;
            margin-top: 10px;
            padding-top: 10px;
            margin-bottom: 5px
        }
}

@media only screen and (min-width:768px) {
    .m-view {
        display: none
    }

    .menu_footer h3 a {
        /* cursor: default */
		 cursor: pointer;
    }

        .menu_footer h3 a:hover {
            text-decoration: none
        }
}

@media only screen and (max-width:768px) {
	.item_wrapper .items.cs h5 {
    left: 12px;
    right: 0;
    text-align: left;
    bottom: 45px;
}
#store-jewelry .details-info p, #store-search .details-info p {
    margin-bottom: 20px;
    line-height: 26px;
	    font-size: 16px;
}
#store-jewelry .no-products-text, #store-jewelry .details-info, #store-search .details-info{
  
    margin-bottom: 10px;
    margin-top: 100px;
	   
    
}

main#home-videocollection .video-collection .video-assemble {
    margin-bottom: 0;
}


    .d-view {
        display: none
    }

    body {
        padding-top: 75px
    }

        body .popover {
            width: 60%
        }

        body .side-nav {
            flex-wrap: wrap;
            justify-content: space-between
        }

            body .side-nav li {
                padding: 0 15px;
                font-size: 14px;
                font-weight: 600;
                margin: 6px 0
            }

        body .cta.icon {
            width: 50px;
            height: 50px;
            line-height: 53px
        }

        body header {
            height: 75px
        }

            body header .nav-link img {
                max-width: 80px
            }

            body header .mol {
                width: 165px
            }

                body header .mol ul li {
                    padding: 0 3px 0 0
                }

                    body header .mol ul li.announcement {
                        padding: 0 0 0 3px
                    }

                    body header .mol ul li #call-myaccount-menu .loggedin {
                        right: -5px
                    }

                    body header .mol ul li.scart .nos {
                        right: -5px
                    }

            body header .logo-container {
                text-align: right
            }

                body header .logo-container a.navbar-brand {
                    background-size: contain;
                    max-width: 200px;
                    width: 100%
                }

            body header #slider-menu #wrapper, body header #myaccount-menu #wrapper, body header #slider-menu .wrapper, body header #myaccount-menu .wrapper {
                padding-right: 0;
                padding-bottom: 50px
            }

                body header #slider-menu #wrapper .menu-header, body header #myaccount-menu #wrapper .menu-header, body header #slider-menu .wrapper .menu-header, body header #myaccount-menu .wrapper .menu-header {
                    margin-left: 70px;
                    margin-right: 20px
                }

                    body header #slider-menu #wrapper .menu-header .user-help-icon li .srhinput input, body header #myaccount-menu #wrapper .menu-header .user-help-icon li .srhinput input, body header #slider-menu .wrapper .menu-header .user-help-icon li .srhinput input, body header #myaccount-menu .wrapper .menu-header .user-help-icon li .srhinput input {
                        padding-left: 20px
                    }

                body header #slider-menu #wrapper .menu_footer, body header #myaccount-menu #wrapper .menu_footer, body header #slider-menu .wrapper .menu_footer, body header #myaccount-menu .wrapper .menu_footer {
                    padding-right: 20px;
                    padding-left: 25px
                }

                    body header #slider-menu #wrapper .menu_footer p, body header #myaccount-menu #wrapper .menu_footer p, body header #slider-menu .wrapper .menu_footer p, body header #myaccount-menu .wrapper .menu_footer p {
                        line-height: 20px;
                        margin-top: 10px;
                        margin-bottom: 0px
                    }

                    body header #slider-menu #wrapper .menu_footer h3 a, body header #myaccount-menu #wrapper .menu_footer h3 a, body header #slider-menu .wrapper .menu_footer h3 a, body header #myaccount-menu .wrapper .menu_footer h3 a {
                        position: relative
                    }

                        body header #slider-menu #wrapper .menu_footer h3 a:hover, body header #myaccount-menu #wrapper .menu_footer h3 a:hover, body header #slider-menu .wrapper .menu_footer h3 a:hover, body header #myaccount-menu .wrapper .menu_footer h3 a:hover {
                            text-decoration: none
                        }

                body header #slider-menu #wrapper .nav-content, body header #myaccount-menu #wrapper .nav-content, body header #slider-menu .wrapper .nav-content, body header #myaccount-menu .wrapper .nav-content {
                    padding-left: 70px;
                    padding-right: 20px
                }

                    body header #slider-menu #wrapper .nav-content ul.sub-content, body header #myaccount-menu #wrapper .nav-content ul.sub-content, body header #slider-menu .wrapper .nav-content ul.sub-content, body header #myaccount-menu .wrapper .nav-content ul.sub-content {
                        padding-left: 20px;
                        width: 100%
                    }

                        body header #slider-menu #wrapper .nav-content ul.sub-content:first-child, body header #myaccount-menu #wrapper .nav-content ul.sub-content:first-child, body header #slider-menu .wrapper .nav-content ul.sub-content:first-child, body header #myaccount-menu .wrapper .nav-content ul.sub-content:first-child {
                            margin-top: 22px
                        }

                        body header #slider-menu #wrapper .nav-content ul.sub-content li, body header #myaccount-menu #wrapper .nav-content ul.sub-content li, body header #slider-menu .wrapper .nav-content ul.sub-content li, body header #myaccount-menu .wrapper .nav-content ul.sub-content li {
                            width: 100%
                        }

                            body header #slider-menu #wrapper .nav-content ul.sub-content li:hover, body header #myaccount-menu #wrapper .nav-content ul.sub-content li:hover, body header #slider-menu .wrapper .nav-content ul.sub-content li:hover, body header #myaccount-menu .wrapper .nav-content ul.sub-content li:hover {
                                border-top: solid 1px transparent
                            }

                        body header #slider-menu #wrapper .nav-content ul.sub-content .sub-menu, body header #myaccount-menu #wrapper .nav-content ul.sub-content .sub-menu, body header #slider-menu .wrapper .nav-content ul.sub-content .sub-menu, body header #myaccount-menu .wrapper .nav-content ul.sub-content .sub-menu {
                            position: relative;
                            left: 0;
                            border: 0;
                            min-width: auto
                        }

                            body header #slider-menu #wrapper .nav-content ul.sub-content .sub-menu ul, body header #myaccount-menu #wrapper .nav-content ul.sub-content .sub-menu ul, body header #slider-menu .wrapper .nav-content ul.sub-content .sub-menu ul, body header #myaccount-menu .wrapper .nav-content ul.sub-content .sub-menu ul {
                                margin-left: 0;
                                padding-left: 0
                            }

            body header #myaccount-menu .wrapper {
                padding-bottom: 0
            }

        body#home header {
            background-color: #ffffff
        }

            body#home header::before {
                display: none
            }

            body#home header.trans {
                background-color: #efefef
            }

            body#home header .mol ul li.announcement .announcement-link.announcement-link-icon {
                background-image: url(../images/covid-19-d-icon.png)
            }

                body#home header .mol ul li.announcement .announcement-link.announcement-link-icon:hover {
                    background-color: transparent
                }

            body#home header .mol ul li a {
                background-color: #383838;
                color: #ffffff
            }

                body#home header .mol ul li a#call-side-menu > div {
                    background-color: #ffffff
                }

                body#home header .mol ul li a#call-side-menu:hover {
                    background-color: #ffffff
                }

                    body#home header .mol ul li a#call-side-menu:hover > div {
                        background-color: #383838 !important
                    }

                body#home header .mol ul li a:hover {
                    background-color: #ffffff;
                    color: #383838
                }

            body#home header .navbar-brand {
                background-image: url(../images/govindjis-logo2.png)
            }

        body h1 {
            font: normal normal normal 28px/1.25em raleway,sans-serif
        }

        body h3 {
            margin-bottom: 20px
        }

        body h4 {
            font-size: 1.25rem;
            margin-bottom: 30px
        }

            body h4.lg {
                font-size: 30px
            }

            body h4::after {
                width: 90%;
                left: 5%
            }

        body .banner .carousel-control-next img, body .banner .carousel-control-prev img {
            width: 20px !important
        }

        body main #site-alerts {
            width: 200px;
            margin-top: 1em
        }

            body main #site-alerts .icon-warning {
                padding: 5px 5px 5px 5px;
                margin: 0;
                font-size: 14px
            }

        body main section.profile-dashboard {
            padding-top: 0
        }

            body main section.profile-dashboard .tabs-container .order-history .order-details .details-info {
                flex-wrap: wrap;
                padding: 0
            }

                body main section.profile-dashboard .tabs-container .order-history .order-details .details-info .shipping-address h4, body main section.profile-dashboard .tabs-container .order-history .order-details .details-info .billing-address h4 {
                    font-size: 20px
                }

            body main section.profile-dashboard .tabs-container .order-history .order-details .products-table {
                padding-top: 0
            }

            body main section.profile-dashboard .tabs-container .order-history .order-details h3 {
                font-size: 24px
            }

            body main section.profile-dashboard .tabs-container .order-history .order {
                padding: 15px 15px 0
            }

                body main section.profile-dashboard .tabs-container .order-history .order .order-total {
                    text-align: left
                }

                    body main section.profile-dashboard .tabs-container .order-history .order .order-number .order-value, body main section.profile-dashboard .tabs-container .order-history .order .order-total .order-value {
                        font-size: 20px;
                        margin-bottom: 10px
                    }

        body main section.thinner {
            padding-top: 0
        }
        body main section.thinner.product-details.catalogs-iframe {
            padding-top: 0
        }

            body main section.thinner .det_col {
                padding-bottom: 50px
            }

                body main section.thinner .det_col h5 {
                    font-size: 20px;
                    margin-bottom: 20px
                }

        body main section.product-details .details-description {
            padding-top: 20px
        }

            body main section.product-details .details-description h6 {
                margin-bottom: 15px
            }

            body main section.product-details .details-description h2 {
                font-size: 22px
            }

            body main section.product-details .details-description P {
                font-size: 16px;
				padding: 0;
            }

        body main section.product-details .links {
            font-size: 12px;
            text-align: center
        }

        body main section.product-details .details-image {
            height: auto
        }

        body main section.product-details .lastcall {
            right: 0px;
            top: 0px
        }

        body main section.rol_page {
            margin-top: 0
        }

        body main section.tagline {
            margin-bottom: 30px !important
        }

            body main section.tagline.banner {
                min-height: 200px;
                margin-top: 0
            }

                body main section.tagline.banner hr {
                    margin: 10px auto
                }

                body main section.tagline.banner h3 {
                    font-size: 22px
                }

                body main section.tagline.banner.rol {
                    padding: 0;
                    min-height: 0;
                    margin: 0
                }

        body main section.showroom {
            min-height: 300px;
            margin-bottom: 0;
            padding-top: 0
        }

            body main section.showroom .m_cont {
                overflow: hidden;
                height: 300px;
                position: relative;
                float: left;
                width: 100%;
                margin-top: 35px
            }

            body main section.showroom .content_wrapper {
                top: 0
            }

                body main section.showroom .content_wrapper h4 {
                    font-size: 22px;
                    text-transform: uppercase;
                    color: #383838;
                    font-weight: 500
                }

        body main section.exc {
            padding: 0
        }

            body main section.exc .item_wrapper {
                width: 100%;
                display: flex;
                flex-wrap: wrap
            }

                body main section.exc .item_wrapper .items {
                    height: 350px;
                    order: 2
                }

                    body main section.exc .item_wrapper .items .inrwrp {
                        width: 375px
                    }

                        body main section.exc .item_wrapper .items .inrwrp .inr {
                            width: 100px;
                            height: 100px;
                            margin-bottom: 10px
                        }

                            body main section.exc .item_wrapper .items .inrwrp .inr:hover h5 {
                                transform: scale(1)
                            }

                body main section.exc .item_wrapper h3 {
                    order: 1;
                    margin: 0 0 5px;
                    font-size: 22px
                }

                body main section.exc .item_wrapper.lg .inrwrp::after {
                    content: "";
                    width: 100px;
                    margin: 0 5px
                }

            body main section.exc .four-col .item_wrapper, body main section.exc .two-col .item_wrapper {
                width: 100%
            }

        body main section.inc {
            padding: 0
        }

            body main section.inc.master {
                margin-bottom: 50px
            }

                body main section.inc.master .item_wrapper {
                    width: 100%;
                    height: 460px;
                    overflow: visible;
                    margin-bottom: 50px
                }

                 /*   body main section.inc.master .item_wrapper .items h2 {
                        bottom: auto !important;
                        top: 0 !important;
                        margin: 0 !important;
                        text-align: left !important
                    } */
					
					body main section.inc.master .item_wrapper .items h2 {
        bottom: 45px !important;
        top: auto !important;
        margin: 0 !important;
        text-align: center !important;
        padding-right: 0;
    }

                    body main section.inc.master .item_wrapper .items .imgDiv {
                        height: 410px;
                        margin-top: 45px
                    }

                    body main section.inc.master .item_wrapper .items .inrwrp {
                        max-width: 375px;
                        padding: 0 20px;
                        justify-content: center;
                        height: 335px;
                        margin: 45px 0 0 !important
                    }

                        body main section.inc.master .item_wrapper .items .inrwrp .inr {
                            width: 100px;
                            height: 100px
                        }

                            body main section.inc.master .item_wrapper .items .inrwrp .inr h5 {
                                font-size: 12px;
                                bottom: 10px
                            }

                            body main section.inc.master .item_wrapper .items .inrwrp .inr:hover h5 {
                                transform: scale(1)
                            }

                    body main section.inc.master .item_wrapper.dj .inrwrp::after, body main section.inc.master .item_wrapper.aj .inrwrp::after {
                        content: "";
                        width: 100px
                    }

                    body main section.inc.master .item_wrapper.aj .inrwrp {
                        height: 220px
                    }

        body .shopping-items .items {
            flex-wrap: wrap;
            padding-bottom: 20px
        }

            body .shopping-items .items .prod-det {
                order: 4;
                width: 100%;
                padding: 30px 0 0
            }

            body .shopping-items .items .prod-qty p {
                margin-top: 0;
                line-height: 1
            }

            body .shopping-items .items .prod-price {
                width: 20%
            }

                body .shopping-items .items .prod-price h6 {
                    display: none
                }

                body .shopping-items .items .prod-price p {
                    line-height: 1
                }

        body .items-total {
            width: 100%
        }

        body .buttons {
            margin-bottom: 0;
            padding-right: 0;
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start
        }

            body .buttons a {
                text-align: center;
                order: 2;
                margin-left: auto !important;
                margin-right: auto !important
            }

            body .buttons .cbtn {
                margin: 0 0 30px;
                order: 1;
                width: 100%
            }

        body .mediaModel .modal-dialog {
            top: 70px;
            transform: translateY(0) !important
        }

        body #YTVideo .modal-dialog {
            width: 85%;
            left: 5%
        }

            body #YTVideo .modal-dialog .modal-content .modal-body iframe {
                height: 220px
            }

        body #FBVideo .modal-dialog {
            width: 85%;
            left: 5%
        }

            body #FBVideo .modal-dialog .modal-content .modal-body {
                padding: 0
            }

                body #FBVideo .modal-dialog .modal-content .modal-body iframe {
                    height: 450px;
                    overflow: hidden
                }

        body #INVideo .modal-dialog {
            width: 85%;
            left: 5%
        }

            body #INVideo .modal-dialog .modal-content .modal-body {
                padding: 0
            }

                body #INVideo .modal-dialog .modal-content .modal-body iframe {
                    width: 100%;
                    height: 373px
                }

        body #live-container #cartier-page-container .cartier-frontpage-product-square .cartier-header-center .cartier-header-center-title {
            font-size: 16px
        }

        body #live-container #cartier-page-container .cartier-plp-filter-container {
            height: auto
        }

    footer {
        text-align: center
    }

        footer a:not(.nodec)::before {
            left: 0 !important;
            max-width: 100% !important
        }

        footer .addr-blc, footer .socal-blc {
            margin: 0
        }

            footer .addr-blc p, footer .socal-blc p {
                text-align: center !important
            }

        footer .addr-blc {
            margin-top: 20px
        }

        footer .ph-bloc {
            padding-top: 0
        }

        footer .social-media ul {
            margin-top: 10px
        }

        footer .sub-f p {
            margin-bottom: 10px
        }

        footer .sub-f .copyr, footer .sub-f .devby {
            -ms-flex: 0 0 50%;
            flex: 0 0 50%;
            max-width: 50%
        }

        footer .sub-f .copyr {
            text-align: left !important
        }

    .sr-popup, .sr-popup-mailing {
        max-width: 350px
    }

    .banner .carousel-item .details-banner-container.rolex {
        justify-content: flex-end !important;
        padding-bottom: 30px !important;
        width: 100%
    }

        .banner .carousel-item .details-banner-container.rolex p {
            font-size: 1.3rem
        }

    .banner .carousel-item .details-banner-container p {
        max-width: 100%;
        font-size: 1rem
    }

    .missionvid {
        padding: 70px 0px 200px 0px !important
    }

        .missionvid .container {
            width: 100% !important
        }
}
@media only screen and (min-width: 1920px) {
	/* .banner .carousel-item img{ */
		/* height:1080px; */
	/* } */
	.banner .carousel-control-prev, .banner .carousel-control-next{
	    height: calc(100% - 10px) !important;
}

}
@media only screen and (max-width:575px) {
    .banner .carousel-item .details-banner-container p {
        max-width: 100%;
        font-size: .8rem
    }
	.banner .carousel-control-prev, .banner .carousel-control-next{
	    height: calc(100% - 0px) !important;
}
    .banner .carousel-item .details-banner-container .cbtn-dark {
        height: 30px;
        line-height: 30px;
        font-size: .8rem
    }

    .banner .carousel-item .details-banner-container .logo {
        width: 45px
    }
}

@media only screen and (max-width:480px) {
    body header #slider-menu #wrapper .menu_footer p, body header #myaccount-menu #wrapper .menu_footer p, body header #slider-menu .wrapper .menu_footer p, body header #myaccount-menu .wrapper .menu_footer p {
        font-size: 11px
    }

    body header #slider-menu #wrapper .menu_footer .contact-info, body header #myaccount-menu #wrapper .menu_footer .contact-info, body header #slider-menu .wrapper .menu_footer .contact-info, body header #myaccount-menu .wrapper .menu_footer .contact-info {
        width: 100%
    }
    body main section.inc.master .item_wrapper .items .inrwrp .inr {
        width: 80px !important;
        height: 85px;
    }
    body header #slider-menu #wrapper .menu_footer .cbtn, body header #myaccount-menu #wrapper .menu_footer .cbtn, body header #slider-menu .wrapper .menu_footer .cbtn, body header #myaccount-menu .wrapper .menu_footer .cbtn {
        width: 100%;
        margin: 20px 0 40px
    }

    body footer .socal-blc {
        margin-top: 3rem
    }

    body footer .d-flex {
        flex-wrap: wrap;
        justify-content: center !important
    }

        body footer .d-flex .social-media {
            order: 1;
            width: 100%
        }

            body footer .d-flex .social-media ul {
                padding: 0;
                margin-bottom: 20px
            }

                body footer .d-flex .social-media ul li:first-child {
                    margin-left: 0
                }

            body footer .d-flex .social-media.facetime-absolute {
                position: absolute;
                top: -200px
            }

        body footer .d-flex .nodec {
            order: 2
        }

    body .banner .carousel-item .details-banner-container.rolex {
        justify-content: flex-end !important;
        padding-bottom: 20px !important;
        width: 100%
    }

        body .banner .carousel-item .details-banner-container.rolex p {
            font-size: 1.2rem
        }

    body main section.search-list .dropdown-menu {
        width: 98%;
        min-width: auto !important
    }

        body main section.search-list .dropdown-menu li {
            line-height: 30px;
            padding: 5px 15px
        }

            body main section.search-list .dropdown-menu li a {
                white-space: normal !important
            }

    body main section.accordion input[type="checkbox"] + label + section article {
        padding: 0 0 40px
    }

    body main section .items-total {
        margin-top: 50px !important
    }

    body main section .buttons {
        top: 0 !important
    }

    body main section #cardExpiryMonth {
        margin-bottom: 15px
    }

    body main section.tagline {
        padding: 100px 0
    }

        body main section.tagline h1 {
            font: normal normal normal 24px/1.25em raleway,sans-serif;
            padding: 0 10px
        }

        body main section.tagline.banner h1 {
            font: normal normal normal 30px/1.25em raleway,sans-serif
        }

        body main section.tagline.banner.pagennotfound, body main section.tagline.banner.outofstock {
            background-position: 0 center
        }

        body main section.tagline.banner.privacy {
            background-position: right 0
        }

         body main section.tagline.banner.d-flex::before { 
             background-color: rgba(0,0,0,0.4)
         }
 body main section.tagline.banner.prods.d-flex::before, body main section.tagline.banner.brand.d-flex::before  { 
             background-color: transparent;
         }
        /* body main section.tagline.banner.d-flex h1, body main section.tagline.banner.d-flex h3 { */
            /* color: #ffffff !important */
        /* } */
		
		body main section.tagline.banner.d-flex.prods::before, body main section.tagline.banner.d-flex.brand::before {
        background-color: transparent;
    }
	 body main section.tagline.banner.d-flex h1, body main section.tagline.banner.d-flex h3 { 
             color: #383838 !important;
        }

        body main section.tagline.banner.d-flex hr {
            border: solid 1px #ffffff !important
        }

    body main section.inc.master .item_wrapper .items .inrwrp {
        max-width: 100%;
        padding: 0
    }

    body main section.thinner.faqs .col-md-5 {
        padding-right: 15px;
        padding-bottom: 0
    }

    body main section.thinner .det_col .vids .video-iframe {
        height: 215px
    }

    body main section.thinner.vid-det h3 {
        text-align: center
    }

    body main section.thinner.vid-det .vids {
        max-width: 90%
    }

    body main section.prods .container {
        max-width: 100%;
        margin: 0
    }

        body main section.prods .container .prod_wrapper .prod_items {
            width: 100%;
            margin-right: 0;
            min-width: auto
        }
    button#passage-submit, div#pay-now {
        width: 100% !important;
    }
    button#passage-submit {
        width: 100%;
        font-size: 19px;
    }
    section.profile-dashboard .tabs-container .order-history .order-details .details-info .shipping-address, section.profile-dashboard .tabs-container .order-history .order-details .details-info .billing-address {
        min-width: 77% !important;
    }
	  /* body section.banner .carousel-item { */
            /* min-height: 700px;			  */
			   /* max-height:100vh; */
        /* } */
		/* .banner .carousel-item img{ */
	        /* height: 100vh; */
        /* object-fit: fill; */
/* } */
/* .carousel-inner{ */
	/* height:590px; */
/* } */

.banner .carousel-item img, .carousel-inner{
	
	    /* height: calc(100vh - 132px) !important; */
}
/* body section.banner .carousel-item{ */
	/* min-height:590px; */
/* } */
.banner .carousel-control-prev, .banner .carousel-control-next{
	    height: calc(100% - 0px);
}
    body section.banner .carousel-item {
        min-height: auto;
       
        height: auto;
    }
	.carousel-inner { 
         height:auto;
    } 
}
/* Targets iPhones in portrait & landscape */
@media only screen 
    and (max-device-width: 812px)  /* Covers up to iPhone X/11 Pro */
    and (-webkit-min-device-pixel-ratio: 3) /* Retina screens */
    and (hover: none) /* Ensures touch devices (excludes iPads) */
{
    /* iPhone-only CSS */
    .banner .carousel-item img, .carousel-inner{
	    /* height: calc(100vh - 150px) !important; */
}
.carousel-inner{
	height:590px;
}
}
@media only screen and (max-width:500px) {
    #live-container #cartier-page-container .cartier-frontpage-product-square {
        width: 100%
    }

        #live-container #cartier-page-container .cartier-frontpage-product-square .cartier-header-center .cartier-header-center-title {
            font-size: 13px
        }
}

@media only screen and (max-width:410px) {
    body header .mol {
        padding-left: 5px
    }

        body header .mol ul li, body header .mol ul li.announcement {
            padding: 0
        }

    body header .logo-container {
        text-align: right;
        margin-top: 5px;
        padding-right: 5px
    }

    body main section.tagline {
        padding: 50px 0
    }

        body main section.tagline h1 {
            font: normal normal normal 22px/1.25em raleway,sans-serif;
            padding: 0 10px
        }

    body .banner .carousel-item .details-banner-container.rolex {
        justify-content: flex-end !important;
        padding-bottom: 14px !important;
        width: 100%
    }

        body .banner .carousel-item .details-banner-container.rolex p {
            font-size: 1.2rem
        }
    .details-description select#bracelet-sizes {
        width: 180px;
    }

    .details-description .form-group.col-md-12 label {
        width: 127px;
    }

    .details-description span#bracelet-error {
        font-size: 13px;
    }
}

.accordion {
    margin-bottom: 50px
}

    .accordion input[type="checkbox"] {
        display: none
    }

        .accordion input[type="checkbox"] + label {
            text-align: center;
            font-size: 20px;
            padding: 40px 0;
            display: block;
            font-weight: 500;
            margin: 0;
            text-transform: uppercase;
            opacity: .5
        }

            .accordion input[type="checkbox"] + label span {
                width: 30px;
                height: 30px;
                margin-right: 10px;
                border-radius: 50%;
                background-color: #383838;
                color: #ffffff;
                text-align: center;
                font-family: Lato,sans-serif;
                line-height: 28px;
                font-size: 22px;
                display: inline-block;
                position: relative;
                top: -3px
            }

            .accordion input[type="checkbox"] + label + section {
                max-height: 0;
                overflow: hidden;
                padding: 0;
                border-bottom: solid 1px #dddddd;
                transition: all .45s ease-in-out
            }

                .accordion input[type="checkbox"] + label + section article {
                    padding: 40px 0
                }

                .accordion input[type="checkbox"] + label + section.cards-list article {
                    text-align: center
                }

                    .accordion input[type="checkbox"] + label + section.cards-list article ul {
                        list-style: none
                    }

                .accordion input[type="checkbox"] + label + section.payment-form form .form-group:last-child {
                    margin-bottom: 0;
                    padding-bottom: 0
                }

                .accordion input[type="checkbox"] + label + section.payment-form form .form-group .buttons {
                    padding-bottom: 0;
                    top: 120px;
                    position: relative
                }

        .accordion input[type="checkbox"]:checked + label {
            opacity: 1
        }

            .accordion input[type="checkbox"]:checked + label + section {
                max-height: 2000px;
                padding-bottom: 0;
                overflow: visible
            }

    .accordion .shopping-items {
        padding: 0;
        border: 0
    }

        .accordion .shopping-items .items {
            margin-bottom: 4
        }

            .accordion .shopping-items .items:last-child {
                border-bottom: 0
            }

            .accordion .shopping-items .items .prod-det {
                text-align: left
            }

    .accordion .items-total {
        margin-top: 150px
    }

.addr-popup {
    position: fixed;
    width: 100%;
    height: auto;
    padding: 80px 0 50px;
    max-height: 100%;
    left: 0%;
    top: 0%;
    background-color: rgba(255,255,255,0.94);
    display: none;
    z-index: 999;
    overflow-y: scroll
}

    .addr-popup .popup_close {
        right: 1rem;
        left: auto
    }

    .addr-popup.show {
        display: block
    }

section.profile-dashboard article {
    max-width: 100%
}

section.profile-dashboard .tabs-container {
    margin: 0
}

    section.profile-dashboard .tabs-container .order-history {
        max-width: 100%
    }

        section.profile-dashboard .tabs-container .order-history label::before {
            content: 'View '
        }

        section.profile-dashboard .tabs-container .order-history ul {
            list-style: none;
            margin: 0;
            padding: 0
        }

            section.profile-dashboard .tabs-container .order-history ul li {
                margin: 0;
                padding: 0
            }

        section.profile-dashboard .tabs-container .order-history .order {
            border: solid 1px #dddddd;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            overflow: hidden;
            justify-content: space-between;
            padding: 40px 40px 0;
            transition: .3s ease-in-out;
            margin-bottom: 40px
        }

            section.profile-dashboard .tabs-container .order-history .order h4::after {
                display: none !important
            }

            section.profile-dashboard .tabs-container .order-history .order .order-number, section.profile-dashboard .tabs-container .order-history .order .order-total {
                -webkit-flex: 1 0 50%;
                -ms-flex: 1 0 50%;
                flex: 1 0 50%
            }

                section.profile-dashboard .tabs-container .order-history .order .order-number .order-title, section.profile-dashboard .tabs-container .order-history .order .order-total .order-title {
                    color: #383838;
                    font-size: 18px;
                    margin: 0 0 15px
                }

                section.profile-dashboard .tabs-container .order-history .order .order-number .order-value, section.profile-dashboard .tabs-container .order-history .order .order-total .order-value {
                    font-size: 26px;
                    font-family: Lato,sans-serif
                }

                section.profile-dashboard .tabs-container .order-history .order .order-number .state, section.profile-dashboard .tabs-container .order-history .order .order-total .state {
                    font-size: 16px
                }

                    section.profile-dashboard .tabs-container .order-history .order .order-number .state.delivered span, section.profile-dashboard .tabs-container .order-history .order .order-total .state.delivered span {
                        color: #099c1a;
                        font-weight: 500
                    }

                    section.profile-dashboard .tabs-container .order-history .order .order-number .state.pending span, section.profile-dashboard .tabs-container .order-history .order .order-total .state.pending span {
                        color: #f5a623;
                        font-weight: 500
                    }

            section.profile-dashboard .tabs-container .order-history .order .order-total {
                text-align: right
            }

        section.profile-dashboard .tabs-container .order-history label {
            font-size: 18px;
            font-size: 1.125rem;
            line-height: 20px;
            line-height: 1.25rem;
            border-top: 1px solid #dddddd;
            color: #383838;
            cursor: pointer;
            -webkit-flex: 1 0 100%;
            -ms-flex: 1 0 100%;
            flex: 1 0 100%;
            letter-spacing: .096em;
            max-height: 75px;
            padding: 25px 0
        }

        section.profile-dashboard .tabs-container .order-history .order-details {
            max-height: 0;
            transition: max-height .3s ease,opacity .3s ease;
            width: 100%
        }

            section.profile-dashboard .tabs-container .order-history .order-details h3 {
                font-size: 26px;
                text-transform: uppercase
            }

            section.profile-dashboard .tabs-container .order-history .order-details h4 {
                font-size: 24px;
                text-transform: uppercase;
                margin: 0
            }

                section.profile-dashboard .tabs-container .order-history .order-details h4::after {
                    display: none
                }

            section.profile-dashboard .tabs-container .order-history .order-details .products-table {
                padding: 0
            }

            section.profile-dashboard .tabs-container .order-history .order-details .shopping-items .items:hover {
                background-color: #fff !important
            }

            section.profile-dashboard .tabs-container .order-history .order-details .details-info {
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex;
                -webkit-justify-content: flex-start;
                -ms-flex-pack: start;
                justify-content: flex-start;
                padding: 45px 0 80px
            }

                section.profile-dashboard .tabs-container .order-history .order-details .details-info .shipping-address, section.profile-dashboard .tabs-container .order-history .order-details .details-info .billing-address {
                    min-width: 365px
                }

                    section.profile-dashboard .tabs-container .order-history .order-details .details-info .shipping-address p, section.profile-dashboard .tabs-container .order-history .order-details .details-info .billing-address p {
                        margin-bottom: 2px
                    }

                        section.profile-dashboard .tabs-container .order-history .order-details .details-info .shipping-address p:last-child, section.profile-dashboard .tabs-container .order-history .order-details .details-info .billing-address p:last-child {
                            margin-top: 15px;
                            font-style: italic
                        }

                    section.profile-dashboard .tabs-container .order-history .order-details .details-info .shipping-address h4, section.profile-dashboard .tabs-container .order-history .order-details .details-info .billing-address h4 {
                        font-size: 24px;
                        text-transform: capitalize;
                        margin-bottom: 30px
                    }

                        section.profile-dashboard .tabs-container .order-history .order-details .details-info .shipping-address h4::after, section.profile-dashboard .tabs-container .order-history .order-details .details-info .billing-address h4::after {
                            display: none
                        }

            section.profile-dashboard .tabs-container .order-history .order-details .items-total .items .prod-price p {
                line-height: 1.3
            }

        section.profile-dashboard .tabs-container .order-history [type="checkbox"] {
            display: none
        }

            section.profile-dashboard .tabs-container .order-history [type="checkbox"]:checked + .order label {
                color: #171717
            }

                section.profile-dashboard .tabs-container .order-history [type="checkbox"]:checked + .order label::before {
                    content: 'Hide '
                }

                section.profile-dashboard .tabs-container .order-history [type="checkbox"]:checked + .order label i::before {
                    content: '\f106'
                }

            section.profile-dashboard .tabs-container .order-history [type="checkbox"]:checked + .order .order-details {
                max-height: 5000px
            }

#home-videocollection {
    overflow-x: hidden
}

.mediaModel .modal-dialog {
    top: 50%;
    transform: translateY(-50%) !important
}

    .mediaModel .modal-dialog .popup_close {
        position: absolute;
        left: 100%;
        z-index: 99;
        top: -20px;
        margin-left: -20px
    }

    .mediaModel .modal-dialog .modal-content {
        background: transparent;
        border-radius: 0;
        border: 0
    }

        .mediaModel .modal-dialog .modal-content .modal-body {
            padding: 0 !important
        }

            .mediaModel .modal-dialog .modal-content .modal-body iframe {
                background-color: transparent !important
            }

.video-collection h3 + p {
    margin-top: 20px;
    padding-right: 50px
}

.video-collection .video-assemble {
    margin-bottom: 80px
}

    .video-collection .video-assemble .video-category p, .video-collection .video-assemble .video-subcategory p {
        font-size: 2rem
    }

    .video-collection .video-assemble .video-list {
        padding-left: 60px;
        padding-right: 60px
    }

    .video-collection .video-assemble .vids {
        margin-bottom: 60px;
        width: 100%;
        flex: 1
    }

        .video-collection .video-assemble .vids img {
            margin-bottom: 15px;
            border: solid 1px #f1f1f1
        }

        .video-collection .video-assemble .vids p {
            font-size: 1rem;
            text-transform: none;
            margin: initial;
            padding-bottom: initial;
            line-height: normal
        }

    .video-collection .video-assemble .video-iframe {
        width: 100%;
        height: 390px;
        margin-bottom: 20px
    }

    .video-collection .video-assemble .s-videos {
        width: 100%;
        max-width: 540px;
        height: 540px;
        margin-bottom: 20px
    }

    .video-collection .video-assemble .instagram-media {
        height: 594px
    }

#YTVideo .modal-dialog {
    max-width: 95%;
    width: 1000px
}

    #YTVideo .modal-dialog .modal-content .modal-body {
        padding: 0
    }

        #YTVideo .modal-dialog .modal-content .modal-body iframe {
            width: 1000px;
            max-width: 100%;
            height: 500px
        }

#FBVideo .modal-dialog {
    max-width: 95%;
    width: 540px
}

    #FBVideo .modal-dialog .modal-content .modal-body {
        padding: 0
    }

        #FBVideo .modal-dialog .modal-content .modal-body iframe {
            width: 540px;
            max-width: 100%;
            height: 675px
        }

#INVideo .modal-dialog {
    max-width: 95%;
    width: 540px
}

    #INVideo .modal-dialog .modal-content .modal-body {
        padding: 0
    }

        #INVideo .modal-dialog .modal-content .modal-body iframe {
            width: 540px;
            height: 594px
        }

.missionvid {
    padding: 100px 0px 200px 0px
}

    .missionvid .container {
        width: 70%
    }

        .missionvid .container .vids a {
            width: 55%
        }

            .missionvid .container .vids a img {
                width: 100%
            }

.spinner-border {
    display: inline-block;
    width: 24px;
    margin-top: 10px;
    margin-left: 10px;
    height: 24px;
    vertical-align: text-bottom;
    border: 3px solid #383838;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spin .75s linear infinite;
    animation: spin .75s linear infinite
}

    .spinner-border.spinner-border-lg {
        width: 50px;
        height: 50px
    }

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg)
    }
}

.form-control-style {
    border-radius: 0;
    border: solid 1px #dddddd;
    font-size: 16px;
    padding: .375rem .75rem
}

    .form-control-style::placeholder {
        font-size: 14px;
        opacity: .5
    }

    .form-control-style:focus {
        outline: none;
        border: solid 1px #dddddd;
        box-shadow: 0 0 0 3px #dddddd
    }

.rolex-icon {
    padding: 0;
    height: 71px;
    margin-left: auto;
    margin-right: auto;
    width: 150px
}

    .rolex-icon.header-item {
        margin-right: 0
    }

.danger {
    color: red
}

    .danger.icon-warning {
        margin: 2rem
    }

.error {
    color: red
}

.form-group-captcha {
    top: -20px;
    position: relative
}

    .form-group-captcha .captcha-container {
        margin-bottom: 0
    }

        .form-group-captcha .captcha-container .refcpt {
            position: absolute;
            left: 215px;
            top: 45px
        }

        .form-group-captcha .captcha-container #CaptchaInputText {
            border-radius: 0;
            border: solid 1px #dddddd;
            font-size: 16px;
            padding: .375rem .75rem
        }

            .form-group-captcha .captcha-container #CaptchaInputText::placeholder {
                font-size: 14px;
                opacity: .5
            }

            .form-group-captcha .captcha-container #CaptchaInputText:focus {
                outline: none;
                border: solid 1px #dddddd;
                box-shadow: 0 0 0 3px #dddddd
            }

.validation-summary-errors {
    color: red;
    font-size: 16px
}

    .validation-summary-errors li {
        font-size: 16px
    }

.no-bullets ul {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.upload-div input {
    cursor: pointer
}

#facetime.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    padding: 80px 0 50px;
    max-height: 100%;
    left: 0%;
    top: 0%;
    background-color: rgba(255,255,255,0.94);
    display: none;
    z-index: 999;
    overflow-y: scroll
}

    #facetime.overlay .popup_close {
        right: 1rem;
        left: auto
    }

    #facetime.overlay.show {
        display: block
    }

#title-category {
    overflow: hidden;
    text-overflow: ellipsis
}

.field-validation-error:before {
    font-family: "Font Awesome 5 Free";
    content: "\f06a";
    display: inline-block;
    font-weight: 900;
    margin-right: 10px;
    font-size: 1rem
}

.item-outofstock {
    margin-top: 30px;
    font-weight: bold
}

#showroomSlider .carousel-indicators li:after {
    transition: none
}

#showroomSlider .carousel-control-prev, #showroomSlider .carousel-control-next {
    width: 15%
}

.simplePopup {
    display: none;
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    border: 1px solid #d6d6d6;
    background: #fff;
    z-index: 6;
    padding: 12px;
    width: 800px;
    min-width: unset;
    text-align: center;
    max-height: calc(100vh - 70px);
    z-index: 101;
    max-width: 90%
}

    .simplePopup img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        max-height: calc(100vh - 110px)
    }

    .simplePopup .simplePopupClose {
        float: right;
        cursor: pointer;
        margin-left: 10px;
        margin-bottom: 10px;
        position: absolute;
        right: 20px;
        top: 20px;
        font-weight: lighter;
        font-size: 20px;
        font-family: 'Raleway',sans-serif;
        z-index: 1;
        background: url(../images/360/assets/close.png) no-repeat;
        width: 32px;
        height: 32px;
        content: "";
        font-size: 0
    }

.simplePopupBackground {
    display: none;
    background: #000;
    height: 100%;
    width: 100%;
    top: 50%;
    z-index: 100
}

#fullscreen {
    cursor: pointer;
    background-image: url(../images/360/assets/fullscreen.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    transition: all 150ms ease-out
}

    #fullscreen:hover {
        transform: scale(1.2, 1.2)
    }

#view360 {
    cursor: pointer;
    background-image: url(../images/360/assets/360-icon.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 45px;
    height: 30px;
    transition: all 150ms ease-out
}

    #view360:hover {
        transform: scale(1.2, 1.2)
    }

.item-full-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    box-shadow: none
}

.announcement-popup, .facetime-popup {
    position: fixed;
    width: 70%;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    display: none;
    z-index: 999;
    box-shadow: 0 8px 12px rgba(0,0,0,0.5)
}

    .announcement-popup.show, .facetime-popup.show {
        display: block
    }

    .announcement-popup .popup_close, .facetime-popup .popup_close {
        position: absolute;
        left: 100%;
        z-index: 99;
        top: -20px;
        margin-left: -20px
    }

    .announcement-popup .announcement-content, .facetime-popup .announcement-content, .announcement-popup .facetime-content, .facetime-popup .facetime-content {
        max-height: 80vh;
        overflow: auto
    }

.facetime-popup {
    width: 50%
}

.detXZoom {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    opacity: 0;
    display: none
}

    .detXZoom.show {
        display: block;
        opacity: 1
    }

    .detXZoom .modal-dialog {
        max-width: 800px;
        width: 100%;
        height: 800px;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%) !important;
        margin: 0 auto;
        max-height: calc(100vh - 40px)
    }

        .detXZoom .modal-dialog .modal-content {
            border: 0;
            background-color: transparent
        }

        .detXZoom .modal-dialog .imgContainer {
            max-height: calc(100vh - 40px);
            width: 100%;
            margin-top: 0px;
            overflow: hidden
        }

            .detXZoom .modal-dialog .imgContainer img {
                max-height: 100vh
            }

        .detXZoom .modal-dialog .modal-body {
            padding: 0;
            text-align: center
        }

body.freeze {
    position: fixed
}

.close_detXZoom {
    right: 15px;
    left: auto;
    top: 15px;
    z-index: 9999
}

body .detXZoom .modal-dialog .imgContainer .zoomWrapper img {
    max-height: none;
    max-width: none
}

.privacypolicy .rolex-lnk-gold {
    color: #e3ac3f !important
}

@media only screen and (max-width:767px) {
    body main section.search-list {
        padding: 60px 0 0
    }

    body main section .prod_wrapper {
        padding-top: 60px
    }

    body main .lastcall {
        width: 45px;
        height: 45px;
        right: -15px;
        top: -15px
    }

    body main #lnlProceedCheckout {
        padding: 0
    }

    body .banner .carousel-control-prev .fa, body .banner .carousel-control-next .fa {
        font-size: 50px;
        color: #fff
    }

    .announcement-popup, .facetime-popup {
        width: 90%
    }

    .simplePopup {
        width: 90%;
        min-width: 90%;
        margin-left: -2%
    }
}

@media only screen and (max-width:360px) {
    .simplePopup {
        margin-left: -3%
    }

    #view360 {
        width: 35px;
        height: 30px
    }

    #fullscreen {
        width: 28px;
        height: 28px
    }

    .prod-details .share-links {
        height: 55px
    }

        .prod-details .share-links .share-container {
            width: 100px
        }

            .prod-details .share-links .share-container .share-popup {
                margin: 0 0 5px 0
            }
}

@media only screen and (min-width:768px) {
    body main#company-thankyou section.thinner, body main#home-thankyou section.thinner {
        min-height: 265px
    }
}

@media (hover:none) {
    .share-links.imgs .share-container {
        transform: translate(-5px, -30px);
        -webkit-transform: translate(-5px, -30px);
        -o-transform: translate(-5px, -30px);
        -moz-transform: translate(-5px, -30px)
    }
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: local('Lato Hairline'),local('Lato-Hairline'),url(https://fonts.gstatic.com/s/lato/v17/S6u8w4BMUTPHh30AXC-q.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Lato Light'),local('Lato-Light'),url(https://fonts.gstatic.com/s/lato/v17/S6u9w4BMUTPHh7USSwiPGQ.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Lato Regular'),local('Lato-Regular'),url(https://fonts.gstatic.com/s/lato/v17/S6uyw4BMUTPHjx4wXg.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Lato Bold'),local('Lato-Bold'),url(https://fonts.gstatic.com/s/lato/v17/S6u9w4BMUTPHh6UVSwiPGQ.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local('Lato Black'),local('Lato-Black'),url(https://fonts.gstatic.com/s/lato/v17/S6u9w4BMUTPHh50XSwiPGQ.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: local('Raleway'),url(https://fonts.gstatic.com/s/raleway/v17/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: local('Raleway'),url(https://fonts.gstatic.com/s/raleway/v17/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Raleway'),url(https://fonts.gstatic.com/s/raleway/v17/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Raleway'),url(https://fonts.gstatic.com/s/raleway/v17/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Raleway'),url(https://fonts.gstatic.com/s/raleway/v17/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Raleway'),url(https://fonts.gstatic.com/s/raleway/v17/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Raleway'),url(https://fonts.gstatic.com/s/raleway/v17/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: local('Raleway'),url(https://fonts.gstatic.com/s/raleway/v17/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local('Raleway'),url(https://fonts.gstatic.com/s/raleway/v17/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD
}

html {
    height: 100%;
    scroll-behavior: smooth
}

body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: #383838;
    font-family: Raleway,sans-serif;
    display: flex;
    flex-direction: column
}

    body.overflow-y {
        overflow: hidden !important;
        padding-right: 17px
    }

    body .container {
        max-width: 1808px;
        width: auto;
        margin-left: auto;
        margin-right: auto
    }

    body img {
        max-width: 100%
    }

        body img.right-align {
            float: right
        }

        body img.left-align {
            float: left
        }

    body .graybg {
        background-color: #F8F8F8
    }

    body h1, body h2, body h3, body h4, body h5, body h6 {
        margin: 0;
        padding: 0
    }

    body h1 {
        text-transform: uppercase;
        font: normal normal normal 52px/1.25em raleway,sans-serif;
        letter-spacing: normal;
        line-height: 1.25em;
        visibility: inherit
    }

    body h2 {
        font-size: 30px;
        font-weight: 500;
        color: #383838;
        line-height: 1.25em
    }

    body h3 {
        font-size: 26px;
        font-weight: 500;
        color: #383838;
        line-height: 1.5em
    }

    body h4 {
        font-size: 34px;
        position: relative;
        text-align: center;
        text-transform: uppercase;
        display: inline-block;
        width: auto;
        margin: 0 auto 60px;
        padding-bottom: 15px
    }

        body h4.lg {
            font-size: 45px
        }

        body h4::after {
            position: absolute;
            bottom: 0;
            width: 150%;
            border-bottom: solid 1px #383838;
            content: '';
            left: -25%
        }

    body h6 {
        font-size: 16px
    }

    body .nfont {
        font-family: Lato,sans-serif !important
    }

    body .hide {
        display: none !important
    }

    body p {
        font-size: 18px;
        line-height: 36px;
        margin-bottom: 20px
    }

        body p a {
            color: #383838
        }

            body p a:hover {
                color: inherit;
                text-decoration: underline
            }

    body .link-underline {
        text-decoration: underline
    }

    body li {
        font-size: 18px
    }

    body .form-group {
        padding-bottom: 20px
    }

        body .form-group.upload-div {
            position: relative
        }

            body .form-group.upload-div .browser:hover {
                border: solid 3px #dddddd;
                box-shadow: 0 0 3px #dddddd
            }

            body .form-group.upload-div .fa-times {
                position: absolute;
                top: 42px;
                right: 10px;
                background: #383838;
                padding: 1px;
                cursor: pointer;
                color: #ffffff
            }

        body .form-group label {
            font-weight: 500;
            font-size: 16px
        }

        body .form-group .form-control {
            border-radius: 0;
            border: solid 1px #dddddd;
            font-size: 16px
        }

            body .form-group .form-control::placeholder {
                font-size: 14px;
                opacity: .5
            }

            body .form-group .form-control:focus {
                outline: none;
                border: solid 1px #dddddd;
                box-shadow: 0 0 0 3px #dddddd
            }

            body .form-group .form-control:disabled, body .form-group .form-control[readonly] {
                background-color: #dddddd;
                color: #383838
            }

                body .form-group .form-control:disabled::placeholder, body .form-group .form-control[readonly]::placeholder {
                    font-size: 14px;
                    opacity: .5
                }

    body .field-validation-error {
        color: red
    }

    body .ctbnDisabled {
        border: 1px solid #F8F8F8;
        color: #F8F8F8;
        filter: opacity(.5);
        pointer-events: none
    }

    body .cbtn, body .cbtn-dark {
        font-size: 16px;
        border-radius: 0;
        border: solid 1px #383838;
        background-color: #ffffff;
        padding: 0 60px;
        font-weight: 600;
        color: #383838;
        height: 45px;
        line-height: 45px;
        display: inline-block;
        cursor: pointer;
        outline: none;
        border-radius: 5px;
        text-decoration: none;
        text-transform: uppercase;
        transition: all .45s ease-in-out
    }

        body .cbtn:hover, body .cbtn-dark:hover, body .cbtn:focus, body .cbtn-dark:focus {
            background-color: #383838;
            color: #ffffff;
            outline: none;
            border: solid 1px #383838
        }

        body .cbtn.loadmore, body .cbtn-dark.loadmore {
            padding: 0 30px
        }

            body .cbtn.loadmore span, body .cbtn-dark.loadmore span {
                position: relative;
                top: -2px
            }

            body .cbtn.loadmore .spinner-border, body .cbtn-dark.loadmore .spinner-border {
                display: inline-block;
                width: 24px;
                margin-top: 10px;
                margin-left: 10px;
                height: 24px;
                vertical-align: text-bottom;
                border: 3px solid #383838;
                border-right-color: transparent;
                border-radius: 50%;
                -webkit-animation: spinner-border .75s linear infinite;
                animation: spinner-border .75s linear infinite
            }

            body .cbtn.loadmore:hover .spinner-border, body .cbtn-dark.loadmore:hover .spinner-border, body .cbtn.loadmore:focus .spinner-border, body .cbtn-dark.loadmore:focus .spinner-border {
                border: 3px solid #ffffff;
                border-right-color: transparent
            }

@keyframes spinner-border {
    to {
        transform: rotate(360deg)
    }
}

body .overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: none;
    z-index: 9
}

    body .overlay.active {
        display: block;
        z-index: 9
    }

body .btn {
    color: #000000;
    border: solid 1px #383838;
    border-radius: 0 !important;
    background-color: rgba(255,255,255,0.7);
    padding: 0 20px;
    height: 45px;
    line-height: 42px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all .7s ease-in-out
}

    body .btn:hover {
        background-color: #fff;
        color: #000000
    }

body .arrow-right {
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid #383838;
    display: inline-block
}

body .flt {
    filter: grayscale(100%)
}

    body .flt:hover {
        filter: none
    }

body section.search-list {
    padding: 60px 0 0
}

body section.small-content {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 60px 0px
}

body.notfound h2 {
    margin-bottom: 3rem
}

body.notfound .link {
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    color: #383838
}

    body.notfound .link::before {
        left: 0;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        content: '';
        border-top: solid 1px #383838;
        bottom: -2px;
        position: absolute;
        opacity: .7
    }

    body.notfound .link:hover::before {
        animation: intro .5s ease-in-out
    }

.nolink {
    cursor: default !important
}

main {
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

    main #site-alerts {
        position: absolute;
        right: 20px;
        width: 400px;
        max-width: 100%;
        z-index: 9999;
        margin-top: 120px;
        padding: 0
    }

        main #site-alerts .icon-warning {
            background-color: rgba(255,255,255,0.94);
            padding: 10px 10px 10px 10px;
            text-align: center;
            font-family: Lato,sans-serif;
            font-size: 16px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.3)
        }

        main #site-alerts .popup_close {
            right: -15px;
            top: -15px;
            width: 30px;
            height: 30px;
            left: auto;
            padding-top: 2.5px;
            padding-left: 1px;
            cursor: pointer
        }

@keyframes intro {
    0% {
        opacity: 0;
        transform: translateY(40px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes finger {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        transform: translateY(10px)
    }
}

@keyframes slide-out-slide-in {
    0% {
        width: 100%
    }

    25% {
        width: 0%;
        right: 0px;
        left: auto
    }

    50% {
        width: 0%;
        left: 0px
    }

    100% {
        width: 100%;
        left: 0px
    }
}

#slider-menu, #myaccount-menu {
    width: 650px;
    position: fixed;
    top: 0;
    left: -650px;
    height: 100vh;
    z-index: 20;
    background: #fff;
    transition: all .3s;
    overflow: hidden;
    max-width: 100%
}

    #slider-menu.active, #myaccount-menu.active {
        left: 0px;
        z-index: 9999
    }

    #slider-menu #wrapper, #myaccount-menu #wrapper, #slider-menu .wrapper, #myaccount-menu .wrapper {
        width: 100%;
        padding-right: 17px;
        overflow: auto;
        height: 100%
    }

        #slider-menu #wrapper::-webkit-scrollbar, #myaccount-menu #wrapper::-webkit-scrollbar, #slider-menu .wrapper::-webkit-scrollbar, #myaccount-menu .wrapper::-webkit-scrollbar {
            width: .5em
        }

        #slider-menu #wrapper::-webkit-scrollbar-track, #myaccount-menu #wrapper::-webkit-scrollbar-track, #slider-menu .wrapper::-webkit-scrollbar-track, #myaccount-menu .wrapper::-webkit-scrollbar-track {
            -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0)
        }

        #slider-menu #wrapper ::-webkit-scrollbar-thumb, #myaccount-menu #wrapper ::-webkit-scrollbar-thumb, #slider-menu .wrapper ::-webkit-scrollbar-thumb, #myaccount-menu .wrapper ::-webkit-scrollbar-thumb {
            background-color: #dcbe84;
            outline: 1px solid slategrey
        }

        #myaccount-menu .wrapper .nav-content {
            height: calc(100% - 100px)
        }

            #myaccount-menu .wrapper .nav-content .sub-content:first-child {
                margin-bottom: 30px
            }

                #myaccount-menu .wrapper .nav-content .sub-content:first-child li:hover {
                    border-color: transparent
                }

        #myaccount-menu .wrapper .menu_footer {
            height: 75px
        }

#call-myaccount-menu .loggedin {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    color: #383838;
    line-height: 18px;
    font-weight: 900;
    transition: all .45s ease-in-out;
    border: solid 1px #383838
}

#call-myaccount-menu:hover .loggedin {
    background-color: #383838;
    color: #ffffff
}

.menu_footer {
    width: 100%;
    text-align: center;
    padding: 0 0 10px
}

    .menu_footer .contact-info {
        width: 50%
    }

        .menu_footer .contact-info .facetime {
            border: solid 1px #ffffff;
            color: #383838;
            font-size: 20px;
            background-color: #ffffff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: block;
            line-height: 40px;
            font-weight: 300
        }

            .menu_footer .contact-info .facetime i {
                font-weight: 300
            }

                .menu_footer .contact-info .facetime i::before {
                    font-family: FontAwesome
                }

            .menu_footer .contact-info .facetime:hover {
                color: #ffffff;
                background-color: #383838;
                border: solid 1px #383838
            }

    .menu_footer h3 {
        font-size: 17px;
        font-family: Lato,sans-serif
    }

    .menu_footer .cbtn {
        width: 50%;
        margin: 20px 0 40px
    }

    .menu_footer .logo {
        margin-bottom: 5px
    }

        .menu_footer .logo img {
            max-width: 120px
        }

    .menu_footer .social-media {
        padding: 0
    }

        .menu_footer .social-media ul {
            margin: 0;
            display: flex;
            padding: 0;
            position: absolute;
            left: 15px;
            top: 200px;
            width: 60px;
            flex-wrap: wrap;
            text-align: center;
            justify-content: center;
            margin-bottom: 0
        }

            .menu_footer .social-media ul li {
                margin: 0 15px 15px 0
            }

                .menu_footer .social-media ul li a {
                    color: #ffffff;
                    font-size: 20px;
                    background-color: #383838;
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    display: block;
                    line-height: 40px;
                    font-weight: 300
                }

                    .menu_footer .social-media ul li a i {
                        font-weight: 300
                    }

                        .menu_footer .social-media ul li a i::before {
                            font-family: FontAwesome
                        }

                    .menu_footer .social-media ul li a:hover {
                        background-color: #ffffff;
                        border: solid 1px #383838
                    }

                .menu_footer .social-media ul li.facebook:hover a {
                    color: #3b5998;
                    content: "\f0d5" !important
                }

                .menu_footer .social-media ul li.youtube:hover a {
                    color: #c4302b
                }

                .menu_footer .social-media ul li.instagram:hover a {
                    color: #d12d7f
                }

                .menu_footer .social-media ul li.facetime:hover a {
                    color: #34da4f
                }

                .menu_footer .social-media ul li.google i::before {
                    content: "\f0d5" !important
                }

                .menu_footer .social-media ul li.google:hover a {
                    color: #db4a39
                }

    .menu_footer p {
        font-size: 13px;
        margin-bottom: 17px;
        text-transform: uppercase;
        color: #383838;
        margin-bottom: 30px
    }

    .menu_footer h3 a {
        color: #383838
    }

#wrapper .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 50px 0px 100px
}

    #wrapper .menu-header .logo img {
        max-width: 180px
    }

    #wrapper .menu-header .user-help-icon {
        margin-bottom: 0px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-left: 0;
        margin-top: 10px
    }

        #wrapper .menu-header .user-help-icon li {
            margin-right: 0;
            display: flex
        }

            #wrapper .menu-header .user-help-icon li a {
                color: #ffffff;
                margin-right: 20px;
                font-size: 24px
            }

            #wrapper .menu-header .user-help-icon li:first-child {
                flex-grow: 1
            }

            #wrapper .menu-header .user-help-icon li .srhinput {
                width: 100%;
                position: relative
            }

                #wrapper .menu-header .user-help-icon li .srhinput input {
                    width: 100%;
                    background-color: transparent;
                    border: 0;
                    border-bottom: solid 1px rgba(0,0,0,0.3);
                    outline: none;
                    color: #383838;
                    font-size: 14px;
                    font-weight: 600;
                    padding: 5px 10px 5px 39px;
                    text-transform: uppercase
                }

                #wrapper .menu-header .user-help-icon li .srhinput button {
                    border: 0;
                    outline: none;
                    position: relative;
                    background-color: transparent;
                    position: absolute;
                    top: 0;
                    right: 0;
                    font-size: 20px;
                    font-weight: 300;
                    opacity: 1;
                    color: #383838;
                    cursor: pointer;
                    border: solid 1px transparent;
                    border-radius: 50%
                }

                    #wrapper .menu-header .user-help-icon li .srhinput button:hover i::after {
                        width: 12px;
                        height: 12px;
                        content: '';
                        border-radius: 50%;
                        position: absolute;
                        background: #383838;
                        margin-left: -14px;
                        margin-top: 1px
                    }

.mol {
    width: 200px
}

    .mol ul {
        display: block;
        list-style: none;
        padding-left: 0
    }

        .mol ul li {
            display: inline-block;
            padding: 0 15px 0 0;
            vertical-align: top
        }

            .mol ul li.announcement {
                padding: 0 0 0 15px
            }

                .mol ul li.announcement .announcement-link {
                    border-radius: 25px;
                    padding: 0 10px;
                    width: auto;
                    text-decoration: none;
                    transition: all .45s ease-in-out
                }

                    .mol ul li.announcement .announcement-link:hover {
                        color: red
                    }

                    .mol ul li.announcement .announcement-link.announcement-link-icon {
                        min-width: 40px;
                        min-height: 40px;
                        margin-top: 9px;
                        background-size: contain;
                        background-image: url(../images/covid-19-d-icon.png);
                        cursor: pointer;
                        background-position: center;
                        background-repeat: no-repeat
                    }

                        .mol ul li.announcement .announcement-link.announcement-link-icon:hover {
                            background-color: transparent
                        }

            .mol ul li a {
                display: inline-block;
                font-size: 17px;
                margin-top: 10px;
                background-color: #383838;
                color: #ffffff;
                border-radius: 50%;
                width: 40px;
                height: 40px;
                line-height: 38px;
                text-align: center;
                border: solid 1px transparent;
                transition: all .45s ease-in-out;
                position: relative
            }

                .mol ul li a:hover {
                    border: solid 1px #383838;
                    background-color: #ffffff;
                    color: #383838
                }

                    .mol ul li a:hover > div {
                        background-color: #383838 !important
                    }

            .mol ul li:nth-child(2) a {
                font-size: 20px
            }

            .mol ul li.scart .nos {
                position: absolute;
                width: 20px;
                height: 20px;
                background-color: #ffffff;
                border-radius: 50%;
                font-size: 12px;
                color: #383838;
                line-height: 17px;
                font-weight: 600;
                transition: all .45s ease-in-out;
                border: solid 1px #383838
            }

            .mol ul li.scart a {
                margin-top: 9px
            }

                .mol ul li.scart a:hover .nos {
                    background-color: #383838;
                    color: #ffffff
                }

    .mol .menuOverlay {
        height: 100%;
        width: 100%;
        display: none;
        position: fixed;
        z-index: 25;
        top: 0;
        left: 0;
        background-color: #000;
        background-color: rgba(0,0,0,0.9)
    }

        .mol .menuOverlay .overlay-content {
            position: relative;
            top: 46%;
            max-width: 550px;
            transform: translateY(-46%);
            margin: auto;
            background: #ffefba;
            background: linear-gradient(to right, #ffefba, #ffffff);
            padding: 20px 35px;
            border-radius: 5px
        }

        .mol .menuOverlay input {
            padding: 0px;
            font-size: 17px;
            border: none;
            float: left;
            width: 100%;
            padding-bottom: 15px;
            border-bottom: 1px solid #555;
            margin-bottom: 1rem;
            background: transparent
        }

            .mol .menuOverlay input:nth-child(2) {
                margin-bottom: 3rem
            }

            .mol .menuOverlay input:focus {
                outline: none
            }

        .mol .menuOverlay .submit {
            width: 140px;
            font-size: 17px;
            cursor: pointer;
            background: #dcbe84;
            padding: 10px 20px;
            border-radius: 24px;
            margin: auto;
            display: block;
            border: 1px solid #dcbe84;
            margin-bottom: 1rem
        }

            .mol .menuOverlay .submit:hover {
                background: transparent
            }

        .mol .menuOverlay h3 {
            margin-bottom: 2rem;
            color: #000;
            text-align: center
        }

    .mol .small {
        margin: 0px;
        text-align: center;
        color: #000
    }

        .mol .small a {
            color: #dcbe84
        }

#slider-menu .nav-content, #myaccount-menu .nav-content {
    padding: 1vw 50px 0 100px
}

    #slider-menu .nav-content hr, #myaccount-menu .nav-content hr {
        margin-top: 0px;
        border-top: 1px solid rgba(0,0,0,0.3)
    }

        #slider-menu .nav-content hr.nobrdr, #myaccount-menu .nav-content hr.nobrdr {
            border: 0 !important
        }

#slider-menu ul, #myaccount-menu ul {
    list-style: none
}

    #slider-menu ul.sub-content, #myaccount-menu ul.sub-content {
        width: max-content
    }

        #slider-menu ul.sub-content li, #myaccount-menu ul.sub-content li {
            padding-bottom: .25rem;
            position: relative;
            padding-top: .25rem
        }

            #slider-menu ul.sub-content li a, #myaccount-menu ul.sub-content li a {
                color: #383838;
                font-size: 14px;
                text-decoration: none;
                position: relative;
                z-index: 999;
                font-weight: 600
            }

            #slider-menu ul.sub-content li.main-menu.with-submenu > a::after, #myaccount-menu ul.sub-content li.main-menu.with-submenu > a::after {
                display: inline-block;
                width: 0;
                height: 0;
                margin-left: .255em;
                vertical-align: .255em;
                content: "";
                border-top: .3em solid;
                border-right: .3em solid transparent;
                border-bottom: 0;
                border-left: .3em solid transparent
            }

            #slider-menu ul.sub-content li:hover, #myaccount-menu ul.sub-content li:hover {
                border-color: #383838;
                text-decoration: none
            }

                #slider-menu ul.sub-content li:hover > .sub-menu, #myaccount-menu ul.sub-content li:hover > .sub-menu {
                    display: block;
                    z-index: 1
                }

                #slider-menu ul.sub-content li:hover > a, #myaccount-menu ul.sub-content li:hover > a {
                    color: #383838;
                    opacity: .7
                }

                    #slider-menu ul.sub-content li:hover > a::after, #myaccount-menu ul.sub-content li:hover > a::after {
                        transform: rotate(-90deg)
                    }

        #slider-menu ul.sub-content > li, #myaccount-menu ul.sub-content > li {
            border-top: 1px solid transparent;
            position: relative;
            width: max-content
        }

        #slider-menu ul.sub-content .sub-menu, #myaccount-menu ul.sub-content .sub-menu {
            display: none;
            position: absolute;
            padding: 16px 0 16px 16px;
            top: -1px;
            padding-top: 0px;
            min-width: 365px;
            left: 70px;
            border-top: 1px solid #383838
        }

            #slider-menu ul.sub-content .sub-menu ul, #myaccount-menu ul.sub-content .sub-menu ul {
                max-width: 250px;
                margin-left: auto
            }

                #slider-menu ul.sub-content .sub-menu ul li, #myaccount-menu ul.sub-content .sub-menu ul li {
                    background: #ffffff;
                    padding-left: 10px
                }

                    #slider-menu ul.sub-content .sub-menu ul li a, #myaccount-menu ul.sub-content .sub-menu ul li a {
                        color: #383838;
                        font-weight: 500
                    }

                        #slider-menu ul.sub-content .sub-menu ul li a:hover, #myaccount-menu ul.sub-content .sub-menu ul li a:hover {
                            color: #383838;
                            text-decoration: none
                        }

#call-side-menu-1, .popup_close, #call-myaccount-menu-1 {
    position: absolute;
    margin-top: 0;
    left: 1rem;
    top: 25px;
    width: 40px;
    height: 40px;
    border: solid 1px #383838;
    border-radius: 50%;
    padding-top: 7px;
    padding-left: 7px;
    background-color: #ffffff
}

    #call-side-menu-1 .bar1, .popup_close .bar1, #call-myaccount-menu-1 .bar1, #call-side-menu-1 .bar2, .popup_close .bar2, #call-myaccount-menu-1 .bar2, #call-side-menu-1 .bar3, .popup_close .bar3, #call-myaccount-menu-1 .bar3 {
        width: 14px;
        height: 1px;
        background-color: #383838;
        margin: 5px 0;
        transition: all .45s ease-in-out
    }

    #call-side-menu-1 .bar2, .popup_close .bar2, #call-myaccount-menu-1 .bar2 {
        width: 25px;
        opacity: 0
    }

    #call-side-menu-1 .bar1, .popup_close .bar1, #call-myaccount-menu-1 .bar1 {
        transform: rotate(-45deg) translate(0, 9px)
    }

    #call-side-menu-1 .bar3, .popup_close .bar3, #call-myaccount-menu-1 .bar3 {
        transform: rotate(45deg) translate(0, -8px)
    }

    #call-side-menu-1:hover, .popup_close:hover, #call-myaccount-menu-1:hover {
        background-color: #383838
    }

        #call-side-menu-1:hover > div, .popup_close:hover > div, #call-myaccount-menu-1:hover > div {
            background-color: #ffffff
        }

    #call-side-menu-1.change .bar1, .popup_close.change .bar1, #call-myaccount-menu-1.change .bar1, #call-side-menu-1.change .bar3, .popup_close.change .bar3, #call-myaccount-menu-1.change .bar3 {
        transform: translateX(-2px) translateY(2px) rotate(-45deg);
        width: 14px
    }

    #call-side-menu-1.change .bar2, .popup_close.change .bar2, #call-myaccount-menu-1.change .bar2 {
        opacity: 1
    }

    #call-side-menu-1.change .bar3, .popup_close.change .bar3, #call-myaccount-menu-1.change .bar3 {
        transform: translateX(-1px) translateY(-2px) rotate(45deg)
    }

#call-side-menu {
    transition: all .45s ease-in-out;
    padding-top: 10px
}

    #call-side-menu.inactive {
        display: none;
        transition: all .45s ease-in-out
    }

    #call-side-menu .bar1, #call-side-menu .bar2, #call-side-menu .bar3 {
        width: 20px;
        height: 1px;
        background-color: #ffffff;
        display: block;
        margin: 4px auto;
        transition: all .3s ease-in-out
    }

    #call-side-menu .bar2 {
        width: 14px
    }

    #call-side-menu.change .bar1, #call-side-menu.change .bar3 {
        transform: translateX(7px) translateY(2px) rotate(45deg);
        width: 14px
    }

    #call-side-menu.change .bar2 {
        width: 25px;
        margin: 5px auto
    }

    #call-side-menu.change .bar3 {
        transform: translateX(7px) translateY(-2px) rotate(-45deg)
    }

.side-nav {
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0
}

    .side-nav li {
        list-style: none;
        margin: 0;
        padding: 0 20px;
        line-height: 2.5;
        text-transform: uppercase;
        border-bottom: solid 0 #dddddd
    }

        .side-nav li a {
            font-weight: 500
        }

        .side-nav li.current a {
            font-weight: 700
        }

            .side-nav li.current a::before {
                display: none
            }

body header {
    width: 100%;
    position: fixed;
    z-index: 20;
    top: 0;
    height: 101px;
    transition: all .35s ease-in-out
}

    body header .nav-link {
        padding-right: 0px !important
    }

        body header .nav-link img {
            transition: all .35s ease-in-out;
            max-width: 2000px
        }

    body header .navbar {
        padding-left: 0;
        padding-right: 0
    }

    body header .logo-container {
        text-align: center
    }

        body header .logo-container .navbar-brand {
            position: relative;
            padding: 15px 0px;
            background: url(../images/govindjis-logo2.png) no-repeat 0 0;
            width: 200px;
            height: 27px;
            margin: 0
        }

            body header .logo-container .navbar-brand img {
                max-width: 200px;
                transition: all .45s ease-in-out
            }

    body header.trans {
        background-color: rgba(255,255,255,0.7);
        transition: all .35s ease-in-out
    }

    body header.scrolled {
        background-color: #efefef
    }

        body header.scrolled .navbar-brand {
            background-image: url(../images/govindjis-logo2.png)
        }

        body header.scrolled .mol ul li a {
            background-color: #383838;
            color: #ffffff
        }

            body header.scrolled .mol ul li a > div {
                background-color: #ffffff !important
            }

            body header.scrolled .mol ul li a:hover {
                background-color: #ffffff;
                color: #383838
            }

                body header.scrolled .mol ul li a:hover > div {
                    background-color: #383838 !important
                }

body#home header::before {
    position: fixed;
    left: 0;
    top: 0;
    height: 100px;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.4), transparent);
    transition: all .35s ease-in-out;
    content: ''
}

body#home .navbar-brand {
    background-image: url(../images/govindjis-logo.png);
    background-repeat: no-repeat
}

body#home .mol ul li.announcement .announcement-link {
    color: red
}

    body#home .mol ul li.announcement .announcement-link:hover {
        background-color: #383838;
        color: #ffffff
    }

    body#home .mol ul li.announcement .announcement-link.announcement-link-icon {
        background-image: url(../images/covid-19-icon.png)
    }

        body#home .mol ul li.announcement .announcement-link.announcement-link-icon:hover {
            background-color: transparent
        }

body#home .mol ul li a {
    color: #383838;
    background-color: #ffffff
}

    body#home .mol ul li a:hover {
        background-color: #383838;
        color: #ffffff
    }

    body#home .mol ul li a#call-side-menu > div {
        background-color: #383838
    }

    body#home .mol ul li a#call-side-menu:hover {
        background-color: #383838
    }

        body#home .mol ul li a#call-side-menu:hover > div {
            background-color: #ffffff !important
        }

body#home .scrolled {
    background-color: #efefef
}

    body#home .scrolled::before {
        background-image: none
    }

    body#home .scrolled #call-side-menu:hover {
        background-color: #ffffff
    }

        body#home .scrolled #call-side-menu:hover > div {
            background-color: #383838 !important
        }

    body#home .scrolled .mol ul li.announcement .announcement-link {
        color: #ffffff
    }

        body#home .scrolled .mol ul li.announcement .announcement-link:hover {
            background-color: #ffffff;
            color: red
        }

        body#home .scrolled .mol ul li.announcement .announcement-link.announcement-link-icon {
            background-image: url(../images/covid-19-d-icon.png)
        }

            body#home .scrolled .mol ul li.announcement .announcement-link.announcement-link-icon:hover {
                background-color: transparent
            }

    body#home .scrolled .mol ul li a {
        background-color: #383838;
        color: #ffffff
    }

        body#home .scrolled .mol ul li a:hover {
            border: solid 1px #383838;
            color: #383838;
            background-color: #ffffff
        }

    body#home .scrolled .navbar-brand {
        background-image: url(../images/govindjis-logo2.png);
        background-repeat: no-repeat
    }

footer {
    background-color: #222;
    width: 100%;
    padding: 50px 0 0
}

    footer .ph-bloc {
        padding-top: 30px
    }

    footer .addr-blc, footer .socal-blc {
        margin-top: -35px
    }

    footer p {
        font-size: 18px;
        line-height: 36px;
        margin-bottom: 30px;
        color: #ffffff;
        font-family: Lato,sans-serif
    }

        footer p a:not(.nodec) {
            color: #ffffff;
            text-decoration: none;
            transition: all .2s ease-in-out;
            position: relative
        }

            footer p a:not(.nodec)::before {
                left: 50%;
                width: 100%;
                max-width: 0;
                overflow: hidden;
                content: '';
                border-top: solid 1px #ffffff;
                bottom: -2px;
                position: absolute;
                opacity: .7;
                transition: all .2s ease-in-out
            }

            footer p a:not(.nodec):hover {
                color: #ffffff;
                text-decoration: none
            }

                footer p a:not(.nodec):hover::before {
                    left: 0;
                    max-width: 100%
                }

        footer p span {
            padding: 0 10px
        }

    footer .social-media ul {
        list-style: none;
        margin-top: 0
    }

        footer .social-media ul li {
            display: inline-block
        }

            footer .social-media ul li a {
                color: #ffffff;
                font-size: 22px;
                font-weight: 300
            }

                footer .social-media ul li a i {
                    font-weight: 300
                }

                    footer .social-media ul li a i::before {
                        font-family: FontAwesome;
                        font-weight: 300
                    }

                footer .social-media ul li a:hover {
                    text-decoration: none
                }

            footer .social-media ul li.facebook a:hover {
                color: #3b5998
            }

            footer .social-media ul li.youtube a:hover {
                color: #c4302b
            }

            footer .social-media ul li.instagram a:hover {
                color: #d12d7f
            }

            footer .social-media ul li.facetime a:hover {
                color: #34da4f
            }

    footer hr {
        width: 100%;
        border-top: solid 1px rgba(255,255,255,0.1)
    }

    footer .sub-f p {
        font-size: 15px;
        font-weight: 300
    }

.banner {
    width: 100%;
    padding: 0
}

    .banner.rol {
        padding: 0
    }

    .banner.d-flex {
        min-height: 500px;
        position: relative;
        background-size: cover;
        margin-bottom: 50px;
        padding: 0;
        margin-top: 100px;
        background-position: center;
        background-repeat: no-repeat
    }
body#store-jewelry .banner.d-flex, body#store-details .banner.d-flex, #store-comingsoon .banner.d-flex, #store-search .banner.d-flex{
    min-height: 200px;
}
p.inentory-sold-text {
    font-size: 16px;
}
.details-info p {
    font-size: 17px;
    margin-bottom: 3px;
}
.details-info{
text-align: center;
    margin-top: 37px;
    margin-bottom: -25px;
}
/* .details-info p { */
    /* margin-bottom: -6px; */
/* } */
        .banner.d-flex.short {
            min-height: 250px
        }
.addressfields .form-group.col-md-6{
	max-width:33.3%;
}
.address-level1{
	padding-top: 30px;
}
.grand-opening .form-group.signup-btn{
	text-align: center;
    width: 100%;
	    padding-top: 0px;
}
            .banner.d-flex.short hr {
                margin: 15px auto
            }

        .banner.d-flex hr {
            width: 30%;
            border-top: solid 1px #ffffff;
            margin: 25px auto
        }

        .banner.d-flex::before {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            content: '';
            background-color: rgba(0,0,0,0.4)
        }

        .banner.d-flex h1, .banner.d-flex h3 {
            color: #ffffff
        }

        .banner.d-flex h3 {
            font-weight: 400;
            margin: 0
        }

            .banner.d-flex h3 span {
                padding: 0 20px
            }

    .banner .carousel {
        width: 100%
    }

    .banner .carousel-caption {
        transform: translateY(-43%);
        top: 57%;
        max-width: 650px;
        margin-left: auto
    }

        .banner .carousel-caption h5 {
            font-size: 42px;
            line-height: 35px;
            margin-bottom: 25px;
            text-transform: uppercase;
            color: #000;
            font-weight: normal;
            font-family: 'HelveticaNeueLight'
        }

        .banner .carousel-caption .btn-on-slider {
            background-color: #383838;
            border-radius: 44px;
            border: none;
            color: #fff;
            padding: 29.5px 0;
            text-transform: uppercase;
            width: 357px;
            font-size: 18px;
            letter-spacing: 1px;
            cursor: pointer;
            outline: none;
            font-family: 'HelveticaNeueMed'
        }

    .banner .carousel-control-prev, .banner .carousel-control-next {
        position: absolute;
        top: 0;
        cursor: pointer;
        bottom: 0;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 15%;
        color: #fff;
        text-align: center;
        opacity: .5
    }

        .banner .carousel-control-prev:hover, .banner .carousel-control-next:hover {
            background-color: rgba(0,0,0,0.2)
        }

        .banner .carousel-control-prev .fa, .banner .carousel-control-next .fa {
            font-size: 70px;
            color: #fff;
            text-shadow: 2px 2px 2px #383838
        }

    .banner .carousel-control-prev {
        left: 0
    }

    .banner .carousel-indicators {
        transform: translateY(-85%);
        bottom: 15%
    }

        .banner .carousel-indicators li {
            text-indent: 0px;
            background-color: #bbbbbb;
            margin: 0;
            margin: auto 20px;
            width: 33.33%;
            height: 6px
        }

            .banner .carousel-indicators li:after {
                width: 0;
                bottom: 0;
                transition: width .1s linear
            }

            .banner .carousel-indicators li.active:after {
                width: 100%;
                background-color: #383838;
                height: 6px;
                transition: width 5s linear
            }

            .banner .carousel-indicators li::before {
                display: none
            }

            .banner .carousel-indicators li:hover {
                background-color: #383838
            }

        .banner .carousel-indicators p {
            font-family: Freight-medium;
            position: relative;
            bottom: 40px;
            color: #fff;
            margin-bottom: 0px
        }

    .banner .carousel-item {
        width: 100%;
        height: calc((9 / 16) * 100vw);
    }
.sr-popup.banner .carousel-item {
        width: 100%;
        height: calc((9 / 16) * 80vw);
    }
        .banner .carousel-item img {
            position: relative;
            width: 100%;
            overflow: hidden;
			

        }

        .banner .carousel-item video {
            height: inherit
        }

        .banner .carousel-item .details-banner-container {
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 50%
        }

            .banner .carousel-item .details-banner-container.rolex .cbtn-dark {
                background-color: #147549;
                border-color: #147549
            }

            .banner .carousel-item .details-banner-container .logo {
                width: auto
            }

            .banner .carousel-item .details-banner-container p {
                color: #fff;
                margin: 0;
                max-width: 90%;
                font-size: 2rem;
                line-height: normal
            }

                .banner .carousel-item .details-banner-container p.description {
                    color: #fff;
                    font-size: 1rem;
                    position: relative;
                    margin-top: 40px;
                    padding-top: 40px
                }

                    .banner .carousel-item .details-banner-container p.description::before {
                        position: absolute;
                        top: 0;
                        width: 50%;
                        border-bottom: solid 1px #ddd;
                        content: '';
                        left: 25%
                    }

            .banner .carousel-item .details-banner-container .cbtn-dark {
                border: solid 1px #383838;
                background-color: #383838;
                color: #ffffff;
                display: block;
                width: auto;
                z-index: 2
            }

                .banner .carousel-item .details-banner-container .cbtn-dark:hover, .banner .carousel-item .details-banner-container .cbtn-dark:focus {
                    background-color: #ffffff;
                    color: #383838
                }

        .banner .carousel-item .full-click-banner {
            position: absolute;
            top: 0; 
            right: 0;
            height: 100%;
            width: 100%;
            z-index: 1
        }

        .banner .carousel-item.active, .banner .carousel-item-next, .banner .carousel-item-prev {
            display: block;
            transition: -webkit-transform .6s ease;
            transition: transform .6s ease;
            transition: transform .6s ease,-webkit-transform .6s ease
        }

    .banner .mouse {
        z-index: 10;
        position: absolute;
        width: 23px;
        height: 42px;
        bottom: 5%;
        left: 50%;
        margin-left: -12px;
        border-radius: 15px;
        border: 2px solid #fff;
        animation: intro 1s
    }

        .banner .mouse .scroll {
            display: block;
            width: 3px;
            height: 9px;
            margin: 6px auto;
            border-radius: 4px;
            background: #fff;
            animation: finger 1s infinite
        }

.sr-popup {
    position: fixed;
    width: 1204px;
    height: auto;
    left: 50%;
    max-width: 90%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    display: none;
    z-index: 999;
    box-shadow: 0 8px 12px rgba(0,0,0,0.5)
}

    .sr-popup.show {
        display: block
    }

    .sr-popup .popup_close {
        position: absolute;
        left: 100%;
        z-index: 99;
        top: -20px;
        margin-left: -20px
    }

.banner.lt {
    filter: grayscale(0%)
}

.banner.grayfilter {
    filter: grayscale(100%)
}

.banner.faq {
    background-position: 90% center
}

.banner.contact {
    background-position: right 0
}

.banner.guide {
    background-position: 20% 0
}

    .banner.guide::before {
        background-color: rgba(0,0,0,0.4)
    }

.banner.foundingspirit {
    background-position: 0 0
}

    .banner.foundingspirit::before {
        background-color: rgba(0,0,0,0)
    }

    .banner.foundingspirit h1, .banner.foundingspirit h3 {
        color: #383838
    }

    .banner.foundingspirit hr {
        border: solid 1px #383838
    }

.banner.style {
    background-position: 0 center
}

    .banner.style h1, .banner.style h3 {
        color: #383838
    }

    .banner.style hr {
        border: solid 1px #383838
    }

.banner.mission::before {
    background-color: rgba(0,0,0,0.4)
}

.banner.video::before {
    background-color: rgba(0,0,0,0.5)
}

.banner.account {
    background-position: 75% bottom
}

.banner.cart {
    background-position: 20% center
}

    .banner.cart::before {
        background-color: rgba(0,0,0,0.5)
    }

.banner.pagenotfound {
    background-position: 0% center
}

.banner.outofstock {
    background-position: 0% center
}

.banner.brand::before {
    opacity: .8
}

.banner.brand hr {
    border-top: solid 1px #ffffff
}

.banner.brand.sim {
    background-position: right center
}

.banner.brand.tcori {
    background-position: 0 center
}

    .banner.brand.tcori::before {
        background-color: rgba(0,0,0,0.3)
    }

.banner.brand.lladro {
    background-position: 0 center
}

    .banner.brand.lladro::before {
        background-color: rgba(0,0,0,0)
    }

    .banner.brand.lladro h1, .banner.brand.lladro h3 {
        color: #000000
    }

    .banner.brand.lladro hr {
        border: solid 1px #000000
    }

.banner.brand.mik {
    background-position: top right
}

    .banner.brand.mik h1, .banner.brand.mik h3 {
        color: #ffffff
    }

.banner.brand.corpmont {
    background-position: right center
}

    .banner.brand.corpmont::before {
        background-color: rgba(0,0,0,0.4)
    }

.banner.brand.acsmont {
    background-position: right center
}

    .banner.brand.acsmont::before {
        background-color: rgba(0,0,0,0.4)
    }

.banner.brand.timerado {
    background-position: right center
}

    .banner.brand.timerado::before {
        background-color: rgba(0,0,0,0.5)
    }

.banner.brand.timebellr {
    background-position: 0 center
}

    .banner.brand.timebellr::before {
        background-color: rgba(0,0,0,0.5)
    }

.banner.brand.timemont {
    background-position: center
}

.banner.brand.timewolf {
    background-position: 45% center
}

    .banner.brand.timewolf::before {
        background-color: rgba(0,0,0,0.1)
    }

    .banner.brand.timewolf h1, .banner.brand.timewolf h3 {
        color: #000000
    }

    .banner.brand.timewolf hr {
        border: solid 1px #000000
    }

.banner.brand.timepreown {
    background-position: center
}

    .banner.brand.timepreown::before {
        background-color: rgba(0,0,0,0.5)
    }

.banner.prods {
    background-position: 0 center
}

    .banner.prods::before {
        opacity: .8
    }

    .banner.prods hr {
        border-top: solid 1px #ffffff
    }

    .banner.prods.dia_jwl::before {
        background-color: rgba(0,0,0,0)
    }

    .banner.prods.dia_jwl h1, .banner.prods.dia_jwl h3 {
        color: #000000
    }

    .banner.prods.dia_jwl hr {
        border: solid 1px #000000
    }

    .banner.prods.ant_jwl {
        background-position: 10% center
    }

        .banner.prods.ant_jwl::before {
            background-color: rgba(0,0,0,0)
        }

        .banner.prods.ant_jwl h1, .banner.prods.ant_jwl h3 {
            color: #000000
        }

        .banner.prods.ant_jwl hr {
            border: solid 1px #000000
        }

    .banner.prods.baby_jwl {
        background-position: right center
    }

        .banner.prods.baby_jwl::before {
            background-color: rgba(0,0,0,0)
        }

        .banner.prods.baby_jwl h1, .banner.prods.baby_jwl h3 {
            color: #000000
        }

        .banner.prods.baby_jwl hr {
            border: solid 1px #000000
        }

    .banner.prods.loose_dia {
        background-position: center
    }

        .banner.prods.loose_dia::before {
            background-color: rgba(0,0,0,0.3)
        }

.banner.timeout {
    background-position: center bottom;
    background-size: unset
}

    .banner.timeout::before {
        opacity: 0
    }

.items {
    position: relative
}

    .items > a {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: block;
        z-index: 9
    }

    .items.cs h5 {
        position: absolute;
        bottom: 20px;
        right: 20px;
        opacity: 0;
        z-index: 2;
        transition: all .3s ease-in-out
    }

    .items .imgDiv {
        position: absolute;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        height: 100%;
        left: 0;
        top: 0;
        width: 100%;
        transition: all .3s ease-in-out;
        background-position: center top
    }

    .items.zm {
        transition: all .7s ease-in-out
    }

        .items.zm > a {
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            z-index: 99
        }

    .items.cs:hover h5 {
        opacity: 1
    }

    .items:hover .cta {
        opacity: 1
    }

    .items:hover .imgDiv {
        transform: scale(1.05);
        filter: none
    }

    .items:hover h3 {
        background-color: #383838;
        color: #ffffff
    }

    .items.nz:hover .imgDiv {
        transform: scale(1);
        filter: none
    }

body .cta {
    width: 200px;
    max-width: 250px;
    height: 45px;
    line-height: 48px;
    background-color: #383838;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    position: absolute !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff !important;
    border: solid 1px rgba(255,255,255,0.5);
    white-space: nowrap;
    font-weight: 600;
    padding: 0 30px;
    border-radius: 5px;
    transition: all .3s ease-in-out;
    text-align: center;
    opacity: 0;
    z-index: 9
}

    body .cta::before {
        display: none
    }

    body .cta:hover {
        background-color: #ffffff;
        color: #383838 !important;
        border: solid 1px #383838
    }

    body .cta.icon {
        width: 75px;
        height: 75px;
        line-height: 77px;
        border-radius: 50%;
        padding: 0;
        font-size: 30px
    }

        body .cta.icon:hover {
            box-shadow: 0 5px 8px rgba(0,0,0,0.7)
        }

    body .cta.sm {
        width: 60px;
        height: 60px;
        line-height: 62px
    }

section {
    width: 100%;
    padding: 60px 0
}

    section.thinner .container {
        max-width: 1400px
    }

    section.tagline {
        padding: 80px 0
    }

    section .items {
        width: 100%;
        display: flex;
        align-items: center
    }

        section .items .inrwrp {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
            opacity: 0;
            transition: all .3s ease-in-out;
            flex-grow: 0;
            flex-shrink: 0;
			max-width: 558px;
            /* max-width: 660px; */
            margin: 0 auto;
            align-items: center;
            z-index: 9
        }

            section .items .inrwrp .inr {
                /* width: 140px; */
 height: 115px;               
                margin: 0 5px;
                line-height: 140px;
                background-color: #ededed;
                color: #383838;
                overflow: hidden;
                display: flex;
                justify-content: center;
                align-items: center;
                position: relative
            }

                section .items .inrwrp .inr img {
                    transition: all .3s ease-in-out;
                    max-width: 100%
                }

                section .items .inrwrp .inr h5 {
                    position: absolute;
                    bottom: 10px;
                    margin: 0;
                    padding: 0;
                    font-size: 14px;
                    color: #383838;
                    left: 0;
                    width: 100%;
                    z-index: 99;
                    transition: all .2s ease-in-out
                }

                section .items .inrwrp .inr a span {
                    color: #383838;
                    text-decoration: none;
                    font-weight: 600;
                    display: block;
                    font-size: 16px;
                    transition: all .3s ease-in-out;
                    line-height: 20px
                }

                section .items .inrwrp .inr a:hover {
                    text-decoration: none
                }

                section .items .inrwrp .inr:hover img, section .items .inrwrp .inr:hover h5 {
                    transform: scale(1.2)
                }

                section .items .inrwrp .inr.button {
                    color: #383838;
                    position: relative;
                    width: 140px;
                    height: 40px;
                    line-height: 40px;
                    font-size: 16px;
                    display: block;
                    text-align: center;
                    text-decoration: none;
                    font-weight: 600;
                    border: solid 1px #383838
                }

                    section .items .inrwrp .inr.button a {
                        line-height: 40px;
                        height: 40px;
                        transition: all .3s ease-in-out
                    }

                        section .items .inrwrp .inr.button a span {
                            line-height: 40px
                        }

                        section .items .inrwrp .inr.button a:hover span {
                            transform: scale(1.2)
                        }

                section .items .inrwrp .inr.trans {
                    background-color: transparent !important
                }

                    section .items .inrwrp .inr.trans a {
                        color: #383838
                    }

        section .items:hover .inrwrp {
            opacity: 1
        }

        section .items h2 {
            z-index: 9;
            transition: all .7s ease-in-out;
            position: absolute;
            width: calc(100% - 30px);
            left: 0;
            text-transform: uppercase
        }

        section .items h3 {
            position: relative;
            z-index: 9;
            padding: 0;
            width: 100%;
            text-align: left;
            transition: all .7s ease-in-out;
            text-transform: uppercase;
            border: solid 1px transparent
        }

            section .items h3 a {
                text-decoration: none;
                color: inherit;
                display: block;
                height: 100%;
                width: 100%;
                padding: 25px
            }

            section .items h3:hover {
                background-color: #ffffff;
                color: #383838;
                border: solid 1px #383838
            }

    section.inc .item_wrapper {
        width: calc(50% - 10px);
        height: 424px;
        margin: 0 0 20px 0;
        position: relative;
        overflow: hidden;
        display: flex;
        transition: all .7s ease-in-out
    }

    section.inc .three-col .item_wrapper {
        width: calc(33.33333% - 10px)
    }

    section.inc .four-col .item_wrapper {
        width: calc(25% - 15px)
    }

    section.inc.master .item_wrapper {
        height: 550px
    }

        section.inc.master .item_wrapper .items {
            flex-wrap: wrap
        }

            section.inc.master .item_wrapper .items .inr {
                /* width: 210px */
				width: 120px;
            }

            section.inc.master .item_wrapper .items h2 {
                margin: 30px 0 0 30px
            }

        section.inc.master .item_wrapper.dj .inrwrp::after, section.inc.master .item_wrapper.aj .inrwrp::after {
            content: '';
            width: 210px;
            height: 100px;
            margin: 0 5px
        }

        section.inc.master .item_wrapper.gj .inrwrp, section.inc.master .item_wrapper.dj .inrwrp {
            /* height: 460px; */
            /* margin-top: 60px */
			 margin-top: 16px ;
			  height: 520px;
        }
		  section.inc.master .item_wrapper.gj.hyderabadi .inrwrp{
           
			  height: 340px;
        }

        section.inc.master .item_wrapper.lt .inrwrp {
            height: 460px;
            margin-bottom: 60px
        }

        section.inc.master .item_wrapper.aj .inrwrp {
            height: 300px
        }

        section.inc.master .item_wrapper.aj .items h2, section.inc.master .item_wrapper.lt .items h2 {
            bottom: 30px
        }

        section.inc.master .item_wrapper.dj .items h2, section.inc.master .item_wrapper.lt .items h2 {
            margin: 30px 30px 0 0
        }

    section.exc .item_wrapper {
        width: calc(33.3333% - 13.3333px);
        height: auto;
        margin: 0 0 50px 0
    }

        section.exc .item_wrapper h3 {
            text-align: left;
            margin-top: 15px;
            text-transform: uppercase
        }

        section.exc .item_wrapper .items {
            overflow: hidden;
            height: 424px
        }

            section.exc .item_wrapper .items .inrwrp {
                max-width: 100%
            }

        section.exc .item_wrapper.lg .items .inrwrp .inr {
            margin-bottom: 10px
        }

    section.exc .two-col .item_wrapper {
        width: calc(50% - 10px)
    }

    section.exc .four-col .item_wrapper {
        width: calc(25% - 15px)
    }

    section.showroom {
        background-size: cover;
        margin-bottom: 60px;
        padding: 0 0 40px;
        position: relative;
        overflow: hidden;
        min-height: 907px
    }

        section.showroom .items {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%
        }

        section.showroom .imgDiv {
            transition: all .7s ease-in-out;
            cursor: default !important;
            background-position: center top
        }

        section.showroom .btn_wrapper {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 140px;
            height: 40px;
            transform: translateY(-50%);
            display: inline-block;
            border: solid 1px #383838;
            display: block;
            opacity: 0;
            transition: all .3s ease-in-out;
            text-align: center;
            overflow: hidden;
            background-color: #ffffff
        }

            section.showroom .btn_wrapper a {
                color: #383838;
                position: relative;
                width: 100%;
                height: 40px;
                line-height: 40px;
                font-size: 16px;
                display: block;
                text-align: center;
                text-decoration: none;
                font-weight: 600;
                transition: all .3s ease-in-out
            }

                section.showroom .btn_wrapper a:hover {
                    transform: scale(1.2)
                }

        section.showroom .content_wrapper {
            position: absolute;
            left: 0;
            z-index: 4;
            width: 100%;
            top: 50px
        }

            section.showroom .content_wrapper h3 {
                display: inline-block;
                padding-right: 20px;
                margin-right: 20px;
                position: relative;
                text-transform: uppercase;
                font-weight: 700;
                color: #454545
            }

            section.showroom .content_wrapper h4 {
                margin: 0;
                padding: 0
            }

                section.showroom .content_wrapper h4::after {
                    display: none
                }

        section.showroom:hover .btn_wrapper {
            opacity: 1
        }

        section.showroom:hover .content_wrapper h3 {
            background-color: transparent;
            color: inherit
        }

body main section.map {
    filter: grayscale(100%);
    padding-bottom: 0
}

    body main section.map iframe {
        width: 100%;
        height: 600px;
        border: none
    }

body main section .corum iframe {
    width: 100%;
    height: 720px
}

body main section.rol_page {
    margin-top: 100px;
    padding-top: 20px
}

body main section ul {
    padding-left: 15px
}

    body main section ul li {
        line-height: 36px
    }

body main section.thinner a:not(.cbtn):not(.refreshCaptcha) {
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    color: #383838
}

    body main section.thinner a:not(.cbtn):not(.refreshCaptcha)::before {
        left: 0;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        content: '';
        border-top: solid 1px #383838;
        bottom: -2px;
        position: absolute;
        opacity: .7
    }

    body main section.thinner a:not(.cbtn):not(.refreshCaptcha):hover::before {
        animation: intro .5s ease-in-out
    }

    body main section.thinner a:not(.cbtn):not(.refreshCaptcha).tel-below-m {
        cursor: default
    }

        body main section.thinner a:not(.cbtn):not(.refreshCaptcha).tel-below-m::before {
            display: none
        }

    body main section.thinner a:not(.cbtn):not(.refreshCaptcha).nodec {
        white-space: normal
    }

        body main section.thinner a:not(.cbtn):not(.refreshCaptcha).nodec::before {
            display: none
        }

body main section.thinner .account-email a::before {
    display: none
}

body main section.thinner a.video-link::before {
    display: none
}

body main section.thinner .noprodtitle {
    text-align: center;
    margin-bottom: 55px
}

body main section.thinner.faqs .col-md-5 {
    padding-right: 50px;
    padding-bottom: 80px
}

    body main section.thinner.faqs .col-md-5 h3 {
        line-height: 1.7
    }

body main section.thinner.faqs .rolex-location h1 {
    font-size: 26px;
    font-weight: 500;
    color: #383838;
    line-height: 1.5em;
    text-transform: none
}

@keyframes intro {
    0% {
        left: 0;
        max-width: 100%
    }

    50% {
        left: 50%;
        max-width: 1%
    }

    100% {
        left: 0;
        max-width: 100%
    }
}

body main section.thinner .col-sm-5 h3 {
    padding-right: 50px
}

body main section.thinner .dv-wrapper .divider {
    border-top: solid 1px #dddddd;
    margin-top: 60px;
    margin-bottom: 80px
}

    body main section.thinner .dv-wrapper .divider.trans {
        opacity: 0;
        margin-top: 0;
        margin-bottom: 50px
    }

body main section.thinner .det_col {
    padding-bottom: 80px
}

    body main section.thinner .det_col h6:first-child, body main section.thinner .det_col h5:first-child {
        margin-top: 0 !important
    }

    body main section.thinner .det_col p:last-child {
        margin-bottom: 0
    }

    body main section.thinner .det_col h5 {
        font-size: 23px;
        margin-top: 40px;
        margin-bottom: 10px
    }

    body main section.thinner .det_col h6 {
        font-weight: 600;
        margin-top: 20px;
        line-height: 1.7
    }

    body main section.thinner .det_col .table-format {
        border: 0;
        margin-bottom: 20px
    }

        body main section.thinner .det_col .table-format td, body main section.thinner .det_col .table-format th {
            border-bottom: solid 1px #dddddd;
            padding: 5px 10px
        }

        body main section.thinner .det_col .table-format th {
            border-right: solid 1px #dddddd
        }

        body main section.thinner .det_col .table-format:last-child {
            margin: 0
        }

body main section.search-list .dropdown-toggle::after {
    border-top: 8px solid;
    border-right: 8px solid transparent;
    border-bottom: 0;
    border-left: 8px solid transparent
}

body main section.search-list .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
    border: 0;
    box-shadow: 0 0 5px rgba(0,0,0,0.2)
}

    body main section.search-list .dropdown-menu li {
        padding: 0px 15px
    }

        body main section.search-list .dropdown-menu li.divider {
            height: 1;
            margin: 0;
            overflow: hidden;
            border-top: 1px solid #383838
        }

        body main section.search-list .dropdown-menu li a {
            display: block;
            padding: 2px 0
        }

            body main section.search-list .dropdown-menu li a::before {
                display: none
            }

        body main section.search-list .dropdown-menu li:hover {
            background-color: #f4f4f4
        }

body main section .social-media {
    padding-top: 0
}

    body main section .social-media ul {
        display: flex;
        list-style: none;
        width: 100%;
        padding: 0
    }

        body main section .social-media ul li {
            list-style: none;
            margin: 0 15px 15px 0
        }

            body main section .social-media ul li a {
                color: #ffffff !important;
                font-size: 20px;
                background-color: #383838;
                width: 40px;
                height: 40px;
                text-align: center;
                border-radius: 50%;
                display: block;
                line-height: 40px;
                font-weight: 300
            }

                body main section .social-media ul li a::before {
                    display: none
                }

                body main section .social-media ul li a i {
                    font-weight: 300
                }

                    body main section .social-media ul li a i::before {
                        font-family: FontAwesome
                    }

                body main section .social-media ul li a:hover {
                    background-color: #ffffff;
                    border: solid 1px #383838
                }

            body main section .social-media ul li.facebook:hover a {
                color: #3b5998 !important;
                content: '\f0d5' !important
            }

            body main section .social-media ul li.youtube:hover a {
                color: #c4302b !important
            }

            body main section .social-media ul li.instagram:hover a {
                color: #d12d7f !important
            }

            body main section .social-media ul li.facetime:hover a {
                color: #34da4f !important
            }

section.sb {
    margin-bottom: 50px
}

.shopping-items {
    padding-bottom: 50px
}

    .shopping-items .img-cont, .shopping-items .prod-qty, .shopping-items .prod-price {
        width: 12%;
        vertical-align: top;
        text-align: center;
        position: relative
    }

        .shopping-items .img-cont img, .shopping-items .prod-qty img, .shopping-items .prod-price img {
            min-width: 100px;
            border: solid 1px #dddddd;
            vertical-align: top
        }

    .shopping-items .img-cont {
        min-width: 100px
    }

        /* .shopping-items .img-cont .lastcall { */
            /* top: -20px; */
            /* right: -20px; */
            /* font-size: 11px; */
            /* width: 40px; */
            /* height: 40px */
        /* } */
		 .shopping-items .img-cont .lastcall {
		    top: -0px;
    right: -17px;
    font-size: 9px;
    width: 36px;
    height: 36px;
		 }

            .shopping-items .img-cont .lastcall sup {
                color: red;
                font-size: 16px
            }

    .shopping-items .prod-qty p {
        margin-top: 20px
    }

    .shopping-items .prod-del {
        width: 20px;
        vertical-align: top;
        text-align: center;
        position: absolute;
        top: 15px;
        left: 15px
    }

    .shopping-items .det {
        flex-grow: 1;
        width: 70%
    }

    .shopping-items .prod-price, .shopping-items .price {
        text-align: right
    }

        .shopping-items .prod-price p, .shopping-items .price p {
            font-family: Lato,sans-serif
        }

            .shopping-items .prod-price p.fe-old-price, .shopping-items .price p.fe-old-price {
                text-decoration: line-through
            }

    .shopping-items .popup_close {
        width: 20px;
        height: 20px;
        position: absolute !important;
        right: 0;
        left: auto;
        top: 0
    }

        .shopping-items .popup_close .bar1, .shopping-items .popup_close .bar3 {
            width: 10px
        }

        .shopping-items .popup_close .bar1 {
            transform: rotate(-45deg) translate(0, -5px)
        }

        .shopping-items .popup_close .bar3 {
            transform: rotate(45deg) translate(-13px, -8.5px)
        }

        .shopping-items .popup_close::before {
            display: none
        }

    .shopping-items .prod-det {
        padding: 0 50px 0 25px;
        width: 64%
    }

        .shopping-items .prod-det h6 {
            font-size: 12px;
            margin-bottom: 15px;
            font-family: Lato,sans-serif
        }

        .shopping-items .prod-det h5 {
            font-weight: 600;
            margin-bottom: 10px
        }

        .shopping-items .prod-det p {
            font-size: 15px;
            line-height: 24px;
			text-align: left !important;
        }

    .shopping-items .items {
        display: flex;
        justify-content: space-between;
        padding: 50px 15px;
        align-items: flex-start;
        border-bottom: solid 1px #dddddd
    }

        .shopping-items .items:hover {
            background-color: #f9f9f9
        }

        .shopping-items .items a {
            white-space: normal !important
        }

            .shopping-items .items a::before {
                display: none
            }

.items-total {
    width: 50%;
    float: right
}

    .items-total .items {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 20px;
        padding: 0 15px
    }

        .items-total .items .amt-label, .items-total .items .prod-price {
            width: 50%
        }

            .items-total .items .amt-label p, .items-total .items .prod-price p, .items-total .items .amt-label h5, .items-total .items .prod-price h5 {
                margin: 0;
                text-align: right
            }

        .items-total .items .prod-price {
            width: 50%
        }

            .items-total .items .prod-price p {
                font-family: Lato,sans-serif
            }

        .items-total .items.tot {
            border-top: solid 1px #dddddd;
            padding-top: 30px
        }

            .items-total .items.tot h6, .items-total .items.tot h5 {
                font-weight: 600;
                font-size: 24px
            }

            .items-total .items.tot h5 {
                font-family: Lato,sans-serif
            }

.buttons {
    clear: both;
    margin: 0;
    padding: 20px 0 0 0;
    text-align: left;
    display: flex
}

    .buttons a:not(.cbtn) {
        height: 22px;
        top: 7px
    }

    .buttons .cbtn {
        margin-right: 40px
    }

    .buttons.flex-row-reverse .cbtn {
        margin-right: 0
    }

body section .lastcall {
    width: 50px;
    height: 50px;
    border: solid 1px #dddddd;
    border-radius: 50%;
    right: 38px;
    top: 0px;
    position: absolute;
    text-align: center;
    line-height: 1;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    border-bottom: 0;
    z-index: 9;
    background-color: #dddddd;
    color: red;
    text-transform: uppercase
}

body section.thinner.product-details .lastcall{
	  right: -25px;
    top: 0px;
}

    body section .lastcall sup {
        color: red;
        right: 5px;
        top: 5px;
        font-size: 20px
    }

body section .lastcall_txt, body section p.lastcall_txt {
    font-size: 15px;
    color: red;
    font-style: italic
}

    body section .lastcall_txt sup, body section p.lastcall_txt sup {
        color: red;
        font-size: 100%;
        font-size: 20px;
        top: 0 !important
    }

body section.prods .container {
    max-width: 1808px;
    margin: 0 auto
}

body section.prods .product-list {
    text-align: center
}

    body section.prods .product-list .prod-item {
        text-align: center;
        width: 100%;
        min-width: 290px
    }

        body section.prods .product-list .prod-item .img-wrapper {
            text-align: center;
            border: solid 1px #ffffff;
            overflow: hidden
        }

            body section.prods .product-list .prod-item .img-wrapper a {
                position: initial
            }

                body section.prods .product-list .prod-item .img-wrapper a:before {
                    display: none
                }

                body section.prods .product-list .prod-item .img-wrapper a img {
                    height: 408px;
                    width: 408px
                }

            /* body section.prods .product-list .prod-item .img-wrapper:hover { */
                /* border: solid 1px #dddddd */
            /* } */

                body section.prods .product-list .prod-item .img-wrapper:hover img {
                    transform: scale(1.09)
                }

                body section.prods .product-list .prod-item .img-wrapper:hover .cta {
                    opacity: 1
                }

        body section.prods .product-list .prod-item .prod-detail h5 {
            line-height: 1.6;
            font-size: 16px;
            white-space: normal
        }

        body section.prods .product-list .prod-item .prod-detail h6 {
            font-size: 12px;
            text-transform: uppercase
        }

        body section.prods .product-list .prod-item .prod-detail p {
            font-size: 14px;
            font-weight: 700;
            font-family: Lato,sans-serif
        }

            body section.prods .product-list .prod-item .prod-detail p span.fe-old-price {
                padding-right: 30px;
                font-weight: 400;
                text-decoration: line-through
            }

body section.product-details .details-image {
    width: 100%;
    height: auto;
    background-size: contain;
    background-position: center;
    border: 0;
    background-repeat: no-repeat;
    margin-right: 40px;
    margin-bottom: 20px;
    position: relative
}

body section.product-details .links {
    font-size: 14px;
    text-align: left
}

    body section.product-details .links span {
        padding: 0 10px
    }

body section.product-details .details-description {
    text-align: center;
    padding-top: 50px;
    width: 100%
}

    body section.product-details .details-description h6, body section.product-details .details-description h2 {
        margin-bottom: 30px
    }

    body section.product-details .details-description h2 {
        line-height: 1.6
    }

    body section.product-details .details-description p {
        line-height: 1.5;
        padding: 0 10%
    }

    body section.product-details .details-description .price {
        font-size: 32px;
        font-weight: 600;
        line-height: 50px;
        border-bottom: solid 1px #dddddd;
        margin-bottom: 40px;
        padding: 0 0 20px;
        width: 60%;
        font-family: Lato,sans-serif;
        margin-left: 20%
    }

        body section.product-details .details-description .price span.fe-old-price {
            text-decoration: line-through;
            opacity: .5;
            padding-right: 20px;
            font-weight: 500;
            font-size: 20px
        }

    body section.product-details .details-description .cbtn {
        margin-bottom: 25px
    }

.share-links {
    text-align: right
}

    .share-links > div {
        overflow: hidden
    }

    .share-links .share-container {
        z-index: 0;
        right: 0;
        transform: translate(calc(100% + 10px), 0);
        -webkit-transform: translate(calc(100% + 10px), 0);
        -o-transform: translate(calc(100% + 10px), 0);
        -moz-transform: translate(calc(100% + 10px), 0);
        transition: transform .3s ease-out
    }

        .share-links .share-container.show {
            transform: translate(-10px, 0);
            -webkit-transform: translate(-10px, 0);
            -o-transform: translate(-10px, 0);
            -moz-transform: translate(-10px, 0)
        }

    .share-links a.share-icon {
        color: #ffffff !important;
        background-color: #383838;
        text-align: center;
        border-radius: 5px;
        width: 25px;
        height: 25px;
        display: inline-block;
        border: solid 1px #383838
    }

        .share-links a.share-icon::before {
            border: none !important
        }

        .share-links a.share-icon:hover {
            background-color: #ffffff
        }

            .share-links a.share-icon:hover.facebook {
                color: #3b5998 !important
            }

            .share-links a.share-icon:hover.pinterest {
                color: #bd081c !important
            }

            .share-links a.share-icon:hover.email {
                color: #ce4f24 !important
            }

            .share-links a.share-icon:hover.whatsapp {
                color: #25d366 !important
            }

            .share-links a.share-icon:hover.twitter {
                color: #1da1f2 !important
            }

            .share-links a.share-icon:hover.copy-link {
                color: #6001d2 !important
            }

.share-text {
    z-index: 2;
    background-color: #ffffff
}

.frame360 .image-wrap .image-container {
    position: relative;
    padding-bottom: 65.189%;
    height: 0;
    overflow: hidden
}

    .frame360 .image-wrap .image-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%
    }

#live-container #cartier-page-container .cartier-header {
    z-index: 2
}

    #live-container #cartier-page-container .cartier-header section.cartier-header-submenu {
        position: relative
    }

#live-container #cartier-page-container article.cartier-header-submenu-collections.shrinked {
    max-width: 100%
}

    #live-container #cartier-page-container article.cartier-header-submenu-collections.shrinked .cartier-header-submenu-collection {
        width: auto;
        max-width: 100%
    }

#live-container #cartier-page-container #cartier-stories-inner-container .latest-news .latest-news-item__title {
    white-space: normal
}

#live-container #cartier-page-container #cartier-stories-inner-container .push--domino .push__content h3.push__title, #live-container #cartier-page-container #cartier-stories-inner-container .push--square .push__content h3.push__title {
    white-space: normal
}

#live-container #cartier-page-container .cartier-plp-product-container .cartier-plp-product-info .cartier-plp-product-name {
    white-space: normal
}

#live-container #cartier-page-container .cartier-plp-product-container .cartier-plp-product-info .cartier-plp-product-description {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

@media only screen and (min-width:1501px) {
    body section.exc .item_wrapper .items .inrwrp .inr {
        width: 120px;
        height: 120px
    }

    body .banner .carousel-item .details-banner-container p {
        font-size: 3rem
    }

        body .banner .carousel-item .details-banner-container p.description {
            font-size: 1.5rem
        }
}

@media only screen and (max-width:1500px) and (min-width:1401px) {
    body h1 {
        font: normal normal normal 48px/1.25em raleway,sans-serif
    }

    body section.exc .item_wrapper .items .inrwrp .inr {
        width: 120px;
        height: 120px
    }
}

@media only screen and (max-width:1400px) and (min-width:1201px) {
    body h1 {
        font: normal normal normal 42px/1.25em raleway,sans-serif
    }

    body main section.exc .item_wrapper .items .inrwrp {
        width: 450px
    }

        body main section.exc .item_wrapper .items .inrwrp .inr {
            width: 120px;
            height: 120px
        }

            body main section.exc .item_wrapper .items .inrwrp .inr:hover h5 {
                transform: scale(1)
            }

    body main section.exc .item_wrapper .items.bj .items .inrwrp::after {
        content: "";
        width: 120px;
        margin: 0 5px
    }

    body main section.inc.master .item_wrapper .items .inrwrp {
        max-width: 100%;
        padding: 0 20px;
        justify-content: center
    }

        body main section.inc.master .item_wrapper .items .inrwrp .inr {
            width: 160px;
            max-width: 33%
        }

            body main section.inc.master .item_wrapper .items .inrwrp .inr h5 {
                font-size: 12px;
                bottom: 20px
            }

            body main section.inc.master .item_wrapper .items .inrwrp .inr:hover h5 {
                transform: scale(1)
            }

    body main section.inc.master .item_wrapper.dj .inrwrp::after, body main section.inc.master .item_wrapper.aj .inrwrp::after {
        content: "";
        width: 160px
    }

    body main section.thinner.prods .container {
        max-width: 1180px;
        margin: 0 auto
    }

    body main section.thinner.prods .prod_wrapper .prod_items {
        margin-right: 80px
    }

        body main section.thinner.prods .prod_wrapper .prod_items:nth-child(3n) {
            margin-right: 0
        }
}

@media only screen and (max-width:1200px) {
    .video-collection .vids {
        width: 80%;
        margin: 0 auto 20px;
        text-align: center
    }

        .video-collection .vids p {
            line-height: normal
        }

    .video-collection .video-category, .video-collection .video-subcategory {
        text-align: center
    }

    .banner .carousel-item .details-banner-container p {
        max-width: 100%;
        font-size: 1.5rem
    }

        .banner .carousel-item .details-banner-container p.description {
            font-size: 1rem;
            margin-top: 15px;
            padding-top: 15px;
            margin-bottom: 10px
        }

    .banner .carousel-item .details-banner-container .logo {
        width: 80px
    }
}

@media only screen and (max-width:1200px) and (min-width:1024px) {
    body h1 {
        font: normal normal normal 36px/1.25em raleway,sans-serif
    }

    body main section.tagline.banner.d-flex {
        margin-bottom: 10px;
        padding: 0
    }

        body main section.tagline.banner.d-flex hr {
            margin: 5px auto
        }

    body main section.exc .item_wrapper .items .inrwrp {
        width: 450px
    }

        body main section.exc .item_wrapper .items .inrwrp .inr {
            width: 120px;
            height: 120px;
            margin-bottom: 10px
        }

            body main section.exc .item_wrapper .items .inrwrp .inr:hover h5 {
                transform: scale(1)
            }

    body main section.exc .item_wrapper.lg .inrwrp::after, body main section.exc .item_wrapper.bj .inrwrp::after {
        content: "";
        width: 120px;
        margin: 0 5px
    }

    body main section.inc.master .item_wrapper .items .inrwrp {
        max-width: 100%;
        padding: 0 20px;
        justify-content: center;
        height: 390px
    }

        body main section.inc.master .item_wrapper .items .inrwrp .inr {
            width: 120px;
            height: 120px
        }

            body main section.inc.master .item_wrapper .items .inrwrp .inr h5 {
                font-size: 12px;
                bottom: 10px
            }

            body main section.inc.master .item_wrapper .items .inrwrp .inr:hover h5 {
                transform: scale(1)
            }

    body main section.inc.master .item_wrapper.dj .inrwrp::after, body main section.inc.master .item_wrapper.aj .inrwrp::after {
        content: "";
        width: 120px
    }

    body main section.inc.master .item_wrapper.aj .inrwrp {
        height: 260px
    }

    body main section.thinner.prods .container {
        max-width: 992px;
        margin: 0 auto
    }

    body main section.thinner.prods .prod_wrapper .prod_items {
        margin-right: 50px;
        min-width: 285px
    }

        body main section.thinner.prods .prod_wrapper .prod_items:nth-child(3n) {
            margin-right: 0
        }
}

@media only screen and (max-width:1024px) {
    body header #slider-menu #wrapper .nav-content ul.sub-content .sub-menu, body header #myaccount-menu #wrapper .nav-content ul.sub-content .sub-menu, body header #slider-menu .wrapper .nav-content ul.sub-content .sub-menu, body header #myaccount-menu .wrapper .nav-content ul.sub-content .sub-menu {
        display: none
    }

    body header #slider-menu #wrapper .nav-content ul.sub-content li > a::after, body header #myaccount-menu #wrapper .nav-content ul.sub-content li > a::after, body header #slider-menu .wrapper .nav-content ul.sub-content li > a::after, body header #myaccount-menu .wrapper .nav-content ul.sub-content li > a::after {
        transform: rotate(0deg)
    }

    body header #slider-menu #wrapper .nav-content ul.sub-content li:hover > a::after, body header #myaccount-menu #wrapper .nav-content ul.sub-content li:hover > a::after, body header #slider-menu .wrapper .nav-content ul.sub-content li:hover > a::after, body header #myaccount-menu .wrapper .nav-content ul.sub-content li:hover > a::after {
        transform: rotate(0deg)
    }

    body header #slider-menu #wrapper .nav-content ul.sub-content li.open .sub-menu, body header #myaccount-menu #wrapper .nav-content ul.sub-content li.open .sub-menu, body header #slider-menu .wrapper .nav-content ul.sub-content li.open .sub-menu, body header #myaccount-menu .wrapper .nav-content ul.sub-content li.open .sub-menu {
        display: block
    }

    body header #slider-menu #wrapper .nav-content ul.sub-content li.open > a::after, body header #myaccount-menu #wrapper .nav-content ul.sub-content li.open > a::after, body header #slider-menu .wrapper .nav-content ul.sub-content li.open > a::after, body header #myaccount-menu .wrapper .nav-content ul.sub-content li.open > a::after {
        transform: rotate(-90deg)
    }

    body section {
        padding: 30px 10px
    }
    section.thinner.product-details.catalogs-iframe {
        padding: 60px 0;
    }

        body section.banner.prods, body section.banner.d-flex {
            min-height: 275px
        }

        body section.banner .carousel-item { /*height:calc((12/16) * 100vw)*/
        }

            /* body section.banner .carousel-item video { */
                /* object-fit: initial; */
                /* width: 100% */
            /* } */

        body section.small-content {
            margin: 0px 0px
        }

        body section .carousel-indicators {
            width: 0
        }

        body section.inc.master .item_wrapper .items h2 {
            font-size: 22px
        }

    body main div.detXZoom .modal-dialog .imgContainer {
        margin-top: 65px
    }
}

@media only screen and (max-width:1023px) and (min-width:768px) {
    body .side-nav li {
        padding: 0 15px;
        font-size: 14px;
        font-weight: 600
    }

    body h1 {
        font: normal normal normal 36px/1.25em raleway,sans-serif
    }

    body main section.profile-dashboard {
        padding-top: 0
    }

    body main section.tagline {
        margin-bottom: 20px
    }

        body main section.tagline.banner.d-flex {
            padding: 0;
            min-height: 250px;
            margin-top: 100px;
            margin-bottom: 0px
        }

            body main section.tagline.banner.d-flex hr {
                margin: 5px auto
            }

    body main section.prods .container {
        margin: 0 auto;
        max-width: 900px
    }

        body main section.prods .container .prod_wrapper .prod_items {
            margin-right: 50px;
            width: 300px;
            margin-bottom: 75px
        }

            body main section.prods .container .prod_wrapper .prod_items:nth-child(2n) {
                margin-right: 0
            }

    body main section.product-details .details-description {
        padding-top: 0
    }

    body main section.product-details .links {
        font-size: 12px
    }

    body main section.showroom {
        min-height: 500px
    }

    body main section.exc .item_wrapper .items .inrwrp {
        width: 450px
    }

        body main section.exc .item_wrapper .items .inrwrp .inr {
            width: 120px;
            height: 120px;
            margin-bottom: 10px
        }

            body main section.exc .item_wrapper .items .inrwrp .inr:hover h5 {
                transform: scale(1)
            }

    body main section.exc .item_wrapper.lg .inrwrp::after, body main section.exc .item_wrapper.bj .inrwrp::after {
        content: "";
        width: 120px;
        margin: 0 5px
    }

    body main section.exc .four-col .item_wrapper {
        width: calc(50% - 15px)
    }

    body main section.inc.master .item_wrapper {
        width: 100%
    }

        body main section.inc.master .item_wrapper .items .inrwrp {
            max-width: 500px;
            padding: 0 20px;
            justify-content: center;
            height: 390px
        }

            body main section.inc.master .item_wrapper .items .inrwrp .inr {
                width: 120px;
                height: 120px
            }

                body main section.inc.master .item_wrapper .items .inrwrp .inr h5 {
                    font-size: 12px;
                    bottom: 10px
                }

                body main section.inc.master .item_wrapper .items .inrwrp .inr:hover h5 {
                    transform: scale(1)
                }

        body main section.inc.master .item_wrapper.dj .inrwrp::after, body main section.inc.master .item_wrapper.aj .inrwrp::after {
            content: "";
            width: 120px
        }

        body main section.inc.master .item_wrapper.aj .inrwrp {
            height: 260px
        }

    body main section.video-collection .instagram-media {
        height: 470px;
        width: 416px !important
    }

    body main section.video-collection .video-iframe {
        height: 280px;
        width: 510px !important
    }

    body main section.video-collection .s-videos {
        max-width: 432px;
        height: 540px
    }

        body main section.video-collection .s-videos.short {
            height: 236px !important
        }

        body main section.video-collection .s-videos.med {
            height: 420px !important
        }

    body .banner .carousel-item .details-banner-container.rolex {
        justify-content: flex-end !important;
        padding-bottom: 40px !important;
        width: 100%
    }

        body .banner .carousel-item .details-banner-container.rolex p {
            font-size: 1.5rem
        }

    body .banner .carousel-item .details-banner-container p {
        max-width: 100%;
        font-size: 1rem
    }
}

@media only screen and (max-width:991px) {
    body main section.video-collection .video-assemble .video-list {
        padding-left: 10px;
        padding-right: 10px
    }

    body main section .banner .carousel-item .details-banner-container p {
        max-width: 100%;
        font-size: 1.2rem
    }

        body main section .banner .carousel-item .details-banner-container p.description {
            font-size: .8rem;
            margin-top: 10px;
            padding-top: 10px;
            margin-bottom: 5px
        }
}

@media only screen and (min-width:768px) {
    .m-view {
        display: none
    }

    .menu_footer h3 a {
        /* cursor: default */
		cursor:pointer;
    }

        .menu_footer h3 a:hover {
            text-decoration: none
        }
}

@media only screen and (max-width:768px) {
    .d-view {
        display: none
    }

    body {
        padding-top: 75px
    }

        body .popover {
            width: 60%
        }

        body .side-nav {
            flex-wrap: wrap;
            justify-content: space-between
        }

            body .side-nav li {
                padding: 0 15px;
                font-size: 14px;
                font-weight: 600;
                margin: 6px 0
            }

        body .cta.icon {
            width: 50px;
            height: 50px;
            line-height: 53px
        }

        body header {
            height: 75px
        }

            body header .nav-link img {
                max-width: 80px
            }

            body header .mol {
                width: 165px
            }

                body header .mol ul li {
                    padding: 0 3px 0 0
                }

                    body header .mol ul li.announcement {
                        padding: 0 0 0 3px
                    }

                    body header .mol ul li #call-myaccount-menu .loggedin {
                        right: -5px
                    }

                    body header .mol ul li.scart .nos {
                        right: -5px
                    }

            body header .logo-container {
                text-align: right
            }

                body header .logo-container a.navbar-brand {
                    background-size: contain;
                    max-width: 200px;
                    width: 100%
                }

            body header #slider-menu #wrapper, body header #myaccount-menu #wrapper, body header #slider-menu .wrapper, body header #myaccount-menu .wrapper {
                padding-right: 0;
                padding-bottom: 50px
            }

                body header #slider-menu #wrapper .menu-header, body header #myaccount-menu #wrapper .menu-header, body header #slider-menu .wrapper .menu-header, body header #myaccount-menu .wrapper .menu-header {
                    margin-left: 70px;
                    margin-right: 20px
                }

                    body header #slider-menu #wrapper .menu-header .user-help-icon li .srhinput input, body header #myaccount-menu #wrapper .menu-header .user-help-icon li .srhinput input, body header #slider-menu .wrapper .menu-header .user-help-icon li .srhinput input, body header #myaccount-menu .wrapper .menu-header .user-help-icon li .srhinput input {
                        padding-left: 20px
                    }

                body header #slider-menu #wrapper .menu_footer, body header #myaccount-menu #wrapper .menu_footer, body header #slider-menu .wrapper .menu_footer, body header #myaccount-menu .wrapper .menu_footer {
                    padding-right: 20px;
                    padding-left: 25px
                }

                    body header #slider-menu #wrapper .menu_footer p, body header #myaccount-menu #wrapper .menu_footer p, body header #slider-menu .wrapper .menu_footer p, body header #myaccount-menu .wrapper .menu_footer p {
                        line-height: 20px;
                        margin-top: 10px;
                        margin-bottom: 0px
                    }

                    body header #slider-menu #wrapper .menu_footer h3 a, body header #myaccount-menu #wrapper .menu_footer h3 a, body header #slider-menu .wrapper .menu_footer h3 a, body header #myaccount-menu .wrapper .menu_footer h3 a {
                        position: relative
                    }

                        body header #slider-menu #wrapper .menu_footer h3 a:hover, body header #myaccount-menu #wrapper .menu_footer h3 a:hover, body header #slider-menu .wrapper .menu_footer h3 a:hover, body header #myaccount-menu .wrapper .menu_footer h3 a:hover {
                            text-decoration: none
                        }

                body header #slider-menu #wrapper .nav-content, body header #myaccount-menu #wrapper .nav-content, body header #slider-menu .wrapper .nav-content, body header #myaccount-menu .wrapper .nav-content {
                    padding-left: 70px;
                    padding-right: 20px
                }

                    body header #slider-menu #wrapper .nav-content ul.sub-content, body header #myaccount-menu #wrapper .nav-content ul.sub-content, body header #slider-menu .wrapper .nav-content ul.sub-content, body header #myaccount-menu .wrapper .nav-content ul.sub-content {
                        padding-left: 20px;
                        width: 100%
                    }

                        body header #slider-menu #wrapper .nav-content ul.sub-content:first-child, body header #myaccount-menu #wrapper .nav-content ul.sub-content:first-child, body header #slider-menu .wrapper .nav-content ul.sub-content:first-child, body header #myaccount-menu .wrapper .nav-content ul.sub-content:first-child {
                            margin-top: 22px
                        }

                        body header #slider-menu #wrapper .nav-content ul.sub-content li, body header #myaccount-menu #wrapper .nav-content ul.sub-content li, body header #slider-menu .wrapper .nav-content ul.sub-content li, body header #myaccount-menu .wrapper .nav-content ul.sub-content li {
                            width: 100%
                        }

                            body header #slider-menu #wrapper .nav-content ul.sub-content li:hover, body header #myaccount-menu #wrapper .nav-content ul.sub-content li:hover, body header #slider-menu .wrapper .nav-content ul.sub-content li:hover, body header #myaccount-menu .wrapper .nav-content ul.sub-content li:hover {
                                border-top: solid 1px transparent
                            }

                        body header #slider-menu #wrapper .nav-content ul.sub-content .sub-menu, body header #myaccount-menu #wrapper .nav-content ul.sub-content .sub-menu, body header #slider-menu .wrapper .nav-content ul.sub-content .sub-menu, body header #myaccount-menu .wrapper .nav-content ul.sub-content .sub-menu {
                            position: relative;
                            left: 0;
                            border: 0;
                            min-width: auto
                        }

                            body header #slider-menu #wrapper .nav-content ul.sub-content .sub-menu ul, body header #myaccount-menu #wrapper .nav-content ul.sub-content .sub-menu ul, body header #slider-menu .wrapper .nav-content ul.sub-content .sub-menu ul, body header #myaccount-menu .wrapper .nav-content ul.sub-content .sub-menu ul {
                                margin-left: 0;
                                padding-left: 0
                            }

            body header #myaccount-menu .wrapper {
                padding-bottom: 0
            }

        body#home header {
            background-color: #ffffff
        }

            body#home header::before {
                display: none
            }

            body#home header.trans {
                background-color: #efefef
            }

            body#home header .mol ul li.announcement .announcement-link.announcement-link-icon {
                background-image: url(../images/covid-19-d-icon.png)
            }

                body#home header .mol ul li.announcement .announcement-link.announcement-link-icon:hover {
                    background-color: transparent
                }

            body#home header .mol ul li a {
                background-color: #383838;
                color: #ffffff
            }

                body#home header .mol ul li a#call-side-menu > div {
                    background-color: #ffffff
                }

                body#home header .mol ul li a#call-side-menu:hover {
                    background-color: #ffffff
                }

                    body#home header .mol ul li a#call-side-menu:hover > div {
                        background-color: #383838 !important
                    }

                body#home header .mol ul li a:hover {
                    background-color: #ffffff;
                    color: #383838
                }

            body#home header .navbar-brand {
                background-image: url(../images/govindjis-logo2.png)
            }

        body h1 {
            font: normal normal normal 28px/1.25em raleway,sans-serif
        }

        body h3 {
            margin-bottom: 20px
        }

        body h4 {
            font-size: 1.25rem;
            margin-bottom: 30px
        }

            body h4.lg {
                font-size: 30px
            }

            body h4::after {
                width: 90%;
                left: 5%
            }

        body .banner .carousel-control-next img, body .banner .carousel-control-prev img {
            width: 20px !important
        }

        body main #site-alerts {
            width: 200px;
            margin-top: 1em
        }

            body main #site-alerts .icon-warning {
                padding: 5px 5px 5px 5px;
                margin: 0;
                font-size: 14px
            }

        body main section.profile-dashboard {
            padding-top: 0
        }

            body main section.profile-dashboard .tabs-container .order-history .order-details .details-info {
                flex-wrap: wrap;
                padding: 0
            }

                body main section.profile-dashboard .tabs-container .order-history .order-details .details-info .shipping-address h4, body main section.profile-dashboard .tabs-container .order-history .order-details .details-info .billing-address h4 {
                    font-size: 20px
                }

            body main section.profile-dashboard .tabs-container .order-history .order-details .products-table {
                padding-top: 0
            }

            body main section.profile-dashboard .tabs-container .order-history .order-details h3 {
                font-size: 24px
            }

            body main section.profile-dashboard .tabs-container .order-history .order {
                padding: 15px 15px 0
            }

                body main section.profile-dashboard .tabs-container .order-history .order .order-total {
                    text-align: left
                }

                    body main section.profile-dashboard .tabs-container .order-history .order .order-number .order-value, body main section.profile-dashboard .tabs-container .order-history .order .order-total .order-value {
                        font-size: 20px;
                        margin-bottom: 10px
                    }

        body main section.thinner {
            padding-top: 0
        }

            body main section.thinner .det_col {
                padding-bottom: 50px
            }

                body main section.thinner .det_col h5 {
                    font-size: 20px;
                    margin-bottom: 20px
                }

        body main section.product-details .details-description {
            padding-top: 20px
        }

            body main section.product-details .details-description h6 {
                margin-bottom: 15px
            }

            body main section.product-details .details-description h2 {
                font-size: 22px
            }

            body main section.product-details .details-description P {
                font-size: 15px
            }

        body main section.product-details .links {
            font-size: 12px;
            text-align: center
        }

        body main section.product-details .details-image {
            height: auto
        }

        body main section.product-details .lastcall {
            right: 0px;
            top: 0px
        }

        body main section.rol_page {
            margin-top: 0
        }

        body main section.tagline {
            margin-bottom: 30px !important
        }

            body main section.tagline.banner {
                min-height: 200px;
                margin-top: 0
            }

                body main section.tagline.banner hr {
                    margin: 10px auto
                }

                body main section.tagline.banner h3 {
                    font-size: 22px
                }

                body main section.tagline.banner.rol {
                    padding: 0;
                    min-height: 0;
                    margin: 0
                }

        body main section.showroom {
            min-height: 300px;
            margin-bottom: 0;
            padding-top: 0
        }

            body main section.showroom .m_cont {
                overflow: hidden;
                height: 300px;
                position: relative;
                float: left;
                width: 100%;
                margin-top: 35px
            }

            body main section.showroom .content_wrapper {
                top: 0
            }

                body main section.showroom .content_wrapper h4 {
                    font-size: 22px;
                    text-transform: uppercase;
                    color: #383838;
                    font-weight: 500
                }

        body main section.exc {
            padding: 0
        }

            body main section.exc .item_wrapper {
                width: 100%;
                display: flex;
                flex-wrap: wrap
            }

                body main section.exc .item_wrapper .items {
                    height: 350px;
                    order: 2
                }

                    body main section.exc .item_wrapper .items .inrwrp {
                        width: 375px
                    }

                        body main section.exc .item_wrapper .items .inrwrp .inr {
                            width: 100px;
                            height: 100px;
                            margin-bottom: 10px
                        }

                            body main section.exc .item_wrapper .items .inrwrp .inr:hover h5 {
                                transform: scale(1)
                            }

                body main section.exc .item_wrapper h3 {
                    order: 1;
                    margin: 0 0 5px;
                    font-size: 22px
                }

                body main section.exc .item_wrapper.lg .inrwrp::after {
                    content: "";
                    width: 100px;
                    margin: 0 5px
                }

            body main section.exc .four-col .item_wrapper, body main section.exc .two-col .item_wrapper {
                width: 100%
            }

        body main section.inc {
            padding: 0
        }

            body main section.inc.master {
                margin-bottom: 50px
            }

                body main section.inc.master .item_wrapper {
                    width: 100%;
                    height: 460px;
                    overflow: visible;
                    margin-bottom: 50px
                }

                   /* body main section.inc.master .item_wrapper .items h2 {
                        bottom: auto !important;
                        top: 0 !important;
                        margin: 0 !important;
                        text-align: left !important
                    } 

                    body main section.inc.master .item_wrapper .items .imgDiv {
                        height: 410px;
                        margin-top: 45px
                    } */
					
					 body main section.inc.master .item_wrapper .items .imgDiv {
                        height: 410px;
                        margin-top: 15px
                    }

                    body main section.inc.master .item_wrapper .items .inrwrp {
                        max-width: 375px;
                        padding: 0 20px;
                        justify-content: center;
                        height: 335px;
                        margin: 45px 0 0 !important
                    }

                        body main section.inc.master .item_wrapper .items .inrwrp .inr {
                            width: 85px;
                            height: 85px
                        }
section.inc.master .item_wrapper.gj.hyderabadi .inrwrp{
	height: 225px;
}
section.inc.master .item_wrapper.aj.lux .inrwrp {
    width: 250px;
}
   

    body main section.inc.master .item_wrapper .items .inrwrp .inr h5 {
        font-size: 12px;
        bottom: 10px
    }

                            body main section.inc.master .item_wrapper .items .inrwrp .inr:hover h5 {
                                transform: scale(1)
                            }

                    body main section.inc.master .item_wrapper.dj .inrwrp::after, body main section.inc.master .item_wrapper.aj .inrwrp::after {
                        content: "";
                        width: 100px
                    }

                    body main section.inc.master .item_wrapper.aj .inrwrp {
                        height: 220px
                    }

        body .shopping-items .items {
            flex-wrap: wrap;
            padding-bottom: 20px
        }

            body .shopping-items .items .prod-det {
                order: 4;
                width: 100%;
                padding: 30px 0 0
            }

            body .shopping-items .items .prod-qty p {
                margin-top: 0;
                line-height: 1
            }

            body .shopping-items .items .prod-price {
                width: 20%
            }

                body .shopping-items .items .prod-price h6 {
                    display: none
                }

                body .shopping-items .items .prod-price p {
                    line-height: 1
                }

        body .items-total {
            width: 100%
        }

        body .buttons {
            margin-bottom: 0;
            padding-right: 0;
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start
        }

            body .buttons a {
                text-align: center;
                order: 2;
                margin-left: auto !important;
                margin-right: auto !important
            }

            body .buttons .cbtn {
                margin: 0 0 30px;
                order: 1;
                width: 100%
            }

        body .mediaModel .modal-dialog {
            top: 70px;
            transform: translateY(0) !important
        }

        body #YTVideo .modal-dialog {
            width: 85%;
            left: 5%
        }

            body #YTVideo .modal-dialog .modal-content .modal-body iframe {
                height: 220px
            }

        body #FBVideo .modal-dialog {
            width: 85%;
            left: 5%
        }

            body #FBVideo .modal-dialog .modal-content .modal-body {
                padding: 0
            }

                body #FBVideo .modal-dialog .modal-content .modal-body iframe {
                    height: 450px;
                    overflow: hidden
                }

        body #INVideo .modal-dialog {
            width: 85%;
            left: 5%
        }

            body #INVideo .modal-dialog .modal-content .modal-body {
                padding: 0
            }

                body #INVideo .modal-dialog .modal-content .modal-body iframe {
                    width: 100%;
                    height: 373px
                }

        body #live-container #cartier-page-container .cartier-frontpage-product-square .cartier-header-center .cartier-header-center-title {
            font-size: 16px
        }

        body #live-container #cartier-page-container .cartier-plp-filter-container {
            height: auto
        }

    footer {
        text-align: center
    }

        footer a:not(.nodec)::before {
            left: 0 !important;
            max-width: 100% !important
        }

        footer .addr-blc, footer .socal-blc {
            margin: 0
        }

            footer .addr-blc p, footer .socal-blc p {
                text-align: center !important
            }

        footer .addr-blc {
            margin-top: 20px
        }

        footer .ph-bloc {
            padding-top: 0
        }

        footer .social-media ul {
            margin-top: 10px
        }

        footer .sub-f p {
            margin-bottom: 10px
        }

        footer .sub-f .copyr, footer .sub-f .devby {
            -ms-flex: 0 0 50%;
            flex: 0 0 50%;
            max-width: 50%
        }

        footer .sub-f .copyr {
            text-align: left !important
        }

    .sr-popup {
        max-width: 350px
    }

    .banner .carousel-item .details-banner-container.rolex {
        justify-content: flex-end !important;
        padding-bottom: 30px !important;
        width: 100%
    }

        .banner .carousel-item .details-banner-container.rolex p {
            font-size: 1.3rem
        }

    .banner .carousel-item .details-banner-container p {
        max-width: 100%;
        font-size: 1rem
    }

    .missionvid {
        padding: 70px 0px 200px 0px !important
    }

        .missionvid .container {
            width: 100% !important
        }
}

@media only screen and (max-width:575px) {
    .banner .carousel-item .details-banner-container p {
        max-width: 100%;
        font-size: .8rem
    }

    .banner .carousel-item .details-banner-container .cbtn-dark {
        height: 30px;
        line-height: 30px;
        font-size: .8rem
    }

    .banner .carousel-item .details-banner-container .logo {
        width: 45px
    }
}

@media only screen and (max-width:480px) {
    body header #slider-menu #wrapper .menu_footer p, body header #myaccount-menu #wrapper .menu_footer p, body header #slider-menu .wrapper .menu_footer p, body header #myaccount-menu .wrapper .menu_footer p {
        font-size: 11px
    }
	.details-info {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}
.addressfields .form-group.col-md-6 {
    max-width: 100%;
}
body#store-jewelry .banner.d-flex, body#store-details .banner.d-flex, #store-comingsoon .banner.d-flex {
    min-height: 150px;
}
    body header #slider-menu #wrapper .menu_footer .contact-info, body header #myaccount-menu #wrapper .menu_footer .contact-info, body header #slider-menu .wrapper .menu_footer .contact-info, body header #myaccount-menu .wrapper .menu_footer .contact-info {
        width: 100%
    }

    body header #slider-menu #wrapper .menu_footer .cbtn, body header #myaccount-menu #wrapper .menu_footer .cbtn, body header #slider-menu .wrapper .menu_footer .cbtn, body header #myaccount-menu .wrapper .menu_footer .cbtn {
        width: 100%;
        margin: 20px 0 40px
    }

    body footer .socal-blc {
        margin-top: 3rem
    }

    body footer .d-flex {
        flex-wrap: wrap;
        justify-content: center !important
    }

        body footer .d-flex .social-media {
            order: 1;
            width: 100%
        }

            body footer .d-flex .social-media ul {
                padding: 0;
                margin-bottom: 20px
            }

                body footer .d-flex .social-media ul li:first-child {
                    margin-left: 0
                }

            body footer .d-flex .social-media.facetime-absolute {
                position: absolute;
                top: -200px
            }

        body footer .d-flex .nodec {
            order: 2
        }

    body .banner .carousel-item .details-banner-container.rolex {
        justify-content: flex-end !important;
        padding-bottom: 20px !important;
        width: 100%
    }

        body .banner .carousel-item .details-banner-container.rolex p {
            font-size: 1.2rem
        }

    body main section.search-list .dropdown-menu {
        width: 98%;
        min-width: auto !important
    }

        body main section.search-list .dropdown-menu li {
            line-height: 30px;
            padding: 5px 15px
        }

            body main section.search-list .dropdown-menu li a {
                white-space: normal !important
            }

    body main section.accordion input[type="checkbox"] + label + section article {
        padding: 0 0 40px
    }

    body main section .items-total {
        margin-top: 50px !important
    }

    body main section .buttons {
        top: 0 !important
    }

    body main section #cardExpiryMonth {
        margin-bottom: 15px
    }

    body main section.tagline {
        padding: 100px 0
    }

        body main section.tagline h1 {
            font: normal normal normal 24px/1.25em raleway,sans-serif;
            padding: 0 10px
        }

        body main section.tagline.banner h1 {
            font: normal normal normal 30px/1.25em raleway,sans-serif
        }

        body main section.tagline.banner.pagennotfound, body main section.tagline.banner.outofstock {
            background-position: 0 center
        }

        body main section.tagline.banner.privacy {
            background-position: right 0
        }

        body main section.tagline.banner.d-flex::before { 
            background-color: rgba(0,0,0,0.4) 
         }
		 
		  body main section.tagline.banner.d-flex.prods::before,  body main section.tagline.banner.brand.d-flex::before  { 
            background-color: transparent; 
         }

        /* body main section.tagline.banner.d-flex h1, body main section.tagline.banner.d-flex h3 { */
            /* color: #ffffff !important */
        /* } */

        body main section.tagline.banner.d-flex hr {
            border: solid 1px #ffffff !important
        }

    body main section.inc.master .item_wrapper .items .inrwrp {
        max-width: 100%;
        padding: 0
    }

    body main section.thinner.faqs .col-md-5 {
        padding-right: 15px;
        padding-bottom: 0
    }

    body main section.thinner .det_col .vids .video-iframe {
        height: 215px
    }

    body main section.thinner.vid-det h3 {
        text-align: center
    }

    body main section.thinner.vid-det .vids {
        max-width: 90%
    }

    body main section.prods .container {
        max-width: 100%;
        margin: 0
    }

        body main section.prods .container .prod_wrapper .prod_items {
            width: 100%;
            margin-right: 0;
            min-width: auto
        }
		.join-us p{
			width: 80%;
  margin: 0 auto !important;
		}
    .links.d-flex.details {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 40px;
        margin-top:0;
    }
    .col.p-0.share-links.details {
        text-align: center;
    }
    .share-links.details .d-flex {
        display: block !important;
        text-align: center;
    }
    .links.d-flex.details div {
        margin-bottom: 10px;
    }
    .share-links.details.show .share-container {
        transform: translate(0px, 0) !important;
        -webkit-transform: translate(0px, 0);
        -o-transform: translate(10px, 0);
        -moz-transform: translate(10px, 0);
    }
    body section.product-details .links {
       
        margin-left: 0;
    }
    .catlog-below-text {
        margin-bottom: 45px;
       
    }

/*    #account-signup .form-group-captcha .captcha-container .refcpt {
        position: absolute;
        margin-left: 68px !important;
    }*/
    div#divId {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

@media only screen and (max-width:500px) {
    #live-container #cartier-page-container .cartier-frontpage-product-square {
        width: 100%
    }

        #live-container #cartier-page-container .cartier-frontpage-product-square .cartier-header-center .cartier-header-center-title {
            font-size: 13px
        }
}

@media only screen and (max-width:410px) {
    body header .mol {
        padding-left: 5px
    }

        body header .mol ul li, body header .mol ul li.announcement {
            padding: 0
        }

    body header .logo-container {
        text-align: right;
        margin-top: 5px;
        padding-right: 5px
    }

    body main section.tagline {
        padding: 50px 0
    }

        body main section.tagline h1 {
            font: normal normal normal 22px/1.25em raleway,sans-serif;
            padding: 0 10px
        }

    body .banner .carousel-item .details-banner-container.rolex {
        justify-content: flex-end !important;
        padding-bottom: 14px !important;
        width: 100%
    }

        body .banner .carousel-item .details-banner-container.rolex p {
            font-size: 1.2rem
        }
}

.accordion {
    margin-bottom: 50px
}

    .accordion input[type="checkbox"] {
        display: none
    }

        .accordion input[type="checkbox"] + label {
            text-align: center;
            font-size: 20px;
            padding: 40px 0;
            display: block;
            font-weight: 500;
            margin: 0;
            text-transform: uppercase;
            opacity: .5
        }

            .accordion input[type="checkbox"] + label span {
                width: 30px;
                height: 30px;
                margin-right: 10px;
                border-radius: 50%;
                background-color: #383838;
                color: #ffffff;
                text-align: center;
                font-family: Lato,sans-serif;
                line-height: 28px;
                font-size: 22px;
                display: inline-block;
                position: relative;
                top: -3px
            }

            .accordion input[type="checkbox"] + label + section {
                max-height: 0;
                overflow: hidden;
                padding: 0;
                border-bottom: solid 1px #dddddd;
                transition: all .45s ease-in-out
            }

                .accordion input[type="checkbox"] + label + section article {
                    padding: 40px 0
                }

                .accordion input[type="checkbox"] + label + section.cards-list article {
                    text-align: center
                }

                    .accordion input[type="checkbox"] + label + section.cards-list article ul {
                        list-style: none
                    }

                .accordion input[type="checkbox"] + label + section.payment-form form .form-group:last-child {
                    margin-bottom: 0;
                    padding-bottom: 0
                }

                .accordion input[type="checkbox"] + label + section.payment-form form .form-group .buttons {
                    padding-bottom: 0;
                    top: 120px;
                    position: relative
                }

        .accordion input[type="checkbox"]:checked + label {
            opacity: 1
        }

            .accordion input[type="checkbox"]:checked + label + section {
                max-height: 2000px;
                padding-bottom: 0;
                overflow: visible
            }

    .accordion .shopping-items {
        padding: 0;
        border: 0
    }

        .accordion .shopping-items .items {
            margin-bottom: 4
        }

            .accordion .shopping-items .items:last-child {
                border-bottom: 0
            }

            .accordion .shopping-items .items .prod-det {
                text-align: left
            }

    .accordion .items-total {
        margin-top: 150px
    }

.addr-popup {
    position: fixed;
    width: 100%;
    height: auto;
    padding: 80px 0 50px;
    max-height: 100%;
    left: 0%;
    top: 0%;
    background-color: rgba(255,255,255,0.94);
    display: none;
    z-index: 999;
    overflow-y: scroll
}

    .addr-popup .popup_close {
        right: 1rem;
        left: auto
    }

    .addr-popup.show {
        display: block
    }

section.profile-dashboard article {
    max-width: 100%
}

section.profile-dashboard .tabs-container {
    margin: 0
}

    section.profile-dashboard .tabs-container .order-history {
        max-width: 100%
    }

        section.profile-dashboard .tabs-container .order-history label::before {
            content: 'View '
        }

        section.profile-dashboard .tabs-container .order-history ul {
            list-style: none;
            margin: 0;
            padding: 0
        }

            section.profile-dashboard .tabs-container .order-history ul li {
                margin: 0;
                padding: 0
            }

        section.profile-dashboard .tabs-container .order-history .order {
            border: solid 1px #dddddd;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            overflow: hidden;
            justify-content: space-between;
            padding: 40px 40px 0;
            transition: .3s ease-in-out;
            margin-bottom: 40px
        }

            section.profile-dashboard .tabs-container .order-history .order h4::after {
                display: none !important
            }

            section.profile-dashboard .tabs-container .order-history .order .order-number, section.profile-dashboard .tabs-container .order-history .order .order-total {
                -webkit-flex: 1 0 50%;
                -ms-flex: 1 0 50%;
                flex: 1 0 50%
            }

                section.profile-dashboard .tabs-container .order-history .order .order-number .order-title, section.profile-dashboard .tabs-container .order-history .order .order-total .order-title {
                    color: #383838;
                    font-size: 18px;
                    margin: 0 0 15px
                }

                section.profile-dashboard .tabs-container .order-history .order .order-number .order-value, section.profile-dashboard .tabs-container .order-history .order .order-total .order-value {
                    font-size: 26px;
                    font-family: Lato,sans-serif
                }

                section.profile-dashboard .tabs-container .order-history .order .order-number .state, section.profile-dashboard .tabs-container .order-history .order .order-total .state {
                    font-size: 16px
                }

                    section.profile-dashboard .tabs-container .order-history .order .order-number .state.delivered span, section.profile-dashboard .tabs-container .order-history .order .order-total .state.delivered span {
                        color: #099c1a;
                        font-weight: 500
                    }

                    section.profile-dashboard .tabs-container .order-history .order .order-number .state.pending span, section.profile-dashboard .tabs-container .order-history .order .order-total .state.pending span {
                        color: #f5a623;
                        font-weight: 500
                    }

            section.profile-dashboard .tabs-container .order-history .order .order-total {
                text-align: right
            }

        section.profile-dashboard .tabs-container .order-history label {
            font-size: 18px;
            font-size: 1.125rem;
            line-height: 20px;
            line-height: 1.25rem;
            border-top: 1px solid #dddddd;
            color: #383838;
            cursor: pointer;
            -webkit-flex: 1 0 100%;
            -ms-flex: 1 0 100%;
            flex: 1 0 100%;
            letter-spacing: .096em;
            max-height: 75px;
            padding: 25px 0
        }

        section.profile-dashboard .tabs-container .order-history .order-details {
            max-height: 0;
            transition: max-height .3s ease,opacity .3s ease;
            width: 100%
        }

            section.profile-dashboard .tabs-container .order-history .order-details h3 {
                font-size: 26px;
                text-transform: uppercase
            }

            section.profile-dashboard .tabs-container .order-history .order-details h4 {
                font-size: 24px;
                text-transform: uppercase;
                margin: 0
            }

                section.profile-dashboard .tabs-container .order-history .order-details h4::after {
                    display: none
                }

            section.profile-dashboard .tabs-container .order-history .order-details .products-table {
                padding: 0
            }

            section.profile-dashboard .tabs-container .order-history .order-details .shopping-items .items:hover {
                background-color: #fff !important
            }

            section.profile-dashboard .tabs-container .order-history .order-details .details-info {
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex;
                -webkit-justify-content: flex-start;
                -ms-flex-pack: start;
                justify-content: flex-start;
                padding: 45px 0 80px
            }

                section.profile-dashboard .tabs-container .order-history .order-details .details-info .shipping-address, section.profile-dashboard .tabs-container .order-history .order-details .details-info .billing-address {
                    min-width: 365px
                }

                    section.profile-dashboard .tabs-container .order-history .order-details .details-info .shipping-address p, section.profile-dashboard .tabs-container .order-history .order-details .details-info .billing-address p {
                        margin-bottom: 2px
                    }

                        section.profile-dashboard .tabs-container .order-history .order-details .details-info .shipping-address p:last-child, section.profile-dashboard .tabs-container .order-history .order-details .details-info .billing-address p:last-child {
                            margin-top: 15px;
                            font-style: italic
                        }

                    section.profile-dashboard .tabs-container .order-history .order-details .details-info .shipping-address h4, section.profile-dashboard .tabs-container .order-history .order-details .details-info .billing-address h4 {
                        font-size: 24px;
                        text-transform: capitalize;
                        margin-bottom: 30px
                    }

                        section.profile-dashboard .tabs-container .order-history .order-details .details-info .shipping-address h4::after, section.profile-dashboard .tabs-container .order-history .order-details .details-info .billing-address h4::after {
                            display: none
                        }

            section.profile-dashboard .tabs-container .order-history .order-details .items-total .items .prod-price p {
                line-height: 1.3
            }

        section.profile-dashboard .tabs-container .order-history [type="checkbox"] {
            display: none
        }

            section.profile-dashboard .tabs-container .order-history [type="checkbox"]:checked + .order label {
                color: #171717
            }

                section.profile-dashboard .tabs-container .order-history [type="checkbox"]:checked + .order label::before {
                    content: 'Hide '
                }

                section.profile-dashboard .tabs-container .order-history [type="checkbox"]:checked + .order label i::before {
                    content: '\f106'
                }

            section.profile-dashboard .tabs-container .order-history [type="checkbox"]:checked + .order .order-details {
                max-height: 5000px
            }

#home-videocollection {
    overflow-x: hidden
}

.mediaModel .modal-dialog {
    top: 50%;
    transform: translateY(-50%) !important
}

    .mediaModel .modal-dialog .popup_close {
        position: absolute;
        left: 100%;
        z-index: 99;
        top: -20px;
        margin-left: -20px
    }

    .mediaModel .modal-dialog .modal-content {
        background: transparent;
        border-radius: 0;
        border: 0
    }

        .mediaModel .modal-dialog .modal-content .modal-body {
            padding: 0 !important
        }

            .mediaModel .modal-dialog .modal-content .modal-body iframe {
                background-color: transparent !important
            }

.video-collection h3 + p {
    margin-top: 20px;
    padding-right: 50px
}

.video-collection .video-assemble {
    margin-bottom: 80px
}

    .video-collection .video-assemble .video-category p, .video-collection .video-assemble .video-subcategory p {
        font-size: 2rem
    }

    .video-collection .video-assemble .video-list {
        padding-left: 60px;
        padding-right: 60px
    }

    .video-collection .video-assemble .vids {
        margin-bottom: 60px;
        width: 100%;
        flex: 1
    }

        .video-collection .video-assemble .vids img {
            margin-bottom: 15px;
            border: solid 1px #f1f1f1
        }

        .video-collection .video-assemble .vids p {
            font-size: 1rem;
            text-transform: none;
            margin: initial;
            padding-bottom: initial;
            line-height: normal
        }

    .video-collection .video-assemble .video-iframe {
        width: 100%;
        height: 390px;
        margin-bottom: 20px
    }

    .video-collection .video-assemble .s-videos {
        width: 100%;
        max-width: 540px;
        height: 540px;
        margin-bottom: 20px
    }

    .video-collection .video-assemble .instagram-media {
        height: 594px
    }

#YTVideo .modal-dialog {
    max-width: 95%;
    width: 1000px
}

    #YTVideo .modal-dialog .modal-content .modal-body {
        padding: 0
    }

        #YTVideo .modal-dialog .modal-content .modal-body iframe {
            width: 1000px;
            max-width: 100%;
            height: 500px
        }

#FBVideo .modal-dialog {
    max-width: 95%;
    width: 540px
}

    #FBVideo .modal-dialog .modal-content .modal-body {
        padding: 0
    }

        #FBVideo .modal-dialog .modal-content .modal-body iframe {
            width: 540px;
            max-width: 100%;
            height: 675px
        }

#INVideo .modal-dialog {
    max-width: 95%;
    width: 540px
}

    #INVideo .modal-dialog .modal-content .modal-body {
        padding: 0
    }

        #INVideo .modal-dialog .modal-content .modal-body iframe {
            width: 540px;
            height: 594px
        }

.missionvid {
    padding: 100px 0px 200px 0px
}

    .missionvid .container {
        width: 70%
    }

        .missionvid .container .vids a {
            width: 55%
        }

            .missionvid .container .vids a img {
                width: 100%
            }

.spinner-border {
    display: inline-block;
    width: 24px;
    margin-top: 10px;
    margin-left: 10px;
    height: 24px;
    vertical-align: text-bottom;
    border: 3px solid #383838;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spin .75s linear infinite;
    animation: spin .75s linear infinite
}

    .spinner-border.spinner-border-lg {
        width: 50px;
        height: 50px
    }

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg)
    }
}

.form-control-style {
    border-radius: 0;
    border: solid 1px #dddddd;
    font-size: 16px;
    padding: .375rem .75rem
}

    .form-control-style::placeholder {
        font-size: 14px;
        opacity: .5
    }

    .form-control-style:focus {
        outline: none;
        border: solid 1px #dddddd;
        box-shadow: 0 0 0 3px #dddddd
    }

.rolex-icon {
    padding: 0;
    height: 71px;
    margin-left: auto;
    margin-right: auto;
    width: 150px
}

    .rolex-icon.header-item {
        margin-right: 0
    }

.danger {
    color: red
}

    .danger.icon-warning {
        margin: 2rem
    }

.error {
    color: red
}

.form-group-captcha {
    top: -20px;
    position: relative
}

    .form-group-captcha .captcha-container {
        margin-bottom: 0
    }

        .form-group-captcha .captcha-container .refcpt {
            position: absolute;
            left: 215px;
            top: 45px
        }

        .form-group-captcha .captcha-container #CaptchaInputText {
            border-radius: 0;
            border: solid 1px #dddddd;
            font-size: 16px;
            padding: .375rem .75rem
        }

            .form-group-captcha .captcha-container #CaptchaInputText::placeholder {
                font-size: 14px;
                opacity: .5
            }

            .form-group-captcha .captcha-container #CaptchaInputText:focus {
                outline: none;
                border: solid 1px #dddddd;
                box-shadow: 0 0 0 3px #dddddd
            }

.validation-summary-errors {
    color: red;
    font-size: 16px
}

    .validation-summary-errors li {
        font-size: 16px
    }

.no-bullets ul {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.upload-div input {
    cursor: pointer
}

#facetime.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    padding: 80px 0 50px;
    max-height: 100%;
    left: 0%;
    top: 0%;
    background-color: rgba(255,255,255,0.94);
    display: none;
    z-index: 999;
    overflow-y: scroll
}

    #facetime.overlay .popup_close {
        right: 1rem;
        left: auto
    }

    #facetime.overlay.show {
        display: block
    }

#title-category {
    overflow: hidden;
    text-overflow: ellipsis
}

.field-validation-error:before {
    font-family: "Font Awesome 5 Free";
    content: "\f06a";
    display: inline-block;
    font-weight: 900;
    margin-right: 10px;
    font-size: 1rem
}

.item-outofstock {
    margin-top: 30px;
    font-weight: bold
}

#showroomSlider .carousel-indicators li:after {
    transition: none
}

#showroomSlider .carousel-control-prev, #showroomSlider .carousel-control-next {
    width: 15%
}

.simplePopup {
    display: none;
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    border: 1px solid #d6d6d6;
    background: #fff;
    z-index: 6;
    padding: 12px;
    width: 800px;
    min-width: unset;
    text-align: center;
    max-height: calc(100vh - 70px);
    z-index: 101;
    max-width: 90%
}

    .simplePopup img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        max-height: calc(100vh - 110px)
    }

    .simplePopup .simplePopupClose {
        float: right;
        cursor: pointer;
        margin-left: 10px;
        margin-bottom: 10px;
        position: absolute;
        right: 20px;
        top: 20px;
        font-weight: lighter;
        font-size: 20px;
        font-family: 'Raleway',sans-serif;
        z-index: 1;
        background: url(../images/360/assets/close.png) no-repeat;
        width: 32px;
        height: 32px;
        content: "";
        font-size: 0
    }

.simplePopupBackground {
    display: none;
    background: #000;
    height: 100%;
    width: 100%;
    top: 50%;
    z-index: 100
}

#fullscreen {
    cursor: pointer;
    background-image: url(../images/360/assets/fullscreen.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    transition: all 150ms ease-out
}

    #fullscreen:hover {
        transform: scale(1.2, 1.2)
    }

#view360 {
    cursor: pointer;
    background-image: url(../images/360/assets/360-icon.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 45px;
    height: 30px;
    transition: all 150ms ease-out
}

    #view360:hover {
        transform: scale(1.2, 1.2)
    }

.item-full-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    box-shadow: none
}

.announcement-popup, .facetime-popup {
    position: fixed;
    width: 70%;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    display: none;
    z-index: 999;
    box-shadow: 0 8px 12px rgba(0,0,0,0.5)
}

    .announcement-popup.show, .facetime-popup.show {
        display: block
    }

    .announcement-popup .popup_close, .facetime-popup .popup_close {
        position: absolute;
        left: 100%;
        z-index: 99;
        top: -20px;
        margin-left: -20px
    }

    .announcement-popup .announcement-content, .facetime-popup .announcement-content, .announcement-popup .facetime-content, .facetime-popup .facetime-content {
        max-height: 80vh;
        overflow: auto
    }

.facetime-popup {
    width: 50%
}

.detXZoom {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    opacity: 0;
    display: none
}

    .detXZoom.show {
        display: block;
        opacity: 1
    }

    .detXZoom .modal-dialog {
        max-width: 800px;
        width: 100%;
        height: 800px;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%) !important;
        margin: 0 auto;
        max-height: calc(100vh - 40px)
    }

        .detXZoom .modal-dialog .modal-content {
            border: 0;
            background-color: transparent
        }

        .detXZoom .modal-dialog .imgContainer {
            max-height: calc(100vh - 40px);
            width: 100%;
            margin-top: 0px;
            overflow: hidden
        }

            .detXZoom .modal-dialog .imgContainer img {
                max-height: 100vh
            }

        .detXZoom .modal-dialog .modal-body {
            padding: 0;
            text-align: center
        }

body.freeze {
    position: fixed
}

.close_detXZoom {
    right: 15px;
    left: auto;
    top: 15px;
    z-index: 9999
}

body .detXZoom .modal-dialog .imgContainer .zoomWrapper img {
    max-height: none;
    max-width: none
}

.privacypolicy .rolex-lnk-gold {
    color: #e3ac3f !important
}
.button-border {
    text-align: center;
}
@media only screen and (max-width:767px) {
    body main section.search-list {
        padding: 60px 0 0
    }

    body main section .prod_wrapper {
        padding-top: 60px
    }

    /* body main .lastcall { */
        /* width: 45px; */
        /* height: 45px; */
        /* right: -15px; */
        /* top: -15px */
    /* } */

    body main #lnlProceedCheckout {
        padding: 0
    }
body main .lastcall {
        width: 40px;
        height: 40px;
        right: 0px;
        top: -1px;
        font-size: 10px;
    }
	
	    body section.thinner.product-details .lastcall {
        right: -18px !important;
        top: 0;
        
    }
}
    body .banner .carousel-control-prev .fa, body .banner .carousel-control-next .fa {
        font-size: 50px;
        color: #fff
    }

    .announcement-popup, .facetime-popup {
        width: 90%
    }

    .simplePopup {
        width: 90%;
        min-width: 90%;
        margin-left: -2%
    }
}

@media only screen and (max-width:360px) {
    .simplePopup {
        margin-left: -3%
    }

    #view360 {
        width: 35px;
        height: 30px
    }

    #fullscreen {
        width: 28px;
        height: 28px
    }

    .prod-details .share-links {
        height: 55px
    }

        .prod-details .share-links .share-container {
            width: 100px
        }

            .prod-details .share-links .share-container .share-popup {
                margin: 0 0 5px 0
            }
}

@media only screen and (min-width:768px) {
    body main#company-thankyou section.thinner, body main#home-thankyou section.thinner {
        min-height: 265px
    }
}

@media (hover:none) {
    .share-links.imgs .share-container {
        transform: translate(-5px, -30px);
        -webkit-transform: translate(-5px, -30px);
        -o-transform: translate(-5px, -30px);
        -moz-transform: translate(-5px, -30px)
    }
}


img {
    width: auto !important;
}
footer {
    background: #b8e7c7;
}

    footer p, footer p a:not(.nodec), footer .social-media ul li a i::before {
        color: #001902;
    }

.col-sm-4.text-right.devby img {
    height: 14px;
}

footer p a:not(.nodec):hover {
    color: #001902;
    text-decoration: none;
}

footer p a:not(.nodec)::before {
    border-top: solid 1px #001902;
}

section .items .inrwrp .inr {
    background-color: transparent;
}


.col-md-4.grand-opening {
    text-align: right;
    margin-top: -12.5px;
}

body#home .col-md-4.grand-opening a {
    background: #fff;
    color: #333;
}

    body#home .col-md-4.grand-opening a:hover {
        background-color: #383838;
        color: #fff;
    }

body#home .scrolled .col-md-4.grand-opening a {
    background-color: #383838;
    color: #fff;
}

.col-md-4.grand-opening a {
    background: #383838;
    padding: 0 11px;
    border-radius: 25px;
    color: #fff;
    font-size: 17px;
    height: 40px;
    display: inline-block;
    line-height: 37px;
    text-decoration: none;
    transition: all .45s ease-in-out;
    border: solid 1px transparent;
}

    .col-md-4.grand-opening a:hover {
        background: #fff;
        color: #333;
        border: solid 1px #383838;
    }

.container-fluid.grand-opening {
    max-width: 56%;
    padding-bottom: 50px;
    padding-top: 20px;
}

.prize-money p {
    margin-bottom: 0;
    /*font-weight: 600;*/
    /*color: #1564b1;*/
}

.prize-money {
    margin-bottom: 20px;
}

.privacy-notes {
    margin-top: 30px;
}

    .privacy-notes h3 {
        font-size: 16px;
        text-decoration: underline;
        margin-bottom: 10px;
    }

    .privacy-notes li {
        font-size: 12px;
    }

.reg {
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
}

.grand-opening .flex {
    display: flex;
    justify-content: space-between;
}

.grand-opening .form-group {
    padding-bottom: 20px;
    width: 48%;
}

select#State {
    display: block;
    cursor: pointer;
}
/* .placeholder-option {
        color: red;
    }*/
.grand-opening-banner {
    height: 160px;
    margin-top: 93px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-family: Lato, sans-serif;
    letter-spacing: 0.5px;
    font-weight: 500;
    font-size: 26px;
    flex-direction: column;
}
p.new-store {
    margin-bottom: 6px;
    font-size: 30px;
}
.grand-opening-banner a {
    color: #3a3a3a;
    border: 1px solid #787474;
    padding: 6px 39px;
    border-radius: 50px;
    display: block;
    background: #b8e7c7;
    width: 84%;
    margin: 14px auto;
}
        .grand-opening-banner a:hover{
            color: #000;
            text-decoration:none;
            background: #ffffff;
        }

        .to-reg {
            font-size: 16px;
            text-transform: capitalize;
            margin-left: 3px;
        }

.to-reg {
    font-size: 16px;
    text-transform: capitalize;
    margin-left: 3px;
}


 img {
    width: 100%;
}

.flex-grans-text {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
    .flex-grans-text a{
        text-decoration: underline;
    }
    .flex-grans-text .col-md-12 {
        width: 100%;
 
        margin-right: 30px;
    }
.pipe-symbol {
    padding-left: 10px;
}
.flex-right {
    flex: 30%;
    padding-right: 15px;
    padding-left: 15px;
}
.address {
    background: #efefef5c;
    padding: 10px 54px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
    border-radius: 2px;
}
    .address p {
        margin-bottom: 0px;
    }
.reg-div {
    margin-top: 10px;
    margin-bottom: 20px;
}
.pipe-symbol {
   
    padding-left: 10px;
}

main#store-grandopening .spinner-border.spinner-border-lg {
    width: 40px;
    height: 40px;
}
main#store-grandopening .mt-5, .my-5 {
    margin-top: -8px !important;
}
main#store-grandopening img{
    width:100% !important;
}
main#store-grandopening .flex-grans-text img {
    width: 35px !important;
    height: 35px;
}
main#store-grandopening .disabled {
    opacity: 0.5;
    pointer-events: none;
}
@media screen and (max-width: 1600px) {
    .address {
        padding: 10px 40px;
    }
    .flex-grans-text .col-md-12 {
        flex: 0 0 65%;
    }
	body section .lastcall{
		    right: 0;
    top: 0;
	}
	
	body section.thinner.product-details .lastcall{
		    right: -25px;
    top: 0;
	}
}
    @media screen and (max-width: 768px) {
        .grand-opening-banner {
            margin-top: 0px;
            font-size: 15px;
        }

        main#store-grandopening .container-fluid {
            width: 90% !important;
        }

        .container-fluid.grand-opening {
            width: 90%;
        }

        .container-fluid.grand-opening {
            max-width: 90%;
        }

        .grand-opening .flex {
            flex-direction: column;
        }

        .grand-opening .form-group {
            width: 100%;
        }
        .flex-grans-text .col-md-12 {
            width: 100%;
        }
        .flex-grans-text {
            flex-direction: column;
        }
        main#store-grandopening .banner img{
            min-height: 200px;
        }
        main#store-grandopening #selectloading {
            position: fixed;
            top: 50%;
            left: 40%;
            z-index: 1000;
        }
        p.new-store {
            margin-bottom: 6px;
            font-size: 20px;
        }
			section.inc.master .item_wrapper.aj.lux .inrwrp {
    width: 100%;
    max-width: 65%;
    margin: 0 auto !important;
}
body main section.inc.master .item_wrapper .items .inrwrp{
	        margin: 0 auto !important;
}
main#home-index .grand-opening-text {
    margin-top: 30px;
}
	main#home-index .grand-opening-text .main-title img {
    width: 24% !important;
}
body main section.inc.master .item_wrapper{
	        margin-bottom: 0;
}
main#home-index section#middlemenu {
    padding: 6px 0 0 0;
}
section#innermenu {
    padding: 0 !important;
    margin: 0;
}
main#store-jewelry .banner.lt h2, main#store-search .banner.lt h2, main#store-details .banner.lt h2, main#store-details .banner.lt h2 {
    font-size: 24px;
}
    }

body#home{
	    background-color: #b8e7c7;
}

section.inc.master .item_wrapper.aj.lux .inrwrp {
    width: 360px;
}
section.inc.master .item_wrapper.aj.lux-time .inrwrp {
    width: 450px;
    height: 240px;
}
section.inc.master .item_wrapper.aj.lux .items .inr{
    margin: 5px 5px;
}
.items.cs h5{
	    left: 44px;
}
section#innermenu {
    padding: 0 0 60px 0;
}
section#middlemenu {
    padding: 60px 0 0 0;
}

.item_wrapper h2.text-left,.item_wrapper h2.text-right{
	    margin: 30px 0 0 30px !important;
	
    color: #2e2e2e;
       bottom: 30px;
    text-transform: inherit;
    padding-right: 40px;
	justify-content: right;
    text-align: center !important;
	display:flex;
	    z-index: 1;
}
.item_wrapper h2.text-right{
	color:#fff;
}


/*  Home page new changes for announcement */
.celebrating {
    font-family: 'CochocibScript', sans-serif;
    font-size: 38px;
    text-transform: lowercase;
    word-spacing: 6px;
}
.join-us {
    font-size: 18.6px;
    font-family: 'Calibri', sans-serif;
}

.party {
    font-size: 18.6px;
    font-family: 'Calibri', sans-serif;
    margin-top: 20px;
}
.small-font {
    font-size: 13.3px;
    font-family: 'Calibri', sans-serif;
}
.main-title {
    font-family: Raleway, sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
}
#home-index .grand-opening-text .main-title img{
width: 6% !important;
}
.grand-opening-text {
   
     margin-top: 100px;
    
    align-items: center;
    
    letter-spacing: 0.5px;
    font-weight: 500;
 
    flex-direction: column;
    text-align: center;
	margin-bottom: 30px;
   
}
.join-us p {
    margin: 0;
    line-height: 24px;
    letter-spacing: 0px;
}
.party p {
    margin-bottom: 0;
    line-height: 1.5;
    letter-spacing: 0px;
}
body#home header::before{
	    background-image: none;
}

.banner.lt {
    
    background: #b8e7c7;
}
.banner.d-flex.prods::before, .banner.d-flex.brand::before, .banner.brand.tcori::before, .banner.brand.timewolf::before, .banner.brand.timerado::before, .banner.brand.timebellr::before{
	background-color: transparent;
}

.banner.lt h2{
	font-size: 36px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 5px;
	color:#383838;
}
.banner.lt h3{
    letter-spacing: 2px;
    font-size: 30px;
	color:#383838;
}
section#showroom .imgDiv {
    background-size: cover; 
   background-position: center 56%;
}
/**showroom image adjustments **/
section.showroom{
min-height: 750px;
}
/* section.showroom h4{ */
 /* padding-top: 17px !important; */
/* } */
 @media screen and (max-width: 768px) {
	 section#showroom .imgDiv {
	    
    /* background-position: center calc(100% + -35px); */
	        background-size: cover;
        background-position: center;
        object-fit: contain;
	 }
 }
 
 
 
 /* menu list css */
 
 
.sub-menu.rings-submenu {
position: relative !important;
padding: 0 !important;
left: 0px !important;
border-top: 0 !important;
}
.rings-submenu {
    display: none;
}
.menu-sub-container:hover .rings-submenu {
    display: block;
}

.menu-sub-container .last-call {
    display: block;
    color: red; 
}
.rings-submenu ul {
    width: 260px;
}
 

 

li.main-menu2.with-submenu2.parent-rings-menu.active .rings-submenu {
    display: block;
}
#slider-menu ul.sub-content li.main-menu2.with-submenu2>a::after, #myaccount-menu ul.sub-content li.main-menu2.with-submenu2>a::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
body header #slider-menu #wrapper .nav-content ul.sub-content li.open>a::after, 
body header #myaccount-menu #wrapper .nav-content ul.sub-content li.open>a::after, 
body header #slider-menu .wrapper .nav-content ul.sub-content li.open>a::after, 
body header #myaccount-menu .wrapper .nav-content ul.sub-content li.open>a::after{
	        transform: rotate(-90deg);
}
#slider-menu ul.sub-content li:hover>a::after, #myaccount-menu ul.sub-content li:hover>a::after {
    transform: rotate(-90deg) !important;
}
#card_fields, #address_ct {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-top: 1.3rem;
    gap: 15px;
}

.no-products-text {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 60px;
	    padding-left: 15px;
    padding-right: 15px;
}

.no-products-text p {
       margin-bottom:0px;
	font-size:17px;
}
a.GA_Phone{
	text-decoration: underline;
    position: relative;
    white-space: nowrap;
}
p.lastcall_txt {
    text-align: center !important;
}
i.fa.fa-whatsapp.pr-2 {
    font-family: FontAwesome;
    font-weight: 300;
}

.order-details .details-info {
    text-align:left;
}
/* a.GA_Phone::before { */
/* left: 0; */
/* max-width: 100%; */
/* width: 100%; */
/* overflow: hidden; */
/* content: ''; */
/* border-top: solid 1px #383838; */
/* bottom: -2px; */
/* position: absolute; */
/* opacity: .7; */
/* } */
/*--accordion css--*/
#accordion {
    margin-left: 0;
    background: rgba(0, 0, 0, 0);
    list-style-type: none;
    border-top: solid 1px #dddddd;
    margin-top: 50px;
}

    #accordion button:focus {
        outline: 0;
    }

body section.thinner .card {
    border: none;
    border-bottom: solid 1px #dddddd;
    border-radius: 0;
    text-align: left;
}

body section.thinner .card-header {
    padding: 0;
    background-color: transparent;
    border: 0;
}

body section.thinner button.card-link.accordion-title {
    background-color: transparent;
    width: 100%;
    text-align: left;
    position: relative;
    display: block;
    padding: 1.25rem 0rem;
    border: 0;
    border-bottom: 0;
    line-height: 1;
    cursor: pointer;
}

body section.thinner .prod_des_new #accordion button:before {
    float: right !important;
    font-family: 'FontAwesome';
    content: "\f068" !important;
    padding-right: 5px;
    color: #828283;
    right: 0;
    position: inherit;
    width: 20px;
}

body section.thinner .prod_des_new #accordion button:focus {
    outline: 0px dotted;
    outline: 0px auto -webkit-focus-ring-color;
}

body section.thinner .prod_des_new #accordion button.collapsed:before {
    float: right !important;
    font-family: 'FontAwesome';
    content: "\f067" !important;
    color: #828283;
    position: inherit;
    right: 0;
    width: 20px;
    border: none !important;
}

.details-description ul {
    list-style: none;
}

    .details-description ul li {
        font-size: 15px;
    }

.card-header button {
    font-size: 16px;
}
.card-body, .card-body li, .cell.large-6.pre-submit-info p {
    font-size: 14px;
}
#accordion .collapse {
    display: none; /* Hide all accordion content by default */
}

    #accordion .collapse.show {
        display: block; /* Show the active accordion content */
    }
#accordion .card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 13px 1.25rem 1.25rem;
}
.card-body ul {
    margin-top: -8px;
    margin-bottom: -6px;
}
.cell.large-6.pre-submit-info {
    padding: 0.6em 1.20rem
}
/* Add + and - icons to accordion buttons */
body section.thinner #accordion button:before {
    float: right !important;
    font-family: 'FontAwesome';
    content: "\f068" !important; /* Minus icon (-) for expanded state */
    padding-right: 5px;
    color: #828283;
    right: 0;
    position: inherit;
    width: 20px;
}

body section.thinner #accordion button.collapsed:before {
    float: right !important;
    font-family: 'FontAwesome';
    content: "\f067" !important; /* Plus icon (+) for collapsed state */
    color: #828283;
    position: inherit;
    right: 0;
    width: 20px;
    border: none !important;
}
/*--accordion css end--*/



/*<!-- slickslider-->*/
.item-slick.slick-slide.slick-current.slick-active, .item-slick.slick-slide.slick-current {
    outline: 1px solid #ccc !important;
}

/* Center alignment fixes */
.slider-for .slick-slide {
    text-align: center;
}

/* For single slide centering */
.single-slide-centered .slick-track,
.single-slide-centered .slick-slide {
    transform: none !important;
    display: flex !important;
    justify-content: center !important;
}

/* Center images in both sliders */
.slider-for img,
.slider-nav img {
    margin: 0 auto;
    display: block;
}

.slider-for {
    margin-bottom: 15px;
}


    .slider-for img {
        width: 100%;
        min-height: 100%;
    }

.slider-nav {
    margin: auto;
    border-top: 1px solid #ccc;
    padding-top: 25px;
}
span#lg-share {
    display: none;
}
.slider-nav .item-slick {
    max-width: 240px;
    margin-right: 15px;
    outline: none !important;
    cursor: pointer;
    
}

        .slider-nav .item-slick img {
            max-width: 100%;
            background-size: cover;
            background-position: center;
        }

.slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
       margin-top: -17px;
    font-size: 29px !important;
    font-weight: 700;
}

.slick-prev {
    left: -27px;
}

.slick-next {
    right: -27px;
}
ul.slick-dots {
    display: none;
}
ul.slick-dots {
    display: none !important;
}
.navbar-brand {
    float: none;
}
.slick-arrow {
    background: transparent;
    color: #b9e6c7;
    border: 0;
    
}
.slick-list.draggable {
    padding-top: 1px !important;
}
.container .col-md-offset-3 {
        margin-left: 10%;
    }

/* Force arrows to always show */
.slick-disabled {
    opacity: 0.5; /* Make disabled arrows semi-transparent */
    pointer-events: none; /* Disable click events on disabled arrows */
}
.lg .lg-actions .lg-next, .lg-actions .lg-prev {
    background-color: transparent;
}
.slick-track {
    padding: 1px 0;
}
.slider-nav.slick-initialized .slick-track {
    display: inline-flex !important;
    justify-content: flex-start; /* or center */
    align-items: center;
}
    /*slickslider end*/

    .details-image{
	min-height:400px;
}
.share-links.show .share-container {
    transform: translate(-10px, 0);
    -webkit-transform: translate(-10px, 0);
    -o-transform: translate(-10px, 0);
    -moz-transform: translate(-10px, 0);
}
body main section.thinner .slick-list a:not(.cbtn):not(.refreshCaptcha)::before {
   
    border-top: 0;
   
}

.lg-actions .lg-next:before, .lg-actions .lg-prev:after {
    color: #b9e6c7;
}
/*details Screen*/
body section.product-details .details-image {
    margin-right: 0px;
}

.share-links.details .share-container {
    z-index: 0;
    right: 0;
    transform: translate(calc(-100% - 10px), 0); /* Move to the left by default */
    -webkit-transform: translate(calc(-100% - 10px), 0);
    -o-transform: translate(calc(-100% - 10px), 0);
    -moz-transform: translate(calc(-100% - 10px), 0);
    transition: transform .3s ease-out;
}

.share-links.details.show .share-container {
    transform: translate(10px, 0); /* Move to the right when shown */
    -webkit-transform: translate(10px, 0);
    -o-transform: translate(10px, 0);
    -moz-transform: translate(10px, 0);
}
.col.p-0.share-links.details{
    text-align:left;
}

.col-md-9.details {
    padding: 0;
}
/*bracelete CSS*/
select#bracelet-sizes {
    width: 200px;
    margin-left: 10px;
}
span#bracelet-error {
    position: relative;
    left: 8px;
    top: 2px;
    cursor: pointer;
}
.form-group.col-md-12 {
    display: flex;
    justify-content: center;
}
.details-description .form-group.col-md-12 label {
    margin-top: 10px;
}
    
    /* CSS for all iOS devices */
    @supports (-webkit-touch-callout: none) {
        .slick-next {
        right: -35px;
    }

    .slick-prev {
        left: -47px;
    }

    body main section.product-details .details-image {
        max-width: 92%;
        margin: auto;
    }
}
    /*--Catalog css--*/
section.exc .catalogs .item_wrapper .items {
    overflow: hidden;
    height: 665px;
}
section.thinner.product-details.catalogs-iframe {
    padding: 100px 0;
}
body section.thinner.product-details.catalogs-iframe .container {
    max-width: 1600px;
}
    .banner .carousel-control-prev, .banner .carousel-control-next{
	    height: calc(100% - 7px);
}

.contcat-checkbox {
    width: 17px;
    height: 17px;
    top: -2px;
    cursor: pointer;
}
.catlog-below-text {
    letter-spacing: 1.5px;
}
    .catlog-below-text a {
        color: blue;
    }
#account-signup .form-group-captcha .captcha-container .refcpt {
    position: relative;
   left:134px;
} 
