/*animate.css*/
@charset "UTF-8";

@-webkit-keyframes bounce {
  20%,
  53%,
  80%,
  from,
  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 {
  20%,
  53%,
  80%,
  from,
  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 {
  50%,
  from,
  to {
    opacity: 1;
  }

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

@keyframes flash {
  50%,
  from,
  to {
    opacity: 1;
  }

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

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

@-webkit-keyframes pulse {
  from,
  to {
    -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);
  }
}

@keyframes pulse {
  from,
  to {
    -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);
  }
}

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

@-webkit-keyframes rubberBand {
  from,
  to {
    -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);
  }
}

@keyframes rubberBand {
  from,
  to {
    -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);
  }
}

.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%,
  50% {
    -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);
  }
}

@keyframes headShake {
  0%,
  50% {
    -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);
  }
}

.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,
  to {
    -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);
  }
}

@keyframes tada {
  from,
  to {
    -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);
  }
}

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

@-webkit-keyframes wobble {
  from,
  to {
    -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);
  }
}

@keyframes wobble {
  from,
  to {
    -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);
  }
}

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

@-webkit-keyframes jello {
  11.1%,
  from,
  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 {
  11.1%,
  from,
  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%,
  28%,
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14%,
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}

@keyframes heartBeat {
  0%,
  28%,
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14%,
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}

.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 {
  20%,
  40%,
  60%,
  80%,
  from,
  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 {
  20%,
  40%,
  60%,
  80%,
  from,
  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;
}

.bounceOut,
.flipOutX {
  -webkit-animation-duration: 0.75s;
}

@-webkit-keyframes bounceInDown {
  60%,
  75%,
  90%,
  from,
  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 {
  60%,
  75%,
  90%,
  from,
  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 {
  60%,
  75%,
  90%,
  from,
  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 {
  60%,
  75%,
  90%,
  from,
  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 {
  60%,
  75%,
  90%,
  from,
  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 {
  60%,
  75%,
  90%,
  from,
  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 {
  60%,
  75%,
  90%,
  from,
  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 {
  60%,
  75%,
  90%,
  from,
  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 {
  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;
}

.flipInY,
.flipOutX {
  -webkit-backface-visibility: visible !important;
}

@-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 {
  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 {
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  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;
}

@-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;
}

@-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: 0.8s;
  animation-duration: 0.8s;
}

.animated.faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.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;
  }
}

/*****************************************css/bootstrap.min.css************************************************/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
.modal-open,
.sr-only,
svg:not(:root) {
  overflow: hidden;
}

pre,
textarea {
  overflow: auto;
}

.text-left,
caption,
th {
  text-align: left;
}

.btn,
.text-nowrap {
  white-space: nowrap;
}

.navbar-fixed-bottom .navbar-collapse,
.navbar-fixed-top .navbar-collapse,
.pre-scrollable {
  max-height: 340px;
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev,
.collapse.in,
.media-object,
.navbar-brand > img,
.open > .dropdown-menu,
.tab-content > .active,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
input[type="file"],
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

.badge:empty,
.collapse,
.label:empty,
.tab-content > .tab-pane,
[hidden],
template {
  display: none;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle,
.dropdown-toggle:focus,
.navbar-toggle:focus,
.open > a,
a:active,
a:hover {
  outline: 0;
}

b.medical,
p.medical {
  color: white;
}

.alert .alert-link,
b,
dt,
optgroup,
strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

h1 {
  margin: 0.67em 0;
}

mark {
  color: #000;
  background: #ff0;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
  vertical-align: middle;
}

hr {
  height: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

*,
:after,
:before,
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.service_row {
  background: #ddd !important;
  padding: 30px;
}
.service-block p {
  color: #fff;
  font-weight: 700;
  margin: 15px 0px 0px;
}
.service-block {
  text-align: center;
  margin: 0 auto;
  background: #000;
  border-radius: 10px;
  width: 250px;
  padding: 18px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.service-block img {
  width: 70px;
}
.service_row a {
  display: flex;
  height: 100%;
}
.service_row .row {
  display: flex;
  align-items: stretch;
  margin: 0px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service-block img {
    width: 65px !important;
  }
  .service-block p {
    margin: 18px 0px 0px !important;
    font-size: 16px !important;
  }
  .service-block {
    margin: 0 auto;
    width: 215px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .service_row {
    padding: 22px;
  }
  .service_row .row {
    display: flex;
    align-items: stretch;
    margin: 0px;
  }
  .service_row .col-xs-4 {
    padding: 0px 5px !important;
  }
}
@media screen and (min-width: 576px) and (max-width: 768px) {
  .service-block img {
    width: 42px !important;
  }
  .service-block p {
    margin: 8px 0px 0px !important;
    font-size: 14px !important;
  }
  .service-block {
    margin: 0 auto;
    width: 165px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .service_row {
    padding: 10px;
  }

  .service_row .col-xs-4 {
    padding: 0px 5px !important;
  }
}
@media screen and (min-width: 421px) and (max-width: 575px) {
  .service-block img {
    width: 42px !important;
  }
  .service-block p {
    margin: 8px 0px 0px !important;
    font-size: 14px !important;
  }
  .service-block {
    margin: 0 auto;
    width: 115px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .service_row {
    padding: 10px;
  }
  .service_row .col-xs-4 {
    padding: 0px 5px !important;
  }
}
@media (max-width: 420px) {
  .service-block img {
    width: 20px !important;
  }
  .service-block p {
    margin: 8px 0px 0px !important;
    font-size: 10px !important;
  }
  .service-block {
    margin: 0 auto;
    width: 88px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .service_row {
    padding: 10px;
  }
  .service_row .col-xs-4 {
    padding: 0px 5px !important;
  }
  /*.service-block img {
        width: 20px!important;
    }
    .service_row .col-xs-4 {
        padding: 0px!important;
    }
    .service_row {
        padding: 10px!important;
    }
    .service-block {
        padding: 10px!important;
    }
    .service-block p {
        margin: 8px 0px 0px!important;
        font-size: 10px!important;
    }*/
}
code,
kbd,
pre,
samp {
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}

.glyphicon,
address {
  font-style: normal;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

td,
th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  blockquote,
  img,
  pre,
  tr {
    page-break-inside: avoid;
  }

  *,
  :after,
  :before {
    color: #000 !important;
    text-shadow: none !important;
    background: 0 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  blockquote,
  pre {
    border: 1px solid #999;
  }

  thead {
    display: table-header-group;
  }

  img {
    max-width: 100% !important;
  }

  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .navbar {
    display: none;
  }

  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }

  .label {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered td,
  .table-bordered th {
    border: 1px solid #ddd !important;
  }
}

.dropdown-menu,
.modal-content {
  -webkit-background-clip: padding-box;
}

.btn,
.btn-danger.active,
.btn-danger:active,
.btn-default.active,
.btn-default:active,
.btn-info.active,
.btn-info:active,
.btn-primary.active,
.btn-primary:active,
.btn-success.active,
.btn-success:active,
.btn-warning.active,
.btn-warning:active,
.btn.active,
.btn:active,
.form-control,
.navbar-toggle,
.open > .dropdown-toggle.btn-danger,
.open > .dropdown-toggle.btn-default,
.open > .dropdown-toggle.btn-info,
.open > .dropdown-toggle.btn-primary,
.open > .dropdown-toggle.btn-success,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}

@font-face {
  font-family: "Glyphicons Halflings";
  src: url(../fonts/glyphicons-halflings-regular.eot);
  src: url(../fonts/glyphicons-halflings-regulard41d.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/glyphicons-halflings-regular.woff2) format("woff2"),
    url(../fonts/glyphicons-halflings-regular.woff) format("woff"),
    url(../fonts/glyphicons-halflings-regular.ttf) format("truetype"),
    url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular)
      format("svg");
}

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.img-thumbnail,
body {
  line-height: 1.42857143;
  background-color: #fff;
}

.glyphicon-asterisk:before {
  content: "\002a";
}

.glyphicon-plus:before {
  content: "\002b";
}

.glyphicon-eur:before,
.glyphicon-euro:before {
  content: "\20ac";
}

.glyphicon-minus:before {
  content: "\2212";
}

.glyphicon-cloud:before {
  content: "\2601";
}

.glyphicon-envelope:before {
  content: "\2709";
}

.glyphicon-pencil:before {
  content: "\270f";
}

.glyphicon-glass:before {
  content: "\e001";
}

.glyphicon-music:before {
  content: "\e002";
}

.glyphicon-search:before {
  content: "\e003";
}

.glyphicon-heart:before {
  content: "\e005";
}

.glyphicon-star:before {
  content: "\e006";
}

.glyphicon-star-empty:before {
  content: "\e007";
}

.glyphicon-user:before {
  content: "\e008";
}

.glyphicon-film:before {
  content: "\e009";
}

.glyphicon-th-large:before {
  content: "\e010";
}

.glyphicon-th:before {
  content: "\e011";
}

.glyphicon-th-list:before {
  content: "\e012";
}

.glyphicon-ok:before {
  content: "\e013";
}

.glyphicon-remove:before {
  content: "\e014";
}

.glyphicon-zoom-in:before {
  content: "\e015";
}

.glyphicon-zoom-out:before {
  content: "\e016";
}

.glyphicon-off:before {
  content: "\e017";
}

.glyphicon-signal:before {
  content: "\e018";
}

.glyphicon-cog:before {
  content: "\e019";
}

.glyphicon-trash:before {
  content: "\e020";
}

.glyphicon-home:before {
  content: "\e021";
}

.glyphicon-file:before {
  content: "\e022";
}

.glyphicon-time:before {
  content: "\e023";
}

.glyphicon-road:before {
  content: "\e024";
}

.glyphicon-download-alt:before {
  content: "\e025";
}

.glyphicon-download:before {
  content: "\e026";
}

.glyphicon-upload:before {
  content: "\e027";
}

.glyphicon-inbox:before {
  content: "\e028";
}

.glyphicon-play-circle:before {
  content: "\e029";
}

.glyphicon-repeat:before {
  content: "\e030";
}

.glyphicon-refresh:before {
  content: "\e031";
}

.glyphicon-list-alt:before {
  content: "\e032";
}

.glyphicon-lock:before {
  content: "\e033";
}

.glyphicon-flag:before {
  content: "\e034";
}

.glyphicon-headphones:before {
  content: "\e035";
}

.glyphicon-volume-off:before {
  content: "\e036";
}

.glyphicon-volume-down:before {
  content: "\e037";
}

.glyphicon-volume-up:before {
  content: "\e038";
}

.glyphicon-qrcode:before {
  content: "\e039";
}

.glyphicon-barcode:before {
  content: "\e040";
}

.glyphicon-tag:before {
  content: "\e041";
}

.glyphicon-tags:before {
  content: "\e042";
}

.glyphicon-book:before {
  content: "\e043";
}

.glyphicon-bookmark:before {
  content: "\e044";
}

.glyphicon-print:before {
  content: "\e045";
}

.glyphicon-camera:before {
  content: "\e046";
}

.glyphicon-font:before {
  content: "\e047";
}

.glyphicon-bold:before {
  content: "\e048";
}

.glyphicon-italic:before {
  content: "\e049";
}

.glyphicon-text-height:before {
  content: "\e050";
}

.glyphicon-text-width:before {
  content: "\e051";
}

.glyphicon-align-left:before {
  content: "\e052";
}

.glyphicon-align-center:before {
  content: "\e053";
}

.glyphicon-align-right:before {
  content: "\e054";
}

.glyphicon-align-justify:before {
  content: "\e055";
}

.glyphicon-list:before {
  content: "\e056";
}

.glyphicon-indent-left:before {
  content: "\e057";
}

.glyphicon-indent-right:before {
  content: "\e058";
}

.glyphicon-facetime-video:before {
  content: "\e059";
}

.glyphicon-picture:before {
  content: "\e060";
}

.glyphicon-map-marker:before {
  content: "\e062";
}

.glyphicon-adjust:before {
  content: "\e063";
}

.glyphicon-tint:before {
  content: "\e064";
}

.glyphicon-edit:before {
  content: "\e065";
}

.glyphicon-share:before {
  content: "\e066";
}

.glyphicon-check:before {
  content: "\e067";
}

.glyphicon-move:before {
  content: "\e068";
}

.glyphicon-step-backward:before {
  content: "\e069";
}

.glyphicon-fast-backward:before {
  content: "\e070";
}

.glyphicon-backward:before {
  content: "\e071";
}

.glyphicon-play:before {
  content: "\e072";
}

.glyphicon-pause:before {
  content: "\e073";
}

.glyphicon-stop:before {
  content: "\e074";
}

.glyphicon-forward:before {
  content: "\e075";
}

.glyphicon-fast-forward:before {
  content: "\e076";
}

.glyphicon-step-forward:before {
  content: "\e077";
}

.glyphicon-eject:before {
  content: "\e078";
}

.glyphicon-chevron-left:before {
  content: "\e079";
}

.glyphicon-chevron-right:before {
  content: "\e080";
}

.glyphicon-plus-sign:before {
  content: "\e081";
}

.glyphicon-minus-sign:before {
  content: "\e082";
}

.glyphicon-remove-sign:before {
  content: "\e083";
}

.glyphicon-ok-sign:before {
  content: "\e084";
}

.glyphicon-question-sign:before {
  content: "\e085";
}

.glyphicon-info-sign:before {
  content: "\e086";
}

.glyphicon-screenshot:before {
  content: "\e087";
}

.glyphicon-remove-circle:before {
  content: "\e088";
}

.glyphicon-ok-circle:before {
  content: "\e089";
}

.glyphicon-ban-circle:before {
  content: "\e090";
}

.glyphicon-arrow-left:before {
  content: "\e091";
}

.glyphicon-arrow-right:before {
  content: "\e092";
}

.glyphicon-arrow-up:before {
  content: "\e093";
}

.glyphicon-arrow-down:before {
  content: "\e094";
}

.glyphicon-share-alt:before {
  content: "\e095";
}

.glyphicon-resize-full:before {
  content: "\e096";
}

.glyphicon-resize-small:before {
  content: "\e097";
}

.glyphicon-exclamation-sign:before {
  content: "\e101";
}

.glyphicon-gift:before {
  content: "\e102";
}

.glyphicon-leaf:before {
  content: "\e103";
}

.glyphicon-fire:before {
  content: "\e104";
}

.glyphicon-eye-open:before {
  content: "\e105";
}

.glyphicon-eye-close:before {
  content: "\e106";
}

.glyphicon-warning-sign:before {
  content: "\e107";
}

.glyphicon-plane:before {
  content: "\e108";
}

.glyphicon-calendar:before {
  content: "\e109";
}

.glyphicon-random:before {
  content: "\e110";
}

.glyphicon-comment:before {
  content: "\e111";
}

.glyphicon-magnet:before {
  content: "\e112";
}

.glyphicon-chevron-up:before {
  content: "\e113";
}

.glyphicon-chevron-down:before {
  content: "\e114";
}

.glyphicon-retweet:before {
  content: "\e115";
}

.glyphicon-shopping-cart:before {
  content: "\e116";
}

.glyphicon-folder-close:before {
  content: "\e117";
}

.glyphicon-folder-open:before {
  content: "\e118";
}

.glyphicon-resize-vertical:before {
  content: "\e119";
}

.glyphicon-resize-horizontal:before {
  content: "\e120";
}

.glyphicon-hdd:before {
  content: "\e121";
}

.glyphicon-bullhorn:before {
  content: "\e122";
}

.glyphicon-bell:before {
  content: "\e123";
}

.glyphicon-certificate:before {
  content: "\e124";
}

.glyphicon-thumbs-up:before {
  content: "\e125";
}

.glyphicon-thumbs-down:before {
  content: "\e126";
}

.glyphicon-hand-right:before {
  content: "\e127";
}

.glyphicon-hand-left:before {
  content: "\e128";
}

.glyphicon-hand-up:before {
  content: "\e129";
}

.glyphicon-hand-down:before {
  content: "\e130";
}

.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

.glyphicon-globe:before {
  content: "\e135";
}

.glyphicon-wrench:before {
  content: "\e136";
}

.glyphicon-tasks:before {
  content: "\e137";
}

.glyphicon-filter:before {
  content: "\e138";
}

.glyphicon-briefcase:before {
  content: "\e139";
}

.glyphicon-fullscreen:before {
  content: "\e140";
}

.glyphicon-dashboard:before {
  content: "\e141";
}

.glyphicon-paperclip:before {
  content: "\e142";
}

.glyphicon-heart-empty:before {
  content: "\e143";
}

.glyphicon-link:before {
  content: "\e144";
}

.glyphicon-phone:before {
  content: "\e145";
}

.glyphicon-pushpin:before {
  content: "\e146";
}

.glyphicon-usd:before {
  content: "\e148";
}

.glyphicon-gbp:before {
  content: "\e149";
}

.glyphicon-sort:before {
  content: "\e150";
}

.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

.glyphicon-sort-by-order:before {
  content: "\e153";
}

.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

.glyphicon-unchecked:before {
  content: "\e157";
}

.glyphicon-expand:before {
  content: "\e158";
}

.glyphicon-collapse-down:before {
  content: "\e159";
}

.glyphicon-collapse-up:before {
  content: "\e160";
}

.glyphicon-log-in:before {
  content: "\e161";
}

.glyphicon-flash:before {
  content: "\e162";
}

.glyphicon-log-out:before {
  content: "\e163";
}

.glyphicon-new-window:before {
  content: "\e164";
}

.glyphicon-record:before {
  content: "\e165";
}

.glyphicon-save:before {
  content: "\e166";
}

.glyphicon-open:before {
  content: "\e167";
}

.glyphicon-saved:before {
  content: "\e168";
}

.glyphicon-import:before {
  content: "\e169";
}

.glyphicon-export:before {
  content: "\e170";
}

.glyphicon-send:before {
  content: "\e171";
}

.glyphicon-floppy-disk:before {
  content: "\e172";
}

.glyphicon-floppy-saved:before {
  content: "\e173";
}

.glyphicon-floppy-remove:before {
  content: "\e174";
}

.glyphicon-floppy-save:before {
  content: "\e175";
}

.glyphicon-floppy-open:before {
  content: "\e176";
}

.glyphicon-credit-card:before {
  content: "\e177";
}

.glyphicon-transfer:before {
  content: "\e178";
}

.glyphicon-cutlery:before {
  content: "\e179";
}

.glyphicon-header:before {
  content: "\e180";
}

.glyphicon-compressed:before {
  content: "\e181";
}

.glyphicon-earphone:before {
  content: "\e182";
}

.glyphicon-phone-alt:before {
  content: "\e183";
}

.glyphicon-tower:before {
  content: "\e184";
}

.glyphicon-stats:before {
  content: "\e185";
}

.glyphicon-sd-video:before {
  content: "\e186";
}

.glyphicon-hd-video:before {
  content: "\e187";
}

.glyphicon-subtitles:before {
  content: "\e188";
}

.glyphicon-sound-stereo:before {
  content: "\e189";
}

.glyphicon-sound-dolby:before {
  content: "\e190";
}

.glyphicon-sound-5-1:before {
  content: "\e191";
}

.glyphicon-sound-6-1:before {
  content: "\e192";
}

.glyphicon-sound-7-1:before {
  content: "\e193";
}

.glyphicon-copyright-mark:before {
  content: "\e194";
}

.glyphicon-registration-mark:before {
  content: "\e195";
}

.glyphicon-cloud-download:before {
  content: "\e197";
}

.glyphicon-cloud-upload:before {
  content: "\e198";
}

.glyphicon-tree-conifer:before {
  content: "\e199";
}

.glyphicon-tree-deciduous:before {
  content: "\e200";
}

.glyphicon-cd:before {
  content: "\e201";
}

.glyphicon-save-file:before {
  content: "\e202";
}

.glyphicon-open-file:before {
  content: "\e203";
}

.glyphicon-level-up:before {
  content: "\e204";
}

.glyphicon-copy:before {
  content: "\e205";
}

.glyphicon-paste:before {
  content: "\e206";
}

.glyphicon-alert:before {
  content: "\e209";
}

.glyphicon-equalizer:before {
  content: "\e210";
}

.glyphicon-king:before {
  content: "\e211";
}

.glyphicon-queen:before {
  content: "\e212";
}

.glyphicon-pawn:before {
  content: "\e213";
}

.glyphicon-bishop:before {
  content: "\e214";
}

.glyphicon-knight:before {
  content: "\e215";
}

.glyphicon-baby-formula:before {
  content: "\e216";
}

.glyphicon-tent:before {
  content: "\26fa";
}

.glyphicon-blackboard:before {
  content: "\e218";
}

.glyphicon-bed:before {
  content: "\e219";
}

.glyphicon-apple:before {
  content: "\f8ff";
}

.glyphicon-erase:before {
  content: "\e221";
}

.glyphicon-hourglass:before {
  content: "\231b";
}

.glyphicon-lamp:before {
  content: "\e223";
}

.glyphicon-duplicate:before {
  content: "\e224";
}

.glyphicon-piggy-bank:before {
  content: "\e225";
}

.glyphicon-scissors:before {
  content: "\e226";
}

.glyphicon-bitcoin:before,
.glyphicon-btc:before,
.glyphicon-xbt:before {
  content: "\e227";
}

.glyphicon-jpy:before,
.glyphicon-yen:before {
  content: "\00a5";
}

.glyphicon-rub:before,
.glyphicon-ruble:before {
  content: "\20bd";
}

.glyphicon-scale:before {
  content: "\e230";
}

.glyphicon-ice-lolly:before {
  content: "\e231";
}

.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}

.glyphicon-education:before {
  content: "\e233";
}

.glyphicon-option-horizontal:before {
  content: "\e234";
}

.glyphicon-option-vertical:before {
  content: "\e235";
}

.glyphicon-menu-hamburger:before {
  content: "\e236";
}

.glyphicon-modal-window:before {
  content: "\e237";
}

.glyphicon-oil:before {
  content: "\e238";
}

.glyphicon-grain:before {
  content: "\e239";
}

.glyphicon-sunglasses:before {
  content: "\e240";
}

.glyphicon-text-size:before {
  content: "\e241";
}

.glyphicon-text-color:before {
  content: "\e242";
}

.glyphicon-text-background:before {
  content: "\e243";
}

.glyphicon-object-align-top:before {
  content: "\e244";
}

.glyphicon-object-align-bottom:before {
  content: "\e245";
}

.glyphicon-object-align-horizontal:before {
  content: "\e246";
}

.glyphicon-object-align-left:before {
  content: "\e247";
}

.glyphicon-object-align-vertical:before {
  content: "\e248";
}

.glyphicon-object-align-right:before {
  content: "\e249";
}

.glyphicon-triangle-right:before {
  content: "\e250";
}

.glyphicon-triangle-left:before {
  content: "\e251";
}

.glyphicon-triangle-bottom:before {
  content: "\e252";
}

.glyphicon-triangle-top:before {
  content: "\e253";
}

.glyphicon-console:before {
  content: "\e254";
}

.glyphicon-superscript:before {
  content: "\e255";
}

.glyphicon-subscript:before {
  content: "\e256";
}

.glyphicon-menu-left:before {
  content: "\e257";
}

.glyphicon-menu-right:before {
  content: "\e258";
}

.glyphicon-menu-down:before {
  content: "\e259";
}

.glyphicon-menu-up:before {
  content: "\e260";
}

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

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #333;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  background-color: transparent;
  color: #337ab7;
  text-decoration: none;
}

a:focus,
a:hover {
  color: #23527c;
  text-decoration: underline;
}

a:focus,
input[type="checkbox"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus {
  outline: -webkit-focus-ring-color auto 5px;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

.carousel-inner > .item > a > img,
.carousel-inner > .item > img,
.img-responsive,
.thumbnail a > img,
.thumbnail > img {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-thumbnail,
.list-inline > li,
label {
  display: inline-block;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  max-width: 100%;
  height: auto;
  padding: 4px;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  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;
}

[role="button"] {
  cursor: pointer;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

legend,
pre {
  color: #333;
}

.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
  font-weight: 400;
  line-height: 1;
  color: #777;
}

kbd kbd,
label {
  font-weight: 700;
}

address,
blockquote .small,
blockquote footer,
blockquote small,
dd,
dt,
pre {
  line-height: 1.42857143;
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small {
  font-size: 65%;
}

.h4,
.h5,
.h6,
.navbar-btn.btn-sm,
h4,
h5,
h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

dl,
ol,
ul {
  margin-top: 0;
}

.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
  font-size: 75%;
}

.h1,
h1 {
  font-size: 36px;
}

.h2,
h2 {
  font-size: 30px;
}

.h3,
h3 {
  font-size: 24px;
}

.h4,
h4 {
  font-size: 18px;
}

.h5,
h5 {
  font-size: 14px;
}

.h6,
h6 {
  font-size: 12px;
}

p {
  margin: 0 0 10px;
}

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

.small,
small {
  font-size: 85%;
}

.mark,
mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-inline,
.list-unstyled,
.media-list {
  padding-left: 0;
  list-style: none;
}

pre code,
table {
  background-color: transparent;
}

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

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

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

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

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

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

.breadcrumb > .active,
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:focus,
.dropdown-menu > .disabled > a:hover,
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.nav > li.disabled > a,
.navbar-default .btn-link,
.navbar-default .navbar-brand,
.navbar-default .navbar-link,
.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-text,
.text-muted {
  color: #777;
}

.text-primary {
  color: #337ab7;
}

a.text-primary:focus,
a.text-primary:hover {
  color: #286090;
}

.has-success .checkbox,
.has-success .checkbox-inline,
.has-success .control-label,
.has-success .form-control-feedback,
.has-success .help-block,
.has-success .radio,
.has-success .radio-inline,
.has-success.checkbox label,
.has-success.checkbox-inline label,
.has-success.radio label,
.has-success.radio-inline label,
.text-success,
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}

.alert-success .alert-link,
a.text-success:focus,
a.text-success:hover {
  color: #2b542c;
}

.text-info,
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}

.alert-info .alert-link,
a.text-info:focus,
a.text-info:hover {
  color: #245269;
}

.has-warning .checkbox,
.has-warning .checkbox-inline,
.has-warning .control-label,
.has-warning .form-control-feedback,
.has-warning .help-block,
.has-warning .radio,
.has-warning .radio-inline,
.has-warning.checkbox label,
.has-warning.checkbox-inline label,
.has-warning.radio label,
.has-warning.radio-inline label,
.text-warning,
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}

.alert-warning .alert-link,
a.text-warning:focus,
a.text-warning:hover {
  color: #66512c;
}

.has-error .checkbox,
.has-error .checkbox-inline,
.has-error .control-label,
.has-error .form-control-feedback,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline,
.has-error.checkbox label,
.has-error.checkbox-inline label,
.has-error.radio label,
.has-error.radio-inline label,
.text-danger,
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}

.alert-danger .alert-link,
a.text-danger:focus,
a.text-danger:hover {
  color: #843534;
}

.bg-primary,
.nav-pills > li.active > a,
.nav-pills > li.active > a:focus,
.nav-pills > li.active > a:hover {
  color: #fff;
  background-color: #337ab7;
}

.label-primary[href]:focus,
.label-primary[href]:hover,
a.bg-primary:focus,
a.bg-primary:hover {
  background-color: #286090;
}

.bg-success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > thead > tr > td.success,
.table > thead > tr > th.success {
  background-color: #dff0d8;
}

a.bg-success:focus,
a.bg-success:hover {
  background-color: #c1e2b3;
}

.bg-info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > thead > tr > td.info,
.table > thead > tr > th.info {
  background-color: #d9edf7;
}

a.bg-info:focus,
a.bg-info:hover {
  background-color: #afd9ee;
}

.bg-warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > thead > tr > td.warning,
.table > thead > tr > th.warning {
  background-color: #fcf8e3;
}

a.bg-warning:focus,
a.bg-warning:hover {
  background-color: #f7ecb5;
}

.bg-danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > thead > tr > td.danger,
.table > thead > tr > th.danger {
  background-color: #f2dede;
}

.btn-default,
.form-control,
.navbar-inverse .navbar-toggle .icon-bar,
.table .table {
  background-color: #fff;
}

a.bg-danger:focus,
a.bg-danger:hover {
  background-color: #e4b9b9;
}

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee;
}

.table,
address,
dl,
legend {
  margin-bottom: 20px;
}

ol,
ul {
  margin-bottom: 10px;
}

.alert > p,
.alert > ul,
.panel > .list-group,
.panel > .panel-collapse > .list-group,
.panel > .panel-collapse > .table,
.panel > .table,
.panel > .table-responsive > .table,
blockquote ol:last-child,
blockquote p:last-child,
blockquote ul:last-child,
ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

.list-inline {
  margin-left: -5px;
}

.list-inline > li {
  padding-right: 5px;
  padding-left: 5px;
}

legend,
pre {
  display: block;
}

.btn .caret,
.btn-group > .btn:first-child,
.col-xs-offset-0,
.modal-footer .btn-block + .btn-block,
dd {
  margin-left: 0;
}

abbr[data-original-title],
abbr[title] {
  cursor: help;
  border-bottom: 1px dotted #777;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}

code,
kbd {
  padding: 2px 4px;
  font-size: 90%;
}

blockquote .small,
blockquote footer,
blockquote small {
  display: block;
  font-size: 80%;
  color: #777;
}

blockquote .small:before,
blockquote footer:before,
blockquote small:before {
  content: "\2014 \00A0";
}

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0;
}

.blockquote-reverse .small:before,
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
blockquote.pull-right .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before {
  content: "";
}

.blockquote-reverse .small:after,
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
blockquote.pull-right .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after {
  content: "\00A0 \2014";
}

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

kbd {
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
}

pre {
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  border-radius: 0;
}

.pre-scrollable {
  overflow-y: scroll;
}

.container,
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid > .navbar-collapse,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container > .navbar-header,
.form-horizontal .form-group,
.row {
  margin-right: -15px;
  margin-left: -15px;
}

.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.btn-group > .btn-group,
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.nav-pills > li,
.pager .previous > a,
.pager .previous > span {
  float: left;
}

.btn-group-justified > .btn-group .btn,
.col-xs-12,
.nav-justified,
input[type="button"].btn-block,
input[type="reset"].btn-block,
input[type="submit"].btn-block {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-pull-11 {
  right: 91.66666667%;
}

.col-xs-pull-10 {
  right: 83.33333333%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-8 {
  right: 66.66666667%;
}

.col-xs-pull-7 {
  right: 58.33333333%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-5 {
  right: 41.66666667%;
}

.col-xs-pull-4 {
  right: 33.33333333%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-2 {
  right: 16.66666667%;
}

.col-xs-pull-1 {
  right: 8.33333333%;
}

.col-xs-pull-0 {
  right: auto;
}

.carousel-inner > .active.right,
.carousel-inner > .next,
.col-xs-push-12 {
  left: 100%;
}

.col-xs-push-11 {
  left: 91.66666667%;
}

.col-xs-push-10 {
  left: 83.33333333%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-8 {
  left: 66.66666667%;
}

.col-xs-push-7 {
  left: 58.33333333%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-5 {
  left: 41.66666667%;
}

.col-xs-push-4 {
  left: 33.33333333%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-2 {
  left: 16.66666667%;
}

.col-xs-push-1 {
  left: 8.33333333%;
}

.btn-group-justified > .btn-group .dropdown-menu,
.col-xs-push-0 {
  left: auto;
}

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

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

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

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

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

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

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

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.caret,
.nav-pills > li + li {
  margin-left: 2px;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
}

.table {
  width: 100%;
  max-width: 100%;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

.panel-group .panel-footer,
.panel > .table > tbody:first-child > tr:first-child td,
.panel > .table > tbody:first-child > tr:first-child th,
.table > caption + thead > tr:first-child > td,
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > td,
.table > thead:first-child > tr:first-child > th {
  border-top: 0;
}

.table > tbody + tbody {
  border-top: 2px solid #ddd;
}

.table-condensed > tbody > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > thead > tr > th {
  padding: 5px;
}

.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:focus,
.nav-tabs-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:hover,
.table-bordered,
.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
  border: 1px solid #ddd;
}

.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
  border-bottom-width: 2px;
}

fieldset,
legend {
  padding: 0;
  border: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > thead > tr > td.active,
.table > thead > tr > th.active {
  background-color: #f5f5f5;
}

table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}

.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr.active:hover > th,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover {
  background-color: #e8e8e8;
}

.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr.success:hover > th,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover {
  background-color: #d0e9c6;
}

.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr.info:hover > th,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover {
  background-color: #c4e3f3;
}

.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr.warning:hover > th,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover {
  background-color: #faf2cc;
}

.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr.danger:hover > th,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover {
  background-color: #ebcccc;
}

.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }

  .table-responsive > .table {
    margin-bottom: 0;
  }

  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > thead > tr > th {
    white-space: nowrap;
  }

  .table-responsive > .table-bordered {
    border: 0;
  }

  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > thead > tr > th:first-child {
    border-left: 0;
  }

  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > thead > tr > th:last-child {
    border-right: 0;
  }

  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0;
  }
}

fieldset {
  min-width: 0;
  margin: 0;
}

legend {
  width: 100%;
  font-size: 21px;
  line-height: inherit;
  border-bottom: 1px solid #e5e5e5;
}

.form-control,
output {
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
}

label {
  max-width: 100%;
  margin-bottom: 5px;
}

input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
  margin: 4px 0 0;
  line-height: normal;
}

.btn-block,
input[type="range"] {
  display: block;
  width: 100%;
}

.form-group-lg select[multiple].form-control,
.form-group-lg textarea.form-control,
.form-group-sm select[multiple].form-control,
.form-group-sm textarea.form-control,
select[multiple],
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn,
select[multiple].input-lg,
select[multiple].input-sm,
select[size],
textarea.form-control,
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
textarea.input-lg,
textarea.input-sm {
  height: auto;
}

output {
  display: block;
  padding-top: 7px;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #999;
}

.form-control::-webkit-input-placeholder {
  color: #999;
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}

.checkbox-inline.disabled,
.checkbox.disabled label,
.form-control[disabled],
.radio-inline.disabled,
.radio.disabled label,
fieldset[disabled] .checkbox label,
fieldset[disabled] .checkbox-inline,
fieldset[disabled] .form-control,
fieldset[disabled] .radio label,
fieldset[disabled] .radio-inline,
fieldset[disabled] input[type="checkbox"],
fieldset[disabled] input[type="radio"],
input[type="checkbox"].disabled,
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="radio"][disabled] {
  cursor: not-allowed;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control,
  input[type="time"].form-control {
    line-height: 34px;
  }

  .input-group-sm input[type="date"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"],
  .input-group-sm input[type="time"],
  input[type="date"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  input[type="time"].input-sm {
    line-height: 30px;
  }

  .input-group-lg input[type="date"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"],
  .input-group-lg input[type="time"],
  input[type="date"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  input[type="time"].input-lg {
    line-height: 46px;
  }
}

.form-group {
  margin-bottom: 15px;
}

.checkbox,
.radio {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.checkbox label,
.radio label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"],
.radio input[type="radio"],
.radio-inline input[type="radio"] {
  position: absolute;
  margin-left: -20px;
}

.checkbox + .checkbox,
.radio + .radio {
  margin-top: -5px;
}

.checkbox-inline,
.radio-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}

.checkbox-inline + .checkbox-inline,
.radio-inline + .radio-inline {
  margin-top: 0;
  margin-left: 10px;
}

.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}

.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}

.form-group-sm .form-control,
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn,
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.form-group-sm select.form-control,
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn,
select.input-sm {
  height: 30px;
  line-height: 30px;
}

.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.form-group-lg .form-control,
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn,
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

.form-group-lg select.form-control,
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn,
select.input-lg {
  height: 46px;
  line-height: 46px;
}

.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.carousel,
.dropdown,
.dropup,
.has-feedback,
.input-group-btn > .btn {
  position: relative;
}

.has-feedback .form-control {
  padding-right: 42.5px;
}

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}

.form-group-lg .form-control + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.input-lg + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

.form-group-sm .form-control + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.input-sm + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}

.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}

.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}

.has-feedback label ~ .form-control-feedback {
  top: 25px;
}

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

.btn,
.caret {
  display: inline-block;
  vertical-align: middle;
}

.form-horizontal .checkbox,
.form-horizontal .checkbox-inline,
.form-horizontal .radio,
.form-horizontal .radio-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}

.form-horizontal .checkbox,
.form-horizontal .radio {
  min-height: 27px;
}

.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}

.btn {
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: -webkit-focus-ring-color auto 5px;
  outline-offset: -2px;
}

.btn.focus,
.btn:focus,
.btn:hover {
  color: #333;
  text-decoration: none;
}

.btn.active,
.btn:active {
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.65;
}

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-default {
  color: #333;
  border-color: #ccc;
}

.btn-default.focus,
.btn-default:focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}

.btn-default.active,
.btn-default:active,
.btn-default:hover,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn-default.active.focus,
.btn-default.active:focus,
.btn-default.active:hover,
.btn-default:active.focus,
.btn-default:active:focus,
.btn-default:active:hover,
.open > .dropdown-toggle.btn-default.focus,
.open > .dropdown-toggle.btn-default:focus,
.open > .dropdown-toggle.btn-default:hover {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}

.btn-default.disabled.focus,
.btn-default.disabled:focus,
.btn-default.disabled:hover,
.btn-default[disabled].focus,
.btn-default[disabled]:focus,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default.focus,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default:hover {
  background-color: #fff;
  border-color: #ccc;
}

.btn-default .badge {
  color: #fff;
  background-color: #333;
}

.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}

.btn-primary.focus,
.btn-primary:focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}

.btn-primary.active,
.btn-primary:active,
.btn-primary:hover,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}

.btn-primary.disabled.focus,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled].focus,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
  background-color: #337ab7;
  border-color: #2e6da4;
}

.btn-primary .badge,
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge,
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success.focus,
.btn-success:focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}

.btn-success.active,
.btn-success:active,
.btn-success:hover,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}

.btn-success.active.focus,
.btn-success.active:focus,
.btn-success.active:hover,
.btn-success:active.focus,
.btn-success:active:focus,
.btn-success:active:hover,
.open > .dropdown-toggle.btn-success.focus,
.open > .dropdown-toggle.btn-success:focus,
.open > .dropdown-toggle.btn-success:hover {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}

.btn-success.disabled.focus,
.btn-success.disabled:focus,
.btn-success.disabled:hover,
.btn-success[disabled].focus,
.btn-success[disabled]:focus,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success.focus,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success:hover {
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info.focus,
.btn-info:focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}

.btn-info.active,
.btn-info:active,
.btn-info:hover,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}

.btn-info.active.focus,
.btn-info.active:focus,
.btn-info.active:hover,
.btn-info:active.focus,
.btn-info:active:focus,
.btn-info:active:hover,
.open > .dropdown-toggle.btn-info.focus,
.open > .dropdown-toggle.btn-info:focus,
.open > .dropdown-toggle.btn-info:hover {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}

.btn-info.disabled.focus,
.btn-info.disabled:focus,
.btn-info.disabled:hover,
.btn-info[disabled].focus,
.btn-info[disabled]:focus,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info.focus,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info:hover {
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning.focus,
.btn-warning:focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}

.btn-warning.active,
.btn-warning:active,
.btn-warning:hover,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}

.btn-warning.active.focus,
.btn-warning.active:focus,
.btn-warning.active:hover,
.btn-warning:active.focus,
.btn-warning:active:focus,
.btn-warning:active:hover,
.open > .dropdown-toggle.btn-warning.focus,
.open > .dropdown-toggle.btn-warning:focus,
.open > .dropdown-toggle.btn-warning:hover {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}

.btn-warning.disabled.focus,
.btn-warning.disabled:focus,
.btn-warning.disabled:hover,
.btn-warning[disabled].focus,
.btn-warning[disabled]:focus,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning.focus,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning:hover {
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger.focus,
.btn-danger:focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}

.btn-danger.active,
.btn-danger:active,
.btn-danger:hover,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}

.btn-danger.active.focus,
.btn-danger.active:focus,
.btn-danger.active:hover,
.btn-danger:active.focus,
.btn-danger:active:focus,
.btn-danger:active:hover,
.open > .dropdown-toggle.btn-danger.focus,
.open > .dropdown-toggle.btn-danger:focus,
.open > .dropdown-toggle.btn-danger:hover {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}

.btn-danger.disabled.focus,
.btn-danger.disabled:focus,
.btn-danger.disabled:hover,
.btn-danger[disabled].focus,
.btn-danger[disabled]:focus,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger.focus,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger:hover {
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

.btn-link {
  font-weight: 400;
  color: #337ab7;
  border-radius: 0;
}

.btn-link,
.btn-link.active,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-link,
.btn-link:active,
.btn-link:focus,
.btn-link:hover {
  border-color: transparent;
}

.btn-link:focus,
.btn-link:hover {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}

.btn-link[disabled]:focus,
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:focus,
fieldset[disabled] .btn-link:hover {
  color: #777;
  text-decoration: none;
}

.btn-group-lg > .btn,
.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

.btn-group-sm > .btn,
.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-group-xs > .btn,
.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.alert > p + p,
.btn-block + .btn-block,
.panel-group .panel + .panel {
  margin-top: 5px;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
}

.caret {
  width: 0;
  height: 0;
  border-top: 4px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.dropdown-header,
.dropdown-menu > li > a {
  padding: 3px 20px;
  white-space: nowrap;
  display: block;
  line-height: 1.42857143;
}

.dropdown-menu-right,
.dropdown-menu.pull-right,
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropdown-menu .divider,
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.alert h4,
.input-group-addon input[type="checkbox"],
.input-group-addon input[type="radio"],
.media:first-child {
  margin-top: 0;
}

.dropdown-menu > li > a {
  clear: both;
  font-weight: 400;
  color: #333;
}

.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}

.dropdown-menu > .disabled > a:focus,
.dropdown-menu > .disabled > a:hover {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-header {
  font-size: 12px;
  color: #777;
}

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}

.btn-group,
.btn-group-vertical,
.input-group,
.input-group .form-control,
.input-group-btn,
.nav > li,
.nav > li > a,
.navbar {
  position: relative;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

.btn-group,
.btn-group-vertical {
  display: inline-block;
  vertical-align: middle;
}

.btn-group-justified,
.input-group {
  display: table;
  border-collapse: separate;
}

.btn-group-vertical > .btn,
.btn-group > .btn {
  position: relative;
  float: left;
}

.btn-group-vertical > .btn.active,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:hover,
.btn-group > .btn.active,
.btn-group > .btn:active,
.btn-group > .btn:focus,
.btn-group > .btn:hover,
.input-group-btn > .btn:active,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:hover {
  z-index: 2;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group,
.input-group-btn > .btn + .btn,
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.btn-toolbar {
  margin-left: -5px;
}

.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn,
.btn-group-vertical > .btn:not(:first-child):not(:last-child),
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn,
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle),
.input-group .form-control:not(:first-child):not(:last-child),
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle,
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle),
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child,
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child),
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}

.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-lg .caret {
  border-width: 5px 5px 0;
}

.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}

.btn-group-vertical > .btn-group > .btn,
.nav-justified > li,
.nav-stacked > li,
.nav-tabs.nav-justified > li {
  float: none;
}

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-radius: 4px 4px 0 0;
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-radius: 0 0 4px 4px;
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical
  > .btn-group:first-child:not(:last-child)
  > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical
  > .btn-group:last-child:not(:first-child)
  > .btn:first-child,
.panel
  > .panel-heading
  + .panel-collapse
  > .list-group
  .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-justified {
  width: 100%;
  table-layout: fixed;
}

.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}

[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}

.input-group .form-control {
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.input-group .form-control:focus {
  z-index: 3;
}

.input-group .form-control,
.input-group-addon,
.input-group-btn {
  display: table-cell;
}

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}

.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}

.input-group-addon:first-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child {
  border-right: 0;
}

.input-group-addon:last-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child {
  border-left: 0;
}

.input-group-btn {
  font-size: 0;
  white-space: nowrap;
}

.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}

.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

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

.nav > li {
  display: block;
}

.nav > li > a {
  display: block;
  padding: 10px 15px;
}

.nav > li > a:focus,
.nav > li > a:hover,
.pager li > a:focus,
.pager li > a:hover {
  text-decoration: none;
  background-color: #eee;
}

.nav > li.disabled > a:focus,
.nav > li.disabled > a:hover {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}

.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
  background-color: #eee;
  border-color: #337ab7;
}

.media-object.img-thumbnail,
.nav > li > a > img {
  max-width: none;
}

.nav-tabs,
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

.nav-tabs-justified > li > a,
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}

.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}

.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}

.nav-justified > .dropdown .dropdown-menu,
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

.nav-pills > li > a {
  border-radius: 4px;
}

.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}

.nav-tabs-justified,
.panel-group .panel-heading,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th {
  border-bottom: 0;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.navbar {
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.navbar-collapse.in {
  overflow-y: auto;
}

@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-bottom .navbar-collapse,
  .navbar-fixed-top .navbar-collapse {
    max-height: 200px;
  }
}

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}

.navbar-fixed-bottom,
.navbar-fixed-top {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px;
  font-size: 18px;
  line-height: 20px;
}

.badge,
.label {
  line-height: 1;
  white-space: nowrap;
  font-weight: 700;
}

.navbar-brand:focus,
.navbar-brand:hover {
  text-decoration: none;
}

.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

.breadcrumb > li,
.pagination {
  display: inline-block;
}

.navbar-nav {
  margin: 7.5px -15px;
}

.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

.navbar-form {
  padding: 10px 15px;
  margin: 8px -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.1);
}

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-radius: 4px 4px 0 0;
}

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}

.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}

.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:hover {
  color: #5e5e5e;
  background-color: transparent;
}

.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover {
  color: #333;
  background-color: transparent;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
  color: #555;
  background-color: #e7e7e7;
}

.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:focus,
.navbar-default .navbar-nav > .disabled > a:hover {
  color: #ccc;
  background-color: transparent;
}

.navbar-default .navbar-toggle,
.panel-default {
  border-color: #ddd;
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
  background-color: #ddd;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}

.navbar-default .btn-link:focus,
.navbar-default .btn-link:hover,
.navbar-default .navbar-link:hover,
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}

.navbar-default .btn-link[disabled]:focus,
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:focus,
fieldset[disabled] .navbar-default .btn-link:hover {
  color: #ccc;
}

.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}

.navbar-inverse .btn-link,
.navbar-inverse .navbar-brand,
.navbar-inverse .navbar-link,
.navbar-inverse .navbar-nav > li > a,
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}

.navbar-inverse .navbar-brand:focus,
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-nav > li > a:focus,
.navbar-inverse .navbar-nav > li > a:hover {
  color: #fff;
  background-color: transparent;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:focus,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:focus,
.navbar-inverse .navbar-nav > .open > a:hover {
  color: #fff;
  background-color: #080808;
}

.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:focus,
.navbar-inverse .navbar-nav > .disabled > a:hover {
  color: #444;
  background-color: transparent;
}

.navbar-inverse .navbar-toggle {
  border-color: #333;
}

.navbar-inverse .navbar-toggle:focus,
.navbar-inverse .navbar-toggle:hover {
  background-color: #333;
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}

.navbar-inverse .btn-link:focus,
.navbar-inverse .btn-link:hover,
.navbar-inverse .navbar-link:hover {
  color: #fff;
}

.navbar-inverse .btn-link[disabled]:focus,
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:focus,
fieldset[disabled] .navbar-inverse .btn-link:hover {
  color: #444;
}

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.pager,
.pagination {
  padding-left: 0;
  margin: 20px 0;
}

.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}

.pagination {
  border-radius: 4px;
}

.label,
.pager li,
.pagination > li {
  display: inline;
}

.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.nav-pills > li > a > .badge,
.tooltip.right {
  margin-left: 3px;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  z-index: 2;
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}

.pagination > .disabled > a,
.pagination > .disabled > a:focus,
.pagination > .disabled > a:hover,
.pagination > .disabled > span,
.pagination > .disabled > span:focus,
.pagination > .disabled > span:hover {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.pager {
  text-align: center;
  list-style: none;
}

.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.list-group-item > .badge,
.pager .next > a,
.pager .next > span {
  float: right;
}

.pager .disabled > a,
.pager .disabled > a:focus,
.pager .disabled > a:hover,
.pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
}

.label {
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  color: #fff;
  text-align: center;
  vertical-align: baseline;
  border-radius: 0.25em;
}

.badge,
.progress-bar {
  font-size: 12px;
  text-align: center;
}

a.badge:focus,
a.badge:hover,
a.label:focus,
a.label:hover {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.btn .badge,
.btn .label {
  position: relative;
  top: -1px;
}

.label-default {
  background-color: #777;
}

.label-default[href]:focus,
.label-default[href]:hover {
  background-color: #5e5e5e;
}

.label-primary {
  background-color: #337ab7;
}

.label-success,
.progress-bar-success {
  background-color: #5cb85c;
}

.label-success[href]:focus,
.label-success[href]:hover {
  background-color: #449d44;
}

.label-info,
.progress-bar-info {
  background-color: #5bc0de;
}

.label-info[href]:focus,
.label-info[href]:hover {
  background-color: #31b0d5;
}

.label-warning,
.progress-bar-warning {
  background-color: #f0ad4e;
}

.label-warning[href]:focus,
.label-warning[href]:hover {
  background-color: #ec971f;
}

.label-danger,
.progress-bar-danger {
  background-color: #d9534f;
}

.label-danger[href]:focus,
.label-danger[href]:hover {
  background-color: #c9302c;
}

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  color: #fff;
  vertical-align: middle;
  background-color: #777;
  border-radius: 10px;
}

.jumbotron,
.jumbotron .h1,
.jumbotron h1,
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.panel-heading > .dropdown .dropdown-toggle,
.panel-title > .small,
.panel-title > .small > a,
.panel-title > a,
.panel-title > small,
.panel-title > small > a,
a.list-group-item-danger .list-group-item-heading,
a.list-group-item-info .list-group-item-heading,
a.list-group-item-success .list-group-item-heading,
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading,
button.list-group-item-info .list-group-item-heading,
button.list-group-item-success .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

.btn-group-xs > .btn .badge,
.btn-xs .badge {
  top: 0;
  padding: 1px 5px;
}

.list-group-item > .badge + .badge {
  margin-right: 5px;
}

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  background-color: #eee;
}

.alert,
.progress,
.thumbnail {
  margin-bottom: 20px;
}

.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}

.jumbotron > hr {
  border-top-color: #d5d5d5;
}

.container .jumbotron,
.container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}

.jumbotron .container {
  max-width: 100%;
}

.thumbnail {
  display: block;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}

.thumbnail a > img,
.thumbnail > img {
  margin-right: auto;
  margin-left: auto;
}

.panel-primary,
a.thumbnail.active,
a.thumbnail:focus,
a.thumbnail:hover {
  border-color: #337ab7;
}

.thumbnail .caption {
  padding: 9px;
  color: #333;
}

.alert {
  padding: 15px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert h4 {
  color: inherit;
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success,
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-info,
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-warning,
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.alert-warning hr {
  border-top-color: #f7e1b5;
}

.alert-danger,
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.alert-danger hr {
  border-top-color: #e4b9c0;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

.progress {
  height: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  line-height: 20px;
  color: #fff;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s;
  -o-transition: width 0.6s;
  transition: width 0.6s;
}

.progress-bar-striped,
.progress-striped .progress-bar {
  background-image: -webkit-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-image: -o-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  -webkit-background-size: 40px 40px;
  background-size: 40px 40px;
}

.progress-bar.active,
.progress.active .progress-bar {
  -webkit-animation: 2s linear infinite progress-bar-stripes;
  -o-animation: 2s linear infinite progress-bar-stripes;
  animation: 2s linear infinite progress-bar-stripes;
}

.progress-striped .progress-bar-danger,
.progress-striped .progress-bar-info,
.progress-striped .progress-bar-success,
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-image: -o-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
}

.media {
  margin-top: 15px;
}

.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}

.media-body {
  width: 10000px;
}

.media-right,
.media > .pull-right {
  padding-left: 10px;
}

.media-left,
.media > .pull-left {
  padding-right: 10px;
}

.media-body,
.media-left,
.media-right {
  display: table-cell;
  vertical-align: top;
}

.media-middle {
  vertical-align: middle;
}

.media-bottom {
  vertical-align: bottom;
}

.list-group-item-heading,
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

a.list-group-item,
button.list-group-item {
  color: #555;
}

a.list-group-item:focus,
a.list-group-item:hover,
button.list-group-item:focus,
button.list-group-item:hover {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}

button.list-group-item {
  width: 100%;
  text-align: left;
}

.list-group-item.disabled,
.list-group-item.disabled:focus,
.list-group-item.disabled:hover {
  color: #777;
  cursor: not-allowed;
  background-color: #eee;
}

.list-group-item.active,
.list-group-item.active:focus,
.list-group-item.active:hover {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

.list-group-item.active .list-group-item-text,
.list-group-item.active:focus .list-group-item-text,
.list-group-item.active:hover .list-group-item-text {
  color: #c7ddef;
}

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

a.list-group-item-success:focus,
a.list-group-item-success:hover,
button.list-group-item-success:focus,
button.list-group-item-success:hover {
  color: #3c763d;
  background-color: #d0e9c6;
}

a.list-group-item-success.active,
a.list-group-item-success.active:focus,
a.list-group-item-success.active:hover,
button.list-group-item-success.active,
button.list-group-item-success.active:focus,
button.list-group-item-success.active:hover {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

a.list-group-item-info:focus,
a.list-group-item-info:hover,
button.list-group-item-info:focus,
button.list-group-item-info:hover {
  color: #31708f;
  background-color: #c4e3f3;
}

a.list-group-item-info.active,
a.list-group-item-info.active:focus,
a.list-group-item-info.active:hover,
button.list-group-item-info.active,
button.list-group-item-info.active:focus,
button.list-group-item-info.active:hover {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

a.list-group-item-warning:focus,
a.list-group-item-warning:hover,
button.list-group-item-warning:focus,
button.list-group-item-warning:hover {
  color: #8a6d3b;
  background-color: #faf2cc;
}

a.list-group-item-warning.active,
a.list-group-item-warning.active:focus,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active,
button.list-group-item-warning.active:focus,
button.list-group-item-warning.active:hover {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

a.list-group-item-danger:focus,
a.list-group-item-danger:hover,
button.list-group-item-danger:focus,
button.list-group-item-danger:hover {
  color: #a94442;
  background-color: #ebcccc;
}

a.list-group-item-danger.active,
a.list-group-item-danger.active:focus,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active,
button.list-group-item-danger.active:focus,
button.list-group-item-danger.active:hover {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

.carousel-inner > .item > a > img,
.carousel-inner > .item > img,
.close {
  line-height: 1;
}

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-footer,
.well {
  background-color: #f5f5f5;
}

.panel-body {
  padding: 15px;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

.panel-group,
.well {
  margin-bottom: 20px;
}

.panel-footer {
  padding: 10px 15px;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

.panel > .list-group:first-child .list-group-item:first-child,
.panel
  > .panel-collapse
  > .list-group:first-child
  .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.list-group + .panel-footer,
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

.panel > .panel-collapse > .table caption,
.panel > .table caption,
.panel > .table-responsive > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}

.panel > .table-responsive:first-child > .table:first-child,
.panel
  > .table-responsive:first-child
  > .table:first-child
  > tbody:first-child
  > tr:first-child,
.panel
  > .table-responsive:first-child
  > .table:first-child
  > thead:first-child
  > tr:first-child,
.panel > .table:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel
  > .table-responsive:first-child
  > .table:first-child
  > tbody:first-child
  > tr:first-child
  td:first-child,
.panel
  > .table-responsive:first-child
  > .table:first-child
  > tbody:first-child
  > tr:first-child
  th:first-child,
.panel
  > .table-responsive:first-child
  > .table:first-child
  > thead:first-child
  > tr:first-child
  td:first-child,
.panel
  > .table-responsive:first-child
  > .table:first-child
  > thead:first-child
  > tr:first-child
  th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel
  > .table:first-child
  > thead:first-child
  > tr:first-child
  th:first-child {
  border-top-left-radius: 3px;
}

.panel
  > .table-responsive:first-child
  > .table:first-child
  > tbody:first-child
  > tr:first-child
  td:last-child,
.panel
  > .table-responsive:first-child
  > .table:first-child
  > tbody:first-child
  > tr:first-child
  th:last-child,
.panel
  > .table-responsive:first-child
  > .table:first-child
  > thead:first-child
  > tr:first-child
  td:last-child,
.panel
  > .table-responsive:first-child
  > .table:first-child
  > thead:first-child
  > tr:first-child
  th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

.panel > .table-responsive:last-child > .table:last-child,
.panel
  > .table-responsive:last-child
  > .table:last-child
  > tbody:last-child
  > tr:last-child,
.panel
  > .table-responsive:last-child
  > .table:last-child
  > tfoot:last-child
  > tr:last-child,
.panel > .table:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel
  > .table-responsive:last-child
  > .table:last-child
  > tbody:last-child
  > tr:last-child
  td:first-child,
.panel
  > .table-responsive:last-child
  > .table:last-child
  > tbody:last-child
  > tr:last-child
  th:first-child,
.panel
  > .table-responsive:last-child
  > .table:last-child
  > tfoot:last-child
  > tr:last-child
  td:first-child,
.panel
  > .table-responsive:last-child
  > .table:last-child
  > tfoot:last-child
  > tr:last-child
  th:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}

.panel
  > .table-responsive:last-child
  > .table:last-child
  > tbody:last-child
  > tr:last-child
  td:last-child,
.panel
  > .table-responsive:last-child
  > .table:last-child
  > tbody:last-child
  > tr:last-child
  th:last-child,
.panel
  > .table-responsive:last-child
  > .table:last-child
  > tfoot:last-child
  > tr:last-child
  td:last-child,
.panel
  > .table-responsive:last-child
  > .table:last-child
  > tfoot:last-child
  > tr:last-child
  th:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}

.panel-group .panel-heading + .panel-collapse > .list-group,
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}

.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}

.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}

.panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}

.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333;
}

.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}

.panel-success {
  border-color: #d6e9c6;
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}

.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

.panel-info {
  border-color: #bce8f1;
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}

.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

.panel-warning {
  border-color: #faebcc;
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}

.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

.panel-danger {
  border-color: #ebccd1;
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}

.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
  padding-bottom: 75%;
}

.well {
  min-height: 20px;
  padding: 19px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.well blockquote {
  border-color: rgba(0, 0, 0, 0.15);
}

.well-lg {
  padding: 24px;
  border-radius: 6px;
}

.well-sm {
  padding: 9px;
  border-radius: 3px;
}

.close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
}

.popover,
.tooltip {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  line-break: auto;
  text-decoration: none;
}

.close:focus,
.close:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
}

.modal-backdrop.fade,
.tooltip {
  opacity: 0;
}

button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.in {
  opacity: 0.5;
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  /* logo top postion */

  .logo-col {
    display: flex;
    align-items: center;
    height: 76px;
  }

  .lead {
    font-size: 21px;
  }

  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dl-horizontal dd {
    margin-left: 180px;
  }

  .container {
    width: 750px;
  }

  .col-sm-1,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .navbar-header,
  .navbar-nav > li {
    float: left;
  }

  .col-sm-12,
  .form-inline .input-group > .form-control,
  .navbar-form .input-group > .form-control {
    width: 100%;
  }

  .col-sm-11 {
    width: 91.66666667%;
  }

  .col-sm-10 {
    width: 83.33333333%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-8 {
    width: 66.66666667%;
  }

  .col-sm-7 {
    width: 58.33333333%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-4 {
    width: 33.33333333%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-2 {
    width: 16.66666667%;
  }

  .col-sm-1 {
    width: 8.33333333%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-pull-11 {
    right: 91.66666667%;
  }

  .col-sm-pull-10 {
    right: 83.33333333%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-8 {
    right: 66.66666667%;
  }

  .col-sm-pull-7 {
    right: 58.33333333%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-5 {
    right: 41.66666667%;
  }

  .col-sm-pull-4 {
    right: 33.33333333%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-2 {
    right: 16.66666667%;
  }

  .col-sm-pull-1 {
    right: 8.33333333%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-push-11 {
    left: 91.66666667%;
  }

  .col-sm-push-10 {
    left: 83.33333333%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-8 {
    left: 66.66666667%;
  }

  .col-sm-push-7 {
    left: 58.33333333%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-5 {
    left: 41.66666667%;
  }

  .col-sm-push-4 {
    left: 33.33333333%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-2 {
    left: 16.66666667%;
  }

  .col-sm-push-1 {
    left: 8.33333333%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-0 {
    margin-left: 0;
  }

  .form-inline .form-control-static,
  .form-inline .form-group,
  .navbar-form .form-control-static,
  .navbar-form .form-group {
    display: inline-block;
  }

  .form-inline .control-label,
  .form-inline .form-group,
  .navbar-form .control-label,
  .navbar-form .form-group {
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .form-control,
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .input-group,
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }

  .form-inline .input-group .form-control,
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .navbar-form .input-group .form-control,
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn {
    width: auto;
  }

  .form-inline .checkbox,
  .form-inline .radio,
  .navbar-form .checkbox,
  .navbar-form .radio {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .checkbox label,
  .form-inline .radio label,
  .navbar-form .checkbox label,
  .navbar-form .radio label {
    padding-left: 0;
  }

  .form-inline .checkbox input[type="checkbox"],
  .form-inline .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"],
  .navbar-form .radio input[type="radio"] {
    position: relative;
    margin-left: 0;
  }

  .form-inline .has-feedback .form-control-feedback,
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }

  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }

  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }

  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }

  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }

  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }

  .nav-justified > li,
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }

  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }

  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:focus,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:focus,
  .nav-tabs.nav-justified > .active > a:hover {
    border-bottom-color: #fff;
  }

  .nav-justified > li > a {
    margin-bottom: 0;
  }

  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }

  .navbar {
    border-radius: 4px;
  }

  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }

  .navbar-collapse.in {
    overflow-y: visible;
  }

  .navbar-fixed-bottom .navbar-collapse,
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }

  .container-fluid > .navbar-collapse,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container > .navbar-header {
    margin-right: 0;
    margin-left: 0;
  }

  .navbar-fixed-bottom,
  .navbar-fixed-top,
  .navbar-static-top {
    border-radius: 0;
  }

  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }

  .navbar-toggle {
    display: none;
  }

  .navbar-nav {
    float: left;
    margin: 0;
  }

  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }

  .navbar-left {
    float: left !important;
  }

  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }

  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }

  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  .modal-sm {
    width: 300px;
  }
}

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

  .col-md-1,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9 {
    float: left;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-11 {
    width: 91.66666667%;
  }

  .col-md-10 {
    width: 83.33333333%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-7 {
    width: 58.33333333%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-5 {
    width: 41.66666667%;
  }

  .col-md-4 {
    width: 33.33333333%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-2 {
    width: 16.66666667%;
  }

  .col-md-1 {
    width: 8.33333333%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-pull-11 {
    right: 91.66666667%;
  }

  .col-md-pull-10 {
    right: 83.33333333%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-8 {
    right: 66.66666667%;
  }

  .col-md-pull-7 {
    right: 58.33333333%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-5 {
    right: 41.66666667%;
  }

  .col-md-pull-4 {
    right: 33.33333333%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-2 {
    right: 16.66666667%;
  }

  .col-md-pull-1 {
    right: 8.33333333%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-push-11 {
    left: 91.66666667%;
  }

  .col-md-push-10 {
    left: 83.33333333%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-8 {
    left: 66.66666667%;
  }

  .col-md-push-7 {
    left: 58.33333333%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-5 {
    left: 41.66666667%;
  }

  .col-md-push-4 {
    left: 33.33333333%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-2 {
    left: 16.66666667%;
  }

  .col-md-push-1 {
    left: 8.33333333%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-0 {
    margin-left: 0;
  }

  .modal-lg {
    width: 900px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-size: 12px;
  text-align: left;
  text-align: start;
}

.tooltip.in {
  opacity: 0.9;
}

.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

.tooltip.right {
  padding: 0 5px;
}

.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow,
.tooltip.top-left .tooltip-arrow,
.tooltip.top-right .tooltip-arrow {
  border-width: 5px 5px 0;
  border-top-color: #000;
  bottom: 0;
}

.tooltip.top .tooltip-arrow {
  left: 50%;
  margin-left: -5px;
}

.tooltip.top-left .tooltip-arrow {
  right: 5px;
  margin-bottom: -5px;
}

.tooltip.top-right .tooltip-arrow {
  left: 5px;
  margin-bottom: -5px;
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow,
.tooltip.bottom-left .tooltip-arrow,
.tooltip.bottom-right .tooltip-arrow {
  border-width: 0 5px 5px;
  border-bottom-color: #000;
  top: 0;
}

.tooltip.bottom .tooltip-arrow {
  left: 50%;
  margin-left: -5px;
}

.tooltip.bottom-left .tooltip-arrow {
  right: 5px;
  margin-top: -5px;
}

.tooltip.bottom-right .tooltip-arrow {
  left: 5px;
  margin-top: -5px;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-size: 14px;
  text-align: left;
  text-align: start;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.carousel-caption,
.carousel-control {
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.popover.top {
  margin-top: -10px;
}

.popover.right {
  margin-left: 10px;
}

.popover.bottom {
  margin-top: 10px;
}

.popover.left {
  margin-left: -10px;
}

.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

.popover-content {
  padding: 9px 14px;
}

.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover > .arrow {
  border-width: 11px;
}

.popover > .arrow:after {
  content: "";
  border-width: 10px;
}

.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}

.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
}

.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}

.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: left 0.6s ease-in-out;
  -o-transition: left 0.6s ease-in-out;
  transition: left 0.6s ease-in-out;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }

  .carousel-inner > .item.active.right,
  .carousel-inner > .item.next {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  .carousel-inner > .item.active.left,
  .carousel-inner > .item.prev {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  .carousel-inner > .item.active,
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.carousel-inner > .active,
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel-inner > .active.left,
.carousel-inner > .prev {
  left: -100%;
}

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0.5;
}

.carousel-control.left {
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5) 0,
    rgba(0, 0, 0, 0.0001) 100%
  );
  background-image: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5) 0,
    rgba(0, 0, 0, 0.0001) 100%
  );
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0.0001))
  );
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0,
    rgba(0, 0, 0, 0.0001) 100%
  );
  background-repeat: repeat-x;
}

.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.0001) 0,
    rgba(0, 0, 0, 0.5) 100%
  );
  background-image: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0.0001) 0,
    rgba(0, 0, 0, 0.5) 100%
  );
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.0001)),
    to(rgba(0, 0, 0, 0.5))
  );
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.0001) 0,
    rgba(0, 0, 0, 0.5) 100%
  );
  background-repeat: repeat-x;
}

.carousel-control:focus,
.carousel-control:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
  left: 50%;
  margin-left: -10px;
}

.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
  right: 50%;
  margin-right: -10px;
}

.carousel-control .icon-next,
.carousel-control .icon-prev {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}

.carousel-control .icon-prev:before {
  content: "\2039";
}

.carousel-control .icon-next:before {
  content: "\203a";
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}

.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
}

.carousel-caption .btn,
.text-hide {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }

  .jumbotron .h1,
  .jumbotron h1 {
    font-size: 63px;
  }

  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next,
  .carousel-control .icon-prev {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }

  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }

  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }

  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }

  .carousel-indicators {
    bottom: 20px;
  }
}

.btn-group-vertical > .btn-group:after,
.btn-group-vertical > .btn-group:before,
.btn-toolbar:after,
.btn-toolbar:before,
.clearfix:after,
.clearfix:before,
.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before,
.dl-horizontal dd:after,
.dl-horizontal dd:before,
.form-horizontal .form-group:after,
.form-horizontal .form-group:before,
.modal-footer:after,
.modal-footer:before,
.modal-header:after,
.modal-header:before,
.nav:after,
.nav:before,
.navbar-collapse:after,
.navbar-collapse:before,
.navbar-header:after,
.navbar-header:before,
.navbar:after,
.navbar:before,
.pager:after,
.pager:before,
.panel-body:after,
.panel-body:before,
.row:after,
.row:before {
  display: table;
  content: " ";
}

.btn-group-vertical > .btn-group:after,
.btn-toolbar:after,
.clearfix:after,
.container-fluid:after,
.container:after,
.dl-horizontal dd:after,
.form-horizontal .form-group:after,
.modal-footer:after,
.modal-header:after,
.nav:after,
.navbar-collapse:after,
.navbar-header:after,
.navbar:after,
.pager:after,
.panel-body:after,
.row:after {
  clear: both;
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hidden,
.hide,
.visible-lg,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-md,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-print,
.visible-print-block,
.visible-print-inline,
.visible-print-inline-block,
.visible-sm,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-xs,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  background-color: transparent;
  border: 0;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}

@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .navbar-nav .open .dropdown-menu .dropdown-header,
  .navbar-nav .open .dropdown-menu > li > a {
    padding: 5px 15px 5px 25px;
  }

  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }

  .navbar-nav .open .dropdown-menu > li > a:focus,
  .navbar-nav .open .dropdown-menu > li > a:hover {
    background-image: none;
  }

  .navbar-form .form-group {
    margin-bottom: 5px;
  }

  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
    color: #333;
    background-color: transparent;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {
    color: #555;
    background-color: #e7e7e7;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {
    color: #ccc;
    background-color: transparent;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
    color: #fff;
    background-color: transparent;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {
    color: #fff;
    background-color: #080808;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {
    color: #444;
    background-color: transparent;
  }

  .visible-xs,
  .visible-xs-block {
    display: block !important;
  }

  table.visible-xs {
    display: table !important;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  td.visible-xs,
  th.visible-xs {
    display: table-cell !important;
  }

  .visible-xs-inline {
    display: inline !important;
  }

  .visible-xs-inline-block {
    display: inline-block !important;
  }

  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm,
  .visible-sm-block {
    display: block !important;
  }

  table.visible-sm {
    display: table !important;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  td.visible-sm,
  th.visible-sm {
    display: table-cell !important;
  }

  .visible-sm-inline {
    display: inline !important;
  }

  .visible-sm-inline-block {
    display: inline-block !important;
  }

  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md,
  .visible-md-block {
    display: block !important;
  }

  table.visible-md {
    display: table !important;
  }

  tr.visible-md {
    display: table-row !important;
  }

  td.visible-md,
  th.visible-md {
    display: table-cell !important;
  }

  .visible-md-inline {
    display: inline !important;
  }

  .visible-md-inline-block {
    display: inline-block !important;
  }

  .hidden-md {
    display: none !important;
  }
}

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

  .col-lg-1,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9 {
    float: left;
  }

  div#sidechanged {
    float: right;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-11 {
    width: 91.66666667%;
  }

  .col-lg-10 {
    width: 83.33333333%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-8 {
    width: 66.66666667%;
  }

  .col-lg-7 {
    width: 58.33333333%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-5 {
    width: 41.66666667%;
  }

  .col-lg-4 {
    width: 33.33333333%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-2 {
    width: 16.66666667%;
  }

  .col-lg-1 {
    width: 8.33333333%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-pull-11 {
    right: 91.66666667%;
  }

  .col-lg-pull-10 {
    right: 83.33333333%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-8 {
    right: 66.66666667%;
  }

  .col-lg-pull-7 {
    right: 58.33333333%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-5 {
    right: 41.66666667%;
  }

  .col-lg-pull-4 {
    right: 33.33333333%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-2 {
    right: 16.66666667%;
  }

  .col-lg-pull-1 {
    right: 8.33333333%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-push-11 {
    left: 91.66666667%;
  }

  .col-lg-push-10 {
    left: 83.33333333%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-8 {
    left: 66.66666667%;
  }

  .col-lg-push-7 {
    left: 58.33333333%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-5 {
    left: 41.66666667%;
  }

  .col-lg-push-4 {
    left: 33.33333333%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-2 {
    left: 16.66666667%;
  }

  .col-lg-push-1 {
    left: 8.33333333%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-0 {
    margin-left: 0;
  }

  .visible-lg,
  .visible-lg-block {
    display: block !important;
  }

  table.visible-lg {
    display: table !important;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  td.visible-lg,
  th.visible-lg {
    display: table-cell !important;
  }

  .visible-lg-inline {
    display: inline !important;
  }

  .visible-lg-inline-block {
    display: inline-block !important;
  }

  .hidden-lg {
    display: none !important;
  }
}

@media print {
  .visible-print,
  .visible-print-block {
    display: block !important;
  }

  table.visible-print {
    display: table !important;
  }

  tr.visible-print {
    display: table-row !important;
  }

  td.visible-print,
  th.visible-print {
    display: table-cell !important;
  }

  .visible-print-inline {
    display: inline !important;
  }

  .visible-print-inline-block {
    display: inline-block !important;
  }

  .hidden-print {
    display: none !important;
  }
}

/*******************************css/font-awesome.css**********************************/
.fa,
.fa-stack {
  display: inline-block;
}

.fa-fw,
.fa-li {
  text-align: center;
}

@font-face {
  font-family: FontAwesome;
  src: url("../fonts/fontawesome-webfont3e6e.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfontd41d.eot?#iefix&v=4.7.0")
      format("embedded-opentype"),
    url("../fonts/fontawesome-webfont3e6e.woff2?v=4.7.0") format("woff2"),
    url("../fonts/fontawesome-webfont3e6e.woff?v=4.7.0") format("woff"),
    url("../fonts/fontawesome-webfont3e6e.ttf?v=4.7.0") format("truetype"),
    url("../fonts/fontawesome-webfont3e6e.svg?v=4.7.0#fontawesomeregular")
      format("svg");
  font-weight: 400;
  font-style: normal;
}

.fa {
  font: 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: 0.75em;
  vertical-align: -15%;
}

.fa-2x,
.fa-stack-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
}

.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: 0.14285714em;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: 0.08em solid #eee;
  border-radius: 0.1em;
}

.fa-pull-left,
.pull-left {
  float: left;
}

.fa-pull-right,
.pull-right {
  float: right;
}

.fa.fa-pull-left,
.fa.pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right,
.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: 2s linear infinite fa-spin;
  animation: 2s linear infinite fa-spin;
}

.fa-pulse {
  -webkit-animation: 1s steps(8) infinite fa-spin;
  animation: 1s steps(8) infinite fa-spin;
}

@-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;
  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-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;
}

/***********************************css/fonts.css***********************************/
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  src: local("Montserrat Regular"), local("Montserrat-Regular"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)
      format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  src: local("Montserrat Regular"), local("Montserrat-Regular"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)
      format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  src: local("Montserrat Regular"), local("Montserrat-Regular"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2)
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  src: local("Montserrat Regular"), local("Montserrat-Regular"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2)
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  src: local("Montserrat Regular"), local("Montserrat-Regular"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTUSjIg1_i6t8kCHKm459Wlhyw.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: Montserrat;
  font-style: normal;
  font-weight: 500;
  src: local("Montserrat Medium"), local("Montserrat-Medium"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_ZpC3gTD_u50.woff2)
      format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  src: local("Montserrat Medium"), local("Montserrat-Medium"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_ZpC3g3D_u50.woff2)
      format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  src: local("Montserrat Medium"), local("Montserrat-Medium"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_ZpC3gbD_u50.woff2)
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  src: local("Montserrat Medium"), local("Montserrat-Medium"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_ZpC3gfD_u50.woff2)
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  src: local("Montserrat Medium"), local("Montserrat-Medium"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_ZpC3gnD_g.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: Montserrat;
  font-style: normal;
  font-weight: 600;
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_bZF3gTD_u50.woff2)
      format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_bZF3g3D_u50.woff2)
      format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_bZF3gbD_u50.woff2)
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_bZF3gfD_u50.woff2)
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_bZF3gnD_g.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: Montserrat;
  font-style: normal;
  font-weight: 700;
  src: local("Montserrat Bold"), local("Montserrat-Bold"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_dJE3gTD_u50.woff2)
      format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  src: local("Montserrat Bold"), local("Montserrat-Bold"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_dJE3g3D_u50.woff2)
      format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  src: local("Montserrat Bold"), local("Montserrat-Bold"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_dJE3gbD_u50.woff2)
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  src: local("Montserrat Bold"), local("Montserrat-Bold"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_dJE3gfD_u50.woff2)
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  src: local("Montserrat Bold"), local("Montserrat-Bold"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_dJE3gnD_g.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: Montserrat;
  font-style: normal;
  font-weight: 800;
  src: local("Montserrat ExtraBold"), local("Montserrat-ExtraBold"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_c5H3gTD_u50.woff2)
      format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 800;
  src: local("Montserrat ExtraBold"), local("Montserrat-ExtraBold"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_c5H3g3D_u50.woff2)
      format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 800;
  src: local("Montserrat ExtraBold"), local("Montserrat-ExtraBold"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_c5H3gbD_u50.woff2)
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 800;
  src: local("Montserrat ExtraBold"), local("Montserrat-ExtraBold"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_c5H3gfD_u50.woff2)
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 800;
  src: local("Montserrat ExtraBold"), local("Montserrat-ExtraBold"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_c5H3gnD_g.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: Montserrat;
  font-style: normal;
  font-weight: 900;
  src: local("Montserrat Black"), local("Montserrat-Black"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_epG3gTD_u50.woff2)
      format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 900;
  src: local("Montserrat Black"), local("Montserrat-Black"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_epG3g3D_u50.woff2)
      format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 900;
  src: local("Montserrat Black"), local("Montserrat-Black"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_epG3gbD_u50.woff2)
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 900;
  src: local("Montserrat Black"), local("Montserrat-Black"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_epG3gfD_u50.woff2)
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 900;
  src: local("Montserrat Black"), local("Montserrat-Black"),
    url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_epG3gnD_g.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: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans Regular"), local("OpenSans-Regular"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWJ0bbck.woff2)
      format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans Regular"), local("OpenSans-Regular"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFUZ0bbck.woff2)
      format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans Regular"), local("OpenSans-Regular"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWZ0bbck.woff2)
      format("woff2");
  unicode-range: U+1F00-1FFF;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans Regular"), local("OpenSans-Regular"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVp0bbck.woff2)
      format("woff2");
  unicode-range: U+0370-03FF;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans Regular"), local("OpenSans-Regular"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWp0bbck.woff2)
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans Regular"), local("OpenSans-Regular"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFW50bbck.woff2)
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans Regular"), local("OpenSans-Regular"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVZ0b.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: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: local("Open Sans SemiBold"), local("OpenSans-SemiBold"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UNirkOX-hpOqc.woff2)
      format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: local("Open Sans SemiBold"), local("OpenSans-SemiBold"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UNirkOVuhpOqc.woff2)
      format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: local("Open Sans SemiBold"), local("OpenSans-SemiBold"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UNirkOXuhpOqc.woff2)
      format("woff2");
  unicode-range: U+1F00-1FFF;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: local("Open Sans SemiBold"), local("OpenSans-SemiBold"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UNirkOUehpOqc.woff2)
      format("woff2");
  unicode-range: U+0370-03FF;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: local("Open Sans SemiBold"), local("OpenSans-SemiBold"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UNirkOXehpOqc.woff2)
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: local("Open Sans SemiBold"), local("OpenSans-SemiBold"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UNirkOXOhpOqc.woff2)
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: local("Open Sans SemiBold"), local("OpenSans-SemiBold"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UNirkOUuhp.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: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Open Sans Bold"), local("OpenSans-Bold"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOX-hpOqc.woff2)
      format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Open Sans Bold"), local("OpenSans-Bold"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOVuhpOqc.woff2)
      format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Open Sans Bold"), local("OpenSans-Bold"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXuhpOqc.woff2)
      format("woff2");
  unicode-range: U+1F00-1FFF;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Open Sans Bold"), local("OpenSans-Bold"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOUehpOqc.woff2)
      format("woff2");
  unicode-range: U+0370-03FF;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Open Sans Bold"), local("OpenSans-Bold"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXehpOqc.woff2)
      format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Open Sans Bold"), local("OpenSans-Bold"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXOhpOqc.woff2)
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Open Sans Bold"), local("OpenSans-Bold"),
    url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOUuhp.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;
}

/**************************css/owl.carousel.min.css**************************8*/
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

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

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

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

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

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

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

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

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

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

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

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

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

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

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

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

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

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

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

  100% {
    opacity: 0;
  }
}

.owl-height {
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s;
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

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

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

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.html) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s;
}

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

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s;
}

.warning-title {
  color: white;
  font-family: "Montserrat", sans-serif !important;
  justify-content: center;
  text-align: center;
  font-size: 16px;
}

.warning-content {
  color: white;
  font-family: "Montserrat", sans-serif !important;
  justify-content: center;
  /*text-align: justify;*/
  font-size: 12px;
}

@media (min-width: 320px) and (max-width: 768px) {
  .warning-title {
    font-size: 12px !important;
  }

  .warning-content {
    font-size: 10px !important;
  }
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
h1.hs_slider_title.animated.bounceInDown {
  max-width: 450px;
  margin: 10px auto;
}
p.medical-id-sticker.medical {
  max-width: 550px;
  margin: 20px auto;
}
@media (min-width: 576px) {
  .modal-dialog.modal-dialog-centered {
    min-height: calc(100% - (0.5rem * 2)) !important;
  }
}
.modal-dialog.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}
/********************css/owl.theme.default.min.css******************************************************/
.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav,
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #869791;
  color: #fff;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/**********************************css/style.css*******************************************8*/
body,
p {
  font-family: "Montserrat", sans-serif !important;
}

:root {
  --stepNumber: 6;
}

body {
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  margin: 0;
}

a,
a:focus,
a:hover {
  color: #707070;
  text-decoration: none;
  outline: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: 1.3;
  color: #1c2130;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

.form-control:focus,
:after,
:before,
:focus,
:hover,
a,
button,
img,
input,
label,
select,
svg,
svg path,
svg polygon,
svg rect,
textarea {
  outline: 0 !important;
  box-shadow: none;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.health_slider .owl-theme .owl-nav,
.health_slider:hover .owl-theme .owl-nav,
.hs_service,
.hs_service:hover,
.hs_social ul li a,
.hs_social ul li a:hover {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.hlc_toppadder10,
.hlt_about_info table tr:nth-child(2) td {
  padding-top: 10px;
}

.hlc_toppadder20 {
  padding-top: 20px;
}

.hlc_toppadder30 {
  padding-top: 30px;
}

.hlc_toppadder40 {
  padding-top: 40px;
}

.hlc_toppadder50 {
  padding-top: 50px;
}

.hlc_toppadder60 {
  padding-top: 60px;
}

.hlc_toppadder70 {
  padding-top: 70px;
}

.hlc_toppadder80 {
  padding-top: 80px;
}

.hlc_toppadder90 {
  padding-top: 90px;
}

.hlc_toppadder100 {
  padding-top: 100px;
}

.hlc_bottompadder10,
.hlt_about_info table tr:nth-child(4) td {
  padding-bottom: 10px;
}

#hs_footer,
.hlc_bottompadder20 {
  padding-bottom: 20px;
}

.hlc_bottompadder30 {
  padding-bottom: 30px;
}

.hlc_bottompadder40 {
  padding-bottom: 40px;
}

.hlc_bottompadder50 {
  padding-bottom: 50px;
}

.hlc_bottompadder60 {
  padding-bottom: 60px;
}

.hlc_bottompadder70 {
  padding-bottom: 70px;
}

.hlc_bottompadder80 {
  padding-bottom: 80px;
}

.hlc_bottompadder90 {
  padding-bottom: 90px;
}

.hlc_bottompadder100 {
  padding-bottom: 100px;
}

.hlc_topmarg50 {
  margin-top: 50px;
}

.hlc_topmarg60 {
  margin-top: 60px;
}

.hlc_topmarg70 {
  margin-top: 70px;
}
.footer-margin {
  margin: 0;
  border-bottom: 1px solid #545454;
  padding: 30px 0;
}
.hlc_topmarg80 {
  margin-top: 80px;
}

.btn {
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-weight: 600;
  padding: 0 25px;
}

.btn.btn-big {
  height: 40px;
  line-height: 40px;
  padding: 0 50px;
}

.btn-default.active,
.btn-default:active,
.btn-default:focus,
.btn-default:hover,
.open .dropdown-toggle.btn-default {
  background-color: #ee2525;
  border-color: #ee2525;
  color: #fff;
}

.foo {
  text-rendering: optimizeSpeed;
}

#err {
  margin: 0 auto;
  padding-left: 15px;
  float: left;
  width: 100%;
}

#preloader {
  background-color: #fff;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2147483647;
}

.loading {
  width: 100%;
  max-width: 550px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: -90px auto 0;
}

.loading svg {
  width: 100%;
  height: 100%;
}

.loading #pulsar {
  stroke-dasharray: 281;
  -webkit-animation: 2.5s linear infinite forwards dash;
}

@-webkit-keyframes dash {
  from {
    stroke-dashoffset: 814;
  }

  to {
    stroke-dashoffset: -814;
  }
}

.hs_search_box {
  width: 100%;
  float: left;
  margin: -20px auto 20px;
  display: none;
  position: absolute;
  top: 41px;
  right: 15px;
  z-index: 2;
}

.button__holder,
.health_slider,
.hlt_about_info,
.hlt_about_info P,
.hlt_blddnt_img,
.hlt_bnr_text,
.hlt_footer_address,
.hlt_footer_address p,
.hlt_footer_menu,
.hlt_ftr_logo,
.hlt_testimonialslider,
.hlt_upcmslider,
.hlt_upcmslider_img,
.hs_social,
.sidebar_hlt {
  float: left;
  width: 100%;
}

.fixed .hs_search_box {
  top: 34px;
}

.hs_search_box > form > div {
  width: 100%;
  margin-bottom: 0;
}

.hs_search_box > form > div > input {
  width: 100% !important;
  border-radius: 0;
  padding: 10px;
  font-size: 16px;
}

.hs_search_box > form > div > span {
  position: absolute;
  top: 0 !important;
  font-size: 18px;
  right: 5px !important;
}

ul.colors li p,
ul.pattern li p {
  font-size: 0px;
  display: block;
  cursor: pointer;
}

#style-switcher {
  background: #fff;
  left: -200px;
  position: fixed;
  top: 25%;
  width: 200px;
  z-index: 99999;
  box-shadow: 0 10px 35px 2px rgba(61, 61, 61, 0.2);
}

#style-switcher div {
  padding: 15px;
  float: left;
}

ul.colors {
  list-style: none;
  margin: 0 0 5px;
  overflow: hidden;
  padding: 0;
}

ul.colors li {
  float: left;
  margin: 0 10px 10px 0;
}

ul.colors li #color {
  background: #2a73d4;
}

ul.colors li #color2 {
  background: #00aab5;
}

ul.colors li #color3 {
  background: #e54242;
}

ul.colors li #color4 {
  background: #2ecc71;
}

ul.colors li #color5 {
  background: #ff9845;
}

.portfolio-grid .portfolio-item:hover,
ul.colors li #style {
  background: #00ac7a;
}

ul.colors li p {
  height: 45px;
  width: 45px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  margin: 0;
}

#style-switcher .bottom {
  background: #fff;
  color: #252525;
  padding: 0;
}

#style-switcher .bottom a.settings {
  background: #fff;
  display: block;
  height: 40px;
  position: absolute;
  right: -40px;
  bottom: 0;
  width: 40px;
  padding: 0;
  font-family: sosa;
  line-height: 45px;
  color: #000;
  box-shadow: 10px 5px 35px 0 rgba(61, 61, 61, 0.2);
  text-align: center;
  border-radius: 0 3px 3px 0;
}

#style-switcher .bottom a.settings i {
  color: #ee2525;
  font-size: 20px;
}

#style-switcher .bottom a.settings i:before {
  content: "\f1fc";
}

#style-switcher .bottom a.settings:hover {
  text-decoration: none;
}

#style-switcher > div > h3 {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 400;
  text-align: left;
  margin-top: 0;
}

#style-switcher > div > select {
  width: 100%;
  height: 40px;
  padding: 0 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.slider_option > p > a > img {
  color: inherit;
  padding-right: 5px;
}

.health_care_advice .hs_post a,
.health_care_advice .hs_post:hover a p,
.hs_footer_link ul li a,
.hs_post_tab_content .hs_post a,
.hs_post_tab_content .hs_post:hover a p,
.slider_option > p > a:hover {
  color: inherit;
}

ul.pattern {
  list-style: none;
  margin: 0 0 10px;
  overflow: hidden;
  padding: 0;
}

ul.pattern li {
  float: left;
  margin: 2px;
}

ul.pattern li p {
  height: 35px;
  width: 35px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
}

ul.pattern li #pattern {
  background: url(../images/patern/canvas-orange.html);
}

ul.pattern li #pattern1 {
  background: url(../images/patern/chalkboard.html);
}

ul.pattern li #pattern2 {
  background: url(../images/patern/ocean.html);
}

ul.pattern li #pattern3 {
  background: url(../images/patern/shattered-island.html);
}

ul.pattern li #style {
  background: #008363;
}

.hlc_topheader {
  float: left;
  width: 100%;
  background-color: #ee2525;
  padding: 5px 0;
}

.button-submit,
.forget-pwd,
.hlc_topheader_textleft,
.hs_service .hs_icon_svg,
.our_partners_slider_item {
  text-align: center;
}

.hlc_topheader_textleft p {
  float: right;
  width: 100%;
  margin-bottom: 0;
  color: #fff;
}

.hlc_topheader_textright {
  float: left;
  width: 100%;
  text-align: right;
}

.hlc_topheader_textright p {
  float: left;
  width: 100%;
  margin-bottom: 0;
  text-transform: capitalize;
  color: #fff;
}

#hs_header {
  background: #fff;
  width: 100%;
  -webkit-box-shadow: 0 1px 10px rgba(0, 1, 1, 0.2);
  -moz-box-shadow: 0 1px 10px rgba(0, 1, 1, 0.2);
  box-shadow: 0 1px 10px rgba(0, 1, 1, 0.2);
  z-index: 999;
  top: 0;
}

#hs_header.fixed {
  position: fixed;
  -webkit-animation: 0.3s fadeInDown;
  -moz-animation: 0.3s fadeInDown;
  animation: 0.3s fadeInDown;
}

#hs_header.fixed #hs_header-top,
.for-mobile,
.hlt_upcmslider_text ul.hlt_blgdtl li:last-child:after,
.hlt_uprleft ul li:last-child:after,
.our_doctor_team .customNavigation,
.our_partners .customNavigation,
.up_coming_events .customNavigation {
  display: none;
}

#hs_header #hs_header-top {
  color: #fff;
  line-height: 40px;
  font-size: 12px;
}

#hs_header #hs_header-top a {
  line-height: 40px;
  display: inline-block;
  margin: 0;
}

#hs_header #hs_header-top .hs_header-text a {
  color: #e6e9ed;
}

#exampleModalLabel,
#hs_header #hs_header-top .hs_header-text a:hover,
.copyright p,
.forget-pwd span,
.hlt_copyright p a,
.hlt_wedobox:hover h4,
.hlt_wedobox:hover p,
.hs_profile_social ul li:hover a i,
.link-product a,
.login-btn a,
.panel-title > a,
.panel-title > a:focus,
.register-btn a,
.vital-medical-conditions a {
  color: #fff;
}

#hs_header #hs_header-top .social-media {
  float: right;
  margin: 0;
  height: 40px;
}

#hs_header #hs_header-top .social-media li {
  display: inline-block;
  margin-left: 8px;
}

#hs_header #hs_header-top .social-media li a {
  color: #fff;
  font-size: 13px;
}

#hs_header .hs_social ul,
.hlt_upcmslider_text ul li:last-child {
  float: right;
}

#hs_header #hs_logo,
#hs_header.fixed #hs_logo {
  margin: 10px 0;
}

#hs_header #hs_logo a,
#hs_header a,
.hlt_about_img img,
.hlt_specialistbox img,
.hs_blog_categorie_detail .hs_blog_categorie_date ul li a,
.hs_comment .hs_comment_date ul li,
.hs_pager ul li,
.portfolio-filter li {
  display: inline-block;
}

#hs_header #hs_logo a img {
  width: 68%;
}

#hs_header nav {
  width: 100%;
  text-align: center;
  display: inline-block;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}

#hs_header .hs_menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

#hs_header .hs_menu > li {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

#hs_header .hs_menu > li:last-child,
.hlt_specialist_infobox ul li:last-child,
.hlt_uprright ul li:last-child,
.hs_contact_social > .hs_profile_social > ul > li:last-child,
.hs_profile_social ul li:last-child,
.hs_social ul li:last-child {
  margin-right: 0;
}

#hs_header .hs_menu li > a {
  margin: 20px 0;
  padding: 6px 10px;
  color: #fff;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
}

#hs_header.fixed .hs_menu > li > a {
  margin: 20px 0;
}

#hs_header.fixed .hs_social ul {
  margin: 17px auto;
}

#hs_header .hs_menu li:hover {
  background: #fff;
}

#hs_header .hs_menu li:hover a,
.fa-calendar-alt,
.health_care_team_slider_item:hover .hs_team_member_detail h4,
.hs_additional_support:hover h4,
.hs_service .icon-image i:hover,
.hs_service:hover h4,
.our_doctor_team_slider_item:hover .hs_team_member_detail h3 {
  color: #ee2525;
}

#hs_header .hs_menu li > ul {
  list-style: none;
  position: absolute;
  padding-left: 0;
  text-align: left;
  top: 100%;
  left: 0;
  z-index: 500;
  visibility: hidden;
  opacity: 0;
  border-top-width: 4px;
  background: #00ac7a;
}

.register-form .form-submit-btn {
  width: 100%;
  padding: 7px 6px;
}

#hs_header .hs_menu li > ul:after,
#hs_header .hs_menu li > ul:before {
  content: "";
  position: absolute;
  bottom: 100%;
}

#hs_header .hs_menu li > ul:after {
  left: 17px;
  margin-top: 2px;
}

#hs_header .hs_menu li > ul li {
  position: relative;
  border-bottom: 1px solid #f1f1f1;
}

#hs_header .hs_menu li > ul li:hover {
  background: #f9f9f9;
}

#hs_header .hs_menu li > ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

#hs_header .hs_menu li > ul li > ul {
  position: absolute;
  left: 100%;
  top: 0;
  margin-top: 0;
}

#hs_header .hs_menu li > ul li > ul:after,
#hs_header .hs_menu li > ul li > ul:before {
  content: "";
  position: absolute;
  left: 0;
}

#hs_header .hs_menu li > ul li > ul:before {
  top: 15px;
  border-width: 0 16px 16px 0;
}

#hs_header .hs_menu li > ul li > ul:after {
  top: 15px;
  margin-left: 4px;
}

#hs_header .hs_menu li > ul li a {
  color: #727278 !important;
  width: 200px;
  margin: 0;
  font-size: 15px;
  border-radius: 0;
  border: none;
  padding: 10px 15px;
  font-family: "Open Sans", sans-serif;
  line-height: initial;
}

#hs_header .hs_menu li > ul li a.active,
#hs_header .hs_menu li > ul li:hover > a {
  border: none;
}

#hs_header .hs_menu li:hover > ul {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
  background: #fff;
  padding-left: 0;
  -webkit-box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.5);
}

.hs_additional_support,
.hs_event_date,
.hs_service,
.our_doctor_team_slider_item:hover {
  box-shadow: 0 10px 35px 2px rgba(61, 61, 61, 0.2);
}

#hs_header .hs_menu li > ul li:hover > ul {
  margin-left: 0;
  margin-top: 0;
}

#hs_header #searchform .form-group {
  margin: 19.5px 0;
}

#hs_header.fixed #searchform .form-group {
  margin: 9.5px 0;
}

.hs_nav_toggle {
  width: 100%;
  color: #ab2828;
  padding: 15px;
  cursor: pointer;
}

.hs_nav_toggle > i {
  font-size: 26px;
  float: right;
  color: white;
  margin-top: 15px;
}

#hs_header .hs_menu li > ul > li > ul > li:first-child.fa-angle-right:before {
  position: absolute;
  top: 10px;
  left: -20px;
  color: #00ac7a;
}

#accordion,
.for-last-service,
.hs_margin_30,
.hs_tab {
  margin-bottom: 30px;
}

.for-email-input {
  padding: 0 12px !important;
}

.hs_social ul {
  list-style: none;
  padding-left: 0;
  margin: 25px auto;
}

.hs_social ul li {
  float: left;
  margin-right: 15px;
}

.hs_social ul li a {
  display: block;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}

.hs_pager ul li a,
.hs_pager ul li a:hover {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.hs_social ul li a i {
  min-width: 14px;
  opacity: 0.7;
}

.hs_social ul li a:hover i {
  opacity: 1;
}

.owl-carousel .owl-item div.test {
  display: block !important;
  width: 100% !important;
  height: 80vh !important;
  object-fit: cover !important;
}

.hc_onepage_slider .carousel-caption,
.health_slider .carousel-caption {
  bottom: 250px;
}

.hc_onepage_slider .carousel-indicators,
.health_slider .carousel-indicators {
  bottom: 200px;
}

.hlc_slider_details {
  float: left;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hlc_slider_details:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hs_contact_heading:before,
.hs_heading:before {
  height: 2px;
  width: 65px;
  bottom: 0;
  position: absolute;
  content: "";
}

.health_slider.style_2 .hlc_slider_details_text {
  text-align: right;
}

.health_slider.style_3 .hlc_slider_details_text,
.hlt_heading.style_2 {
  text-align: left;
}

.hlc_slider_details_text p {
  text-align: center;
  width: 100%;
  font-size: 18px;
  color: #fff;
  margin-bottom: 40px;
}

.health_slider .owl-theme .owl-nav {
  top: 50%;
  position: absolute;
  z-index: 10;
  font-size: 56px;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
}

.health_slider:hover .owl-theme .owl-nav {
  opacity: 1;
  visibility: visible;
}

.health_slider .owl-carousel .owl-nav button.owl-next,
.health_slider .owl-carousel .owl-nav button.owl-prev {
  background-color: #fff;
  color: #000;
  width: 60px;
  height: 60px;
  line-height: 60px;
  position: absolute;
}

.health_slider .owl-carousel .owl-nav button.owl-next {
  right: 15px;
}

.health_slider .owl-carousel .owl-nav button.owl-prev {
  left: 15px;
}

.health_slider .owl-carousel .owl-nav button.owl-next span,
.health_slider .owl-carousel .owl-nav button.owl-prev span {
  position: relative;
  top: -6px;
}

.hs_slider_controler {
  width: 100%;
  float: left;
  height: 53px;
  position: relative;
  border: 1px solid #ccc;
  background-image: url(../images/icon/center_line.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.hs_slider_title {
  text-align: center;
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.health_care_team_slider_item,
.hs_event_date,
.hs_pager ul li a,
.up_coming_events_slider_item {
  text-align: center;
}

.hs_slider_button {
  border-color: #fff;
  margin-right: 15px;
}

.hs_about_us img,
.hs_comment_form .input-group,
.hs_margin_20,
.our_doctor_team_slider_item .hs_team_member_detail p,
.portfolio-grid .portfolio-item .portfolio_doctor_details p {
  margin-bottom: 20px;
}

.hs_icon,
.hs_margin_40 {
  margin-bottom: 40px;
}

.hs_margin_80 {
  margin-bottom: 80px;
}

.hs_contact_heading,
.hs_heading {
  color: #ee2525;
  margin: 30px auto;
  padding-bottom: 15px;
  font-size: 24px;
  position: relative;
}

.hs_heading:before {
  left: 0;
  border-bottom: 2px solid #7f9aa0;
}

.hs_contact_heading {
  display: inline-block;
  border-bottom-width: 50%;
}

.hs_contact_heading:before {
  left: 50%;
  margin-left: -32px;
  border-bottom: 2px solid #7f9aa0;
}

.hs_blog_categorie_detail .hs_blog_categorie_date ul li a:hover,
.hs_blog_categorie_pager li.active a,
.hs_page_title ul li a:hover,
.hs_sidebar_categories ul li a:hover,
.hs_testimonial p i,
.hs_theme_color,
.portfolio-grid .portfolio-item:hover .portfolio_doctor_details h4,
.testimonial p i {
  color: #00ac7a;
}

.btn_next,
.btn_prev,
.hs_pager ul li a {
  color: #7f9aa0;
  border: 1px solid #7f9aa0;
}

.btn_next,
.btn_prev {
  padding: 5px 10px;
  cursor: pointer;
  display: inline-block;
}

.hs_comment .hs_comment_date ul,
.hs_footer_link ul,
.hs_latest_post ul,
.hs_pager ul,
.hs_sidebar_categories ul,
.hs_tags ul,
.hs_twitter_widget ul {
  list-style: none;
  padding-left: 0;
}

.hs_pager ul li a {
  padding: 5px 12px;
  font-weight: 700;
  font-size: 16px;
}

.hs_pager ul li a:hover {
  color: #00ac7a;
  border: 1px solid #00ac7a;
}

.hs_page_title {
  width: 100%;
  padding: 80px 0;
  background: url(../images/slider/brdcrm_bg.jpg) center center/cover no-repeat
    fixed #00ac7a;
  color: #fff;
  margin-top: 0;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.hs_page_title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.hs_page_title h3 {
  color: inherit;
  margin: 0 auto;
  text-transform: capitalize;
  float: left;
  font-size: 22px;
  font-weight: 500;
}

.hs_page_title ul {
  float: right;
  padding-left: 0;
  list-style: none;
  margin: 5px auto;
}

.hs_page_title ul li {
  display: inline;
  padding: 0;
  margin: 0;
}

.hs_page_title ul li a {
  padding: 0 10px;
  position: relative;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.hs_page_title ul li:last-child a {
  padding-right: 0;
  color: #ee2525;
}

.hs_page_title ul li a:before {
  content: "";
  position: absolute;
  right: -2px;
  top: 5px;
  height: 13px;
  width: 0;
  border-right: 2px solid rgba(255, 255, 255, 0.75);
}

.hs_blog_categorie_detail .hs_blog_categorie_date ul li:last-child,
.hs_comment .hs_comment_date ul li:last-child a,
.hs_page_title ul li:last-child a:before,
.hs_single_profile .hs_single_profile_detail > div > div:last-child {
  border-right: none;
}

.hs_service {
  height: 360px;
  width: 100%;
  float: left;
  margin: -75px 0 40px;
  border-bottom: 2px solid #7f9aa0;
  padding: 30px 20px;
  background: #fff;
  z-index: 1;
  position: relative;
}

.hs_service svg {
  fill: #7f9aa0;
}

.hs_service a {
  margin: 20px auto;
}

.hs_service:hover {
  background: #f5f5f5;
  border-bottom: 2px solid #ee2525;
}

#bx-pager a .hs_testimonial_control_img,
#bx-pager a.active .hs_testimonial_control_img,
#bx-pager a:hover .hs_testimonial_control_img,
.health_care_advice .hs_post h4,
.health_care_team_slider_item,
.health_care_team_slider_item .hs_team_member_detail,
.health_care_team_slider_item .hs_team_member_detail h4,
.health_care_team_slider_item img,
.health_care_team_slider_item:hover .hs_team_member_detail,
.health_care_team_slider_item:hover img,
.hs_event_date,
.hs_event_div,
.hs_post_tab_content .hs_post p,
.hs_tags ul li a:hover,
.our_doctor_team_slider_item,
.our_doctor_team_slider_item .hs_team_member_detail,
.our_doctor_team_slider_item .hs_team_member_detail h3,
.our_doctor_team_slider_item:hover .hs_team_member_detail,
.our_doctor_team_slider_item:hover img,
.owl-carousel .owl-item .our_doctor_team_slider_item img,
.panel-body .hs_hospital_update:hover img,
.panel-body img,
.post_by_slider_item:hover .post_by_detail,
.related_post_date,
.releted_post_slider_item .releted_post_detail,
.releted_post_slider_item .releted_post_detail h4,
.releted_post_slider_item:hover .related_post_date,
.releted_post_slider_item:hover .releted_post_detail,
.up_coming_events_slider_item,
.up_coming_events_slider_item:hover .hs_event_date,
.up_coming_events_slider_item:hover .hs_event_date:before,
.up_coming_events_slider_item:hover .hs_event_div {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.hs_tab .tab-content > .tab-pane img {
  width: 100%;
  height: auto;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  background-color: #00ac7a;
  border: 1px solid #00ac7a;
  color: #fff;
}

.nav-tabs > li > a {
  border: 1px solid #00ac7a;
  border-bottom-color: rgba(255, 255, 255, 0);
}

.hs_appointment_form_div,
.tab-content {
  border-bottom: 2px solid #00ac7a;
}

.hs_appointment_form_div {
  width: 100%;
  float: left;
  position: relative;
  height: 415px;
  margin-bottom: 40px;
}

#bx-pager a img,
.hs_event_div {
  border-bottom: 2px solid #7f9aa0;
}

.hs_appointment_form_div > img,
.hs_blog_categorie img,
.hs_blog_single img,
.hs_event_div img,
.hs_single_profile img,
.hs_twitter_widget ul li,
.portfolio-grid.service_grid .portfolio-item img {
  width: 100%;
}

.hs_appointment_form_div > .hs_appointment_form {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  background: -moz-linear-gradient(
    left,
    #f5f5f5 0,
    rgba(245, 245, 245, 0.77) 60%,
    rgba(245, 245, 245, 0) 71%,
    rgba(245, 245, 245, 0) 100%
  );
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0, #f5f5f5),
    color-stop(60%, rgba(245, 245, 245, 0.77)),
    color-stop(71%, rgba(245, 245, 245, 0)),
    color-stop(100%, rgba(245, 245, 245, 0))
  );
  background: -webkit-linear-gradient(
    left,
    #f5f5f5 0,
    rgba(245, 245, 245, 0.77) 60%,
    rgba(245, 245, 245, 0) 71%,
    rgba(245, 245, 245, 0) 100%
  );
  background: -o-linear-gradient(
    left,
    #f5f5f5 0,
    rgba(245, 245, 245, 0.77) 60%,
    rgba(245, 245, 245, 0) 71%,
    rgba(245, 245, 245, 0) 100%
  );
  background: -ms-linear-gradient(
    left,
    #f5f5f5 0,
    rgba(245, 245, 245, 0.77) 60%,
    rgba(245, 245, 245, 0) 71%,
    rgba(245, 245, 245, 0) 100%
  );
  background: linear-gradient(
    to right,
    #f5f5f5 0,
    rgba(245, 245, 245, 0.77) 60%,
    rgba(245, 245, 245, 0) 71%,
    rgba(245, 245, 245, 0) 100%
  );
}

.hs_appointment_form_div > .hs_appointment_form form {
  margin: 15px;
}

.hs_appointment_form_div > .hs_appointment_form button {
  margin-left: 0;
  margin-right: 15px;
  margin-top: 0;
}

.hs_appointment_form_div > .hs_appointment_form .form-control {
  height: 50px;
  padding: 0 10px;
  font-size: 16px;
}

.up_coming_events {
  background-image: url(../images/bg/upcomming_event.png);
  background-repeat: repeat-x;
  background-position: 0 44px;
  background-size: 100% 2px;
  width: 100%;
  float: left;
}

#bx-pager a,
.hs_event_date {
  width: 60px;
  display: inline-block;
  height: 60px;
}

.hs_event_date {
  background: #7f9aa0;
  color: #fff;
  transform: rotate(45deg);
  margin: 15px 0;
}

#hs_footer .hs_footer_content .hs_footer_menu,
.happy_patients,
.hc_contact_section,
.hs_blog_heading_wrapper,
.hs_event_div,
.hs_latest_post ul li,
.our_partners,
.post_by,
.releted_post {
  width: 100%;
  float: left;
}

.hs_event_date:before {
  content: "";
  position: absolute;
  left: 115%;
  bottom: 0;
  top: 90%;
  margin-left: -2px;
  height: 28px;
  width: 2px;
  border-left: 2px dashed #7f9aa0;
  transform: rotate(-45deg);
}

.hs_event_date h3,
.hs_event_date p {
  color: #fff;
  margin: 0;
  transform: rotate(-45deg);
}

.hs_event_div {
  margin: 28px auto;
  padding: 15px 10px;
  text-align: left;
}

.hs_tags ul li a:hover,
.up_coming_events_slider_item:hover .hs_event_date {
  background: #00ac7a;
}

.up_coming_events_slider_item:hover .hs_event_date:before {
  border-left: 2px dashed #00ac7a;
}

.up_coming_events_slider_item:hover .hs_event_div {
  background: #f5f5f5;
  border-bottom: 2px solid #00ac7a;
  box-shadow: 0 10px 35px 2px rgba(61, 61, 61, 0.2);
}

#health_care_team_slider,
#our_doctor_team_slider,
#our_partners_slider,
#patients_testimonials_slider,
.releted_post_slider_item {
  margin-bottom: 28px;
}

.our_doctor_team_slider_item {
  text-align: center;
  padding-top: 20px;
  margin-bottom: 25px;
}

.owl-carousel .owl-item .our_doctor_team_slider_item img {
  max-width: 100%;
  display: inline-block;
}

.our_doctor_team_slider_item .hs_team_member_detail {
  padding: 30px;
  border-top: 1px solid #bcbcbc;
  border-bottom: 2px solid #7f9aa0;
  background-color: #fff;
}

.our_doctor_team_slider_item .hs_team_member_detail h3 {
  margin: 0 0 10px;
}

.health_care_team_slider_item:hover .hs_team_member_detail,
.our_doctor_team_slider_item:hover .hs_team_member_detail {
  background: #f5f5f5;
  border-bottom: 2px solid #ee2525;
}

.our_doctor_team_slider_item:hover {
  background: #ee2525;
}

#hs_footer .hs_footer_content .hs_footer_menu ul li:last-child a,
#hs_header.hlt_manu,
#map {
  box-shadow: none;
}

.hs_testimonial ul,
.hs_testimonial ul li,
.testimonial ul,
.testimonial ul li {
  width: 100% !important;
  float: left !important;
}

.happy_patients_slider_item {
  text-align: center;
  width: 100%;
  float: left;
}

.hs_testimonial {
  background: #f5f5f5;
  border-bottom: 2px solid #00ac7a;
  margin-bottom: 28px;
  text-align: center;
}

.hs_testimonial ul,
.testimonial ul {
  padding-left: 0 !important;
}

.hs_testimonial p {
  font-style: italic;
  font-size: 16px;
}

.hs_testimonial_content {
  clear: both;
  padding-top: 50px;
  min-height: 150px;
  text-align: center;
}

#bx-pager {
  z-index: 999;
  margin: -30px auto;
  bottom: 0;
  text-align: center;
}

#bx-pager a {
  position: relative;
}

#bx-pager a img {
  margin-right: 10px;
}

#bx-pager a.active img,
#bx-pager a:hover img,
.hs_sidebar_categories:hover {
  border-color: #00ac7a;
}

.hs_how_we_are_text,
.testimonial {
  background: #f5f5f5;
  border-bottom: 2px solid #ee2525;
}

#bx-pager a .hs_testimonial_control_img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
}

#bx-pager a.active .hs_testimonial_control_img,
#bx-pager a:hover .hs_testimonial_control_img {
  background-color: transparent;
}

.owl-carousel .owl-item .our_partners_slider_item img {
  display: inline-block;
  width: auto;
}

.hs_how_we_are img {
  width: 100%;
  min-height: 309px;
}

.how-we-four-blocks,
.next-btn-form {
  display: flex;
}

.how-we-three-blocks {
  display: flex;
  justify-content: center;
}

.hs_how_we_are > div > div {
  padding-left: 0;
  padding-right: 0;
}

.hs_how_we_are_text {
  padding: 30px;
  min-height: 309px;
}

.hs_how_we_are_text h4 {
  margin: 0 0 10px;
  color: #ee2525;
}

.hs_how_we_are_text p {
  margin: 0 0 20px;
  font-size: 18px;
}

.health_care_team_slider_item img {
  width: 100%;
  border-bottom: 0 solid #bcbcbc;
}

.health_care_team_slider_item .hs_team_member_detail {
  padding: 20px 0 15px;
  border-bottom: 2px solid #7f9aa0;
}

.health_care_team_slider_item .hs_team_member_detail h4 {
  margin: 0 auto;
}

.health_care_team_slider_item .hs_team_member_detail hr {
  height: 0;
  background: #fff;
  margin: 0 0 10px;
}

.health_care_team_slider_item .hs_team_member_detail p {
  padding-left: 15px;
  padding-right: 15px;
}

.health_care_team_slider_item:hover img {
  background: #ee2525;
}

.panel-group {
  width: 65%;
  margin: 0 auto;
}

.panel-title > a > i {
  top: 7px;
  margin-top: 0;
  right: 15px;
  position: absolute;
  padding: 5px 0;
  font-size: 16px !important;
  border: 0 solid #fff;
}

.panel-body img {
  margin-right: 15px;
  border-left: 2px solid rgba(255, 255, 255, 0);
  padding-left: 10px;
}

.panel-body .hs_hospital_update:hover img {
  border-left: 2px solid #ee2525;
}

.panel-default > .panel-heading {
  background: #ee2525;
  position: relative;
}

.testimonial {
  margin-bottom: 28px;
  text-align: center;
}

.bx-clone {
  display: block;
}

.testimonial h5 {
  font-size: 16px;
}

.testimonial p {
  font-style: italic;
  font-size: 14px;
}

.testimonial .bx-wrapper {
  margin-bottom: 0;
  border: 1px solid #ddd;
  box-shadow: none;
}

.testimonial_content {
  clear: both;
  padding-top: 28px;
  min-height: 140px;
  text-align: center;
}

.testimonial_content img {
  text-align: center;
  display: inline-block !important;
  border-radius: 50%;
  width: 62px;
  height: 62px;
}

.related_post_date {
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #7f9aa0;
}

.portfolio-details,
.portfolio-details2 {
  position: absolute;
  text-align: left;
  background: #fff;
}

.related_post_date h3 {
  color: inherit;
  font-weight: bolder;
  margin-bottom: 0;
  padding-top: 2px;
}

.related_post_date p {
  text-transform: uppercase;
}

.post_by_slider_item img,
.releted_post_slider_item img {
  width: 100%;
  margin: 20px auto 0;
}

.releted_post_slider_item .releted_post_detail {
  padding: 20px;
  border-bottom: 2px solid #7f9aa0;
}

.releted_post_slider_item .releted_post_detail h4 {
  margin: 0 auto 5px;
}

.post_by_slider_item:hover .post_by_detail,
.releted_post_slider_item:hover .releted_post_detail {
  background: #f9f9f9;
  border-bottom: 2px solid #00ac7a;
}

#patients_testimonials_slider .patients_testimonials_slider_item:hover h4,
.health_care_advice .hs_post:hover h4,
.hs_post_tab_content .hs_post:hover p,
.post_by_slider_item:hover .post_by_detail h4,
.releted_post_slider_item:hover .releted_post_detail h4 {
  color: #00ac7a;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.releted_post_slider_item:hover .related_post_date {
  background-color: #00ac7a;
}

.releted_post_slider_item .releted_post_detail a.btn {
  margin-top: 15px;
}

.hs_portfolio ul {
  float: right;
  margin: 0 auto;
  padding: 0;
}

.hs_portfolio ul li {
  float: left;
  list-style: none;
  padding: 15px 0;
  position: relative;
}

.hs_portfolio ul li:before {
  content: " / ";
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 20px;
  font-weight: 100;
}

.hs_portfolio ul li:last-child:before {
  content: "  ";
}

.hs_portfolio ul li a {
  font-size: 15px;
  text-transform: uppercase;
  color: inherit;
  padding: 0 15px 3px;
  text-decoration: none;
}

.hs_portfolio ul li:last-child a {
  border-right: none;
  padding-right: 0;
}

.portfolio {
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
}

.portfolio li {
  float: left;
  list-style: none;
  max-width: 285px;
  width: 100%;
}

.portfolio-filter {
  list-style: none;
  padding-left: 0;
  margin-left: -30px;
}

.portfolio-filter li a {
  display: block;
  color: #868581;
  font-weight: 500;
  position: relative;
}

.Inquiries p a,
.hlt_bnr_text p {
  font-weight: 600;
}

.portfolio-filter li a.active,
.portfolio-filter li a:hover {
  color: #008363;
  text-decoration: none;
}

.portfolio-filter li a.active:before,
.portfolio-filter li a:hover:before {
  color: #868581;
}

.portfolio-filter li a:before {
  margin-right: 20px;
  margin-left: 20px;
}

.portfolio-grid .portfolio-item {
  position: relative;
  overflow: hidden;
  text-align: left;
  padding-top: 15px;
  margin-bottom: 30px;
}

.portfolio-grid .portfolio-item img {
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.portfolio-grid .portfolio-item h3,
.portfolio-grid .portfolio-item:hover h3 {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.portfolio-grid.service_grid .portfolio-item:hover {
  background: 0 0;
}

.portfolio-grid .portfolio-item h3 {
  border-bottom: 2px solid #7f9aa0;
  padding-bottom: 30px;
  text-align: center;
  font-size: 18px;
}

.portfolio-grid .portfolio-item:hover h3 {
  opacity: 0;
}

.portfolio-grid .portfolio-item .portfolio_doctor_details {
  padding: 15px;
  border-top: 0 solid #ddd;
  border-bottom: 2px solid #7f9aa0;
}

.portfolio-grid .portfolio-item:hover .portfolio_doctor_details {
  border-bottom: 2px solid #00ac7a;
  background: #f5f5f5;
}

.portfolio-grid .portfolio-item .portfolio_doctor_details h4 {
  margin: 0 auto 15px;
}

.portfolio-grid .portfolio-item .portfolio_doctor_details a.btn {
  margin: 10px 0 0;
}

.hs_profile_social ul {
  list-style: none;
  padding-left: 0;
  float: left;
  width: 100%;
  margin: -4px 0 6px;
}

.hs_profile_social ul li {
  float: left;
  margin-right: 9px;
}

.hs_profile_social ul li a {
  width: 30px;
  height: 30px;
  line-height: 28px;
  display: block;
  color: #7f9aa0;
  border: 1px solid #7f9aa0;
  text-align: center;
  border-radius: 3px;
}

.hs_profile_social ul li a i {
  min-width: 15px;
}

.hs_profile_social ul li:hover a {
  border-color: #ee2525;
  background: #ee2525;
}

.portfolio-details {
  padding: 15px;
  width: 100%;
  opacity: 0;
  bottom: -100%;
  visibility: hidden;
  border-bottom: 2px solid #00ac7a;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

#patients_testimonials_slider .patients_testimonials_slider_item,
#patients_testimonials_slider .patients_testimonials_slider_item h4,
#patients_testimonials_slider .patients_testimonials_slider_item:hover,
.health_care_advice .hs_post,
.health_care_advice .hs_post:hover,
.hlt_openclick,
.hlt_openclick.hlt_openbox,
.hlt_uprleft ul li:hover p span,
.hs_additional_support,
.hs_additional_support:hover,
.hs_post_tab_content .hs_post,
.hs_post_tab_content .hs_post:hover,
.hs_tags ul li a,
.hs_twitter_widget ul li i,
.hs_twitter_widget ul li:hover i,
.post_by_slider_item .post_by_detail,
.post_by_slider_item .post_by_detail h4 {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.portfolio-item:hover .portfolio-details {
  opacity: 0.9;
  visibility: visible;
  bottom: 10px;
}

.portfolio-details > h4 {
  color: #00ac7a;
  display: inline;
  font-size: 24px;
  float: left;
  width: 100%;
  margin: 5px 0;
}

.portfolio-details > p {
  margin-top: 0;
  float: left;
  width: 100%;
  margin-bottom: 15px;
}

.portfolio-details.standard-version a,
.portfolio-details2.standard-version a {
  color: #31d385;
}

.portfolio-details2 {
  padding: 20px 30px;
  width: 94.9%;
  opacity: 0.9;
  bottom: 10px !important;
  display: none;
  border-bottom: 2px solid #00ac7a;
}

.hlt_openclick,
.hlt_wedobox:hover:after {
  opacity: 1;
  visibility: visible;
}

.portfolio-details2 > h4 {
  margin-right: auto;
  color: #00ac7a;
  display: inline;
}

.hs_single_profile .hs_single_profile_detail h3,
.portfolio-details2 > p {
  margin-top: 0;
}

#grid .mix {
  opacity: 0;
  display: none;
  margin-bottom: 0;
}

#grid .mix img {
  max-width: 100%;
}

.hs_single_profile {
  margin: 30px auto;
}

.hs_single_profile .hs_single_profile_detail {
  background: #f5f5f5;
  padding: 15px 15px 0;
  border-bottom: 2px solid #00ac7a;
  margin-bottom: 20px;
}

.hs_single_profile .hs_single_profile_detail > div > div {
  padding: 5px 15px;
  border-right: 1px solid #d1d1d1;
}

.hs_single_profile .hs_single_profile_detail > div > div > i {
  margin-right: 10px;
}

.hs_single_profile .hs_single_profile_detail > div > div > a {
  margin-left: 5px;
  color: #00ac7a;
}

.hs_single_profile .hs_single_profile_detail hr {
  background: #d1d1d1;
  height: 0;
  margin: 10px 0;
}

.hs_single_profile .hs_single_profile_detail .profile_social_wrapper span {
  float: left;
  line-height: 25px;
  margin-right: 10px;
}

.hs_blog_heading_wrapper .hs_heading,
.hs_single_profile
  .hs_single_profile_detail
  .profile_social_wrapper
  .hs_profile_social {
  float: left;
}

.post_by_slider_item {
  margin-bottom: 28px;
  text-align: center;
}

.post_by_slider_item .post_by_detail {
  padding: 23px;
  border-bottom: 2px solid #7f9aa0;
}

.post_by_slider_item .post_by_detail h4 {
  margin: 0 auto 3px;
}

.hs_blog_heading_wrapper .hs_blog_categorie_pager {
  padding-top: 0;
  margin: 35px auto;
  font-size: 16px;
}

.hs_blog_categorie_pager {
  list-style: none;
  padding-left: 0;
  float: right;
  padding-top: 30px;
}

.hs_blog_categorie_pager li {
  display: inline-block;
  position: relative;
}

.hs_blog_categorie_pager li:before {
  content: " / ";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 15px;
}

.hs_blog_categorie_pager li:last-child:before {
  content: " ";
}

.hs_blog_categorie_pager li a {
  padding: 0 15px 0 10px;
}

.hs_blog_categorie_pager li:last-child a {
  padding-right: 0;
}

.hs_blog_categorie_detail {
  background: #f5f5f5;
  border-bottom: 2px solid #00ac7a;
  margin-bottom: 30px;
  float: left;
}

.hs_blog_categorie_detail hr {
  background: #d1d1d1;
  height: 0;
  margin: 15px 0;
}

.hs_blog_categorie_detail a h4 {
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 24px;
}

.hs_blog_categorie_detail p {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 20px;
}

.hs_blog_categorie_detail > .btn {
  margin-right: 15px;
  margin-bottom: 15px;
}

.hs_blog_categorie_detail .hs_blog_categorie_date ul {
  list-style: none;
  padding: 10px 0 0 5px;
}

.hs_blog_categorie_detail .hs_blog_categorie_date ul li {
  display: inline-block;
  padding: 0 10px;
  border-right: 1px solid #d1d1d1;
}

.hs_blog_categorie_detail .hs_blog_categorie_date ul li a i {
  padding-right: 5px;
}

.hs_sidebar {
  width: 100%;
  float: left;
  margin-bottom: 20px;
}

.hs_sidebar h4 {
  margin: 0 0 20px;
  padding-top: 0;
}

.hs_sidebar_categories {
  border-bottom: 2px solid #7f9aa0;
}

.hs_sidebar_categories ul li {
  padding: 8px 0;
}

.hs_sidebar_categories ul li a {
  cursor: pointer;
}

.hs_sidebar_categories ul li ul {
  padding-left: 20px;
  display: none;
}

.hs_resent_post {
  width: 100%;
  float: left;
  margin: 30px auto;
}

.hs_post_tab ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 14px;
}

.hs_post_tab ul li {
  display: inline-block;
  margin-right: -4px;
}

.hs_post_tab ul li a {
  padding: 15px 28px;
  background: #fcfcfc;
  color: inherit;
}

.hs_post_tab ul li a.active {
  background: #f5f5f5;
  color: #00ac7a;
}

.health_care_advice,
.hs_post_tab_content {
  background: #f5f5f5;
  margin: 9px auto;
  border-bottom: 2px solid #00ac7a;
}

.health_care_advice .hs_post,
.hs_post_tab_content .hs_post {
  padding: 20px;
  border-bottom: 1px solid #eaeaea;
  border-left: 2px solid rgba(255, 255, 255, 0);
}

.health_care_advice .hs_post:hover,
.hs_post_tab_content .hs_post:hover {
  border-left: 2px solid #00ac7a;
}

.health_care_advice .hs_post img,
.hs_post_tab_content .hs_post img {
  width: 67px;
  height: 67px;
  float: left;
  margin-right: 10px;
}

.hs_tags ul li {
  display: inline-block;
  margin-bottom: 4px;
  margin-right: 1px;
}

.hs_tags ul li a {
  padding: 8px 10px;
  background: #7f9aa0;
  color: #fff;
  display: inline-block;
}

.hs_video_wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

.hs_video_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hs_blog_single .hs_blog_categorie_detail {
  background-color: transparent;
  border-bottom: 2px solid #7f9aa0;
}

.hs_comment_form {
  width: 100%;
  float: left;
  background: #f5f5f5;
  border-bottom: 2px solid #ee2525;
  padding: 20px;
  margin-bottom: 40px;
}

.hs_comment_form .input-group input.form-control {
  height: 48px;
}

.hs_comment_form .input-group .input-group-btn button {
  height: 48px;
  line-height: 48px;
  padding: 0 20px;
}

.input-group-btn:hover {
  background: #000;
}

.hs_checkbox {
  background-image: url(../images/icon/vlad.png);
}

input[type="checkbox"].css-checkbox {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

input[type="checkbox"].css-checkbox + label.css-label {
  padding-left: 20px;
  height: 15px;
  display: inline-block;
  line-height: 15px;
  background-repeat: no-repeat;
  background-position: 0 0;
  font-size: 15px;
  vertical-align: middle;
  cursor: pointer;
}

input[type="checkbox"].css-checkbox:checked + label.css-label {
  background-position: 0 -15px;
}

input[type="checkbox"].css-checkbox.lrg + label.css-label.lrg {
  padding-left: 22px;
  height: 20px;
  display: inline-block;
  line-height: 20px;
  background-repeat: no-repeat;
  background-position: 0 0;
  font-size: 15px;
  vertical-align: middle;
  cursor: pointer;
}

input[type="checkbox"].css-checkbox.lrg:checked + label.css-label.lrg {
  background-position: 0 -20px;
}

.hs_comment_form textarea {
  margin: 0 auto;
  width: 100%;
  resize: none;
}

.btn-success {
  background-color: #ee2525;
  border-color: #ee2525;
  margin-bottom: 20px;
}

.hs_comment,
.hs_contact_social {
  background: #f5f5f5;
  width: 100%;
  float: left;
}

.btn-success:hover {
  background: #000;
  border-color: #000;
}

.hs_comment {
  border-bottom: 2px solid #00ac7a;
  padding: 20px;
}

.hs_comment img {
  width: 90px;
  height: 90px;
}

.hs_comment .hs_comment_date ul li a {
  padding: 0 20px;
  border-right: 1px solid #d1d1d1;
  margin-bottom: 20px !important;
}

.hs_comment .hs_comment_date ul li a i {
  padding-right: 10px;
}

.hs_comment a.hs_in_relpy,
.hs_comment p {
  padding-left: 20px;
}

.hs_sub_comment_div > .hs_sub_comment {
  width: 100%;
  float: left;
  padding-top: 10px;
  position: relative;
}

.hs_sub_comment_div > .hs_sub_comment:before {
  content: "";
  position: absolute;
  left: 50px;
  bottom: 50%;
  height: 100%;
  width: 50%;
  border-left: 2px solid #00ac7a;
  border-bottom: 1px solid #00ac7a;
}

.hs_sub_comment_div > .hs_sub_comment:first-child:before {
  height: 50%;
}

.hs_contact_head_text {
  width: 100%;
  float: left;
  text-align: center;
}

.hs_contact_head_text p {
  padding-left: 50px;
  padding-right: 50px;
}

.hs_contact {
  width: 100%;
  float: left;
  padding: 0;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.hs_contact ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.hs_contact ul li {
  border-bottom: 1px solid #ddd;
  padding-top: 17px;
  padding-bottom: 17px;
}

.hs_contact ul li:first-child {
  padding-top: 0;
}

.hs_contact ul li:last-child {
  border-bottom: none;
}

.hs_contact ul li i {
  float: left;
  border: 1px solid #ee2525;
  background: #ee2525;
  padding: 8px 10px;
  width: 50px;
  text-align: center;
  height: 46px;
  margin-right: 20px;
  color: #fff;
  font-size: 28px;
}

.hs_contact ul li p,
.hs_latest_post ul li p {
  margin-bottom: 0;
}

.hs_contact_social {
  border-bottom: 2px solid #ee2525;
  padding: 4px 20px;
}

.hs_contact_social > .hs_profile_social > ul > li {
  margin-right: 14px;
}

.hs_contact_social > .hs_profile_social > ul > li > a {
  width: 39px;
  height: 39px;
  line-height: 42px;
}

#profile_table_td,
.hs_contact_social > .hs_profile_social > ul > li > a > i,
.profile_tbl_name {
  font-size: 20px;
}

.hs_additional_support {
  width: 100%;
  float: left;
  text-align: center;
  padding: 20px 20px 40px;
  border-bottom: 2px solid #7f9aa0;
  margin-bottom: 70px;
  margin-top: 50px;
}

.hs_additional_support h4 {
  font-size: 24px;
  text-transform: capitalize;
}

.hs_additional_support:hover {
  border-bottom-color: #ee2525;
  background: #f9f9f9;
}

.hs_additional_support p {
  margin-bottom: 25px;
}

.social-icon-contact .contact-icon {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
}

.contact-icon .fa-envelope,
.contact-icon .fa-map-marker-alt,
.contact-icon .fa-phone {
  color: #fff;
  background: #ee2525;
  padding: 10px;
}

.contact-icon .fa-envelope:hover,
.contact-icon .fa-map-marker-alt:hover,
.contact-icon .fa-phone:hover {
  background-color: #000;
}

.fa-map-marker-alt:before {
  content: "\f3c5";
  font-size: 21px;
}

.contact-icon p {
  margin-left: 10px;
  margin-bottom: 0;
}

#hc_single {
  width: 100%;
  float: left;
  margin-top: 0;
  margin-bottom: 0;
}

div[data-target] {
  float: left;
  position: relative;
}

div[data-target] > div {
  position: relative;
  width: 100%;
  float: left;
  padding-top: 0;
  padding-bottom: 0;
}

#hc_home > div {
  padding-top: 0 !important;
}

.hs-icon-list {
  margin-top: 22px;
}

.hs-icon-list .fa-hover a {
  display: block;
  color: #222;
  line-height: 32px;
  height: 32px;
  padding-left: 10px;
  border-radius: 4px;
}

.hs-icon-list .fa-hover a .fa {
  width: 32px;
  font-size: 14px;
  display: inline-block;
  text-align: right;
  margin-right: 10px;
}

.hs-icon-list .fa-hover a:hover {
  background-color: #00ac7a;
  color: #fff;
  text-decoration: none;
}

.hs-icon-list .fa-hover a:hover .fa {
  font-size: 28px;
  vertical-align: -6px;
}

.hs-icon-list .fa-hover a:hover .text-muted {
  color: #bbe2d5;
}

#patients_testimonials_slider .patients_testimonials_slider_item {
  padding: 0;
  float: left;
  border-bottom: 2px solid #b6b6b6;
}

#patients_testimonials_slider .patients_testimonials_slider_item:hover {
  border-bottom: 2px solid #00ac7a;
}

#patients_testimonials_slider .patients_testimonials_slider_item h4 {
  margin-top: 0;
}

#patients_testimonials_slider .patients_testimonials_slider_item img {
  margin-right: 15px;
  margin-bottom: 15px;
  width: 130px;
  height: 130px;
  border-radius: 3px;
}

#hs_footer {
  width: 100%;
  float: left;
  color: #fff;
  background: #222;
}

#hs_footer .hs_footer_content .hs_footer_menu ul {
  list-style: none;
  padding-left: 0;
  width: 100%;
  text-align: center;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  border-bottom: 1px solid #545454;
}

#hs_footer .hs_footer_content .hs_footer_menu ul li {
  width: 23%;
  float: left;
}
#hs_footer .hs_footer_content .hs_footer_menu ul li:not(:last-child) {
  border-right: 1px solid #545454;
}

#hs_footer .hs_footer_content .hs_footer_menu ul li a {
  padding: 15px 0;
  width: 100%;
  text-align: center;
  display: inline-block;
  color: inherit;
  font-weight: 700;
}

#hs_footer .hs_footer_content .hs_footer_menu ul li a:hover {
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
}

#hs_footer .hs_footer_content h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

#hs_footer .hs_footer_content h4::before {
  border-color: #fff;
}

.hs_footer_about_us {
  width: 100%;
  float: left;
  padding: 10px 0;
  position: relative;
}

.hs_footer_about_us:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 96%;
  margin-left: 15px;
  height: 1px;
}

.hs_about_us p {
  padding: 5px 20px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  text-align: justify;
  color: #fff;
}

.hs_about_us p i {
  font-size: 22px;
  padding-right: 15px;
  float: left;
}

.hs_latest_post ul li img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  margin-right: 15px;
  float: left;
}

.hs_latest_post ul li h4 {
  margin: 0 auto;
  text-transform: uppercase;
}

.hs_latest_post ul li p.post_date {
  font-weight: 700;
  font-size: 12px;
}

.hs_twitter_widget ul li i {
  font-size: 25px;
  float: left;
  width: 50px;
  margin-bottom: 20px;
}

.hs_twitter_widget ul li:hover i {
  padding-left: 13px;
  padding-top: 10px;
}

.hs_twitter_widget ul li a {
  color: #fff;
  width: calc(100% - 50px);
  float: left;
}

.hs_twitter_widget ul li a p {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 10px 20px 20px;
  position: relative;
}

#profile_table,
.hlt_footer_menu ul li a i {
  padding-right: 15px;
}

.hs_twitter_widget ul li a p:after {
  border-right: 10px solid rgba(0, 0, 0, 0.2);
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  top: 5px;
  left: -10px;
  content: "";
  position: absolute;
}

.hs_twitter_widget ul li a p:hover {
  background: rgba(0, 0, 0, 0.25);
}

.hlt_btn_white,
.hlt_uprright ul li a:hover {
  background-color: #fff;
}

.hs_twitter_widget ul li a p:hover:after {
  border-right: 10px solid rgba(0, 0, 0, 0.25);
}

.hs_copyright {
  background: #ee2525;
  color: #fff;
  float: left;
  width: 100%;
  text-align: center;
  padding: 20px 0;
}

.hlt_header,
.hlt_logo {
  background-color: #0274fa;
}

.hlt_slider,
.hlt_vdobnr {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.hs_contact_detail p i {
  font-size: 24px;
  line-height: 24px;
  float: left;
  width: 20px;
  height: 50px;
  display: inline-block;
  margin-right: 0;
}

.hs_footer_link {
  float: left;
  margin-right: 23px;
  margin-bottom: 20px;
}

.hs_footer_link ul li {
  margin-bottom: 5px;
}

.hlt_header {
  float: left;
  width: 100%;
  position: relative;
}

.hlt_logo {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 250px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-top: 0;
  border-bottom: 0;
  height: 121px;
  text-align: center;
  line-height: 102px;
}

.hlt_uprheader {
  float: left;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 40px;
}

.hlt_uprleft {
  float: left;
  width: auto;
}

.hlt_footer_menu ul,
.hlt_uprleft ul,
.hlt_uprright ul {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
}

.hlt_uprleft ul li {
  float: left;
  width: auto;
  list-style: none;
  margin-right: 30px;
  position: relative;
  padding-right: 30px;
}

.hlt_uprleft ul li:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}

.hlt_uprleft ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.hlt_uprleft ul li:hover p span {
  background-color: #fff;
}

.hlt_uprleft ul li:hover p span i,
.hlt_uprright ul li a:hover i {
  color: #005fce;
}

.hlt_uprleft ul li p {
  float: left;
  width: 100%;
  color: #fff;
  line-height: 30px;
  margin: 0;
}

.hlt_uprleft ul li p span,
.hlt_uprright ul li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #005fce;
  border-radius: 100%;
  font-size: 14px;
}

.hlt_uprleft ul li p span {
  float: left;
  margin-right: 10px;
}

.hlt_uprright {
  float: right;
  width: auto;
}

.hlt_uprright ul li {
  float: left;
  width: auto;
  list-style: none;
  margin-right: 10px;
}

.hlt_uprright ul li a {
  float: left;
  color: #fff;
}

.hlt_lwrheader {
  float: left;
  width: 100%;
  padding: 20px 40px;
}

#hs_header.hlt_manu nav {
  float: right;
  width: auto;
  border-left: none;
  border-right: none;
}

#hs_header.hlt_manu {
  background: #0274fa;
}

#hs_header.hlt_manu .hs_menu {
  float: right;
  padding: 0;
}

#hs_header.hlt_manu .hs_menu li > a {
  margin: 0;
  padding: 3px 15px;
}

#hs_header.hlt_manu .hs_menu li:hover > a,
#hs_header.hlt_manu .hs_menu li > a:hover,
.hlt_upcmslider_text ul li a:hover {
  color: #0274fa;
}

#hs_header.hlt_manu .hs_menu li ul li a {
  padding: 8px 15px;
}

#hs_header.hlt_manu.fixed {
  position: initial;
}

.hlt_slider {
  float: left;
  width: 100%;
  background-color: #f5f5f5;
  padding: 260px 0;
  position: relative;
  background-image: url(../images/slider/slider_new.jpg);
  background-position: 100% 50%;
  z-index: 1;
  overflow: hidden;
}

.hlt_slider:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.83);
  z-index: -1;
}

.hlt_slider img {
  position: absolute;
  bottom: 0;
  left: 10%;
}

.hlt_bnr_text .htl_bnr_sbheading {
  float: left;
  width: auto;
  font-size: 32px;
  font-weight: 700;
  background-color: #0274fa;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding: 10px 15px;
}

.hlt_bnr_text .htl_bnr_sbheading:after {
  content: "";
  position: absolute;
  top: 0;
  right: -13px;
  width: 20px;
  height: 100%;
  background-color: #0274fa;
  -webkit-clip-path: polygon(0% 0, 50% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0, 50% 0%, 100% 100%, 0% 100%);
}

.hlt_bnr_text .htl_bnr_sbheading:before {
  content: "";
  position: absolute;
  top: 0;
  right: -28px;
  width: 20px;
  height: 100%;
  background-color: #0274fa;
  -webkit-clip-path: polygon(0% 0, 50% 0%, 100% 100%, 50% 100%);
  clip-path: polygon(0% 0, 50% 0%, 100% 100%, 50% 100%);
}

.hlt_wedobox .hlt_hexa:after,
.hlt_wedobox .hlt_hexa:before,
.hlt_wedobox .hlt_hexabk:after,
.hlt_wedobox .hlt_hexabk:before {
  width: 0;
  height: 0;
  border-top: 45px solid transparent;
  border-bottom: 45px solid transparent;
  content: "";
}

.hlt_bnr_text .htl_bnr_heading {
  float: left;
  width: 100%;
  font-size: 40px;
  text-transform: uppercase;
}

.hlt_bnr_text .htl_bnr_heading span {
  color: #0274fa;
  font-weight: 700;
}

.hlt_bnr_text p {
  float: left;
  width: 100%;
  color: #1c2130;
  font-size: 18px;
  margin-bottom: 40px;
}

.hlt_bnr_text .hlt_btn {
  margin-right: 15px;
}

.hlt_appointment {
  width: 300px;
  padding: 20px 20px 30px 30px;
  background-color: #0274fa;
  position: absolute;
  right: -300px;
  top: 60px;
  border-radius: 30px 0 0 30px;
}

.hlt_closer,
.hlt_openclick {
  background-color: #36c777;
  text-align: center;
  position: absolute;
  cursor: pointer;
}

.hlt_appointment.hlt_openbox {
  right: 0;
}

.hlt_closer {
  right: 0;
  top: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 0 10px;
}

.hlt_openclick {
  left: -116px;
  top: 45%;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  border-radius: 20px 20px 0 0;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: 0.5s;
}

.hlt_btn,
.hlt_btn_white {
  min-width: 150px;
  line-height: 46px;
  text-transform: capitalize;
  text-align: center;
  display: inline-block;
  height: 50px;
}

.hlt_openclick.hlt_openbox {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.hlt_upcmslider_info .hlt_date,
.hlt_upcmslider_info:hover .hlt_date {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.hlt_openclick p {
  float: left;
  width: 100%;
  color: #fff;
  text-transform: capitalize;
}

.hlt_appointment h3 {
  float: left;
  width: 100%;
  margin: 0 0 10px;
  text-transform: capitalize;
  color: #fff;
}

.hlt_appointment label {
  float: left;
  width: 100%;
  color: #fff;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 14px;
}

.hlt_appointment input,
.hlt_appointment select,
.hlt_appointment textarea {
  float: left;
  width: 100%;
  border: 1px solid #fff;
  height: 40px;
  margin-bottom: 10px;
  color: #000;
  padding: 0 10px;
  border-radius: 5px;
}

.hlt_heading h1,
.hlt_wedobox h4 {
  padding-bottom: 10px;
  position: relative;
  float: left;
  width: 100%;
  font-weight: 700;
}

.hlt_appointment textarea {
  height: auto;
  padding: 10px;
  resize: vertical;
}

.hlt_newsltr button,
.hlt_newsltr input {
  height: 60px;
  box-shadow: 2.741px 1.22px 13px 0 rgba(0, 0, 0, 0.1);
}

.hlt_btn {
  border: 2px solid #0274fa;
  background-color: #0274fa;
  color: #fff;
  border-radius: 50px;
}

.hlt_btn:hover {
  border: 2px solid #0274fa;
  background-color: transparent;
  color: #222;
}

.hlt_btn_white {
  border: 2px solid #fff;
  color: #0274fa;
  border-radius: 50px;
}

.hlt_heading h1,
.hlt_vdobnr,
.hlt_wedobox h4 {
  text-transform: uppercase;
}

.hlt_wedobox,
.hlt_wedobox a {
  border: 1px solid #d3d3d3;
  background-color: #fff;
}

.hlt_btn_white:hover {
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
}

.hlt_heading {
  float: left;
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}

.hlt_heading h1 {
  color: #222;
  font-size: 32px;
  margin: 0;
}

.hlt_about_info table,
.hlt_upcmslider_info .hlt_date {
  color: #fff;
  background-color: #0274fa;
}

.hlt_heading h1:after {
  content: "";
  position: absolute;
  background-color: #1a77d2;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 2px;
  width: 100px;
  bottom: 0;
}

.hlt_heading.style_2 h1:after {
  right: auto;
}

.hlt_heading p {
  float: left;
  width: 100%;
  margin: 20px 0 0;
}

.hlt_wedo.hlt_whitebg {
  position: relative;
  padding-bottom: 0;
}

.hlt_specialist img.hlt_bgimg,
.hlt_testimonial img.hlt_bgimg,
.hlt_wedo img.hlt_bgimg {
  position: absolute;
  top: 20%;
  left: -100px;
}

.hlt_wedobox {
  float: left;
  width: 100%;
  padding: 70px 15px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 90px;
}

.hlt_wedobox:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -2;
  opacity: 0;
  visibility: hidden;
}

.hlt_wedobox.clrs_01:after {
  background-color: #ac69d8;
}

.hlt_testslider_info.clrs_01,
.hlt_wedobox.clrs_02:after {
  background-color: #36c777;
}

.hlt_wedobox.clrs_03:after {
  background-color: #d46b9a;
}

.hlt_wedobox.clrs_04:after {
  background-color: #e78970;
}

.hlt_wedobox .hlt_hexa {
  width: 55px;
  height: 90px;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -45px;
  line-height: 90px;
  padding-top: 11px;
}

.hlt_wedobox .hlt_hexa:before {
  position: absolute;
  top: 0;
  left: -25px;
  border-right: 25px solid #fff;
}

.hlt_wedobox .hlt_hexa:after {
  position: absolute;
  bottom: 0;
  right: -25px;
  border-left: 25px solid #fff;
}

.hlt_wedobox .hlt_hexabk {
  width: 57px;
  height: 92px;
  background: #d3d3d3;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -46px;
  z-index: -1;
}

.hlt_wedobox .hlt_hexabk:before {
  position: absolute;
  top: 1px;
  left: -25px;
  border-right: 25px solid #d3d3d3;
}

.hlt_wedobox .hlt_hexabk:after {
  position: absolute;
  bottom: 1px;
  right: -25px;
  border-left: 25px solid #d3d3d3;
}

.hlt_wedobox .hlt_wedobox_bgimg {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 20%;
  z-index: -1;
}

.hlt_wedobox:hover svg.hlt_wedobox_bgimg path {
  fill: rgb(255, 255, 255);
}

.hlt_wedobox h4 {
  margin: 0 0 10px;
}

.hlt_wedobox h4:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #d3d3d3;
  width: 60px;
  height: 1px;
  bottom: 0;
}

.hlt_wedobox p {
  float: left;
  width: 100%;
  margin: 0;
}

.hlt_wedobox a {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -16px;
  width: 70px;
  padding: 3px;
  border-radius: 50px;
}

.hlt_about_emr,
.hlt_about_img,
.hlt_about_info h4,
.hlt_about_info table,
.hlt_grayebg {
  float: left;
  width: 100%;
}

.hlt_grayebg {
  background-color: #f5f5f5;
  padding: 90px 0;
}

.hlt_about_emr,
.hlt_about_info table tr th {
  background-color: #005fce;
  text-align: center;
}

.hlt_grayebg.hlt_about {
  padding: 40px 0 0;
}

.hlt_grayebg.hlt_about .hlt_heading.style_2 {
  margin-bottom: 30px;
  margin-top: 100px;
}

.hlt_about_img {
  text-align: center;
}

.hlt_about_info h4 {
  margin: 30px 0 20px;
  font-weight: 600;
  font-size: 22px;
  position: relative;
}

.hlt_about_info h4:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 190px;
  background-color: #0274fa;
  width: 50px;
  height: 2px;
}

.hlt_about_info table tr th {
  text-transform: uppercase;
  padding: 10px;
  font-size: 18px;
}

.hlt_about_info table tr td {
  padding: 5px;
  text-align: center;
}

.hlt_about_emr {
  padding: 6px 0;
  font-weight: 600;
}

.hlt_blddnt,
.hlt_whitebg {
  width: 100%;
  background-color: #fff;
  float: left;
}

.hlt_about_emr p {
  float: left;
  width: 100%;
  font-size: 18px;
  margin: 0;
  color: #fff;
}

.hlt_about_emr p span {
  color: #00f333;
  font-size: 22px;
  vertical-align: middle;
}

.hlt_whitebg {
  padding: 90px 0;
}

.hlt_upcmslider_info {
  float: left;
  width: 100%;
  position: relative;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
}

.hlt_upcmslider_info .hlt_date {
  position: absolute;
  top: -100px;
  right: 15px;
  width: 70px;
  height: 70px;
  text-align: center;
  border-radius: 0 0 10px 10px;
}

.hlt_upcmslider_info:hover .hlt_date {
  top: 0;
}

.hlt_upcmslider_info .hlt_date p {
  font-size: 24px;
  line-height: 24px;
  padding-top: 9px;
  font-weight: 700;
}

.hlt_upcmslider_info .hlt_date p,
.hlt_upcmslider_info .hlt_date span {
  margin: 0;
  text-transform: capitalize;
}

.hlt_upcmslider_text {
  float: left;
  width: 100%;
  padding: 20px;
}

.hlt_upcmslider_text h3 {
  float: left;
  width: 100%;
  font-size: 22px;
  margin-top: 0;
  font-weight: 500;
}

.hlt_upcmslider_text h3 a {
  color: #1c2130;
}

.hlt_upcmslider_text h3 a:hover,
.hlt_upcmslider_text ul li a i {
  color: #36c777;
}

.hlt_upcmslider_text ul {
  float: left;
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
}

.hlt_upcmslider_text ul li {
  float: left;
  width: auto;
  list-style: none;
  text-transform: capitalize;
}

.hlt_ftr_logo p,
.hlt_upcmslider_text p {
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.hlt_testimonialslider .owl-theme .owl-dots .owl-dot span,
.hlt_upcmslider .owl-theme .owl-dots .owl-dot span {
  margin: 5px;
}

.hlt_upcmslider .owl-theme .owl-dots .owl-dot.active span,
.hlt_upcmslider .owl-theme .owl-dots .owl-dot:hover span {
  background: #36c777;
  width: 20px;
}

.hlt_blddnt {
  padding: 20px 0;
  position: relative;
}

.hlt_blddnt_clr {
  position: absolute;
  width: 65%;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #0274fa;
  padding-left: 120px;
  padding-top: 120px;
  -webkit-clip-path: polygon(5% 0, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(5% 0, 100% 0%, 100% 100%, 0% 100%);
}

.hlt_specialist_info,
.hlt_specialistbox {
  width: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.hlt_blddnt_clr h1 {
  font-weight: 500;
  margin-top: 0;
}

.hlt_blddnt_clr h1,
.hlt_blddnt_clr p {
  float: left;
  width: 68%;
  font-size: 42px;
  color: #fff;
}

.hlt_blddnt_clr p {
  font-size: 16px;
  margin-bottom: 30px;
}

.hlt_specialist.hlt_whitebg {
  position: relative;
  padding-bottom: 60px;
}

.hlt_specialistbox {
  float: left;
  border: 1px solid #d3d3d3;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 30px;
}

.hlt_specialistbox:hover .hlt_specialist_info {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.hlt_specialist_info {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 0;
  opacity: 0;
  visibility: hidden;
}

.hlt_specialist_infobox {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: -50px auto 0;
  color: #fff;
  text-align: center;
}

.hlt_specialist_infobox h1 {
  font-size: 28px;
  margin: 0 0 5px;
  color: #fff;
  transform: translateY(-100px);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.hlt_specialistbox:hover .hlt_specialist_infobox h1,
.hlt_specialistbox:hover .hlt_specialist_infobox ul {
  transform: translateY(0);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.hlt_specialist_infobox ul {
  margin: 15px 0 0;
  padding: 0;
  display: inline-block;
  width: auto;
  transform: translateY(100px);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.hlt_specialist_infobox ul li {
  float: left;
  width: auto;
  list-style: none;
  margin-right: 15px;
}

.hlt_specialist_infobox ul li a {
  float: left;
  width: 35px;
  height: 35px;
  line-height: 34px;
  list-style: none;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100%;
}

.hlt_specialist_infobox ul li a:hover {
  background-color: #36c777;
  border: 1px solid #36c777;
}

.hlt_specialist_infoshow {
  position: absolute;
  left: 0;
  bottom: 20px;
  background-color: #0274fa;
  padding: 15px 0 15px 25px;
  -webkit-clip-path: polygon(5% 0, 100% 0%, 95% 100%, 0% 100%);
  clip-path: polygon(0% 0, 100% 0%, 95% 100%, 0% 100%);
  text-align: left;
  width: 240px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.hlt_testimonial,
.hlt_vdobnr,
.hlt_vdobnr h1,
.plus,
li.hc-home-new {
  position: relative;
}

.hlt_copyright,
.hlt_newsltr button,
.hlt_testslider_info,
.hlt_vdobnr {
  text-align: center;
  float: left;
}

.hlt_specialistbox:hover .hlt_specialist_infoshow {
  left: -100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.hlt_specialist_infoshow h3 {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 100%;
  margin: 0;
}

.hlt_specialist_infoshow p {
  color: #fff;
  float: left;
  width: 100%;
  margin: 0;
}

.hlt_vdobnr {
  width: 100%;
  background-image: url(../images/about/vdo.jpg);
  background-position: 100% 100%;
  padding: 150px 0;
  z-index: 1;
}

.hlt_vdobnr:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hlt_vdobnr h1 {
  float: left;
  width: 100%;
  color: #fff;
  font-weight: 700;
  margin: 0 0 80px;
  font-size: 42px;
  z-index: 1;
}

.button__holder:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(26, 26, 26, 0.7);
}

.plus {
  z-index: 1;
  width: 80px;
  height: 80px;
  color: #fff;
  background: #36c777;
  border-radius: 50%;
  border: none;
  font-size: 28px;
  padding-left: 10px;
  transition: box-shadow 0.4s cubic-bezier(0.2, 0, 0.7, 1),
    transform 0.2s cubic-bezier(0.2, 0, 0.7, 1),
    -webkit-transform 0.2s cubic-bezier(0.2, 0, 0.7, 1);
  box-shadow: 0 0 1px 15px rgba(54, 199, 119, 0.4);
}

.hlt_footersection,
.hlt_newsltr button:hover,
.hlt_testslider_info.clrs_02 {
  background-color: #0274fa;
}

.plus:hover {
  box-shadow: 0 0 1px 15px rgba(54, 199, 119, 0.4),
    0 0 1px 30px rgba(54, 199, 119, 0.1), 0 0 1px 45px rgba(54, 199, 119, 0.1);
}

.hlt_testslider_info {
  width: 100%;
  position: relative;
  color: #fff;
  padding: 80px 20px 40px;
  margin-top: 50px;
  margin-bottom: 30px;
}

#map,
.hlt_quote,
.hlt_testi {
  margin: 0 auto;
}

.hlt_quote {
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  width: auto !important;
}

.hlt_testi {
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
}

.hlt_testi img {
  width: auto !important;
  display: inline-block !important;
}

.hlt_testslider_info h4 {
  float: left;
  width: 100%;
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: 22px;
}

.hlt_testslider_info h4 span {
  font-weight: 400;
  font-size: 16px;
}

.hlt_testimonialslider .owl-theme .owl-dots .owl-dot.active span,
.hlt_testimonialslider .owl-theme .owl-dots .owl-dot:hover span {
  background: #0274fa;
  width: 20px;
}

.hlt_upcmslider_text ul.hlt_blgdtl li {
  margin-right: 25px;
  position: relative;
}

.hlt_upcmslider_text ul.hlt_blgdtl li:after {
  content: "";
  position: absolute;
  top: 4.5px;
  right: -13px;
  background-color: #d3d3d3;
  width: 1px;
  height: 60%;
}

.hlt_upcmslider_text ul.hlt_blgdtl li:last-child {
  margin-right: 0;
  float: inherit;
}

.hlt_heading_newsltr {
  float: left;
  width: 100%;
  position: relative;
}

.hlt_heading_newsltr:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-color: #d3d3d3;
  width: 1px;
  height: 100%;
}

.hlt_heading_newsltr img {
  position: absolute;
  top: -10px;
  left: 60px;
}

.hlt_heading_newsltr h1 {
  float: left;
  width: 80%;
  margin: 0;
  font-weight: 700;
  text-transform: capitalize;
}

.hlt_newsltr {
  float: left;
  width: 100%;
  padding-left: 120px;
}

.hlt_newsltr h4 {
  float: left;
  width: 100%;
  margin: 0 0 15px;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 600;
}

.hlt_newsltr input {
  float: left;
  width: calc(100% - 80px);
  padding: 0 20px;
  border: none;
  border-radius: 50px 0 0 50px;
}

.hlt_newsltr button {
  min-width: 80px;
  padding: 0 8px 0 0;
  border: none;
  border-radius: 0 50px 50px 0;
  background-color: #36c777;
  color: #fff;
  font-size: 22px;
}

.for-footer-menu,
.hlt_mapsection {
  padding: 0;
}

#map {
  display: block;
  width: 100%;
  height: 550px;
}

.hlt_footersection {
  float: left;
  width: 100%;
  padding: 90px 0 50px;
  color: #fff;
}

.widget.text-widget {
  float: left;
  width: 100%;
  margin-bottom: 40px;
}

.text-widget h4.widget-title {
  float: left;
  width: 100%;
  color: #fff;
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 20px;
  margin-top: 0;
}

.hlt_ftr_logo a {
  display: inline-block;
  margin-bottom: 20px;
}

.hlt_footer_menu ul li {
  float: left;
  width: 100%;
  list-style: none;
}

.hlt_footer_menu ul li a {
  float: left;
  width: auto;
  text-transform: capitalize;
  color: #fff;
  padding: 5px;
}

.hlt_footer_address p i {
  float: left;
  font-size: 18px;
  padding-top: 4px;
}

.hlt_footer_address p a,
.hlt_footer_address p span {
  float: left;
  width: calc(100% - 25px);
  color: #fff;
  padding-left: 15px;
}

.hlt_copyright {
  width: 100%;
  background-color: #005fce;
  padding: 15px 0;
}

.hlt_copyright p {
  float: left;
  width: 100%;
  margin: 0;
  color: #fff;
}

li.hc-home-new:after {
  position: absolute;
  content: "New";
  left: -9px;
  top: 0;
  font-size: 8px;
  background: #fff;
  padding: 2px 8px;
  color: #fd9678;
  border-radius: 30px;
  transform: rotate(-40deg);
  border: 1px dashed;
  animation: 0.5s linear infinite alternate hc_home_new;
}

.profile_table_img img {
  border-radius: 60px;
  height: 85px;
  width: 85px;
}

.profile_table_img i {
  font-size: 85px;
}

#profile_table_td {
  border: none;
  background: #fff;
  font-size: 20px;
}

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

  100% {
    opacity: 0;
  }
}

@media (min-width: 1500px) and (max-width: 1800px) {
  .hlt_bnr_text {
    padding-left: 100px;
  }
}

@media (min-width: 1200px) and (max-width: 1499px) {
  .hlt_bnr_text {
    padding-left: 100px;
  }

  .hlt_slider img {
    left: 5%;
  }

  .hlt_blddnt_clr {
    padding-top: 55px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  #hs_header.hlt_manu,
  .hlt_lwrheader .hlt_uprleft {
    text-align: center;
    width: 100%;
  }

  #hs_header.hlt_manu nav,
  .hlt_lwrheader .hlt_uprleft ul {
    float: none;
    display: inline-block;
  }

  .hlc_slider_details_text {
    top: 30%;
  }

  .hs_slider_title {
    font-size: 46px;
  }

  .hlc_slider_details_text p {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .hs_service {
    margin: -60px 0 0;
  }

  .hlt_newsltr {
    padding-left: 50px;
  }

  #hs_header.hlt_manu {
    float: right;
  }

  .hlt_uprright {
    padding-top: 20px;
  }

  .hlt_logo {
    width: 180px;
    height: 91px;
  }

  .hlt_uprleft {
    width: 40%;
  }

  .hlt_uprleft ul li {
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 10px;
  }

  .hlt_uprleft ul li:last-child {
    padding-bottom: 0;
  }

  .hlt_uprleft ul li:after {
    display: none;
  }

  #hs_header.hlt_manu .hs_menu li > a {
    padding: 3px 8px;
  }

  .hlt_uprheader {
    padding: 10px 15px;
  }

  .hlt_lwrheader {
    padding: 10px 19px 10px 15px;
  }

  .hlt_lwrheader .hlt_uprleft ul {
    width: auto;
  }

  .hlt_slider img {
    left: 0;
  }

  .hlt_bnr_text {
    padding-left: 200px;
  }

  .hlt_blddnt_clr {
    padding-left: 60px;
    padding-top: 80px;
  }

  .hlt_blddnt_clr h1,
  .hlt_blddnt_clr p {
    font-size: 36px;
    width: 100%;
  }

  .hlt_blddnt_clr p {
    font-size: 16px;
  }

  .hlt_slider {
    padding: 200px 0;
  }
}

@media (min-width: 979px) and (max-width: 1200px) {
  #hs_header .hs_menu li > a {
    margin: 19px 5px 19px 0;
    padding: 7px 5px;
  }

  .hs_social ul li {
    margin-right: 3px;
  }

  .hs_social ul li a {
    width: 28px;
    height: 28px;
  }

  .hs_social ul li a i {
    padding-top: 6px;
  }

  .hs_post_tab ul li a {
    padding: 15px;
  }

  .hs_footer_link {
    margin-right: 35px;
  }

  #hs_header #hs_logo,
  #hs_header .hs_social ul {
    margin: 15px auto;
  }

  .health_slider,
  .hs_page_title {
    margin-top: 0;
  }
}

.footer-copyright,
.form-title,
.icon-image,
.main-profile-page,
.next-btn,
.number-code,
.register-form,
.term-condition {
  text-align: center;
}

@media (max-width: 425px) {
  #hs_footer .hs_footer_content .hs_footer_menu ul li a {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  #hs_header,
  #hs_header.fixed {
    -webkit-animation: none;
    -moz-animation: none;
    animation: none;
  }

  #hs_header #hs_logo {
    display: block;
    text-align: center;
  }

  #hs_header nav {
    border: none;
  }

  #hc_single,
  .health_slider,
  .hs_page_title {
    margin-top: 0;
  }

  #hs_header .hs_menu {
    margin-top: 15px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  #hs_header.hlt_manu nav,
  .hlt_lwrheader .hlt_uprleft ul {
    float: none;
    display: inline-block;
  }

  #hs_header .hs_menu li > a {
    margin: 0 !important;
  }

  .hs_social ul {
    margin: 5px auto !important;
  }

  .hs_social ul li {
    margin-right: 10px;
  }

  .hlc_slider_details_text {
    top: 30%;
  }

  .hlc_slider_details_text p {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .hlc_topheader {
    padding: 5px 0;
  }

  .hlc_topheader_textleft {
    text-align: center;
  }

  .hlc_topheader_textright {
    text-align: center;
    margin-top: 5px;
  }

  #hs_header #hs_logo {
    margin: 10px 0;
  }

  .fixed .hs_search_box {
    top: 22px;
  }

  .hlt_blddnt_clr {
    padding-left: 60px;
    padding-top: 80px;
  }

  .hlt_blddnt_clr h1,
  .hlt_blddnt_clr p {
    font-size: 30px;
    width: 100%;
  }

  .hlt_blddnt_clr p {
    font-size: 16px;
  }

  .hlt_heading_newsltr {
    text-align: center;
    margin-bottom: 60px;
  }

  .hlt_heading_newsltr img {
    top: -40px;
    left: 40%;
  }

  .hlt_heading_newsltr:after,
  .hlt_slider img,
  .hlt_uprleft ul li:after {
    display: none;
  }

  .hlt_heading_newsltr h1 {
    width: 100%;
  }

  .hlt_newsltr {
    padding-left: 0;
    text-align: center;
  }

  #hs_header.hlt_manu {
    float: right;
    width: 100%;
    text-align: center;
  }

  .hlt_uprright {
    padding-top: 20px;
  }

  .hlt_logo {
    width: 180px;
    height: 91px;
  }

  .hlt_uprleft {
    width: 40%;
  }

  .hlt_uprleft ul li {
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 10px;
  }

  .hlt_uprleft ul li:last-child {
    padding-bottom: 0;
  }

  #hs_header.hlt_manu .hs_menu li > a {
    padding: 3px 8px;
  }

  .hlt_uprheader {
    padding: 10px 15px;
  }

  .hlt_lwrheader {
    padding: 10px 19px 10px 15px;
  }

  .hlt_lwrheader .hlt_uprleft {
    width: 100%;
    text-align: center;
  }

  .hlt_lwrheader .hlt_uprleft ul {
    width: auto;
  }

  .hlt_slider {
    padding: 150px 0;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .hs_comment img {
    width: 70px;
    height: 70px;
  }

  .hs_post_tab ul li a {
    padding: 15px;
  }

  .hs_sub_comment_div > .hs_sub_comment:before {
    left: 25px;
  }

  .hs_contact_social > .hs_profile_social > ul > li {
    margin-right: 8px;
  }

  .hs_contact_detail p {
    width: 100%;
    margin-bottom: 20px;
  }

  #hs_header .hs_menu li > a {
    padding: 6px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .profile_table_img img {
    height: 50px;
    width: 50px;
  }

  .profile_table_img i {
    font-size: 50px;
  }

  #profile_table_td,
  .profile_tbl_name {
    font-size: 14px;
  }

  .edit-icon-form {
    margin-right: 0;
  }

  .for-mobile {
    display: block !important;
    text-align: -webkit-right;
    text-align: -moz-right;
  }

  .for-desktop {
    display: none !important;
  }

  .login-btn,
  .register-btn {
    margin-left: 0 !important;
    width: 34% !important;
    text-align: center;
  }

  #hs_header .hs_menu li:hover > ul,
  #hs_header .hs_menu li > ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    background: 0 0;
    position: relative;
  }

  .hlc_topheader_textleft,
  .hlt_heading_newsltr,
  .hlt_newsltr,
  .hs_social {
    text-align: center;
  }

  #hs_header .hs_menu li > ul i,
  .hlt_heading_newsltr:after,
  .hlt_slider img,
  .hlt_uprleft,
  .hlt_uprleft ul li:after,
  .hs_slide2_img_div img {
    display: none;
  }

  .hlt_uprleft ul li,
  .hs_search_box {
    padding-right: 0;
  }

  #hs_header .hs_social ul {
    float: none;
    display: inline-block;
    margin: 0;
  }

  #hs_header.fixed #hs_logo {
    margin: 5px 0;
  }

  .hc_fixed_header .hs_menu li > a {
    margin: 2px 0 0 !important;
  }

  #layerslider > div > div > div > input,
  #layerslider > div > div > div > select {
    height: 16px;
    width: auto;
  }

  #hs_footer .hs_footer_content .hs_footer_menu ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  }

  .hs_search_box {
    top: 43px;
    left: 20px;
    width: auto;
    right: 20px;
  }

  .hs_social {
    float: left;
    width: 100%;
  }

  .hs_social ul {
    margin: 0 auto !important;
  }

  .fixed .hs_search_box {
    top: 43px;
  }

  #hs_header nav {
    float: left;
    border-left: none;
    border-right: none;
    margin-top: 10px;
  }

  #hs_header .hs_menu {
    float: left;
    width: 100%;
    position: fixed;
    z-index: 5;
    background: #000;
    left: 0;
    padding: 15px;
  }

  #hs_header .hs_menu::-webkit-scrollbar {
    width: 3px;
  }

  #hs_header .hs_menu::-webkit-scrollbar-track {
    background-color: #f4f4f4;
  }

  #hs_header .hs_menu::-webkit-scrollbar-thumb {
    background-color: #ccc;
    outline: 0;
  }

  #hs_header .hs_menu > li {
    float: none;
    width: 100%;
    text-align: left;
  }

  #hs_header .hs_menu li > a {
    margin: 0 !important;
    width: 100%;
    color: #fff;
    text-align: right;
  }

  #hs_header .hs_menu li:hover a {
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    color: #fff !important;
  }

  #hs_header .hs_menu li > ul {
    width: 100%;
    opacity: 0;
    z-index: 500;
    visibility: visible;
    opacity: 1;
    position: relative;
    margin-top: 0;
    padding-left: 25px;
  }

  #hs_header .hs_menu li:hover > ul {
    padding-left: 25px;
  }

  #hs_header .hs_menu li > ul li {
    position: relative;
    height: auto;
    z-index: 550;
  }

  #hs_header .hs_menu li > ul li a {
    width: 100%;
    color: #fff !important;
    padding: 8px 0;
  }

  #hs_header .hs_menu li > ul li > ul {
    left: 0;
    margin-left: 0;
    visibility: visible;
    opacity: 1;
    z-index: 520;
    position: initial;
  }

  #hs_header .hs_menu li > ul li a.active,
  #hs_header .hs_menu li > ul li:hover > a,
  #hs_header .hs_menu li > ul li > ul > li a,
  #hs_header .hs_menu li > ul li > ul > li:hover a {
    color: #fff !important;
  }

  #hs_header .hs_menu li:hover,
  #hs_header .hs_menu li > ul li:hover,
  #hs_header .hs_menu li > ul li > ul > li {
    background: 0 0;
  }

  #hs_header .hs_menu li > ul li > ul > li:hover {
    background: #00ac7a;
  }

  .hs_sub_comment_div > .hs_sub_comment:before {
    height: 50%;
  }

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

  .hs_contact ul li {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .hs_contact_detail p {
    width: 100%;
    margin-bottom: 20px;
  }

  .hs_footer_content .hs_social {
    float: none;
  }

  #hs_header .hs_menu li > ul > li > ul > li:first-child {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }

  .hlt_heading_newsltr h1,
  .hs_slide2_div > .hs_slider_form {
    width: 100%;
  }

  .hs_slide2_div > .hs_slider_form > .form-group {
    float: left;
    width: 40%;
    margin-right: 10px;
  }

  .hs_slide2_div > .hs_slider_form > .form-group input,
  .hs_slide2_div > .hs_slider_form > .form-group select {
    height: 4vw;
  }

  .carousel-inner > .item > a > img,
  .carousel-inner > .item > img,
  .thumbnail a > img,
  .thumbnail > img {
    max-width: none !important;
  }

  .hs_appointment_form_div {
    padding-bottom: 30px;
  }

  .hs_appointment_form_div > img {
    opacity: 0;
  }

  .hlc_slider_details_text {
    top: auto;
    position: absolute;
    bottom: 0;
  }

  .hs_slider_title {
    font-size: 30px;
  }

  .hlc_slider_details_text p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .hs_service {
    margin: 20px 0 0;
    padding: 0;
  }

  .hlc_slider_details_text .btn {
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    font-weight: 600;
    padding: 0 15px;
  }

  .hlc_topheader {
    padding: 5px 0;
    font-size: 14px;
  }

  .hlc_topheader_textright {
    text-align: center;
    margin-top: 5px;
  }

  #hs_header #hs_logo {
    margin: 10px 0;
  }

  .hs_nav_toggle {
    padding: 0;
    margin: 0;
  }

  #hs_header.hlt_manu .hs_menu {
    top: 107px;
    background: #005fce;
  }

  #hs_header.hlt_manu .hs_menu li > ul {
    background: #005fce;
  }

  #hs_header.hlt_manu .hs_menu li > ul li > ul > li:hover {
    background: #0274fa;
  }

  #hs_header.hlt_manu .hs_menu li > ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .hlt_blddnt_clr {
    padding-left: 60px;
    padding-top: 80px;
  }

  .hlt_blddnt_clr h1,
  .hlt_blddnt_clr p {
    font-size: 30px;
    width: 100%;
  }

  .hlt_blddnt_clr p {
    font-size: 16px;
  }

  .hlt_heading_newsltr {
    margin-bottom: 60px;
  }

  .hlt_heading_newsltr img {
    top: -40px;
    left: 40%;
  }

  .hlt_newsltr {
    padding-left: 0;
  }

  .hlt_logo {
    width: auto;
    height: 107px;
    padding: 0 15px;
    right: auto;
  }

  .hlt_uprleft {
    width: 75%;
  }

  .hlt_uprleft ul li:last-child {
    padding-bottom: 0;
  }

  #hs_header.hlt_manu {
    float: right;
    width: auto;
  }

  #hs_header.hlt_manu .hs_nav_toggle {
    background: #0274fa !important;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  #hs_header.hlt_manu .hs_nav_toggle > i {
    font-size: 24px;
    padding-left: 10px;
  }

  #hs_header.hlt_manu .hs_menu li > a {
    padding: 3px 8px;
  }

  .hlt_lwrheader,
  .hlt_uprheader {
    padding: 10px 15px;
  }

  .hlt_lwrheader .hlt_uprleft {
    width: 80%;
  }

  .hlt_lwrheader .hlt_uprleft ul {
    float: none;
    display: inline-block;
    width: auto;
  }

  .hlt_slider {
    padding: 150px 0;
  }
}

.login-btn,
.login-form {
  background: #ee2525;
  border-radius: 8px;
}
.register-btn a {
  color: #000000;
}
.register-btn {
  background: #fff;
}
#buynow {
  background: white;
  border-radius: 8px;
}

@media (max-width: 480px) {
  .carousel-inner > .item > a > img,
  .carousel-inner > .item > img,
  .img-responsive,
  .thumbnail a > img,
  .thumbnail > img {
    max-width: 100% !important;
  }

  .carousel-caption {
    position: relative;
    padding-bottom: 60px;
  }

  #layerslider > div > div > div > input,
  #layerslider > div > div > div > select {
    height: 10px;
    width: auto;
  }

  .hs_social {
    position: relative;
    right: 0;
  }

  .hs_sub_comment_div > .hs_sub_comment:before {
    height: 50%;
  }

  .hs_comment .hs_comment_date ul li a {
    padding: 0 5px;
  }

  .panel-body {
    padding: 15px !important;
  }

  .nav-tabs > li {
    width: 100% !important;
  }

  .nav-tabs > li > a {
    margin-right: 0 !important;
  }

  .hs_slide2_div > .hs_slider_form {
    display: none;
  }

  .hs_slide2_div a {
    display: block;
  }
}

@media (max-width: 479px) {
  .hlt_bnr_text .htl_bnr_sbheading {
    font-size: 24px;
  }

  .hlt_bnr_text .htl_bnr_heading {
    font-size: 30px;
  }
}

.copyright,
.login-register-btn {
  display: inline-flex;
}

.login-btn,
.register-btn {
  margin: 20px 0;
  border-radius: 25px;
}

.login-btn {
  padding: 6px 20px;
}

.register-btn {
  margin-left: 10px;
  padding: 6px 10px;
}

.fa-envelope:before {
  content: "\f0e0";
}

.login-form h4,
.register-form h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0px;
  padding-bottom: 9px;
}

.login-form {
  /* width: 64%; */
  margin: 0 auto;
  padding: 20px 0;
}

home-input:focus {
  outline: 0 !important;
}

input[type="account"],
input[type="password"],
input[type="text"] {
  width: 70%;
  padding: 7px 14px;
  font-size: 14px;
  margin-bottom: 19px;
  border-radius: 25px;
  border: none;
}

input[type="account"] {
  border: 1px solid #ccc !important;
}

.account-delete {
  margin-top: 25px;
}

.input-item label {
  color: #fff;
  border-radius: 6px 0 0 6px;
  background: #000;
  padding: 6px 5px;
  width: 48px;
  position: absolute;
}

.login-regi-submit {
  width: 70%;
  background: #000;
  margin: 30px auto 20px;
  border-radius: 20px;
  padding: 5px 14px;
}

#submit-next,
#submit-next-sub {
  width: 100%;
  height: 50px;
}

.forget-pwd span a,
.form-submit-btn {
  color: #fff;
  font-weight: 600;
}

.free-account {
  font-size: 14px;
  padding-top: 10px;
  color: #fff;
}

.footer-logo {
  width: 55%;
}

.footer-logo-text {
  font-size: 27px;
  color: #fff;
  font-weight: 700;
}

.footer-logo-text span {
  color: #fff;
  padding: 5px;
  border-radius: 4px;
}

.hs_contact_detail {
  margin-top: 20px;
  color: #fff;
}

.social_icons ul {
  list-style: none;
  display: flex;
}

.social_icons ul li a {
  color: #fff;
  margin-right: 20px;
}

.footer-copyright {
  margin-top: 50px;
}

.improve-health h4 {
  text-align: center;
  width: 98%;
  font-size: 24px;
}

.improve-health-discribe p {
  font-size: 18px;
  height: 120px;
}

.icon-image {
  font-size: 67px;
}

.icon-image i {
  content: "\f193";
  color: #7f9aa0;
}

.login-form-area {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.my-form {
  background: #ee2525;
  padding: 30px 50px;
  border-radius: 10px;
}

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

.form-title h1 {
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: 30px;
}

.single-input {
  display: flex;
  background: #fff;
  border-radius: 25px;
  margin: 0 35px 12px;
  align-items: baseline;
}

.single-input i {
  padding: 12px 16px;
  color: #ee2525;
  margin-top: 5px;
}

.single-input input {
  margin-bottom: 0;
  background: 0 0;
  padding: 10px 12px !important;
  width: 100%;
}

.submit-btn-form {
  border: 0 solid #c1c1c1;
  margin-top: 30px;
}

.link-product,
.submit {
  border: none;
  background: #000;
}

.submit-btn-form input {
  background: #0cd6a8;
  color: #fff;
  cursor: pointer;
}

.submit {
  color: #fff;
  padding: 7px 9px;
  width: 96%;
  font-weight: 700;
  margin-bottom: 15px;
  border-radius: 4px;
  margin-top: 5px;
}

.forget-pwd p {
  text-align: right;
  color: #fff;
  font-size: 14px;
  margin: 0 25px 17px 0;
}

.register-form {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  /* background: #ee2525; */
  /* padding: 20px 0 35px; */
  /* border-radius: 25px; */
}

.form-gruop {
  width: 84%;
  padding: 13px 12px;
  border-radius: 25px;
  border: none;
  font-size: 14px;
  margin-right: 16px;
  background: #fff !important;
}

.edit-icon-form,
.header-contact {
  margin-right: 7px;
}

.form-align,
.form-area {
  margin: 0 auto;
}

.form-area {
  width: 50%;
}

.number-code {
  margin: 31px auto 0;
  background: #ee2525;
  border: 1px solid #ee2525;
  border-radius: 55px;
  height: 70px;
  width: 70px;
  align-items: baseline;
}

.number-code .no-1 {
  color: #fff;
  margin: 10px 0;
}

.next-btn {
  margin: 0 auto;
}

.upload-pic {
  align-items: center;
}

.birthdate {
  padding: 23px 21px !important;
  border-radius: 25px;
}

#datetimepicker1 {
  margin: 0 35px;
}

.input-group-addon {
  border-radius: 25px 0 0 25px !important;
}

.term-condition {
  margin: 15px;
}

.vehicle1 {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

.content-step-2 {
  padding: 10px 35px;
  color: #fff;
}

.content-step-2 .control-data {
  font-size: 16px;
  font-weight: 600;
}

.content-step-2 p {
  text-align: justify;
}

.main-profile-page {
  padding: 24px 0;
}

.profile-photo img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
}

.profile-photo i {
  font-size: 100px;
  color: #b7b7b7;
}

.profile-username .name-of-user {
  font-size: 30px;
  color: #000;
  margin-top: 20px;
}

.link-product {
  padding: 7px 5px;
  width: 17%;
  border-radius: 4px;
  margin: 0 auto;
}

.new_product,
.new_product_link {
  border: none;
  background: #000;
  padding: 7px 5px;
}

.new_product {
  width: 28%;
  border-radius: 4px;
  margin: 0 auto;
}

.new_product_link {
  width: auto;
  height: 42px;
  border-radius: 4px;
  margin: 0 auto 10px;
}

.fa-address-card,
.fa-briefcase-medical,
.fa-eye,
.fa-info-circle,
.fa-phone-volume,
.link-product .fa-link,
.vital-medical-conditions .fa-notes-medical,
.vital-medical-conditions i
{
  color: #fff;
  margin-right: 5px;
}

.modal-content {
  background: #ee2525;
}

.modal-header {
  padding: 15px;
  border-bottom: none;
  align-items: center;
}

.modal-header .close {
  margin-top: -23px;
}

#exampleModalCenter .modal-header .close {
  margin-top: 0px !important;
}

#exampleModalCenter .close {
  font-size: 44px !important;
  /* margin-right: 12px; */
}

.popup-model-save {
  color: #fff;
  background: #000;
  border: none;
  padding: 4px 10px;
  width: 14%;
  border-radius: 4px;
}

.content-switch-btn {
  /* background-color: #fff; */
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.switch-btn {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 30px;
  margin-left: 8px;
}

.slider-btn,
.slider-btn:before {
  position: absolute;
  transition: 0.4s;
}

.switch-btn .btn-switcher {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-btn {
  cursor: pointer;
  top: 1px;
  left: 0;
  right: 0;
  bottom: 8px;
  background-color: #6e6e6e;
}

.slider-btn:before {
  content: "";
  height: 15px;
  width: 15px;
  left: 4px;
  bottom: 3px;
  background-color: #fff;
}

.btn-switcher:checked + .slider-btn {
  background-color: #1849ab;
}

.btn-switcher:focus + .slider-btn {
  box-shadow: 0 0 0 4px rgba(21, 156, 228, 0.7);
  outline: 0;
}

.btn-switcher:checked + .slider-btn:before {
  transform: translateX(17px);
}

.slider-btn.round-btn {
  border-radius: 34px;
}

.slider-btn.round-btn:before {
  border-radius: 50%;
}

.vital-medical-conditions {
  background: #ee2525;
  border: none;
  padding: 7px 5px;
  border-radius: 4px;
  /* width: 25%; */
  /* max-width: 240px; */
  width: 100%;
  text-align: left;
}

.vital-add-new-data {
  background: #ee2525;
  border: none;
  color: #fff;
  padding: 3px 14px;
  border-radius: 4px;
  float: right;
}

.table-and-form-of-profile {
  float: none;
  margin: 30px auto;
}

#profile_table {
  border-collapse: separate;
  border-spacing: 0 15px;
  padding-left: 15px;
}
.table-for-profile-data table tbody td, .table-for-profile-data table tbody th, .table-for-profile-data table tbody tr {
  padding: 20px!important;
}
.table-for-profile-data table {
  border-collapse: collapse;
  width: 100%;
  background-color: #fff;
  border-radius: 25px;
}

.table-for-profile-data td,
.table-for-profile-data th {
  text-align: left;
  padding: 8px;
  font-size: 14px;
}

.text-area-profile {
  width: 100%;
  border: none;
  padding: 10px 0 0 10px;
  background: 0 0;
  font-size: 14px;
}

.radio-inline {
  font-size: 14px;
}

.fa-globe-africa,
.fa-tint {
  color: #ee2525;
  margin-right: 5px;
}

.contain-loader {
  display: flex;
  flex-direction: column;
  margin: auto;
}

.page-loader {
  width: 200px;
  height: 80px;
  padding-top: 40vh;
  margin: auto;
  display: flex;
}

.circle-loader {
  width: 30px;
  height: 30px;
  background: #ee2525;
  border-radius: 50%;
  animation: 1s linear infinite jump;
  margin: 0 15px;
}

#b {
  animation-delay: 0.2s;
}

#c {
  animation-delay: 0.4s;
}

@keyframes jump {
  0%,
  70% {
    margin-top: 0;
  }

  35% {
    margin-top: -75px;
  }
}

@media (max-width: 900px) {
  .owl-carousel .owl-item div.test {
    height: 100vh !important;
  }
}

.hlc_slider_details_text {
  padding: 65px 0px;
  z-index: 1;
  text-align: center;
}

/*********************************css/style2.css********************************************/
.c_heading,
.label-white {
  font-weight: 700;
  color: #fff;
}

.c_heading,
.one-life-head {
  font-size: 24px;
  position: relative;
  text-align: center;
  padding-top: 30px;
}

.c_heading,
.features_img,
.one-life-head,
.sec-testimonial,
.text-center {
  text-align: center;
}

.btn-transparent {
  background: 0 0;
  border: none;
}

.border-none {
  border: none;
  border-radius: 25px;
}

.ml-50 {
  margin-left: 50px;
}

.features_li {
  line-height: 55px;
}

.features_li::before {
  color: red;
}

.full_width,
.get-tageze-image {
  width: 100% !important;
}

.access-bgs {
  background-color: #ee2525;
}

.c_heading {
  border-bottom: 0;
}

.access_sec {
  background: #ee2525;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 40px;
}

.one-life-head {
  color: #000;
  padding-bottom: 15px;
}

.fa-dog:before {
  content: "\f007";
}

.invalid-feedback {
  color: #000;
  font-weight: 600;
}

.invalid-feedback strong {
  font-weight: 600;
}

.social-icon {
  margin-top: 20px !important;
  margin-right: 20px !important;
  font-size: 24px !important;
}

.btn-shop:hover,
.c-white,
.clr-while {
  color: #fff;
}

.features_img {
  font-size: 67px;
}

.features_box {
  width: 100%;
  float: left;
  margin-bottom: 40px;
  padding: 30px 20px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  z-index: 1;
  position: relative;
}

.clr-black {
  color: #000;
}

.frames-layout {
  float: right;
}

.img-promise {
  height: 170px;
  min-height: 100px !important;
}

.safety {
  color: #ee2525;
}

.clr-red {
  color: red !important;
}

.access_ul {
  margin-left: 40%;
}

.access_ul li::marker {
  color: #ff0;
  font-size: 20px;
}

.heart {
  font-size: 16px !important;
  padding-right: 0 !important;
  float: none !important;
}

.btn-shop {
  background: green;
  padding: 10px 30px;
  color: #fff;
  font-weight: 800;
  border-radius: 25px;
}

.section-shop {
  background: #222;
}

.sec-testimonial {
  padding: 30px;
}

.tm-text {
  font-weight: 700;
  margin-top: 20px;
  font-size: 18px;
}

.tm-content {
  padding-bottom: 1%;
}

.privacy-tbl td,
.privacy-tbl th {
  padding: 10px;
}

#birthdate {
  z-index: 0;
}

.profile-photo-input {
  margin: 20px 0;
  text-align: -webkit-center;
  text-align: -moz-center;
}

.intl-tel-input {
  width: 100%;
}

.delete-edit-btn {
  display: flex;
  float: right;
}

.access-image-steps img {
  text-align: center;
  width: 100%;
}

.for-profile {
  width: 11%;
  margin: 20px auto 20px;
  text-align: center;
}

.medical-id-sticker,
.never-lose-again,
.never-worry {
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
}

.never-lose-again {
  border-radius: 5px;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.get-tageze {
  margin: 0 !important;
  padding: 0 !important;
}

.creating-profile {
  font-size: 18px;
  width: 79%;
  margin: 0 auto;
}

#google_translate_element {
  position: fixed;
  left: 0;
  bottom: 0;
}

.skiptranslate iframe {
  display: none;
}

body {
  top: 0 !important;
}

/************************************* css/responsive.css ***************************************/
@media (max-width: 1199px) {
  .improve-health h4 {
    width: 77%;
    margin: 0 auto;
    font-size: 16px;
  }

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

  .next-btn-form {
    display: block;
  }

  .login-regi-submit {
    width: 35% !important;
  }
}

@media (max-width: 991.98px) {
  .improve-health h4 {
    text-align: center;
    width: 74%;
    margin: 0 auto;
  }

  .hs_service {
    height: 276px;
    width: 100%;
    float: left;
    margin: 20px 0;
    border-bottom: 2px solid #7f9aa0;
  }

  .hs_slider_title {
    margin-top: 15px;
    font-size: 28px;
  }

  .link-product {
    width: 25%;
  }

  /* .profile-photo img {
        width: 39%
    } */

  #hs_header #hs_logo a img {
    width: 100%;
  }

  .form-area {
    width: 60%;
  }

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

  .panel-group {
    width: 85%;
  }
}

@media (max-width: 767.98px) {
  .footer-logo-text,
  .how-it-work,
  .hs_contact_detail-data,
  .hs_heading {
    text-align: center;
  }

  .how-we-four-blocks,
  .how-we-three-blocks {
    display: block;
  }

  .hs_heading:before {
    bottom: 0;
    height: 2px;
    position: absolute;
    content: "";
    border-bottom: 2px solid #7f9aa0;
    width: 30%;
    transform: translateX(-50%);
    left: 50%;
  }

  .access_ul {
    margin-left: 0;
  }

  .footer-logo-text {
    margin-top: 0;
  }

  .hs_about_us p {
    text-align: center !important;
  }

  .for-last-service {
    margin-bottom: 30px;
  }

  .access_sec {
    padding: 5px 0;
  }

  .footer-margin {
    margin-top: 0;
  }

  .hs_contact_social {
    margin-bottom: 20px;
  }

  /* .vital-medical-conditions {
        width: 40%
    } */

  .main-profile-page img,
  .register-form {
    margin-top: 30px;
  }

  #hs_header #hs_logo a img,
  .creating-profile,
  .panel-group {
    width: 100%;
  }

  .social-icon {
    margin: 0 5px;
    font-size: 40px !important;
  }

  .improve-health-discribe {
    padding: 20px;
  }

  .form-1 {
    margin-top: 10px;
  }

  .form-area {
    width: 75%;
  }

  .hs_how_we_are img {
    width: 45%;
    min-height: 309px;
  }

  .for-profile {
    width: 14%;
    margin: 20px auto 40px !important;
  }
}

@media (max-width: 610px) {
  .link-product {
    width: 37%;
  }
}

@media (max-width: 575.98px) {
  .hs_how_we_are img {
    width: 100%;
    min-height: 150px;
  }

  .popup-model-save {
    width: 20%;
  }

  .table-for-profile-data {
    overflow-y: scroll;
  }

  .form-area,
  .login-form {
    width: 100%;
  }

  .hlc_slider_details_text {
    position: absolute;
  }

  .content-step-2 {
    padding: 10px 25px;
  }

  .ministry-image img {
    width: 45%;
    margin-bottom: 20px;
  }

  .panel-title > a > i {
    right: 5px;
  }

  .panel-title {
    font-size: 13px;
    padding: 0 10px 0 0;
  }
}

@media (max-width: 490px) {
  .table-for-profile-data td,
  .table-for-profile-data th {
    padding: 5px;
    font-size: 10px;
  }
}

@media (max-width: 425px) {
  .clr-black {
    text-align: center;
  }

  .form-area {
    display: block;
  }

  .single-input {
    margin: 0 10px 10px !important;
  }

  #datetimepicker1 {
    margin: 0 12px;
  }

  .popup-model-save {
    width: 26%;
  }

  #exampleModalLabel,
  .link-product a,
  .vital-medical-conditions a {
    font-size: 13px;
  }

  .vital-medical-conditions {
    padding: 3px;
  }

  .profile-photo img {
    width: 180px;
    height: 180px;
    object-fit: cover;
  }

  .profile-photo-input input[type="file"] {
    width: 76%;
  }

  #hs_header #hs_logo a img {
    width: 100%;
  }

  .hs_nav_toggle > i {
    font-size: 23px;
    margin-top: 14px;
  }
}

@media (max-width: 420px) {
  .link-product {
    width: 55%;
    margin-top: 10px;
  }

  /* .vital-medical-conditions {
        width: 45%
    } */
}

@media (max-width: 375px) {
  .term-condition {
    display: flex;
  }

  .vehicle1 {
    font-size: 14px;
    text-align: justify;
    margin-left: 10px;
    margin-top: 0;
  }
}

@media (max-width: 320px) {
  .hs_nav_toggle > i {
    margin-top: 8px;
  }

  .hs_page_title ul {
    margin: 0;
  }

  .hs_page_title ul li a,
  .radio-inline {
    font-size: 13px;
  }

  .img-promise,
  .video-frame {
    text-align: center !important;
    float: none !important;
  }

  #frames-layout {
    width: 100%;
  }

  .hs_contact_head_text p {
    padding-left: 30px;
    padding-right: 30px;
  }

  .checkbox-inline + .checkbox-inline,
  .radio-inline + .radio-inline {
    margin-left: 5px;
  }
}

@media (max-width: 575.98px) {
  .login-form {
    margin-bottom: 20px !important;
  }
}

@media (max-width: 991.98px) {
  .hs_slider_title {
    font-size: 22px !important;
    margin: 20px 0 26px !important;
  }

  .login-form {
    margin-bottom: 20px !important;
  }

  .hlc_slider_details_text {
    top: 0 !important;
    position: unset;
    padding: 15px 0px;
  }
}

@media (max-width: 767px) {
  .hlc_slider_details_text p {
    margin-bottom: 22px !important;
  }

  .for-profile {
    margin: 15px auto 12px !important;
  }

  .col-lg-12.col-md-12.col-sm-12.mediaprofile {
    padding: 15px 0 !important;
    margin-top: 25px;
  }

  .one-life-head b {
    margin-top: 29px !important;
    display: inline-block;
  }

  .hlc_slider_details_text {
    top: 0 !important;
    padding: 15px 0px;
  }
}

@media (min-width: 991px) {
  .hlc_slider_details_text .row {
    align-items: center;
    display: flex;
  }
}

@media (min-width: 1200px) {
  div#sidechanged {
    float: right;
    order: 2;
  }
}

/********************************************css/slick.css*******************************************/
.slick-list,
.slick-slider,
.slick-track {
  position: relative;
  display: block;
}

.slick-slider {
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  top: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:after,
.slick-track:before {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-slide,
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-initialized .slick-slide,
.slick-slide img {
  display: block;
}

.slick-arrow.slick-hidden,
.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/**********************************css/slick-theme.css*******************************************/
@charset 'UTF-8';

.slick-dots,
.slick-next,
.slick-prev {
  padding: 0;
  display: block;
  position: absolute;
}

.slick-dots li,
.slick-dots li button,
.slick-next,
.slick-prev {
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.slick-dots li button:before,
.slick-next:before,
.slick-prev:before {
  font-family: slick;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-loading .slick-list {
  background: url("./ajax-loader.gif") center center no-repeat #fff;
}

.slick-dots li button,
.slick-next,
.slick-next:focus,
.slick-next:hover,
.slick-prev,
.slick-prev:focus,
.slick-prev:hover {
  color: transparent;
  background: 0 0;
  outline: 0;
}

@font-face {
  font-family: slick;
  font-weight: 400;
  font-style: normal;
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"),
    url("./fonts/slick.woff") format("woff"),
    url("./fonts/slick.ttf") format("truetype"),
    url("./fonts/slick.svg#slick") format("svg");
}

.slick-next,
.slick-prev {
  font-size: 0;
  line-height: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  border: none;
}

.slick-dots li button:focus:before,
.slick-dots li button:hover:before,
.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
  opacity: 1;
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
  opacity: 0.25;
}

.slick-next:before,
.slick-prev:before {
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: #fff;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before,
[dir="rtl"] .slick-next:before {
  content: "â†";
}

.slick-next:before,
[dir="rtl"] .slick-prev:before {
  content: "â†’";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  right: auto;
  left: -25px;
}

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  bottom: -25px;
  width: 100%;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  padding: 5px;
  border: 0;
}

.slick-dots li button:focus,
.slick-dots li button:hover {
  outline: 0;
}

.slick-dots li button:before {
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "â€¢";
  text-align: center;
  opacity: 0.25;
  color: #000;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #000;
}

/* 10-1-25 */
.red-bg {
  background: #ee2525;
  border-radius: 25px;
  padding-right: 15px;
}
div#sidechanged {
  border-radius: 25px;
  background-color: #000;
  padding-block: 20px;
}
/* safety Section */
.safety-banner {
  background-color: #f4f4f3;
  border-radius: 25px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 20px;
  margin-bottom: 50px;
}

.safety-banner h1 {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.safety-banner p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.safety-banner .button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.safety-banner .btn {
  border-radius: 50px;
}

.safety-banner .btn-register {
  background-color: #ff0000;
  color: white;
}

.safety-banner .btn-register:hover {
  background-color: #e60000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.safety-banner .btn-login {
  background-color: #000000;
  color: white;
}

.safety-banner .btn-login:hover {
  background-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
/* emergency info */
.emergency-info {
  background-color: #000000;
  margin: 50px 0;
  padding: 15px 0;
}
.emergency-info p {
  color: #ffffff;
  font-size: 16px;
  margin: 0;
  text-align: center;
}

/* How to get started */
.how-to-get-started {
  background-color: #f4f4f3;
  border-radius: 25px;
  padding: 40px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 50px;
}
.how-to-get-started-main-section {
  text-align: center;
}
.step-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: left;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.step-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  font-weight: 500;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.step-description {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
}
.vital-info-main-section {
  text-align: center;
}
.info-icon svg {
  width: 50px;
  fill: #fff;
}
.info-card {
  text-align: center;
}

.vital-information,
.vital-information h2,
.info-card h3 {
  color: #fff;
}
.vital-information {
  margin-bottom: 50px;
}
.riding-into-future {
  background-color: #ee2525;
  color: #fff;
  padding: 20px 0;
}
.riding-into-future p span {
  font-weight: 700;
}
.btn-shop-now {
  background-color: #ee2525;
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
}
.shop-tageaze {
  background-color: #000;
  color: #fff;
  border-radius: 25px;
  margin: 50px 0;
  padding: 20px 0;
}

.shop-tageaze h2 {
  color: #fff;
}
.copyright p {
  font-size: 14px;
}

/* Homepage ends */

/* login */
.register-login-form-area {
  margin: 50px 0;
}
.register-login-text h3,
.register-login-text p {
  font-weight: 700;
}
.register-text span {
  border-bottom: 1px solid #000;
  font-weight: 700;
}
.register-login-form-area .container {
  background-color: #f4f4f3;
  padding: 20px 0px;
  border-radius: 25px;
}
.auth-inputs {
  background-color: #ee2525;
  padding: 30px 0;
  border-radius: 25px;
}
.auth-inputs label {
  display: flex;
  margin: 0 35px 12px;
  align-items: baseline;
  gap: 10px;
}
.auth-inputs label i {
  color: #fff;
}

/* Privacy Notice */
/* Profile Section Wrapper */
.profile-section {
  margin: 0 auto;
  padding: 20px;
}

/* Ad Banners */
.profile-section .ad-banner-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.profile-section .ad-banner {
  background: #ccff66;
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: bold;
  color: #888;
  font-size: 16px;
  text-transform: uppercase;
}

/* Manage Profile Box */
.profile-section .manage-profile {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.profile-section .manage-profile h3 {
  margin-bottom: 8px;
  font-weight: bold;
}

.profile-section .manage-profile .subtext {
  margin-bottom: 20px;
  font-size: 14px;
  color: #333;
}

.profile-section .manage-profile .no-profiles {
  color: red;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Button */
.profile-section .add-profile-btn {
  background: black;
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}

.profile-section .add-profile-btn:hover {
  background: #333;
}
/* TAGEZE GLOBAL REUSABLE STYLES */
/* Container Styles */
.tg-section-wrapper {
  background-color: #f4f4f3;
  border-radius: 25px;
  padding: 60px 20px;
  margin: 50px 0;
}
.tg-section-wrapper input[type="text"]{
  border-radius: 10px;
  padding: 10px 15px;
  /* border: 1px solid #ccc; */
  width: 100%;
  box-sizing: border-box;
}
.tg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Content Box Styles */
.tg-content-box {
  background-color: #ff1616;
  border-radius: 20px;
  padding: 50px 40px;
  margin: 0 auto;
  max-width: 800px;
  box-shadow: 0 4px 20px rgba(255, 22, 22, 0.15);
}

/* Text Styles */
.tg-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  text-align: center;
}

.tg-subtitle {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.6;
}

.tg-content-title {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

.tg-content-text {
  font-size: 15px;
  line-height: 1.8;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0;
}

.tg-content-text strong {
  font-weight: 700;
}

/* Button Styles */
.tg-btn-container {
  text-align: center;
  margin-top: 40px;
}

.step-1-form .tg-btn {
  background-color: #000000;
  color: #ffffff;
  padding: 14px 50px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  max-width: 30%;
}

.tg-btn:hover {
  background-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.tg-btn:active {
  transform: translateY(0);
}

/* Profile Card Styles */
.tg-profile-section {
  background-color: #f4f4f3;
  padding: 40px 20px;
}

.tg-ad-banner-section {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.tg-ad-banner {
  background: linear-gradient(135deg, #c4ff61 0%, #a8e84a 100%);
  border-radius: 20px;
  padding: 40px;
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.3);
  text-align: center;
}

.tg-manage-profile-wrapper {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.tg-manage-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.tg-manage-subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 40px;
}

/* Profile Card */
.tg-profile-card {
  background-color: #ff1616;
  border-radius: 20px;
  padding: 35px 30px;
  margin-bottom: 30px;
  position: relative;
  box-shadow: 0 4px 20px rgba(255, 22, 22, 0.15);
}

.tg-profile-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 20px;
}

.tg-profile-avatar {
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #ff1616;
  flex-shrink: 0;
}

.tg-profile-info {
  flex: 1;
  text-align: left;
}

.tg-profile-name {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.tg-profile-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* Profile Strength */
.tg-profile-strength {
  margin-bottom: 20px;
}

.tg-strength-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.tg-strength-text {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.tg-strength-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.tg-strength-bar {
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}

.tg-strength-fill {
  height: 100%;
  background-color: #000;
  border-radius: 10px;
  transition: width 0.3s ease;
}

.tg-strength-fill.low {
  width: 33%;
}

.tg-strength-fill.medium {
  width: 66%;
}

.tg-strength-fill.high {
  width: 100%;
}

/* Helper Text */
.tg-profile-helper {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Button Groups */
.tg-profile-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.tg-profile-btn {
  flex: 1;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.tg-btn-edit,
.tg-btn-scan {
  background-color: #ffffff;
}

.tg-btn-edit:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tg-btn-scan:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tg-btn-delete {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  width: 100%;
}

.tg-btn-delete:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Add Profile Button */
.tg-add-profile-btn {
  background-color: #000000;
  color: #ffffff;
  padding: 14px 50px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.tg-add-profile-btn:hover {
  background-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.tg-no-profiles {
  font-size: 16px;
  color: #666;
  padding: 40px;
  text-align: center;
}

/* scan history */
.tg-scan-history-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.tg-scan-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
}

.tg-scan-subtitle {
  font-size: 15px;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
}

/* Scan Item Styles */
.tg-scan-list {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin: 0 auto 30px;
  max-width: 80%;
}

.tg-scan-item {
  background-color: #ff1616;
  padding: 18px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tg-scan-item:last-child {
  border-bottom: none;
}

.tg-scan-item:hover {
  background-color: #e60000;
}

.tg-scan-item.expanded {
  background-color: #ff1616;
  flex-direction: column;
  align-items: flex-start;
}

.tg-scan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.tg-scan-date {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  flex: 1;
}

.tg-scan-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.tg-scan-view-btn {
  background-color: transparent;
  color: #ffffff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 10px;
  transition: all 0.2s ease;
}

.tg-scan-view-btn:hover {
  text-decoration: underline;
}

.tg-scan-close-btn {
  background-color: transparent;
  color: #ffffff;
  border: none;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.tg-scan-close-btn:hover {
  transform: scale(1.2);
}

/* Scan Details */
.tg-scan-details {
  width: 100%;
  background-color: #ffffff;
  padding: 25px;
  margin-top: 15px;
  border-radius: 8px;
  display: none;
}

.tg-scan-item.expanded .tg-scan-details {
  display: block;
}

.tg-scan-detail-row {
  display: flex;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.tg-scan-detail-row:last-child {
  border-bottom: none;
}

.tg-scan-detail-label {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  min-width: 120px;
}

.tg-scan-detail-value {
  font-size: 14px;
  color: #1a1a1a;
}

/* Back Button */
.tg-back-btn-container {
  text-align: center;
}

.tg-back-btn {
  background-color: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  padding: 12px 50px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.tg-back-btn:hover {
  background-color: #1a1a1a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
/* Scoped styles only for Account Settings */
.tg-account-settings {
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
}

.tg-account-container {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.tg-account-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.tg-account-subtitle {
  color: #444;
  margin-bottom: 25px;
}

.tg-account-box {
  background-color: #e60000; /* Bright red background */
  border-radius: 10px;
  padding: 40px 30px;
  color: #fff;
}

.tg-account-section {
  margin-bottom: 35px;
}

.tg-section-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.tg-input {
  width: 100%;
  max-width: 400px;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  margin-bottom: 12px;
  font-size: 14px;
}

.tg-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #000;
}

/* Buttons */
.tg-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tg-btn-black {
  background-color: #000;
  color: #fff;
  padding: 14px 50px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.tg-btn-black:hover {
  background-color: #333;
}

.tg-btn-red {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.tg-btn-red:hover {
  background-color: #fff;
  color: #e60000;
}

/* Cancel section styling */
.tg-cancel-section .tg-section-title {
  margin-bottom: 10px;
}

.tg-cancel-text {
  color: #fff;
  font-size: 13px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.tg-profile-create-bg {
  background: #f7f7f5;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  padding: 24px;
}
.tg-profile-create-card {
  margin: 0 auto;
  padding: 42px 40px;
  border-radius: 28px;
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tg-profile-title {
  font-size: 21px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 4px;
  text-align: center;
}
.tg-profile-subtitle {
  color: #222;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 24px;
  text-align: center;
}
.tg-profile-btn-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.tg-btn {
  background: #ed2024;
  color: #fff;
  border: none;
  width: 100%;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.22s;
  box-sizing: border-box;
}
.tg-btn:hover,
.tg-btn:focus {
  background: #b90e0e;
  color: #fff;
  outline: none;
}
.tg-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

    /* Form specific styles */
    .tg-form-wrapper {
      background-color: #f4f4f3;
      padding: 40px 20px;
      min-height: 100vh;
  }

  .tg-form-header {
      text-align: center;
      margin-bottom: 30px;
  }

  .tg-form-main-title {
      font-size: 32px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 10px;
  }

  .tg-form-description {
      font-size: 15px;
      color: #666;
      max-width: 600px;
      margin: 0 auto;
  }

  .tg-form-red-card {
      background-color: #ff1616;
      border-radius: 20px;
      padding: 40px;
      max-width: 600px;
      margin: 0 auto 30px;
      box-shadow: 0 4px 20px rgba(255, 22, 22, 0.2);
  }

  .tg-form-field {
      margin-bottom: 25px;
  }

  .tg-field-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 700;
      color: #ffffff;
      text-transform: uppercase;
      margin-bottom: 10px;
      letter-spacing: 0.5px;
  }

  .tg-field-label i {
      font-size: 16px;
  }

  .tg-optional-badge {
      font-size: 11px;
      font-weight: 600;
      color: #ffffff;
      background-color: rgba(255, 255, 255, 0.2);
      padding: 2px 8px;
      border-radius: 10px;
      margin-left: auto;
  }

  .tg-white-input {
      width: 100%;
      padding: 14px 18px;
      font-size: 15px;
      border: none;
      border-radius: 10px;
      background-color: #ffffff;
      color: #333;
      transition: all 0.3s ease;
  }

  .tg-white-input:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  }

  .tg-white-input::placeholder {
      color: #999;
  }

  .tg-white-select {
      width: 100%;
      padding: 14px 18px;
      font-size: 15px;
      border: none;
      border-radius: 10px;
      background-color: #ffffff;
      color: #333;
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 18px center;
      transition: all 0.3s ease;
  }

  .tg-white-select:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  }

  .tg-input-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
  }

  .tg-input-with-unit {
      position: relative;
  }

  .tg-input-unit {
      position: absolute;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: #999;
      font-size: 14px;
      pointer-events: none;
  }

  .tg-form-action-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      max-width: 600px;
      margin: 0 auto;
  }

  .tg-btn-back {
      background-color: #ffffff;
      color: #1a1a1a;
      border: 2px solid #1a1a1a;
      padding: 14px 50px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      flex: 1;
      max-width: 200px;
      text-align: center;
  }

  .tg-btn-back:hover {
      background-color: #f0f0f0;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .tg-btn-next {
      background-color: #000000;
      color: #ffffff;
      border: none;
      padding: 14px 50px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      flex: 1;
      max-width: 200px;
  }

  .tg-btn-next:hover {
      background-color: #333333;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .invalid-feedback {
      color: #ffffff;
      font-size: 13px;
      margin-top: 5px;
      display: block;
      background-color: rgba(0, 0, 0, 0.2);
      padding: 5px 10px;
      border-radius: 5px;
  }

  @media (max-width: 768px) {
      .tg-form-red-card {
          padding: 30px 20px;
      }

      .tg-input-row {
          grid-template-columns: 1fr;
      }

      .tg-form-action-buttons {
          flex-direction: column;
      }

      .tg-btn-back,
      .tg-btn-next {
          max-width: 100%;
      }
  }



@media (max-width: 600px) {
  .tg-profile-create-card {
    padding: 24px 6px;
    max-width: 98vw;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .tg-scan-history-wrapper {
    padding: 30px 15px;
  }

  .tg-scan-title {
    font-size: 26px;
  }

  .tg-scan-subtitle {
    font-size: 14px;
  }

  .tg-scan-item {
    padding: 15px 20px;
  }

  .tg-scan-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .tg-scan-actions {
    width: 100%;
    justify-content: space-between;
  }

  .tg-scan-details {
    padding: 20px;
  }

  .tg-scan-detail-row {
    flex-direction: column;
    gap: 5px;
  }

  .tg-scan-detail-label {
    min-width: auto;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .tg-ad-banner-section {
    flex-direction: column;
    gap: 15px;
  }

  .tg-ad-banner {
    max-width: 100%;
    padding: 30px;
  }

  .tg-profile-card {
    padding: 25px 20px;
  }

  .tg-profile-header {
    flex-direction: column;
    text-align: center;
  }

  .tg-profile-info {
    text-align: center;
  }

  .tg-profile-actions {
    flex-direction: column;
  }

  .tg-manage-title {
    font-size: 24px;
  }
}
/* Responsive Styles */
@media (max-width: 768px) {
  .tg-section-wrapper {
    padding: 40px 15px;
  }

  .tg-content-box {
    padding: 35px 25px;
    border-radius: 15px;
  }

  .tg-title {
    font-size: 26px;
  }

  .tg-subtitle {
    font-size: 14px;
  }

  .tg-content-title {
    font-size: 22px;
  }

  .tg-content-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .tg-btn {
    padding: 12px 40px;
    font-size: 15px;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .tg-title {
    font-size: 22px;
  }

  .tg-content-title {
    font-size: 20px;
  }

  .tg-content-box {
    padding: 30px 20px;
  }
}
/* Media querys */
@media (max-width: 600px) {
  .safety-banner {
    padding: 30px 20px;
  }

  .safety-banner h1 {
    font-size: 24px;
  }

  .safety-banner p {
    font-size: 14px;
  }

  .safety-banner .button-group {
    flex-direction: column;
    width: 100%;
  }

  .safety-banner .btn {
    width: 100%;
    max-width: 300px;
  }
}
