@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

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

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

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

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

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

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__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);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

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

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

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-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);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-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;
  }
}
.animate__animated.animate__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);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  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 lightSpeedInRight {
  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);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  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 lightSpeedInLeft {
  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);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -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-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-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-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-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-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;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-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);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-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;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-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;
  }
}
.animate__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-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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-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);
  }
}
@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);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-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);
  }
}
@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);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
@-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-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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.checkbox {
  padding-left: 1.875em;
}
.checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 0.75em;
}
.checkbox label::before {
  content: '';
  display: inline-block;
  position: absolute;
  font-size: 1em;
  width: 1.25em;
  height: 1.25em;
  border-radius: 0.25em;
  top: 0.125em;
  left: -1.625em;
  border: 1.5px solid #58585e;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.checkbox label::after {
  display: inline-block;
  position: absolute;
  font-size: 1em;
  width: 1.25em;
  height: 1.25em;
  top: 0.125em;
  left: -1.5em;
  color: #555;
  line-height: 1.25;
}
.checkbox input[type='checkbox'],
.checkbox input[type='radio'] {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.checkbox input[type='checkbox']:focus + label::before,
.checkbox input[type='radio']:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.checkbox input[type='checkbox']:checked + label::after,
.checkbox input[type='radio']:checked + label::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0.125em;
  left: -1.625em;
  width: 1.25em;
  height: 1.25em;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-check-icon lucide-check"><path d="M20 6 9 17l-5-5"/></svg>');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-color: transparent;
}
.checkbox input[type='checkbox']:indeterminate + label::after,
.checkbox input[type='radio']:indeterminate + label::after {
  display: block;
  content: '';
  width: 10px;
  height: 3px;
  background-color: #555;
  border-radius: 2px;
  margin-left: -16.5px;
  margin-top: 7px;
}
.checkbox input[type='checkbox']:disabled,
.checkbox input[type='radio']:disabled {
  cursor: not-allowed;
}
.checkbox input[type='checkbox']:disabled + label,
.checkbox input[type='radio']:disabled + label {
  opacity: 0.45;
}
.checkbox input[type='checkbox']:disabled + label::before,
.checkbox input[type='radio']:disabled + label::before {
  background-color: #eee;
  cursor: not-allowed;
}
.checkbox.checkbox-circle label::before {
  border-radius: 50%;
}
.checkbox.checkbox-inline {
  margin-top: 0;
}
.checkbox-primary input[type='checkbox']:checked + label::before,
.checkbox-primary input[type='radio']:checked + label::before {
  background-color: #337ab7;
  border-color: #337ab7;
}
.checkbox-primary input[type='checkbox']:checked + label::after,
.checkbox-primary input[type='radio']:checked + label::after {
  color: #fff;
}
.checkbox-danger input[type='checkbox']:checked + label::before,
.checkbox-danger input[type='radio']:checked + label::before {
  background-color: #d9534f;
  border-color: #d9534f;
}
.checkbox-danger input[type='checkbox']:checked + label::after,
.checkbox-danger input[type='radio']:checked + label::after {
  color: #fff;
}
.checkbox-info input[type='checkbox']:checked + label::before,
.checkbox-info input[type='radio']:checked + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}
.checkbox-info input[type='checkbox']:checked + label::after,
.checkbox-info input[type='radio']:checked + label::after {
  color: #fff;
}
.checkbox-warning input[type='checkbox']:checked + label::before,
.checkbox-warning input[type='radio']:checked + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}
.checkbox-warning input[type='checkbox']:checked + label::after,
.checkbox-warning input[type='radio']:checked + label::after {
  color: #fff;
}
.checkbox-success input[type='checkbox']:checked + label::before,
.checkbox-success input[type='radio']:checked + label::before {
  background-color: #138587;
  border-color: #106f71;
}
.checkbox-success input[type='checkbox']:checked + label::after,
.checkbox-success input[type='radio']:checked + label::after {
  color: #fff;
}
.checkbox-primary input[type='checkbox']:indeterminate + label::before,
.checkbox-primary input[type='radio']:indeterminate + label::before {
  background-color: #337ab7;
  border-color: #337ab7;
}
.checkbox-primary input[type='checkbox']:indeterminate + label::after,
.checkbox-primary input[type='radio']:indeterminate + label::after {
  background-color: #fff;
}
.checkbox-danger input[type='checkbox']:indeterminate + label::before,
.checkbox-danger input[type='radio']:indeterminate + label::before {
  background-color: #d9534f;
  border-color: #d9534f;
}
.checkbox-danger input[type='checkbox']:indeterminate + label::after,
.checkbox-danger input[type='radio']:indeterminate + label::after {
  background-color: #fff;
}
.checkbox-info input[type='checkbox']:indeterminate + label::before,
.checkbox-info input[type='radio']:indeterminate + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}
.checkbox-info input[type='checkbox']:indeterminate + label::after,
.checkbox-info input[type='radio']:indeterminate + label::after {
  background-color: #fff;
}
.checkbox-warning input[type='checkbox']:indeterminate + label::before,
.checkbox-warning input[type='radio']:indeterminate + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}
.checkbox-warning input[type='checkbox']:indeterminate + label::after,
.checkbox-warning input[type='radio']:indeterminate + label::after {
  background-color: #fff;
}
.checkbox-success input[type='checkbox']:indeterminate + label::before,
.checkbox-success input[type='radio']:indeterminate + label::before {
  background-color: #138587;
  border-color: #106f71;
}
.checkbox-success input[type='checkbox']:indeterminate + label::after,
.checkbox-success input[type='radio']:indeterminate + label::after {
  background-color: #fff;
}
.radio {
  padding-left: 1.875em;
}
.radio label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 0.75em;
}
.radio label::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 1.25em;
  height: 1.25em;
  top: 0.125em;
  left: -1.625em;
  border: 1.5px solid #58585e;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out;
  transition: border 0.15s ease-in-out;
}
.radio label::after {
  display: inline-block;
  position: absolute;
  content: ' ';
  width: 1em;
  height: 1em;
  top: 0.25em;
  left: -1.5em;
  border-radius: 50%;
  background-color: #555;
  -webkit-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
.radio input[type='radio'] {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.radio input[type='radio']:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.radio input[type='radio']:checked + label::after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
.radio input[type='radio']:disabled {
  cursor: not-allowed;
}
.radio input[type='radio']:disabled + label {
  opacity: 0.45;
}
.radio input[type='radio']:disabled + label::before {
  cursor: not-allowed;
}
.radio.radio-inline {
  margin-top: 0;
}
.radio-primary input[type='radio'] + label::after {
  background-color: #337ab7;
}
.radio-primary input[type='radio']:checked + label::before {
  border-color: #337ab7;
}
.radio-primary input[type='radio']:checked + label::after {
  background-color: #337ab7;
}
.radio-danger input[type='radio'] + label::after {
  background-color: #d9534f;
}
.radio-danger input[type='radio']:checked + label::before {
  border-color: #d9534f;
}
.radio-danger input[type='radio']:checked + label::after {
  background-color: #d9534f;
}
.radio-info input[type='radio'] + label::after {
  background-color: #5bc0de;
}
.radio-info input[type='radio']:checked + label::before {
  border-color: #5bc0de;
}
.radio-info input[type='radio']:checked + label::after {
  background-color: #5bc0de;
}
.radio-warning input[type='radio'] + label::after {
  background-color: #f0ad4e;
}
.radio-warning input[type='radio']:checked + label::before {
  border-color: #f0ad4e;
}
.radio-warning input[type='radio']:checked + label::after {
  background-color: #f0ad4e;
}
.radio-success input[type='radio'] + label::after {
  background-color: #138587;
}
.radio-success input[type='radio']:checked + label::before {
  border-color: #138587;
}
.radio-success input[type='radio']:checked + label::after {
  background-color: #138587;
}
input[type='checkbox'].styled:checked + label:after,
input[type='radio'].styled:checked + label:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0.125em;
  left: -1.625em;
  width: 1.25em;
  height: 1.25em;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-check-icon lucide-check"><path d="M20 6 9 17l-5-5"/></svg>');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-color: transparent;
}
input[type='checkbox'] .styled:checked + label::before,
input[type='radio'] .styled:checked + label::before {
  color: #fff;
}
input[type='checkbox'] .styled:checked + label::after,
input[type='radio'] .styled:checked + label::after {
  color: #fff;
}

/*!
 * Datepicker for Bootstrap v1.8.0 (https://github.com/uxsolutions/bootstrap-datepicker)
 *
 * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)
 */

.datepicker {
  border-radius: 4px;
  direction: ltr;
  max-width: 100vw;
}
.datepicker-inline {
  width: 676px;
  max-width:100%;
}
.datepicker-rtl {
  direction: rtl;
}
.datepicker-rtl.dropdown-menu {
  left: auto;
}
.datepicker-rtl table tr td span {
  float: right;
}
.datepicker-dropdown {
  top: 0;
  left: 0;
  padding: 4px;
}
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(0, 0, 0, 0.15);
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
  top: -7px;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
  top: -6px;
}
.datepicker-dropdown.datepicker-orient-top:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid rgba(0, 0, 0, 0.15);
}
.datepicker-dropdown.datepicker-orient-top:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #fff;
}
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  table-layout: fixed;
}
.datepicker-inline table{width:100%;}
.datepicker table tr td,
.datepicker table tr th {
  text-align: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: none;
}
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #777777;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.focused {
  background: #eeeeee;
  cursor: pointer;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #777777;
  cursor: default;
}
.datepicker table tr td.highlighted {
  color: #000;
  background-color: #d9edf7;
  border-color: #85c5e5;
  border-radius: 0;
}
.datepicker table tr td.highlighted:focus,
.datepicker table tr td.highlighted.focus {
  color: #000;
  background-color: #afd9ee;
  border-color: #298fc2;
}
.datepicker table tr td.highlighted:hover {
  color: #000;
  background-color: #afd9ee;
  border-color: #52addb;
}
.datepicker table tr td.highlighted:active,
.datepicker table tr td.highlighted.active {
  color: #000;
  background-color: #afd9ee;
  border-color: #52addb;
}
.datepicker table tr td.highlighted:active:hover,
.datepicker table tr td.highlighted.active:hover,
.datepicker table tr td.highlighted:active:focus,
.datepicker table tr td.highlighted.active:focus,
.datepicker table tr td.highlighted:active.focus,
.datepicker table tr td.highlighted.active.focus {
  color: #000;
  background-color: #91cbe8;
  border-color: #298fc2;
}
.datepicker table tr td.highlighted.disabled:hover,
.datepicker table tr td.highlighted[disabled]:hover,
fieldset[disabled] .datepicker table tr td.highlighted:hover,
.datepicker table tr td.highlighted.disabled:focus,
.datepicker table tr td.highlighted[disabled]:focus,
fieldset[disabled] .datepicker table tr td.highlighted:focus,
.datepicker table tr td.highlighted.disabled.focus,
.datepicker table tr td.highlighted[disabled].focus,
fieldset[disabled] .datepicker table tr td.highlighted.focus {
  background-color: #d9edf7;
  border-color: #85c5e5;
}
.datepicker table tr td.highlighted.focused {
  background: #afd9ee;
}
.datepicker table tr td.highlighted.disabled,
.datepicker table tr td.highlighted.disabled:active {
  background: #d9edf7;
  color: #777777;
}
.datepicker table tr td.today {
  color: #000;
  background-color: #ffdb99;
  border-color: #ffb733;
}
.datepicker table tr td.today:focus,
.datepicker table tr td.today.focus {
  color: #000;
  background-color: #ffc966;
  border-color: #b37400;
}
.datepicker table tr td.today:hover {
  color: #000;
  background-color: #ffc966;
  border-color: #f59e00;
}
.datepicker table tr td.today:active,
.datepicker table tr td.today.active {
  color: #000;
  background-color: #ffc966;
  border-color: #f59e00;
}
.datepicker table tr td.today:active:hover,
.datepicker table tr td.today.active:hover,
.datepicker table tr td.today:active:focus,
.datepicker table tr td.today.active:focus,
.datepicker table tr td.today:active.focus,
.datepicker table tr td.today.active.focus {
  color: #000;
  background-color: #ffbc42;
  border-color: #b37400;
}
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today[disabled]:hover,
fieldset[disabled] .datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today[disabled]:focus,
fieldset[disabled] .datepicker table tr td.today:focus,
.datepicker table tr td.today.disabled.focus,
.datepicker table tr td.today[disabled].focus,
fieldset[disabled] .datepicker table tr td.today.focus {
  background-color: #ffdb99;
  border-color: #ffb733;
}
.datepicker table tr td.today.focused {
  background: #ffc966;
}
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:active {
  background: #ffdb99;
  color: #777777;
}
.datepicker table tr td.range {
  color: #000;
  background-color: #eeeeee;
  border-color: #bbbbbb;
  border-radius: 0;
}
.datepicker table tr td.range:focus,
.datepicker table tr td.range.focus {
  color: #000;
  background-color: #d5d5d5;
  border-color: #7c7c7c;
}
.datepicker table tr td.range:hover {
  color: #000;
  background-color: #d5d5d5;
  border-color: #9d9d9d;
}
.datepicker table tr td.range:active,
.datepicker table tr td.range.active {
  color: #000;
  background-color: #d5d5d5;
  border-color: #9d9d9d;
}
.datepicker table tr td.range:active:hover,
.datepicker table tr td.range.active:hover,
.datepicker table tr td.range:active:focus,
.datepicker table tr td.range.active:focus,
.datepicker table tr td.range:active.focus,
.datepicker table tr td.range.active.focus {
  color: #000;
  background-color: #c3c3c3;
  border-color: #7c7c7c;
}
.datepicker table tr td.range.disabled:hover,
.datepicker table tr td.range[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled:focus,
.datepicker table tr td.range[disabled]:focus,
fieldset[disabled] .datepicker table tr td.range:focus,
.datepicker table tr td.range.disabled.focus,
.datepicker table tr td.range[disabled].focus,
fieldset[disabled] .datepicker table tr td.range.focus {
  background-color: #eeeeee;
  border-color: #bbbbbb;
}
.datepicker table tr td.range.focused {
  background: #d5d5d5;
}
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:active {
  background: #eeeeee;
  color: #777777;
}
.datepicker table tr td.range.highlighted {
  color: #000;
  background-color: #e4eef3;
  border-color: #9dc1d3;
}
.datepicker table tr td.range.highlighted:focus,
.datepicker table tr td.range.highlighted.focus {
  color: #000;
  background-color: #c1d7e3;
  border-color: #4b88a6;
}
.datepicker table tr td.range.highlighted:hover {
  color: #000;
  background-color: #c1d7e3;
  border-color: #73a6c0;
}
.datepicker table tr td.range.highlighted:active,
.datepicker table tr td.range.highlighted.active {
  color: #000;
  background-color: #c1d7e3;
  border-color: #73a6c0;
}
.datepicker table tr td.range.highlighted:active:hover,
.datepicker table tr td.range.highlighted.active:hover,
.datepicker table tr td.range.highlighted:active:focus,
.datepicker table tr td.range.highlighted.active:focus,
.datepicker table tr td.range.highlighted:active.focus,
.datepicker table tr td.range.highlighted.active.focus {
  color: #000;
  background-color: #a8c8d8;
  border-color: #4b88a6;
}
.datepicker table tr td.range.highlighted.disabled:hover,
.datepicker table tr td.range.highlighted[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range.highlighted:hover,
.datepicker table tr td.range.highlighted.disabled:focus,
.datepicker table tr td.range.highlighted[disabled]:focus,
fieldset[disabled] .datepicker table tr td.range.highlighted:focus,
.datepicker table tr td.range.highlighted.disabled.focus,
.datepicker table tr td.range.highlighted[disabled].focus,
fieldset[disabled] .datepicker table tr td.range.highlighted.focus {
  background-color: #e4eef3;
  border-color: #9dc1d3;
}
.datepicker table tr td.range.highlighted.focused {
  background: #c1d7e3;
}
.datepicker table tr td.range.highlighted.disabled,
.datepicker table tr td.range.highlighted.disabled:active {
  background: #e4eef3;
  color: #777777;
}
.datepicker table tr td.range.today {
  color: #000;
  background-color: #f7ca77;
  border-color: #f1a417;
}
.datepicker table tr td.range.today:focus,
.datepicker table tr td.range.today.focus {
  color: #000;
  background-color: #f4b747;
  border-color: #815608;
}
.datepicker table tr td.range.today:hover {
  color: #000;
  background-color: #f4b747;
  border-color: #bf800c;
}
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today.active {
  color: #000;
  background-color: #f4b747;
  border-color: #bf800c;
}
.datepicker table tr td.range.today:active:hover,
.datepicker table tr td.range.today.active:hover,
.datepicker table tr td.range.today:active:focus,
.datepicker table tr td.range.today.active:focus,
.datepicker table tr td.range.today:active.focus,
.datepicker table tr td.range.today.active.focus {
  color: #000;
  background-color: #f2aa25;
  border-color: #815608;
}
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today[disabled]:focus,
fieldset[disabled] .datepicker table tr td.range.today:focus,
.datepicker table tr td.range.today.disabled.focus,
.datepicker table tr td.range.today[disabled].focus,
fieldset[disabled] .datepicker table tr td.range.today.focus {
  background-color: #f7ca77;
  border-color: #f1a417;
}
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:active {
  background: #f7ca77;
  color: #777777;
}
.datepicker table tr td.selected,
.datepicker table tr td.selected.highlighted {
  color: #fff;
  background-color: #777777;
  border-color: #555555;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.selected:focus,
.datepicker table tr td.selected.highlighted:focus,
.datepicker table tr td.selected.focus,
.datepicker table tr td.selected.highlighted.focus {
  color: #fff;
  background-color: #5e5e5e;
  border-color: #161616;
}
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.highlighted:hover {
  color: #fff;
  background-color: #5e5e5e;
  border-color: #373737;
}
.datepicker table tr td.selected:active,
.datepicker table tr td.selected.highlighted:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected.highlighted.active {
  color: #fff;
  background-color: #5e5e5e;
  border-color: #373737;
}
.datepicker table tr td.selected:active:hover,
.datepicker table tr td.selected.highlighted:active:hover,
.datepicker table tr td.selected.active:hover,
.datepicker table tr td.selected.highlighted.active:hover,
.datepicker table tr td.selected:active:focus,
.datepicker table tr td.selected.highlighted:active:focus,
.datepicker table tr td.selected.active:focus,
.datepicker table tr td.selected.highlighted.active:focus,
.datepicker table tr td.selected:active.focus,
.datepicker table tr td.selected.highlighted:active.focus,
.datepicker table tr td.selected.active.focus,
.datepicker table tr td.selected.highlighted.active.focus {
  color: #fff;
  background-color: #4c4c4c;
  border-color: #161616;
}
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.highlighted.disabled:hover,
.datepicker table tr td.selected[disabled]:hover,
.datepicker table tr td.selected.highlighted[disabled]:hover,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected.highlighted:hover,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected.highlighted.disabled:focus,
.datepicker table tr td.selected[disabled]:focus,
.datepicker table tr td.selected.highlighted[disabled]:focus,
fieldset[disabled] .datepicker table tr td.selected:focus,
fieldset[disabled] .datepicker table tr td.selected.highlighted:focus,
.datepicker table tr td.selected.disabled.focus,
.datepicker table tr td.selected.highlighted.disabled.focus,
.datepicker table tr td.selected[disabled].focus,
.datepicker table tr td.selected.highlighted[disabled].focus,
fieldset[disabled] .datepicker table tr td.selected.focus,
fieldset[disabled] .datepicker table tr td.selected.highlighted.focus {
  background-color: #777777;
  border-color: #555555;
}
.datepicker table tr td.active,
.datepicker table tr td.active.highlighted {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.active:focus,
.datepicker table tr td.active.highlighted:focus,
.datepicker table tr td.active.focus,
.datepicker table tr td.active.highlighted.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.datepicker table tr td.active:hover,
.datepicker table tr td.active.highlighted:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active.highlighted:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active.highlighted.active {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.datepicker table tr td.active:active:hover,
.datepicker table tr td.active.highlighted:active:hover,
.datepicker table tr td.active.active:hover,
.datepicker table tr td.active.highlighted.active:hover,
.datepicker table tr td.active:active:focus,
.datepicker table tr td.active.highlighted:active:focus,
.datepicker table tr td.active.active:focus,
.datepicker table tr td.active.highlighted.active:focus,
.datepicker table tr td.active:active.focus,
.datepicker table tr td.active.highlighted:active.focus,
.datepicker table tr td.active.active.focus,
.datepicker table tr td.active.highlighted.active.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.highlighted.disabled:hover,
.datepicker table tr td.active[disabled]:hover,
.datepicker table tr td.active.highlighted[disabled]:hover,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active.highlighted:hover,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active.highlighted.disabled:focus,
.datepicker table tr td.active[disabled]:focus,
.datepicker table tr td.active.highlighted[disabled]:focus,
fieldset[disabled] .datepicker table tr td.active:focus,
fieldset[disabled] .datepicker table tr td.active.highlighted:focus,
.datepicker table tr td.active.disabled.focus,
.datepicker table tr td.active.highlighted.disabled.focus,
.datepicker table tr td.active[disabled].focus,
.datepicker table tr td.active.highlighted[disabled].focus,
fieldset[disabled] .datepicker table tr td.active.focus,
fieldset[disabled] .datepicker table tr td.active.highlighted.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  border-radius: 4px;
}
.datepicker table tr td span:hover,
.datepicker table tr td span.focused {
  background: #eeeeee;
}
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #777777;
  cursor: default;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active:focus,
.datepicker table tr td span.active:hover:focus,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active.focus,
.datepicker table tr td span.active:hover.focus,
.datepicker table tr td span.active.disabled.focus,
.datepicker table tr td span.active.disabled:hover.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.datepicker table tr td span.active:active:hover,
.datepicker table tr td span.active:hover:active:hover,
.datepicker table tr td span.active.disabled:active:hover,
.datepicker table tr td span.active.disabled:hover:active:hover,
.datepicker table tr td span.active.active:hover,
.datepicker table tr td span.active:hover.active:hover,
.datepicker table tr td span.active.disabled.active:hover,
.datepicker table tr td span.active.disabled:hover.active:hover,
.datepicker table tr td span.active:active:focus,
.datepicker table tr td span.active:hover:active:focus,
.datepicker table tr td span.active.disabled:active:focus,
.datepicker table tr td span.active.disabled:hover:active:focus,
.datepicker table tr td span.active.active:focus,
.datepicker table tr td span.active:hover.active:focus,
.datepicker table tr td span.active.disabled.active:focus,
.datepicker table tr td span.active.disabled:hover.active:focus,
.datepicker table tr td span.active:active.focus,
.datepicker table tr td span.active:hover:active.focus,
.datepicker table tr td span.active.disabled:active.focus,
.datepicker table tr td span.active.disabled:hover:active.focus,
.datepicker table tr td span.active.active.focus,
.datepicker table tr td span.active:hover.active.focus,
.datepicker table tr td span.active.disabled.active.focus,
.datepicker table tr td span.active.disabled:hover.active.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active:hover.disabled:hover,
.datepicker table tr td span.active.disabled.disabled:hover,
.datepicker table tr td span.active.disabled:hover.disabled:hover,
.datepicker table tr td span.active[disabled]:hover,
.datepicker table tr td span.active:hover[disabled]:hover,
.datepicker table tr td span.active.disabled[disabled]:hover,
.datepicker table tr td span.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active:hover:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active:hover.disabled:focus,
.datepicker table tr td span.active.disabled.disabled:focus,
.datepicker table tr td span.active.disabled:hover.disabled:focus,
.datepicker table tr td span.active[disabled]:focus,
.datepicker table tr td span.active:hover[disabled]:focus,
.datepicker table tr td span.active.disabled[disabled]:focus,
.datepicker table tr td span.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td span.active:focus,
fieldset[disabled] .datepicker table tr td span.active:hover:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active.disabled.focus,
.datepicker table tr td span.active:hover.disabled.focus,
.datepicker table tr td span.active.disabled.disabled.focus,
.datepicker table tr td span.active.disabled:hover.disabled.focus,
.datepicker table tr td span.active[disabled].focus,
.datepicker table tr td span.active:hover[disabled].focus,
.datepicker table tr td span.active.disabled[disabled].focus,
.datepicker table tr td span.active.disabled:hover[disabled].focus,
fieldset[disabled] .datepicker table tr td span.active.focus,
fieldset[disabled] .datepicker table tr td span.active:hover.focus,
fieldset[disabled] .datepicker table tr td span.active.disabled.focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #777777;
}
.datepicker .datepicker-switch {
  width: 145px;
}
.datepicker .datepicker-switch,
.datepicker .prev,
.datepicker .next,
.datepicker tfoot tr th {
  cursor: pointer;
}
.datepicker .datepicker-switch:hover,
.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker tfoot tr th:hover {
  background: #eeeeee;
}
.datepicker .prev.disabled,
.datepicker .next.disabled {
  visibility: hidden;
}
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}
.input-group.date .input-group-addon {
  cursor: pointer;
}
.input-daterange {
  width: 100%;
}
.input-daterange input {
  text-align: center;
}
.input-daterange input:first-child {
  border-radius: 3px 0 0 3px;
}
.input-daterange input:last-child {
  border-radius: 0 3px 3px 0;
}
.input-daterange .input-group-addon {
  width: auto;
  min-width: 16px;
  padding: 4px 5px;
  line-height: 1.42857143;
  border-width: 1px 0;
  margin-left: -5px;
  margin-right: -5px;
}
/*# sourceMappingURL=bootstrap-datepicker3.css.map */
/*!
 * Generated using the Bootstrap Customizer (https://getbootstrap.com/docs/3.4/customize/)
 */
/*!
 * Bootstrap v3.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
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 {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type='checkbox'],
input[type='radio'] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  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-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !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: '';
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    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 th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: 'Brown', 'Century Gothic', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
  font-weight: 400;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #138587;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #0a4344;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 0.375em;
}
.img-thumbnail {
  padding: 0.25em;
  line-height: 1.5;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 0.25em;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  border: 0;
  border-top: 1px solid #f3f3f3;
}
.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;
}
[role='button'] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 300;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: 400;
  line-height: 1;
  color: inherit;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}
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: 75%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 12px;
  margin-bottom: 12px;
}
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: 87%;
}
h1,
.h1 {
  font-size: 4em;
  line-height: 1.15;
  letter-spacing: -0.033203125em;
}
h2,
.h2 {
  font-size: 2.5em;
  line-height: 1.2;
  letter-spacing: -0.03125em;
}
h3,
.h3 {
  font-size: 2.125em;
  line-height: 1.25;
  letter-spacing: -0.0294117647em;
}
h4,
.h4 {
  font-size: 1.5em;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.017857142857em;
}
h5,
.h5 {
  font-size: 1.25em;
  line-height: 1.333;
  font-weight: 400;
  letter-spacing: -0.025em;
}
h6,
.h6 {
  font-size: 1.125em;
  line-height: 1.444;
  font-weight: 700;
  letter-spacing: -0.0277777778em;
}
p {
  margin: 0 0 0.85em;
}
.lead {
  margin-bottom: 1.5em;
  font-size: 1.125em;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 48em) {
  .lead {
    font-size: 1.5em;
  }
}
small,
.small {
  font-size: 87%;
}
mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #bbbbbb;
}
.text-primary {
  color: #052c65;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #031734;
}
.text-success {
  color: #148687;
}
a.text-success:hover,
a.text-success:focus {
  color: #0d5a5b;
}
.text-info {
  color: #055160;
}
a.text-info:hover,
a.text-info:focus {
  color: #022830;
}
.text-warning {
  color: #fcc02c;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f2ad03;
}
.text-danger {
  color: #d93c43;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #bd252c;
}
.bg-primary {
  color: #fff;
  background-color: #cfe2ef;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #a9cbe2;
}
.bg-success {
  background-color: #eefafa;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c7eeee;
}
.bg-info {
  background-color: #cff4fc;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #9fe9f9;
}
.bg-warning {
  background-color: #fff9e9;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #ffebb6;
}
.bg-danger {
  background-color: #fef4f3;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #fac9c4;
}
.border-primary {
  border-color: #052c65;
}
a.border-primary:hover,
a.border-primary:focus {
  border-color: #031734;
}
.border-success {
  border-color: #148687;
}
a.border-success:hover,
a.border-success:focus {
  border-color: #0d5a5b;
}
.border-info {
  border-color: #055160;
}
a.border-info:hover,
a.border-info:focus {
  border-color: #022830;
}
.border-warning {
  border-color: #fcc02c;
}
a.border-warning:hover,
a.border-warning:focus {
  border-color: #f2ad03;
}
.border-danger {
  border-color: #d93c43;
}
a.border-danger:hover,
a.border-danger:focus {
  border-color: #bd252c;
}
.page-header {
  padding-bottom: 0.6875em;
  margin: 3em 0 1.5em;
  border-bottom: 1px solid #f3f3f3;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 0.75em;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -0.3125em;
}
.list-inline > li {
  display: inline-block;
  padding-left: 0.3125em;
  padding-right: 0.3125em;
}
dl {
  margin-top: 0;
  margin-bottom: 1.5em;
}
dt,
dd {
  line-height: 1.5;
}
dt {
  font-weight: 700;
}
dd {
  margin-left: 0;
}
@media (min-width: 62em) {
  .dl-horizontal dt {
    float: left;
    width: -8.75em;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 11.25em;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #f3f3f3;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 0.6em 1.2em;
  margin: 0 0 1.2em;
  font-size: 1.25em;
  border-left: 0.25em solid #f3f3f3;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.5;
  color: #bbbbbb;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 0.75em;
  padding-left: 0;
  text-align: right;
  border-right: 0.3125em solid #f3f3f3;
  border-left: 0;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
address {
  margin-bottom: 1.5em;
  font-style: normal;
  line-height: 1.5;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
}
code {
  padding: 0.125em 0.25em;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 0.25em;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #ffffff;
  background-color: #333333;
  border-radius: 0.1875em;
  -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%;
  font-weight: 700;
  -webkit-box-shadow: none;
  box-shadow: none;
}
pre {
  display: block;
  padding: 0.75em;
  margin: 0 0 0.75em;
  font-size: 0.9375em;
  line-height: 1.5;
  color: #646464;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 0.25em;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 22em;
  overflow-y: scroll;
}
.container {
  padding-right: 0.5em;
  padding-left: 0.5em;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 47.9375em) {
  .container {
    padding-left: 1.25em;
    padding-right: 1.25em;
  }
}
@media (min-width: 48em) {
  .container {
    width: 46em;
  }
}
@media (min-width: 62em) {
  .container {
    width: 59.75em;
  }
}
@media (min-width: 80em) {
  .container {
    width: 75.75em;
  }
}
.container-fluid {
  padding-right: 0.5em;
  padding-left: 0.5em;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -0.5em;
  margin-left: -0.5em;
}
.row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.row-no-gutters [class*='col-'] {
  padding-right: 0;
  padding-left: 0;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 0.5em;
  padding-left: 0.5em;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  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;
}
.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%;
}
.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%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 48em) {
  .col-sm-1,
  .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-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    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%;
  }
}
@media (min-width: 62em) {
  .col-md-1,
  .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-md-10,
  .col-md-11,
  .col-md-12 {
    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%;
  }
}
@media (min-width: 75em) {
  .col-lg-1,
  .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-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .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%;
  }
}
table {
  background-color: transparent;
}
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;
}
caption {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  color: #bbbbbb;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5em;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 0.5em;
  line-height: 1.5;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #dddddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #dddddd;
}
.table .table {
  background-color: #ffffff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 0.3125em;
}
.table-bordered {
  border: 1px solid #dddddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #dddddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 18px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #dddddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 1em;
  font-size: 1.5em;
  line-height: inherit;
  color: #646464;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 0.3125em;
  font-weight: 700;
}
input[type='search'] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
input[type='radio'],
input[type='checkbox'] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type='radio'][disabled],
input[type='checkbox'][disabled],
input[type='radio'].disabled,
input[type='checkbox'].disabled,
fieldset[disabled] input[type='radio'],
fieldset[disabled] input[type='checkbox'] {
  cursor: not-allowed;
}
input[type='file'] {
  display: block;
}
input[type='range'] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type='file']:focus,
input[type='radio']:focus,
input[type='checkbox']:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 1.375em;
  font-size: 1em;
  line-height: 1.5;
  color: #9d9d9d;
}
.form-control {
  display: block;
  width: 100%;
  height: 2.625em;
  padding: 0.4375em 0.8125em;
  font-size: 1em;
  font-weight: normal;
  line-height: 1.5;
  color: #222;
  background-color: #ffffff;
  background-image: none;
  border: 1.75px solid #222;
  border-radius: 0.25em;
  -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 ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0.5em rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0.5em rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999999;
}
.form-control::-webkit-input-placeholder {
  color: #999999;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #f9f9f9;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type='date'].form-control,
  input[type='time'].form-control,
  input[type='datetime-local'].form-control,
  input[type='month'].form-control {
    line-height: 26.75px;
  }
  input[type='date'].input-sm,
  input[type='time'].input-sm,
  input[type='datetime-local'].input-sm,
  input[type='month'].input-sm,
  .input-group-sm input[type='date'],
  .input-group-sm input[type='time'],
  .input-group-sm input[type='datetime-local'],
  .input-group-sm input[type='month'] {
    line-height: 23.625px;
  }
  input[type='date'].input-lg,
  input[type='time'].input-lg,
  input[type='datetime-local'].input-lg,
  input[type='month'].input-lg,
  .input-group-lg input[type='date'],
  .input-group-lg input[type='time'],
  .input-group-lg input[type='datetime-local'],
  .input-group-lg input[type='month'] {
    line-height: 30.25px;
  }
}
.form-group {
  margin-bottom: 0.9375em;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.radio label,
.checkbox label {
  min-height: 24px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
  color: black;
}
.radio input[type='radio'],
.radio-inline input[type='radio'],
.checkbox input[type='checkbox'],
.checkbox-inline input[type='checkbox'] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
.form-control-static {
  min-height: 2.5em;
  padding-top: 1.375em;
  padding-bottom: 1.375em;
  margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}
.input-sm {
  height: 23.625px;
  padding: 0.3125em 0.625em;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 0.1875em;
}
select.input-sm {
  height: 23.625px;
  line-height: 23.625px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 23.625px;
  padding: 0.3125em 0.625em;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 0.1875em;
}
.form-group-sm select.form-control {
  height: 23.625px;
  line-height: 23.625px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 23.625px;
  min-height: 38px;
  padding: 1.3125em 0.625em;
  font-size: 14px;
  line-height: 1.5;
}
.input-lg {
  height: 30.25px;
  padding: 0.625em 1em;
  font-size: 20px;
  line-height: 1.3333333;
  border-radius: 0.375em;
}
select.input-lg {
  height: 30.25px;
  line-height: 30.25px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 30.25px;
  padding: 0.625em 1em;
  font-size: 20px;
  line-height: 1.3333333;
  border-radius: 0.375em;
}
.form-group-lg select.form-control {
  height: 30.25px;
  line-height: 30.25px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 30.25px;
  min-height: 44px;
  padding: 1.625em 1em;
  font-size: 20px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 26.75px;
  height: 26.75px;
  line-height: 26.75px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 30.25px;
  height: 30.25px;
  line-height: 30.25px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 23.625px;
  height: 23.625px;
  line-height: 23.625px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}
.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-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.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-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #bf484e;
}
.has-error .form-control {
  border-color: #bf484e;
  -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: #9d373c;
  -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: #bf484e;
  background-color: #fbf3f3;
  border-color: #bf484e;
}
.has-error .form-control-feedback {
  color: #bf484e;
}
.has-feedback label ~ .form-control-feedback {
  top: 0;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 0.3125em;
  margin-bottom: 0.625em;
  color: #a4a4a4;
}
@media (min-width: 48em) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type='radio'],
  .form-inline .checkbox input[type='checkbox'] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 1.375em;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 25.375px;
}
.form-horizontal .form-group {
  margin-right: -0.5em;
  margin-left: -0.5em;
}
@media (min-width: 48em) {
  .form-horizontal .control-label {
    padding-top: 1.375em;
    margin-bottom: 0;
    text-align: right;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 0.5em;
}
@media (min-width: 48em) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 1.625em;
    font-size: 1.25em;
  }
}
@media (min-width: 48em) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 1.3125em;
    font-size: 0.875em;
  }
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1.75px solid transparent;
  padding: 0.375em 0.75em;
  font-size: 16px;
  line-height: 1.75;
  border-radius: 0.25em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  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;
  filter: alpha(opacity=65);
  opacity: 0.65;
  -webkit-box-shadow: none;
  box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-default {
  color: #333333;
  background-color: #ffffff;
  border-color: #cccccc;
}
.btn-default:focus,
.btn-default.focus {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  background-color: #ffffff;
  border-color: #cccccc;
}
.btn-default .badge {
  color: #ffffff;
  background-color: #333333;
}
.btn-welldone {
  color: #333333;
  background-color: #ffffff;
  border-color: #287d7a;
}
.btn-welldone:focus,
.btn-welldone.focus {
  color: #333333;
  background-color: #eefafa;
  border-color: #154341;
}
.btn-welldone:hover {
  color: #333333;
  background-color: #eefafa;
  border-color: #091c1b;
}
.btn-welldone:active,
.btn-welldone.active,
.open > .dropdown-toggle.btn-welldone {
  color: #333333;
  background-color: #eefafa;
  background-image: none;
  border-color: #091c1b;
}
.btn-welldone:active:hover,
.btn-welldone.active:hover,
.open > .dropdown-toggle.btn-welldone:hover,
.btn-welldone:active:focus,
.btn-welldone.active:focus,
.open > .dropdown-toggle.btn-welldone:focus,
.btn-welldone:active.focus,
.btn-welldone.active.focus,
.open > .dropdown-toggle.btn-welldone.focus {
  color: #333333;
  background-color: #eefafa;
  border-color: #154341;
}
.btn-welldone.disabled:hover,
.btn-welldone[disabled]:hover,
fieldset[disabled] .btn-welldone:hover,
.btn-welldone.disabled:focus,
.btn-welldone[disabled]:focus,
fieldset[disabled] .btn-welldone:focus,
.btn-welldone.disabled.focus,
.btn-welldone[disabled].focus,
fieldset[disabled] .btn-welldone.focus {
  background-color: #ffffff;
  border-color: #287d7a;
}
.btn-welldone .badge {
  color: #ffffff;
  background-color: #333333;
}
.btn-primary {
  color: #ffffff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary-end {
  color: #138587;
  background-color: #fff;
  border-color: #106f71;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff;
  background-color: #286090;
  border-color: #122b40;
}
.btn-primary:hover {
  color: #ffffff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #286090;
  background-image: none;
  border-color: #204d74;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #ffffff;
  background-color: #204d74;
  border-color: #122b40;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #ffffff;
}
.btn-success {
  color: #ffffff;
  background-color: #138587;
  border-color: #138587;
}
.btn-success-new {
  color: #138587;
  background-color: #ffffff;
  border-color: #138587;
  border-radius: 300px;
}
.btn-transperent {
  color: #106f71;
  border-color: #106f71;
}
.btn-end {
}
.btn-success:focus,
.btn-success.focus {
  color: #ffffff;
  background-color: #0d595a;
  border-color: #083a3b;
}
.btn-success:hover {
  color: #ffffff;
  background-color: #0d595a;
  border-color: #0d595a;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #ffffff;
  background-color: #0d595a;
  background-image: none;
  border-color: #0d595a;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #ffffff;
  background-color: #083a3b;
  border-color: #083a3b;
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
  background-color: #138587;
  border-color: #138587;
}
.btn-success .badge {
  color: #138587;
  background-color: #ffffff;
}
.btn-info {
  color: #ffffff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:focus,
.btn-info.focus {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #ffffff;
  background-color: #31b0d5;
  background-image: none;
  border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #ffffff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #ffffff;
}
.btn-warning {
  color: #ffffff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #ffffff;
  background-color: #ec971f;
  background-image: none;
  border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #ffffff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #ffffff;
}
.btn-danger {
  color: #ffffff;
  background-color: #eb1e25;
  border-color: #dc141a;
}
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff;
  background-color: #c51118;
  border-color: #67090c;
}
.btn-danger:hover {
  color: #ffffff;
  background-color: #c51118;
  border-color: #a40f14;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #ffffff;
  background-color: #c51118;
  background-image: none;
  border-color: #a40f14;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #ffffff;
  background-color: #a40f14;
  border-color: #67090c;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #eb1e25;
  border-color: #dc141a;
}
.btn-danger .badge {
  color: #eb1e25;
  background-color: #ffffff;
}
.btn-link {
  font-weight: 400;
  color: #138587;
  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:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #0a4344;
  text-decoration: none;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #bbbbbb;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 0.625em 1em;
  font-size: 20px;
  line-height: 1.3333333;
  border-radius: 0.375em;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 0.3125em 0.625em;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 0.1875em;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 0.125em 0.3125em;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 0.1875em;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-capsule {
  border-radius: 10em;
}
.btn-block-emailandid {
  display: block;
  font-weight: 400;
  font-size: 14px;
  width: fit-content;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type='submit'].btn-block,
input[type='reset'].btn-block,
input[type='button'].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 0.25em dashed;
  border-top: 0.25em solid \9;
  border-right: 0.25em solid transparent;
  border-left: 0.25em solid transparent;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 30px;
  padding: 5px 0;
  margin: 0px 0 0;
  font-size: 1em;
  text-align: left;
  list-style: none;
  background-color: #ffffff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25em;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 11px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.5;
  color: #646464;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #575757;
  text-decoration: none;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #bbbbbb;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropdown-menu-left {
  right: auto;
  left: 0;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #bbbbbb;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: '';
  border-top: 0;
  border-bottom: 0.25em dashed;
  border-bottom: 0.25em solid \9;
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 48em) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  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 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-right: 0.5em;
  padding-left: 0.5em;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 0.75em;
  padding-left: 0.75em;
}
.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 .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 0.3125em 0.3125em 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 0.3125em 0.3125em;
}
.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 {
  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:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-left-radius: 0.25em;
  border-top-right-radius: 0.25em;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0.25em;
  border-bottom-left-radius: 0.25em;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.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 {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle='buttons'] > .btn input[type='radio'],
[data-toggle='buttons'] > .btn-group > .btn input[type='radio'],
[data-toggle='buttons'] > .btn input[type='checkbox'],
[data-toggle='buttons'] > .btn-group > .btn input[type='checkbox'] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*='col-'] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group .form-control:focus {
  z-index: 3;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 30.25px;
  padding: 0.625em 1em;
  font-size: 20px;
  line-height: 1.3333333;
  border-radius: 0.375em;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 30.25px;
  line-height: 30.25px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 23.625px;
  padding: 0.3125em 0.625em;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 0.1875em;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 23.625px;
  line-height: 23.625px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .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 {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 0.375em 0.75em;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  /* color: #9d9d9d; */
  text-align: center;
  background-color: #f3f3f3;
  border: 1px solid #555;
  border-radius: 0.25em;
}
.input-group-addon.input-sm {
  padding: 0.3125em 0.625em;
  font-size: 14px;
  border-radius: 0.1875em;
}
.input-group-addon.input-lg {
  padding: 0.625em 1em;
  font-size: 20px;
  border-radius: 0.375em;
}
.input-group-addon input[type='radio'],
.input-group-addon input[type='checkbox'] {
  margin-top: 0;
}
.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:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.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 {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 0.625em 0.9375em;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #fff;
}
.nav > li.disabled > a {
  color: #bbbbbb;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #bbbbbb;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #fff;
  border-color: #138587;
}
.nav .nav-divider {
  height: 1px;
  margin: 11px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #9d9d9d;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: 0.25em 0.25em 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #646464 #646464 #9d9d9d;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #646464;
  cursor: default;
  background-color: #ffffff;
  border: 1px solid #9d9d9d;
  border-bottom-color: transparent;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 48em) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 0.25em;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #9d9d9d;
}
@media (min-width: 48em) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #9d9d9d;
    border-radius: 0.25em 0.25em 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #ffffff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 0.25em;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #ffffff;
  background-color: #337ab7;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 48em) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 0.25em;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #9d9d9d;
}
@media (min-width: 48em) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #9d9d9d;
    border-radius: 0.25em 0.25em 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #ffffff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 24px;
  border: 1px solid transparent;
}
@media (min-width: 48em) {
  .navbar {
    border-radius: 0.25em;
  }
}
@media (min-width: 48em) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  padding-right: 0.5em;
  padding-left: 0.5em;
  overflow-x: visible;
  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);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 48em) {
  .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-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 22em;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
@media (min-width: 48em) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -0.5em;
  margin-left: -0.5em;
}
@media (min-width: 48em) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 48em) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-brand {
  float: left;
  height: 2.5em;
  padding: 0.65em 0.4em;
  font-size: 1.25em;
  line-height: 1.25em;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 48em) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -0.5em;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 0.5625em 0.625em;
  margin-right: 0.5em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0.25em;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 1.375em;
  height: 0.125em;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 0.25em;
}
@media (min-width: 48em) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 0.40625em 0;
}
.navbar-nav > li > a {
  padding-top: 0.625em;
  padding-bottom: 0.625em;
  line-height: 1.5;
}
@media (max-width: 61.9375em) {
  .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 > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 1.5em;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 48em) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 13px;
    padding-bottom: 13px;
  }
}
.navbar-form {
  padding: 0.625em 0.5em;
  margin-right: -0.5em;
  margin-left: -0.5em;
  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);
  margin-top: 11.625px;
  margin-bottom: 11.625px;
}
@media (min-width: 48em) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type='radio'],
  .navbar-form .checkbox input[type='checkbox'] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 47.9375em) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 48em) {
  .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-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-top-left-radius: 0.25em;
  border-top-right-radius: 0.25em;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 11.625px;
  margin-bottom: 11.625px;
}
.navbar-btn.btn-sm {
  margin-top: 13.1875px;
  margin-bottom: 13.1875px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 13px;
  margin-bottom: 13px;
}
@media (min-width: 48em) {
  .navbar-text {
    float: left;
    margin-right: 0.5em;
    margin-left: 0.5em;
  }
}
@media (min-width: 48em) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -0.5em;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777777;
}
.navbar-default .navbar-nav > li > a {
  color: #777777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #cccccc;
  background-color: transparent;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #555555;
  background-color: #e7e7e7;
}
@media (max-width: 47.9375em) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #cccccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-toggle {
  border-color: #dddddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #dddddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-link {
  color: #777777;
}
.navbar-default .navbar-link:hover {
  color: #333333;
}
.navbar-default .btn-link {
  color: #777777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #cccccc;
}
.navbar-inverse {
  background-color: #222222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #e2e2e2;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #ffffff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #e2e2e2;
}
.navbar-inverse .navbar-nav > li > a {
  color: #e2e2e2;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #ffffff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #ffffff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444444;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  color: #ffffff;
  background-color: #080808;
}
@media (max-width: 47.9375em) {
  .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: #e2e2e2;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #ffffff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #ffffff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-toggle {
  border-color: #333333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #ffffff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-link {
  color: #e2e2e2;
}
.navbar-inverse .navbar-link:hover {
  color: #ffffff;
}
.navbar-inverse .btn-link {
  color: #e2e2e2;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #ffffff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444444;
}
.breadcrumb {
  padding: 0.5em 0.9375em;
  margin-bottom: 24px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 0.25em;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #cccccc;
  content: '/\00a0';
}
.breadcrumb > .active {
  color: #bbbbbb;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 24px 0;
  border-radius: 0.25em;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 0.375em 0.75em;
  margin-left: -1px;
  line-height: 1.5;
  color: #138587;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #dddddd;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #0a4344;
  background-color: #f3f3f3;
  border-color: #dddddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 0.25em;
  border-bottom-left-radius: 0.25em;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 0.25em;
  border-bottom-right-radius: 0.25em;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #ffffff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #bbbbbb;
  cursor: not-allowed;
  background-color: #ffffff;
  border-color: #dddddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 0.625em 1em;
  font-size: 20px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 0.375em;
  border-bottom-left-radius: 0.375em;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 0.375em;
  border-bottom-right-radius: 0.375em;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 0.3125em 0.625em;
  font-size: 14px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 0.1875em;
  border-bottom-left-radius: 0.1875em;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 0.1875em;
  border-bottom-right-radius: 0.1875em;
}
.pager {
  padding-left: 0;
  margin: 24px 0;
  text-align: center;
  list-style: none;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 0.9375em;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #f3f3f3;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #bbbbbb;
  cursor: not-allowed;
  background-color: #ffffff;
}
.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}
a.label:hover,
a.label:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #bbbbbb;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #a2a2a2;
}
.label-primary {
  background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090;
}
.label-success {
  background-color: #138587;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #0d595a;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}
.label-danger {
  background-color: #eb1e25;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c51118;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #bbbbbb;
  border-radius: 0.625em;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #138587;
  background-color: #ffffff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.thumbnail {
  display: block;
  padding: 0.25em;
  margin-bottom: 24px;
  line-height: 1.5;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 0.25em;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-right: auto;
  margin-left: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #138587;
}
.thumbnail .caption {
  padding: 0.5625em;
  color: #646464;
}
.alert {
  padding: 0.9375em;
  margin-bottom: 24px;
  border: 1px solid transparent;
  border-radius: 0.25em;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 0.3125em;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 20.9375em;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #bf484e;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@-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: 24px;
  margin-bottom: 24px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 0.25em;
  -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%;
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
  text-align: center;
  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 ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  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.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #138587;
}
.progress-striped .progress-bar-success {
  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
  );
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  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
  );
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.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
  );
}
.progress-bar-danger {
  background-color: #eb1e25;
}
.progress-striped .progress-bar-danger {
  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:first-child {
  margin-top: 0;
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.media-body {
  width: 10000px;
}
.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}
.media-right,
.media > .pull-right {
  padding-left: 10px;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}
.media-middle {
  vertical-align: middle;
}
.media-bottom {
  vertical-align: bottom;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
}
.list-group-item:first-child {
  border-top-left-radius: 0.25em;
  border-top-right-radius: 0.25em;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25em;
  border-bottom-left-radius: 0.25em;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  color: #bbbbbb;
  cursor: not-allowed;
  background-color: #f3f3f3;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #bbbbbb;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #ffffff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}
a.list-group-item,
button.list-group-item {
  color: #555555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  color: #555555;
  text-decoration: none;
  background-color: #f5f5f5;
}
button.list-group-item {
  width: 100%;
  text-align: left;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #bf484e;
  background-color: #f2dede;
}
a.list-group-item-danger,
button.list-group-item-danger {
  color: #bf484e;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #bf484e;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #bf484e;
  border-color: #bf484e;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 24px;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 0.25em;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
  padding: 0.9375em;
}
.panel-heading {
  padding: 0.625em 0.9375em;
  border-bottom: 1px solid transparent;
  border-top-left-radius: -0.75em;
  border-top-right-radius: -0.75em;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}
.panel-footer {
  padding: 0.625em 0.9375em;
  background-color: #f5f5f5;
  border-top: 1px solid #dddddd;
  border-bottom-right-radius: -0.75em;
  border-bottom-left-radius: -0.75em;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.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: -0.75em;
  border-top-right-radius: -0.75em;
}
.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: -0.75em;
  border-bottom-left-radius: -0.75em;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 0.9375em;
  padding-left: 0.9375em;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: -0.75em;
  border-top-right-radius: -0.75em;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: -0.75em;
  border-top-right-radius: -0.75em;
}
.panel > .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 td:first-child,
.panel > .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 td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th: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 th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: -0.75em;
}
.panel > .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 td:last-child,
.panel > .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 td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th: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 th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: -0.75em;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: -0.75em;
  border-bottom-left-radius: -0.75em;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: -0.75em;
  border-bottom-left-radius: -0.75em;
}
.panel > .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 td:first-child,
.panel > .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 td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: -0.75em;
}
.panel > .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 td:last-child,
.panel > .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 td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: -0.75em;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #dddddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}
.panel-group {
  margin-bottom: 24px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 0.25em;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #dddddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #dddddd;
}
.panel-default {
  border-color: #dddddd;
}
.panel-default > .panel-heading {
  color: #646464;
  background-color: #f5f5f5;
  border-color: #dddddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #dddddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #646464;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #dddddd;
}
.panel-primary {
  border-color: #337ab7;
}
.panel-primary > .panel-heading {
  color: #ffffff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #ffffff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}
.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  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 {
  color: #31708f;
  background-color: #d9edf7;
  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 {
  color: #8a6d3b;
  background-color: #fcf8e3;
  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 {
  color: #bf484e;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #bf484e;
}
.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 iframe,
.embed-responsive embed,
.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;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 0.25em;
  -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: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
  padding: 24px;
  border-radius: 0.375em;
}
.well-sm {
  padding: 9px;
  border-radius: 0.1875em;
}
.close {
  float: right;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  filter: alpha(opacity=20);
  opacity: 0.2;
}
.close:hover,
.close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.5;
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: 'Brown', 'Century Gothic', 'Segoe UI', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 14px;
  filter: alpha(opacity=0);
  opacity: 0;
}
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: 0.9;
}
.tooltip.top {
  padding: 0.3125em 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 0.3125em;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 0.3125em 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 0.3125em;
  margin-left: -3px;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -0.3125em;
  border-width: 0.3125em 0.3125em 0;
  border-top-color: #000000;
}
.tooltip.top-left .tooltip-arrow {
  right: 0.3125em;
  bottom: 0;
  margin-bottom: -0.3125em;
  border-width: 0.3125em 0.3125em 0;
  border-top-color: #000000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 0.3125em;
  margin-bottom: -0.3125em;
  border-width: 0.3125em 0.3125em 0;
  border-top-color: #000000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -0.3125em;
  border-width: 0.3125em 0.3125em 0.3125em 0;
  border-right-color: #000000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -0.3125em;
  border-width: 0.3125em 0 0.3125em 0.3125em;
  border-left-color: #000000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -0.3125em;
  border-width: 0 0.3125em 0.3125em;
  border-bottom-color: #000000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 0.3125em;
  margin-top: -0.3125em;
  border-width: 0 0.3125em 0.3125em;
  border-bottom-color: #000000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 0.3125em;
  margin-top: -0.3125em;
  border-width: 0 0.3125em 0.3125em;
  border-bottom-color: #000000;
}
.tooltip-inner {
  max-width: 12.5em;
  padding: 3px 8px;
  color: #ffffff;
  text-align: center;
  background-color: #000000;
  border-radius: 0.25em;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 24em;
  padding: 1px;
  font-family: 'Brown', 'Century Gothic', 'Segoe UI', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 16px;
  background-color: #ffffff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.375em;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -0.625em;
}
.popover.right {
  margin-left: 0.625em;
}
.popover.bottom {
  margin-top: 0.625em;
}
.popover.left {
  margin-left: -0.625em;
}
.popover > .arrow {
  border-width: 0.625em;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow:after {
  content: '';
  border-width: 0.625em;
}
.popover.top > .arrow {
  bottom: -0.625em;
  left: 50%;
  margin-left: -0.625em;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -0.625em;
  content: ' ';
  border-top-color: #ffffff;
  border-bottom-width: 0;
}
.popover.right > .arrow {
  top: 50%;
  left: -0.625em;
  margin-top: -0.625em;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
}
.popover.right > .arrow:after {
  bottom: -0.625em;
  left: 1px;
  content: ' ';
  border-right-color: #ffffff;
  border-left-width: 0;
}
.popover.bottom > .arrow {
  top: -0.625em;
  left: 50%;
  margin-left: -0.625em;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -0.625em;
  content: ' ';
  border-top-width: 0;
  border-bottom-color: #ffffff;
}
.popover.left > .arrow {
  top: 50%;
  right: -0.625em;
  margin-top: -0.625em;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  right: 1px;
  bottom: -0.625em;
  content: ' ';
  border-right-width: 0;
  border-left-color: #ffffff;
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 16px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: -0.625em -0.625em 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: ' ';
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 47.9375em) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 47.9375em) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 47.9375em) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 47.9375em) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 62em) and (max-width: 79.9375em) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 62em) and (max-width: 79.9375em) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 62em) and (max-width: 79.9375em) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 62em) and (max-width: 79.9375em) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 80em) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 80em) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 80em) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 80em) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 47.9375em) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 62em) and (max-width: 79.9375em) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 80em) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}

#cc-main {
  background: transparent;
  color: var(--cc-primary-color);
  font-family: var(--cc-font-family);
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.15;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  position: fixed;
  z-index: var(--cc-z-index);
}
#cc-main :after,
#cc-main :before,
#cc-main a,
#cc-main button,
#cc-main div,
#cc-main h2,
#cc-main input,
#cc-main p,
#cc-main span {
  all: unset;
  box-sizing: border-box;
}
#cc-main .pm__badge,
#cc-main button {
  all: initial;
  box-sizing: border-box;
  color: unset;
  visibility: unset;
}
#cc-main .pm__badge,
#cc-main a,
#cc-main button,
#cc-main input {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 100%;
  line-height: normal;
  margin: 0;
  outline: revert;
  outline-offset: 2px;
  overflow: hidden;
}
#cc-main table,
#cc-main tbody,
#cc-main td,
#cc-main th,
#cc-main thead,
#cc-main tr {
  all: revert;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
:root {
  --cc-font-family: -apple-system, BlinkMacSystemFont, "Brown", "Century Gothic", "Segoe UI", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --cc-modal-border-radius: 0;
  --cc-btn-border-radius: 0;
  --cc-modal-transition-duration: 0.25s;
  --cc-link-color: var(--cc-btn-primary-bg);
  --cc-modal-margin: 1rem;
  --cc-z-index: 2147483647;
  --cc-bg: #fff;
  --cc-primary-color: #2c2f31;
  --cc-secondary-color: #5e6266;
  --cc-btn-primary-bg: #00d88f;
  --cc-btn-primary-color: #fff;
  --cc-btn-primary-border-color: var(--cc-btn-primary-bg);
  --cc-btn-primary-hover-bg: #e6e6e6;
  --cc-btn-primary-hover-color: #333;
  --cc-btn-primary-hover-border-color: var(--cc-btn-primary-hover-bg);
  --cc-btn-secondary-bg: #eaeff2;
  --cc-btn-secondary-color: var(--cc-primary-color);
  --cc-btn-secondary-border-color: var(--cc-btn-secondary-bg);
  --cc-btn-secondary-hover-bg: #d4dae0;
  --cc-btn-secondary-hover-color: #000;
  --cc-btn-secondary-hover-border-color: #d4dae0;
  --cc-separator-border-color: #f0f4f7;
  --cc-toggle-on-bg: var(--cc-btn-primary-bg);
  --cc-toggle-off-bg: #667481;
  --cc-toggle-on-knob-bg: #fff;
  --cc-toggle-off-knob-bg: var(--cc-toggle-on-knob-bg);
  --cc-toggle-enabled-icon-color: var(--cc-bg);
  --cc-toggle-disabled-icon-color: var(--cc-bg);
  --cc-toggle-readonly-bg: #d5dee2;
  --cc-toggle-readonly-knob-bg: #fff;
  --cc-toggle-readonly-knob-icon-color: var(--cc-toggle-readonly-bg);
  --cc-section-category-border: var(--cc-cookie-category-block-bg);
  --cc-cookie-category-block-bg: #f0f4f7;
  --cc-cookie-category-block-border: #f0f4f7;
  --cc-cookie-category-block-hover-bg: #e9eff4;
  --cc-cookie-category-block-hover-border: #e9eff4;
  --cc-cookie-category-expanded-block-bg: transparent;
  --cc-cookie-category-expanded-block-hover-bg: #dee4e9;
  --cc-overlay-bg: rgba(0, 0, 0, 0.65);
  --cc-webkit-scrollbar-bg: var(--cc-section-category-border);
  --cc-webkit-scrollbar-hover-bg: var(--cc-btn-primary-hover-bg);
  --cc-footer-bg: var(--cc-btn-secondary-bg);
  --cc-footer-color: var(--cc-secondary-color);
  --cc-footer-border-color: #e4eaed;
  --cc-pm-toggle-border-radius: 4em;
}
#cc-main.cc--rtl {
  direction: rtl;
}
#cc-main .cm__title,
#cc-main a,
#cc-main b,
#cc-main em,
#cc-main strong {
  font-weight: 600;
}
#cc-main button > span {
  pointer-events: none;
}
#cc-main .cc__link,
#cc-main a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  font-weight: 600;
  position: relative;
  transition: background-size 0.25s, color 0.25s ease;
}
#cc-main .cc__link:hover,
#cc-main a:hover {
  background-size: 100% 1px;
  color: var(--cc-primary-color);
}
#cc-main .cc__link {
  color: var(--cc-link-color);
}
#cc-main .cm__desc,
#cc-main .pm__body {
  overscroll-behavior: auto contain;
  scrollbar-width: thin;
}
@media screen and (min-width: 640px) {
  #cc-main ::-webkit-scrollbar,
  #cc-main ::-webkit-scrollbar-thumb,
  #cc-main ::-webkit-scrollbar-track {
    all: revert;
  }
  #cc-main ::-webkit-scrollbar-thumb {
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background: var(--cc-toggle-readonly-bg);
    border: 0.25rem solid var(--cc-bg);
    border-radius: 1rem;
  }
  #cc-main ::-webkit-scrollbar-thumb:hover {
    background: var(--cc-toggle-off-bg);
  }
  #cc-main ::-webkit-scrollbar {
    background: transparent;
    width: 12px;
  }
}
html.disable--interaction.show--consent,
html.disable--interaction.show--consent body {
  height: auto !important;
  overflow: hidden !important;
}
@media (prefers-reduced-motion) {
  #cc-main {
    --cc-modal-transition-duration: 0s;
  }
}
.cc--darkmode {
  --cc-bg: #161a1c;
  --cc-primary-color: #ebf3f6;
  --cc-secondary-color: #aebbc5;
  --cc-btn-primary-bg: #c2d0e0;
  --cc-btn-primary-color: var(--cc-bg);
  --cc-btn-primary-border-color: var(--cc-btn-primary-bg);
  --cc-btn-primary-hover-bg: #98a7b6;
  --cc-btn-primary-hover-color: #000;
  --cc-btn-primary-hover-border-color: var(--cc-btn-primary-hover-bg);
  --cc-btn-secondary-bg: #242c31;
  --cc-btn-secondary-color: var(--cc-primary-color);
  --cc-btn-secondary-border-color: var(--cc-btn-secondary-bg);
  --cc-btn-secondary-hover-bg: #353d43;
  --cc-btn-secondary-hover-color: #fff;
  --cc-btn-secondary-hover-border-color: var(--cc-btn-secondary-hover-bg);
  --cc-separator-border-color: #222a30;
  --cc-toggle-on-bg: var(--cc-btn-primary-bg);
  --cc-toggle-off-bg: #525f6b;
  --cc-toggle-on-knob-bg: var(--cc-btn-primary-color);
  --cc-toggle-off-knob-bg: var(--cc-btn-primary-color);
  --cc-toggle-enabled-icon-color: var(--cc-btn-primary-color);
  --cc-toggle-disabled-icon-color: var(--cc-btn-primary-color);
  --cc-toggle-readonly-bg: #343e45;
  --cc-toggle-readonly-knob-bg: #5f6b72;
  --cc-toggle-readonly-knob-icon-color: var(--cc-toggle-readonly-bg);
  --cc-section-category-border: #1e2428;
  --cc-cookie-category-block-bg: #1e2428;
  --cc-cookie-category-block-border: var(--cc-section-category-border);
  --cc-cookie-category-block-hover-bg: #242c31;
  --cc-cookie-category-block-hover-border: #232a2f;
  --cc-cookie-category-expanded-block-bg: transparent;
  --cc-cookie-category-expanded-block-hover-bg: var(--cc-toggle-readonly-bg);
  --cc-overlay-bg: rgba(0, 0, 0, 0.65);
  --cc-webkit-scrollbar-bg: var(--cc-section-category-border);
  --cc-webkit-scrollbar-hover-bg: var(--cc-btn-primary-hover-bg);
  --cc-footer-bg: #0c0e0f;
  --cc-footer-color: var(--cc-secondary-color);
  --cc-footer-border-color: #060809;
}
.cc--darkmode #cc-main {
  color-scheme: dark;
}
#cc-main .cm {
  background: var(--cc-bg);
  border-radius: var(--cc-modal-border-radius);
  box-shadow: 0 0.625em 1.875em rgba(0, 0, 2, 0.3);
  display: flex;
  flex-direction: column;
  max-width: 24rem;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  transform: translateY(1.6em);
  visibility: hidden;
  z-index: 1;
}
#cc-main .cm--top {
  top: var(--cc-modal-margin);
}
#cc-main .cm--middle {
  top: 50%;
  transform: translateY(calc(-50% + 1.6em));
}
#cc-main .cm--bottom {
  bottom: var(--cc-modal-margin);
}
#cc-main .cm--center {
  left: var(--cc-modal-margin);
  margin: 0 auto;
  right: var(--cc-modal-margin);
  width: unset;
}
#cc-main .cm--left {
  left: var(--cc-modal-margin);
  margin-right: var(--cc-modal-margin);
}
#cc-main .cm--right {
  margin-left: var(--cc-modal-margin);
  right: var(--cc-modal-margin);
}
#cc-main .cm__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
#cc-main .cm__btns,
#cc-main .cm__links {
  padding: 1rem 1.3rem;
  width: unset;
}
#cc-main .cm__texts {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0 0;
}
#cc-main .cm__desc,
#cc-main .cm__title {
  padding: 0 1.3rem;
}
#cc-main .cm__title {
  font-size: 1.05em;
}
#cc-main .cm__title + .cm__desc {
  margin-top: 1.1em;
}
#cc-main .cm__desc {
  color: var(--cc-secondary-color);
  font-size: 0.9em;
  line-height: 1.5;
  max-height: 40vh;
  overflow-x: visible;
  overflow-y: auto;
  padding-bottom: 1em;
}
#cc-main .cm__btns {
  border-top: 1px solid var(--cc-separator-border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#cc-main .cm__btn-group {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
}
#cc-main .cm__btn + .cm__btn,
#cc-main .cm__btn-group + .cm__btn-group {
  margin-top: 0.375rem;
}
#cc-main .cm--flip .cm__btn + .cm__btn,
#cc-main .cm--flip .cm__btn-group + .cm__btn-group {
  margin-bottom: 0.375rem;
  margin-top: 0;
}
#cc-main .cm--inline .cm__btn + .cm__btn {
  margin-left: 0.375rem;
  margin-top: 0;
}
#cc-main .cm--inline.cm--flip .cm__btn + .cm__btn {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0.375rem;
}
#cc-main .cm--inline.cm--flip .cm__btn-group + .cm__btn-group {
  margin-bottom: 0.375rem;
  margin-right: 0;
}
#cc-main .cm--wide .cm__btn + .cm__btn,
#cc-main .cm--wide .cm__btn-group + .cm__btn-group {
  margin-left: 0.375rem;
  margin-top: 0;
}
#cc-main .cm--wide.cm--flip .cm__btn + .cm__btn,
#cc-main .cm--wide.cm--flip .cm__btn-group + .cm__btn-group {
  margin-bottom: 0;
  margin-right: 0.375rem;
}
#cc-main .cm--bar:not(.cm--inline) .cm__btn-group--uneven,
#cc-main .cm--wide .cm__btn-group--uneven {
  display: flex;
  flex: 1;
  justify-content: space-between;
}
#cc-main .cm--bar:not(.cm--inline).cm--flip .cm__btn-group--uneven,
#cc-main .cm--wide.cm--flip .cm__btn-group--uneven {
  flex-direction: row-reverse;
}
#cc-main .cm__btn {
  background: var(--cc-btn-primary-bg);
  border: 1px solid var(--cc-btn-primary-border-color);
  border-radius: var(--cc-btn-border-radius);
  color: var(--cc-btn-primary-color);
  font-size: 0.82em;
  font-weight: 600;
  min-height: 42px;
  padding: 0.5em 1em;
  text-align: center;
}
#cc-main .cm__btn:hover {
  background: var(--cc-btn-primary-hover-bg);
  border-color: var(--cc-btn-primary-hover-border-color);
  color: var(--cc-btn-primary-hover-color);
}
#cc-main .cm__btn--secondary {
  background: var(--cc-btn-secondary-bg);
  border-color: var(--cc-btn-secondary-border-color);
  color: var(--cc-btn-secondary-color);
}
#cc-main .cm__btn--secondary:hover {
  background: var(--cc-btn-secondary-hover-bg);
  border-color: var(--cc-btn-secondary-hover-border-color);
  color: var(--cc-btn-secondary-hover-color);
}
#cc-main .cm__btn--close {
  border-radius: 0;
  border-bottom-left-radius: var(--cc-btn-border-radius);
  border-right: none;
  border-top: none;
  display: none;
  font-size: 1em;
  height: 42px;
  min-width: auto !important;
  overflow: hidden;
  padding: 0 !important;
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
}
#cc-main .cm__btn--close svg {
  stroke: var(--cc-btn-primary-color);
  transform: scale(0.5);
  transition: stroke 0.15s ease;
}
#cc-main .cm__btn--close:hover svg {
  stroke: var(--cc-btn-primary-hover-color);
}
#cc-main .cm__btn--close.cm__btn--secondary svg {
  stroke: var(--cc-btn-secondary-color);
}
#cc-main .cm__btn--close.cm__btn--secondary:hover svg {
  stroke: var(--cc-btn-secondary-hover-color);
}
#cc-main .cm__btn--close + .cm__texts .cm__title {
  padding-right: 3rem;
}
#cc-main .cm--inline .cm__btn-group {
  grid-auto-flow: column;
}
#cc-main .cm__footer {
  background: var(--cc-footer-bg);
  border-top: 1px solid var(--cc-footer-border-color);
  color: var(--cc-footer-color);
  padding: 0.4em 0 0.5em;
}
#cc-main .cm__links {
  display: flex;
  flex-direction: row;
  padding-bottom: 0;
  padding-top: 0;
}
#cc-main .cm__link-group {
  display: flex;
  flex-direction: row;
  font-size: 0.8em;
  width: 100%;
}
#cc-main .cm__link-group > * + * {
  margin-left: 1.3rem;
}
#cc-main .cm--flip .cm__btn:last-child {
  grid-row: 1;
}
#cc-main .cm--inline.cm--flip .cm__btn:last-child {
  grid-column: 1;
}
#cc-main .cm--box .cm__btn--close {
  display: block;
}
#cc-main .cm--box.cm--flip .cm__btns {
  flex-direction: column-reverse;
}
#cc-main .cm--box.cm--wide {
  max-width: 36em;
}
#cc-main .cm--box.cm--wide .cm__btns {
  flex-direction: row;
  justify-content: space-between;
}
#cc-main .cm--box.cm--wide .cm__btn-group {
  grid-auto-flow: column;
}
#cc-main .cm--box.cm--wide .cm__btn {
  min-width: 120px;
  padding-left: 1.8em;
  padding-right: 1.8em;
}
#cc-main .cm--box.cm--wide.cm--flip .cm__btns {
  flex-direction: row-reverse;
}
#cc-main .cm--box.cm--wide.cm--flip .cm__btn:last-child {
  grid-column: 1;
}
#cc-main .cm--cloud {
  max-width: 54em;
  width: unset;
}
#cc-main .cm--cloud .cm__body {
  flex-direction: row;
}
#cc-main .cm--cloud .cm__texts {
  flex: 1;
}
#cc-main .cm--cloud .cm__desc {
  max-height: 9.4em;
}
#cc-main .cm--cloud .cm__btns {
  border-left: 1px solid var(--cc-separator-border-color);
  border-top: none;
  max-width: 23em;
}
#cc-main .cm--cloud .cm__btn-group {
  flex-direction: column;
}
#cc-main .cm--cloud .cm__btn {
  min-width: 19em;
}
#cc-main .cm--cloud.cm--flip .cm__btn-group,
#cc-main .cm--cloud.cm--flip .cm__btns {
  flex-direction: column-reverse;
}
#cc-main .cm--cloud.cm--inline .cm__btn-group {
  flex-direction: row;
}
#cc-main .cm--cloud.cm--inline .cm__btn {
  min-width: 10em;
}
#cc-main .cm--cloud.cm--inline.cm--flip .cm__btn-group {
  flex-direction: row-reverse;
}
#cc-main .cm--bar {
  border-radius: 0;
  left: 0;
  margin: 0;
  max-width: unset;
  opacity: 1;
  right: 0;
  transform: translateY(0);
  width: 100vw;
  --cc-modal-transition-duration: 0.35s;
}
#cc-main .cm--bar.cm--top {
  top: 0;
  transform: translateY(-100%);
}
#cc-main .cm--bar.cm--bottom {
  bottom: 0;
  transform: translateY(100%);
}
#cc-main .cm--bar .cm__body,
#cc-main .cm--bar .cm__links {
  margin: 0 auto;
  max-width: 55em;
  width: 100%;
}
#cc-main .cm--bar .cm__body {
  padding: 0.5em 0 0.9em;
}
#cc-main .cm--bar .cm__btns {
  border-top: none;
  flex-direction: row;
  justify-content: space-between;
}
#cc-main .cm--bar .cm__btn-group {
  grid-auto-flow: column;
}
#cc-main .cm--bar:not(.cm--inline) .cm__btn + .cm__btn,
#cc-main .cm--bar:not(.cm--inline) .cm__btn-group + .cm__btn-group {
  margin-left: 0.375rem;
  margin-top: 0;
}
#cc-main .cm--bar .cm__btn {
  min-width: 120px;
  padding-left: 2em;
  padding-right: 2em;
}
#cc-main .cm--bar.cm--flip:not(.cm--inline) .cm__btn + .cm__btn,
#cc-main .cm--bar.cm--flip:not(.cm--inline) .cm__btn-group + .cm__btn-group {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0.375rem;
}
#cc-main .cm--bar.cm--flip .cm__btns {
  flex-direction: row-reverse;
}
#cc-main .cm--bar.cm--flip .cm__btn:last-child {
  grid-column: 1;
}
#cc-main .cm--bar.cm--inline .cm__body,
#cc-main .cm--bar.cm--inline .cm__links {
  max-width: 74em;
}
#cc-main .cm--bar.cm--inline .cm__body {
  flex-direction: row;
  padding: 0;
}
#cc-main .cm--bar.cm--inline .cm__btns {
  flex-direction: column;
  justify-content: center;
  max-width: 23em;
}
#cc-main .cm--bar.cm--inline.cm--flip .cm__btns {
  flex-direction: column-reverse;
}
#cc-main .cc--anim .cm,
#cc-main .cc--anim.cm-wrapper:before {
  transition: opacity var(--cc-modal-transition-duration) ease, visibility var(--cc-modal-transition-duration) ease, transform var(--cc-modal-transition-duration) ease;
}
#cc-main .cc--anim .cm__btn,
#cc-main .cc--anim .cm__close {
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.disable--interaction #cc-main .cm-wrapper:before {
  background: var(--cc-overlay-bg);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 0;
}
.show--consent #cc-main .cc--anim .cm {
  opacity: 1;
  transform: translateY(0);
  visibility: visible !important;
}
.show--consent #cc-main .cc--anim .cm--middle {
  transform: translateY(-50%);
}
.show--consent #cc-main .cc--anim .cm--bar {
  transform: translateY(0);
}
.show--consent #cc-main .cc--anim.cm-wrapper:before {
  opacity: 1;
  visibility: visible;
}
#cc-main.cc--rtl .cm__btn--close {
  border-bottom-left-radius: unset;
  border-bottom-right-radius: var(--cc-btn-border-radius);
  left: 0;
  right: unset;
}
#cc-main.cc--rtl .cm__btn--close + .cm__texts .cm__title {
  padding-left: 3rem !important;
  padding-right: 1.3rem;
}
#cc-main.cc--rtl .cm--inline .cm__btn + .cm__btn {
  margin-left: 0;
  margin-right: 0.375rem;
}
#cc-main.cc--rtl .cm--inline.cm--flip .cm__btn + .cm__btn {
  margin-left: 0.375rem;
  margin-right: 0;
}
#cc-main.cc--rtl .cm:not(.cm--inline).cm--bar .cm__btn + .cm__btn,
#cc-main.cc--rtl .cm:not(.cm--inline).cm--bar .cm__btn-group + .cm__btn-group,
#cc-main.cc--rtl .cm:not(.cm--inline).cm--wide .cm__btn + .cm__btn,
#cc-main.cc--rtl .cm:not(.cm--inline).cm--wide .cm__btn-group + .cm__btn-group {
  margin-left: 0;
  margin-right: 0.375rem;
}
#cc-main.cc--rtl .cm:not(.cm--inline).cm--bar.cm--flip .cm__btn + .cm__btn,
#cc-main.cc--rtl .cm:not(.cm--inline).cm--wide.cm--flip .cm__btn + .cm__btn {
  margin-left: 0.375rem;
  margin-right: 0;
}
#cc-main.cc--rtl .cm__link-group > * + * {
  margin-left: 0;
  margin-right: 1.3rem;
}
@media screen and (max-width: 640px) {
  #cc-main {
    --cc-modal-margin: 0.5em;
  }
  #cc-main .cm {
    max-width: none !important;
    width: auto !important;
  }
  #cc-main .cm__body {
    flex-direction: column !important;
    padding: 0 !important;
  }
  #cc-main .cm__btns,
  #cc-main .cm__desc,
  #cc-main .cm__links,
  #cc-main .cm__title {
    padding-left: 1.1rem !important;
    padding-right: 1.1rem !important;
  }
  #cc-main .cm__btns {
    border-left: none !important;
    border-top: 1px solid var(--cc-separator-border-color) !important;
    flex-direction: column !important;
    max-width: none !important;
    min-width: auto !important;
  }
  #cc-main .cm__btn + .cm__btn,
  #cc-main .cm__btn-group + .cm__btn-group {
    margin: 0.375rem 0 0 !important;
  }
  #cc-main .cm--flip .cm__btn + .cm__btn,
  #cc-main .cm--flip .cm__btn-group + .cm__btn-group {
    margin-bottom: 0.375rem !important;
    margin-top: 0 !important;
  }
  #cc-main .cm__btn-group {
    display: flex !important;
    flex-direction: column !important;
    min-width: auto !important;
  }
  #cc-main .cm__btn {
    flex: auto !important;
  }
  #cc-main .cm__link-group {
    justify-content: center !important;
  }
  #cc-main .cm--flip .cm__btn-group,
  #cc-main .cm--flip .cm__btns {
    flex-direction: column-reverse !important;
  }
}
#cc-main .pm-wrapper {
  position: relative;
  z-index: 2;
}
#cc-main .pm {
  background: var(--cc-bg);
  border-radius: var(--cc-modal-border-radius);
  box-shadow: 0 0.625em 1.875em rgba(0, 0, 2, 0.3);
  display: flex;
  flex-direction: column;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  visibility: hidden;
  width: 100%;
  width: unset;
  z-index: 1;
}
#cc-main svg {
  fill: none;
  width: 100%;
}
#cc-main .pm__body,
#cc-main .pm__footer,
#cc-main .pm__header {
  padding: 1em 1.4em;
}
#cc-main .pm__header {
  align-items: center;
  border-bottom: 1px solid var(--cc-separator-border-color);
  display: flex;
  justify-content: space-between;
}
#cc-main .pm__title {
  align-items: center;
  display: flex;
  flex: 1;
  font-weight: 600;
  margin-right: 2em;
}
#cc-main .pm__close-btn {
  background: var(--cc-btn-secondary-bg);
  border: 1px solid var(--cc-btn-secondary-border-color);
  border-radius: var(--cc-btn-border-radius);
  height: 40px;
  position: relative;
  transition: all 0.15s ease;
  width: 40px;
}
#cc-main .pm__close-btn span {
  display: flex;
  height: 100%;
  width: 100%;
}
#cc-main .pm__close-btn svg {
  stroke: var(--cc-btn-secondary-color);
  transform: scale(0.5);
  transition: stroke 0.15s ease;
}
#cc-main .pm__close-btn:hover {
  background: var(--cc-btn-secondary-hover-bg);
  border-color: var(--cc-btn-secondary-hover-border-color);
}
#cc-main .pm__close-btn:hover svg {
  stroke: var(--cc-btn-secondary-hover-color);
}
#cc-main .pm__body {
  flex: 1;
  overflow-y: auto;
  overflow-y: overlay;
}
#cc-main .pm__section,
#cc-main .pm__section--toggle {
  border-radius: var(--cc-btn-border-radius);
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5em;
}
#cc-main .pm__section--toggle .pm__section-desc-wrapper {
  border: 1px solid var(--cc-cookie-category-block-border);
  border-radius: var(--cc-btn-border-radius);
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  display: none;
  margin-top: 0 !important;
  overflow: hidden;
}
#cc-main .pm__section {
  border: 1px solid var(--cc-separator-border-color);
  padding: 1em;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
#cc-main .pm__section:first-child {
  border: none;
  margin-bottom: 2em;
  margin-top: 0;
  padding: 0;
  transition: none;
}
#cc-main .pm__section:not(:first-child):hover {
  background: var(--cc-cookie-category-block-bg);
  border-color: var(--cc-cookie-category-block-border);
}
#cc-main .pm__section-toggles + .pm__section {
  margin-top: 2em;
}
#cc-main .pm__section--toggle {
  background: var(--cc-cookie-category-block-bg);
  border-top: none;
  margin-bottom: 0.375rem;
}
#cc-main .pm__section--toggle .pm__section-title {
  align-items: center;
  background: var(--cc-cookie-category-block-bg);
  border: 1px solid var(--cc-cookie-category-block-border);
  display: flex;
  justify-content: space-between;
  min-height: 58px;
  padding: 1.1em 5.4em 1.1em 1.2em;
  position: relative;
  transition: background-color 0.25s ease, border-color 0.25s ease;
  width: 100%;
}
#cc-main .pm__section--toggle .pm__section-title:hover {
  background: var(--cc-cookie-category-block-hover-bg);
  border-color: var(--cc-cookie-category-block-hover-border);
}
#cc-main .pm__section--toggle .pm__section-desc {
  margin-top: 0;
  padding: 1em;
}
#cc-main .pm__section--toggle.is-expanded {
  --cc-cookie-category-block-bg: var(--cc-cookie-category-expanded-block-bg);
  --cc-cookie-category-block-border: var(--cc-cookie-category-expanded-block-hover-bg);
}
#cc-main .pm__section--toggle.is-expanded .pm__section-title {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#cc-main .pm__section--toggle.is-expanded .pm__section-arrow svg {
  transform: scale(0.5) rotate(180deg);
}
#cc-main .pm__section--toggle.is-expanded .pm__section-desc-wrapper {
  display: flex;
}
#cc-main .pm__section--expandable .pm__section-title {
  cursor: pointer;
  padding-left: 3.4em;
}
#cc-main .pm__section--expandable .pm__section-arrow {
  background: var(--cc-toggle-readonly-bg);
  border-radius: 100%;
  display: flex;
  height: 20px;
  justify-content: center;
  left: 18px;
  pointer-events: none;
  position: absolute;
  width: 20px;
}
#cc-main .pm__section--expandable .pm__section-arrow svg {
  stroke: var(--cc-btn-secondary-color);
  transform: scale(0.5);
}
#cc-main .pm__section-title-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}
#cc-main .pm__section-title-wrapper + .pm__section-desc-wrapper {
  margin-top: 0.85em;
}
#cc-main .pm__section-title {
  border-radius: var(--cc-btn-border-radius);
  font-size: 0.95em;
  font-weight: 600;
}
#cc-main .pm__badge {
  align-items: center;
  background: var(--cc-btn-secondary-bg);
  border-radius: 5em;
  color: var(--cc-secondary-color);
  display: flex;
  flex: none;
  font-size: 0.8em;
  font-weight: 600;
  height: 23px;
  justify-content: center;
  margin-left: 1em;
  min-width: 23px;
  overflow: hidden;
  padding: 0 0.6em 1px;
  position: relative;
  text-align: center;
  white-space: nowrap;
  width: auto;
}
#cc-main .pm__service-counter {
  background: var(--cc-btn-primary-bg);
  color: var(--cc-btn-primary-color);
  padding: 0;
  width: 23px;
}
#cc-main .pm__service-counter[data-counterlabel] {
  padding: 0 0.6em 1px;
  width: auto;
}
#cc-main .section__toggle,
#cc-main .section__toggle-wrapper,
#cc-main .toggle__icon,
#cc-main .toggle__label {
  border-radius: var(--cc-pm-toggle-border-radius);
  height: 23px;
  transform: translateZ(0);
  width: 50px;
}
#cc-main .section__toggle-wrapper {
  cursor: pointer;
  position: absolute;
  right: 18px;
  z-index: 1;
}
#cc-main .toggle-service {
  height: 19px;
  position: relative;
  right: 0;
  width: 42px;
}
#cc-main .toggle-service .section__toggle,
#cc-main .toggle-service .toggle__icon,
#cc-main .toggle-service .toggle__label {
  height: 19px;
  width: 42px;
}
#cc-main .toggle-service .toggle__icon {
  position: relative;
}
#cc-main .toggle-service .toggle__icon-circle {
  height: 19px;
  width: 19px;
}
#cc-main .toggle-service .section__toggle:checked ~ .toggle__icon .toggle__icon-circle {
  transform: translateX(23px);
}
#cc-main .pm__section--toggle:nth-child(2) .section__toggle-wrapper:after {
  display: none !important;
}
#cc-main .section__toggle {
  border: 0;
  cursor: pointer;
  display: block;
  left: 0;
  margin: 0;
  position: absolute;
  top: 0;
}
#cc-main .section__toggle:disabled {
  cursor: not-allowed;
}
#cc-main .toggle__icon {
  background: var(--cc-toggle-off-bg);
  box-shadow: 0 0 0 1px var(--cc-toggle-off-bg);
  display: flex;
  flex-direction: row;
  pointer-events: none;
  position: absolute;
  transition: all 0.25s ease;
}
#cc-main .toggle__icon-circle {
  background: var(--cc-toggle-off-knob-bg);
  border: none;
  border-radius: var(--cc-pm-toggle-border-radius);
  box-shadow: 0 1px 2px rgba(24, 32, 3, 0.36);
  display: block;
  height: 23px;
  left: 0;
  position: absolute;
  top: 0;
  transition: transform 0.25s ease, background-color 0.25s ease;
  width: 23px;
}
#cc-main .toggle__icon-off,
#cc-main .toggle__icon-on {
  height: 100%;
  position: absolute;
  transition: opacity 0.15s ease;
  width: 100%;
}
#cc-main .toggle__icon-on {
  opacity: 0;
  transform: rotate(45deg);
}
#cc-main .toggle__icon-on svg {
  stroke: var(--cc-toggle-on-bg);
  transform: scale(0.55) rotate(-45deg);
}
#cc-main .toggle__icon-off {
  opacity: 1;
}
#cc-main .toggle__icon-off svg {
  stroke: var(--cc-toggle-off-bg);
  transform: scale(0.55);
}
#cc-main .section__toggle:checked ~ .toggle__icon {
  background: var(--cc-toggle-on-bg);
  box-shadow: 0 0 0 1px var(--cc-toggle-on-bg);
}
#cc-main .section__toggle:checked ~ .toggle__icon .toggle__icon-circle {
  background-color: var(--cc-toggle-on-knob-bg);
  transform: translateX(27px);
}
#cc-main .section__toggle:checked ~ .toggle__icon .toggle__icon-on {
  opacity: 1;
}
#cc-main .section__toggle:checked ~ .toggle__icon .toggle__icon-off {
  opacity: 0;
}
#cc-main .section__toggle:checked:disabled ~ .toggle__icon {
  background: var(--cc-toggle-readonly-bg);
  box-shadow: 0 0 0 1px var(--cc-toggle-readonly-bg);
}
#cc-main .section__toggle:checked:disabled ~ .toggle__icon .toggle__icon-circle {
  background: var(--cc-toggle-readonly-knob-bg);
  box-shadow: none;
}
#cc-main .section__toggle:checked:disabled ~ .toggle__icon svg {
  stroke: var(--cc-toggle-readonly-knob-icon-color);
}
#cc-main .toggle__label {
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1;
}
#cc-main .pm__section-desc-wrapper {
  color: var(--cc-secondary-color);
  display: flex;
  flex-direction: column;
  font-size: 0.9em;
}
#cc-main .pm__section-desc-wrapper > :not(:last-child) {
  border-bottom: 1px solid var(--cc-cookie-category-block-border);
}
#cc-main .pm__section-services {
  display: flex;
  flex-direction: column;
}
#cc-main .pm__service {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0.4em 1.2em;
  position: relative;
  transition: background-color 0.15s ease;
}
#cc-main .pm__service:hover {
  background-color: var(--cc-cookie-category-block-hover-bg);
}
#cc-main .pm__service-header {
  align-items: center;
  display: flex;
  margin-right: 1em;
  width: 100%;
}
#cc-main .pm__service-icon {
  border: 2px solid;
  border-radius: 100%;
  height: 8px;
  margin-left: 6px;
  margin-right: 20px;
  margin-top: 1px;
  min-width: 8px;
}
#cc-main .pm__service-title {
  font-size: 0.95em;
  width: 100%;
  word-break: break-word;
}
#cc-main .pm__section-desc {
  line-height: 1.5em;
}
#cc-main .pm__section-table {
  border-collapse: collapse;
  font-size: 0.9em;
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-align: left;
  width: 100%;
}
#cc-main .pm__table-caption {
  text-align: left;
}
#cc-main .pm__table-caption,
#cc-main .pm__table-head > tr {
  border-bottom: 1px dashed var(--cc-separator-border-color);
  color: var(--cc-primary-color);
  font-weight: 600;
}
#cc-main .pm__table-tr {
  transition: background-color 0.15s ease;
}
#cc-main .pm__table-tr:hover {
  background: var(--cc-cookie-category-block-hover-bg);
}
#cc-main .pm__table-caption,
#cc-main .pm__table-td,
#cc-main .pm__table-th {
  padding: 0.625em 0.625em 0.625em 1.2em;
  vertical-align: top;
}
#cc-main .pm__footer {
  border-top: 1px solid var(--cc-separator-border-color);
  display: flex;
  justify-content: space-between;
}
#cc-main .pm__btn-group {
  display: flex;
}
#cc-main .pm__btn + .pm__btn,
#cc-main .pm__btn-group + .pm__btn-group {
  margin-left: 0.375rem;
}
#cc-main .pm--flip .pm__btn + .pm__btn,
#cc-main .pm--flip .pm__btn-group + .pm__btn-group {
  margin-left: 0;
  margin-right: 0.375rem;
}
#cc-main .pm__btn {
  background: var(--cc-btn-primary-bg);
  border: 1px solid var(--cc-btn-primary-border-color);
  border-radius: var(--cc-btn-border-radius);
  color: var(--cc-btn-primary-color);
  flex: auto;
  font-size: 0.82em;
  font-weight: 600;
  min-height: 42px;
  min-width: 110px;
  padding: 0.5em 1.5em;
  text-align: center;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
#cc-main .pm__btn:hover {
  background: var(--cc-btn-primary-hover-bg);
  border-color: var(--cc-btn-primary-hover-border-color);
  color: var(--cc-btn-primary-hover-color);
}
#cc-main .pm__btn--secondary {
  background: var(--cc-btn-secondary-bg);
  border-color: var(--cc-btn-secondary-border-color);
  color: var(--cc-btn-secondary-color);
}
#cc-main .pm__btn--secondary:hover {
  background: var(--cc-btn-secondary-hover-bg);
  border-color: var(--cc-btn-secondary-hover-border-color);
  color: var(--cc-btn-secondary-hover-color);
}
#cc-main .pm--box {
  height: calc(100% - 2em);
  left: var(--cc-modal-margin);
  margin: 0 auto;
  max-height: 37.5em;
  max-width: 43em;
  right: var(--cc-modal-margin);
  top: 50%;
  transform: translateY(calc(-50% + 1.6em));
}
#cc-main .pm--box.pm--flip .pm__btn-group,
#cc-main .pm--box.pm--flip .pm__footer {
  flex-direction: row-reverse;
}
#cc-main .pm--bar {
  border-radius: 0;
  bottom: 0;
  height: 100%;
  margin: 0;
  max-height: none;
  max-width: 29em;
  opacity: 1;
  top: 0;
  width: 100%;
  --cc-modal-transition-duration: 0.35s;
}
#cc-main .pm--bar .pm__section-table,
#cc-main .pm--bar .pm__table-body,
#cc-main .pm--bar .pm__table-td,
#cc-main .pm--bar .pm__table-th,
#cc-main .pm--bar .pm__table-tr {
  display: block;
}
#cc-main .pm--bar .pm__table-head {
  display: none;
}
#cc-main .pm--bar .pm__table-caption {
  display: block;
}
#cc-main .pm--bar .pm__table-tr:not(:last-child) {
  border-bottom: 1px solid var(--cc-separator-border-color);
}
#cc-main .pm--bar .pm__table-td {
  display: flex;
  justify-content: space-between;
}
#cc-main .pm--bar .pm__table-td:before {
  color: var(--cc-primary-color);
  content: attr(data-column);
  flex: 1;
  font-weight: 600;
  min-width: 100px;
  overflow: hidden;
  padding-right: 2em;
  text-overflow: ellipsis;
}
#cc-main .pm--bar .pm__table-td > div {
  flex: 3;
}
#cc-main .pm--bar:not(.pm--wide) .pm__body,
#cc-main .pm--bar:not(.pm--wide) .pm__footer,
#cc-main .pm--bar:not(.pm--wide) .pm__header {
  padding: 1em 1.3em;
}
#cc-main .pm--bar:not(.pm--wide) .pm__btn-group,
#cc-main .pm--bar:not(.pm--wide) .pm__footer {
  flex-direction: column;
}
#cc-main .pm--bar:not(.pm--wide) .pm__btn + .pm__btn,
#cc-main .pm--bar:not(.pm--wide) .pm__btn-group + .pm__btn-group {
  margin: 0.375rem 0 0;
}
#cc-main .pm--bar:not(.pm--wide).pm--flip .pm__btn-group,
#cc-main .pm--bar:not(.pm--wide).pm--flip .pm__footer {
  flex-direction: column-reverse;
}
#cc-main .pm--bar:not(.pm--wide).pm--flip .pm__btn + .pm__btn,
#cc-main .pm--bar:not(.pm--wide).pm--flip .pm__btn-group + .pm__btn-group {
  margin-bottom: 0.375rem;
  margin-top: 0;
}
#cc-main .pm--bar:not(.pm--wide) .pm__badge {
  display: none;
}
#cc-main .pm--bar.pm--left {
  left: 0;
  transform: translateX(-100%);
}
#cc-main .pm--bar.pm--right {
  right: 0;
  transform: translateX(100%);
}
#cc-main .pm--bar.pm--wide {
  max-width: 35em;
}
#cc-main .pm--bar.pm--wide .pm__body,
#cc-main .pm--bar.pm--wide .pm__footer,
#cc-main .pm--bar.pm--wide .pm__header {
  padding: 1em 1.4em;
}
#cc-main .pm--bar.pm--wide.pm--flip .pm__btn-group,
#cc-main .pm--bar.pm--wide.pm--flip .pm__footer {
  flex-direction: row-reverse;
}
#cc-main .pm-overlay {
  background: var(--cc-overlay-bg);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 1;
}
#cc-main .cc--anim .pm,
#cc-main .cc--anim .pm-overlay {
  transition: opacity var(--cc-modal-transition-duration) ease, visibility var(--cc-modal-transition-duration) ease, transform var(--cc-modal-transition-duration) ease;
}
.show--preferences #cc-main .cc--anim .pm {
  opacity: 1;
  visibility: visible !important;
}
.show--preferences #cc-main .cc--anim .pm--box {
  transform: translateY(-50%);
}
.show--preferences #cc-main .cc--anim .pm--bar {
  transform: translateX(0);
}
.show--preferences #cc-main .cc--anim .pm-overlay {
  opacity: 1;
  visibility: visible;
}
#cc-main.cc--rtl .pm__service-header {
  margin-left: 1em;
  margin-right: 0;
}
#cc-main.cc--rtl .pm__section-arrow {
  left: unset;
  right: 18px;
}
#cc-main.cc--rtl .section__toggle-wrapper {
  left: 18px;
  right: unset;
  transform-origin: left;
}
#cc-main.cc--rtl .toggle-service {
  left: 0;
}
#cc-main.cc--rtl .pm__service-icon {
  margin-left: 20px;
  margin-right: 5px;
}
#cc-main.cc--rtl .pm__section--toggle .pm__section-title {
  padding-left: 5.4em;
  padding-right: 1.2em;
}
#cc-main.cc--rtl .pm__section--expandable .pm__section-title {
  padding-right: 3.4em;
}
#cc-main.cc--rtl .pm__badge {
  margin-left: unset;
  margin-right: 1em;
}
#cc-main.cc--rtl .toggle__icon-circle {
  transform: translateX(27px);
}
#cc-main.cc--rtl .toggle-service .toggle__icon-circle {
  transform: translateX(23px);
}
#cc-main.cc--rtl .section__toggle:checked ~ .toggle__icon .toggle__icon-circle {
  transform: translateX(0);
}
#cc-main.cc--rtl .pm__table-td,
#cc-main.cc--rtl .pm__table-th {
  padding-left: unset;
  padding-right: 1.2em;
  text-align: right;
}
#cc-main.cc--rtl .pm__table-td {
  padding-left: unset;
  padding-right: 1.2em;
}
#cc-main.cc--rtl .pm__table-td:before {
  padding-left: 2em;
  padding-right: unset;
}
#cc-main.cc--rtl .pm__btn + .pm__btn,
#cc-main.cc--rtl .pm__btn-group + .pm__btn-group {
  margin-left: 0;
  margin-right: 0.375rem;
}
#cc-main.cc--rtl .pm--flip .pm__btn + .pm__btn,
#cc-main.cc--rtl .pm--flip .pm__btn-group + .pm__btn-group {
  margin-left: 0.375rem;
  margin-right: 0;
}
#cc-main.cc--rtl .pm--flip.pm--bar:not(.pm--wide) .pm__btn + .pm__btn,
#cc-main.cc--rtl .pm--flip.pm--bar:not(.pm--wide) .pm__btn-group + .pm__btn-group {
  margin-left: 0;
}
@media screen and (max-width: 640px) {
  #cc-main .pm {
    border-radius: 0;
    bottom: 0;
    height: auto;
    left: 0;
    max-height: 100%;
    max-width: none !important;
    right: 0;
    top: 0;
    transform: translateY(1.6em);
  }
  #cc-main .pm__body,
  #cc-main .pm__footer,
  #cc-main .pm__header {
    padding: 0.9em !important;
  }
  #cc-main .pm__badge {
    display: none;
  }
  #cc-main .pm__section-table,
  #cc-main .pm__table-body,
  #cc-main .pm__table-caption,
  #cc-main .pm__table-td,
  #cc-main .pm__table-th,
  #cc-main .pm__table-tr {
    display: block;
  }
  #cc-main .pm__table-head {
    display: none;
  }
  #cc-main .pm__table-tr:not(:last-child) {
    border-bottom: 1px solid var(--cc-separator-border-color);
  }
  #cc-main .pm__table-td {
    display: flex;
    justify-content: space-between;
  }
  #cc-main .pm__table-td:before {
    color: var(--cc-primary-color);
    content: attr(data-column);
    flex: 1;
    font-weight: 600;
    min-width: 100px;
    overflow: hidden;
    padding-right: 2em;
    text-overflow: ellipsis;
  }
  #cc-main .pm__table-td > div {
    flex: 3;
  }
  #cc-main .pm__btn-group,
  #cc-main .pm__footer {
    flex-direction: column !important;
  }
  #cc-main .pm__btn-group {
    display: flex !important;
  }
  #cc-main .pm__btn + .pm__btn,
  #cc-main .pm__btn-group + .pm__btn-group {
    margin: 0.375rem 0 0 !important;
  }
  #cc-main .pm--flip .pm__btn + .pm__btn,
  #cc-main .pm--flip .pm__btn-group + .pm__btn-group {
    margin-bottom: 0.375rem !important;
    margin-top: 0 !important;
  }
  #cc-main .pm--flip .pm__btn-group,
  #cc-main .pm--flip .pm__footer {
    flex-direction: column-reverse !important;
  }
  .show--preferences #cc-main .cc--anim .pm {
    transform: translateY(0) !important;
  }
}

/*
 * Legal Disclaimer
 *
 * These Fonts are licensed only for use on these domains and their subdomains:
 * langley.eu
 *
 * It is illegal to download or use them on other websites.
 *
 * While the @font-face statements below may be modified by the client, this
 * disclaimer may not be removed.
 *
 * Lineto.com, 2015
 */

@font-face {
    font-family: "Brown";
    src:url("/Static/Fonts/lineto-brown-regular.eot");
    src:url("/Static/Fonts/lineto-brown-regular.eot?#iefix") format("embedded-opentype"),
        url("/Static/Fonts/lineto-brown-regular.woff") format("woff"),
        url("/Static/Fonts/lineto-brown-regular.ttf") format("truetype"),
        url("/Static/Fonts/lineto-brown-regular.svg#lineto-brown-regular") format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Brown-alt";
    src:url("/Static/Fonts/lineto-brown-regularalt.eot");
    src:url("/Static/Fonts/lineto-brown-regularalt.eot?#iefix") format("embedded-opentype"),
        url("/Static/Fonts/lineto-brown-regularalt.woff") format("woff"),
        url("/Static/Fonts/lineto-brown-regularalt.ttf") format("truetype"),
        url("/Static/Fonts/lineto-brown-regularalt.svg#lineto-brown-regularalt") format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Brown";
    src:url("/Static/Fonts/lineto-brown-light.eot");
    src:url("/Static/Fonts/lineto-brown-light.eot?#iefix") format("embedded-opentype"),
        url("/Static/Fonts/lineto-brown-light.woff") format("woff"),
        url("/Static/Fonts/lineto-brown-light.ttf") format("truetype"),
        url("/Static/Fonts/lineto-brown-light.svg#lineto-brown-light") format("svg");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Brown";
    src:url("/Static/Fonts/lineto-brown-bold.eot");
    src:url("/Static/Fonts/lineto-brown-bold.eot?#iefix") format("embedded-opentype"),
        url("/Static/Fonts/lineto-brown-bold.woff") format("woff"),
        url("/Static/Fonts/lineto-brown-bold.ttf") format("truetype"),
        url("/Static/Fonts/lineto-brown-bold.svg#lineto-brown-bold") format("svg");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Brown";
    src:url("/Static/Fonts/lineto-brown-thin.eot");
    src:url("/Static/Fonts/lineto-brown-thin.eot?#iefix") format("embedded-opentype"),
        url("/Static/Fonts/lineto-brown-thin.woff") format("woff"),
        url("/Static/Fonts/lineto-brown-thin.ttf") format("truetype"),
        url("/Static/Fonts/lineto-brown-thin.svg#lineto-brown-thin") format("svg");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Brown-alt";
    src:url("/Static/Fonts/lineto-brown-boldalt.eot");
    src:url("/Static/Fonts/lineto-brown-boldalt.eot?#iefix") format("embedded-opentype"),
        url("/Static/Fonts/lineto-brown-boldalt.woff") format("woff"),
        url("/Static/Fonts/lineto-brown-boldalt.ttf") format("truetype"),
        url("/Static/Fonts/lineto-brown-boldalt.svg#lineto-brown-boldalt") format("svg");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Brown-Reclin";
    src:url("/Static/Fonts/lineto-brown-reclinthin.eot");
    src:url("/Static/Fonts/lineto-brown-reclinthin.eot?#iefix") format("embedded-opentype"),
        url("/Static/Fonts/lineto-brown-reclinthin.woff") format("woff"),
        url("/Static/Fonts/lineto-brown-reclinthin.ttf") format("truetype"),
        url("/Static/Fonts/lineto-brown-reclinthin.svg#lineto-brown-reclinthin") format("svg");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Brown-Reclin";
    src:url("/Static/Fonts/lineto-brown-reclinlight.eot");
    src:url("/Static/Fonts/lineto-brown-reclinlight.eot?#iefix") format("embedded-opentype"),
        url("/Static/Fonts/lineto-brown-reclinlight.woff") format("woff"),
        url("/Static/Fonts/lineto-brown-reclinlight.ttf") format("truetype"),
        url("/Static/Fonts/lineto-brown-reclinlight.svg#lineto-brown-reclinlight") format("svg");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Brown-Reclin";
    src:url("/Static/Fonts/lineto-brown-reclinregular.eot");
    src:url("/Static/Fonts/lineto-brown-reclinregular.eot?#iefix") format("embedded-opentype"),
        url("/Static/Fonts/lineto-brown-reclinregular.woff") format("woff"),
        url("/Static/Fonts/lineto-brown-reclinregular.ttf") format("truetype"),
        url("/Static/Fonts/lineto-brown-reclinregular.svg#lineto-brown-reclinregular") format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Brown-Reclin-alt";
    src:url("/Static/Fonts/lineto-brown-reclinregularalt.eot");
    src:url("/Static/Fonts/lineto-brown-reclinregularalt.eot?#iefix") format("embedded-opentype"),
        url("/Static/Fonts/lineto-brown-reclinregularalt.woff") format("woff"),
        url("/Static/Fonts/lineto-brown-reclinregularalt.ttf") format("truetype"),
        url("/Static/Fonts/lineto-brown-reclinregularalt.svg#lineto-brown-reclinregularalt") format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Brown-Reclin";
    src:url("/Static/Fonts/lineto-brown-reclinbold.eot");
    src:url("/Static/Fonts/lineto-brown-reclinbold.eot?#iefix") format("embedded-opentype"),
        url("/Static/Fonts/lineto-brown-reclinbold.woff") format("woff"),
        url("/Static/Fonts/lineto-brown-reclinbold.ttf") format("truetype"),
        url("/Static/Fonts/lineto-brown-reclinbold.svg#lineto-brown-reclinbold") format("svg");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Brown-Reclin-alt";
    src:url("/Static/Fonts/lineto-brown-reclinboldalt.eot");
    src:url("/Static/Fonts/lineto-brown-reclinboldalt.eot?#iefix") format("embedded-opentype"),
        url("/Static/Fonts/lineto-brown-reclinboldalt.woff") format("woff"),
        url("/Static/Fonts/lineto-brown-reclinboldalt.ttf") format("truetype"),
        url("/Static/Fonts/lineto-brown-reclinboldalt.svg#lineto-brown-reclinboldalt") format("svg");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Brown";
    src:url("/Static/Fonts/lineto-brown-thinitalic.eot");
    src:url("/Static/Fonts/lineto-brown-thinitalic.eot?#iefix") format("embedded-opentype"),
        url("/Static/Fonts/lineto-brown-thinitalic.woff") format("woff"),
        url("/Static/Fonts/lineto-brown-thinitalic.ttf") format("truetype"),
        url("/Static/Fonts/lineto-brown-thinitalic.svg#lineto-brown-thinitalic") format("svg");
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Brown";
    src:url("/Static/Fonts/lineto-brown-lightitalic.eot");
    src:url("/Static/Fonts/lineto-brown-lightitalic.eot?#iefix") format("embedded-opentype"),
        url("/Static/Fonts/lineto-brown-lightitalic.woff") format("woff"),
        url("/Static/Fonts/lineto-brown-lightitalic.ttf") format("truetype"),
        url("/Static/Fonts/lineto-brown-lightitalic.svg#lineto-brown-lightitalic") format("svg");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Brown";
    src:url("/Static/Fonts/lineto-brown-italic.eot");
    src:url("/Static/Fonts/lineto-brown-italic.eot?#iefix") format("embedded-opentype"),
        url("/Static/Fonts/lineto-brown-italic.woff") format("woff"),
        url("/Static/Fonts/lineto-brown-italic.ttf") format("truetype"),
        url("/Static/Fonts/lineto-brown-italic.svg#lineto-brown-italic") format("svg");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Brown-alt";
    src:url("/Static/Fonts/lineto-brown-italicalt.eot");
    src:url("/Static/Fonts/lineto-brown-italicalt.eot?#iefix") format("embedded-opentype"),
        url("/Static/Fonts/lineto-brown-italicalt.woff") format("woff"),
        url("/Static/Fonts/lineto-brown-italicalt.ttf") format("truetype"),
        url("/Static/Fonts/lineto-brown-italicalt.svg#lineto-brown-italicalt") format("svg");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Brown";
    src:url("/Static/Fonts/lineto-brown-bolditalic.eot");
    src:url("/Static/Fonts/lineto-brown-bolditalic.eot?#iefix") format("embedded-opentype"),
        url("/Static/Fonts/lineto-brown-bolditalic.woff") format("woff"),
        url("/Static/Fonts/lineto-brown-bolditalic.ttf") format("truetype"),
        url("/Static/Fonts/lineto-brown-bolditalic.svg#lineto-brown-bolditalic") format("svg");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Brown-alt";
    src:url("/Static/Fonts/lineto-brown-bolditalicalt.eot");
    src:url("/Static/Fonts/lineto-brown-bolditalicalt.eot?#iefix") format("embedded-opentype"),
        url("/Static/Fonts/lineto-brown-bolditalicalt.woff") format("woff"),
        url("/Static/Fonts/lineto-brown-bolditalicalt.ttf") format("truetype"),
        url("/Static/Fonts/lineto-brown-bolditalicalt.svg#lineto-brown-bolditalicalt") format("svg");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
#rent-customerbox h5 {
  padding: 0 0.625em;
  font-weight: 400;
  text-transform: uppercase;
}
.editingrentalcar {
}
.rent-customer {
  margin: 0;
}
.rent-notediting {
  opacity: 0.3;
}
.rent-customer .rent-custdetail {
  background-color: #eee;
  position: relative;
  border-radius: 0.5em;
}
.rent-customer .rent-custdetail .rent-customer-fullname {
  padding: 0.5em 0.75em 0;
  line-height: 1.5;
}
.supplements .rent-custdetail h4 {
  font-weight: 400;
  color: #999;
  border: none;
}
.rent-customer .rent-status {
  font-size: 0.875em;
  padding: 0.571429em 0.857143em;
  margin: 0;
}
.rent-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.rent-operate {
  font-weight: 400;
}
.rent-operate a {
  text-decoration: none;
}
.rent-operate a:hover {
  text-decoration: underline;
}
.rent-operate img.svg {
  width: 1.25em;
  height: 1.25em;
  vertical-align: text-top;
  filter: invert(38%) sepia(91%) saturate(383%) hue-rotate(132deg) brightness(93%) contrast(96%);
}
.rentalcar-fields .selectric {
  border-width: 1.75px;
}
.rentalcar-fields .selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 1.5em 0 0;
  padding: 0.5625em 0 0.5625em 0.8125em;
  color: #222;
  height: 2.625em;
  text-align: left;
  font-size: 100%;
  font-weight: 300;
  line-height: 1.5;
}
.rentalcar-fields .selectric b.button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 1.5em;
  height: 2.625em;
  line-height: 2.5em;
  color: #222;
  text-align: center;
}
.rentalcar-fields .selectric-items ul,
.rentalcar-fields .selectric-items ul {
  padding: 1em 0;
}
.rentalcar-fields .selectric-items ul li,
.rentalcar-fields .selectric-items ul li {
  padding: 0.25em 1.25em;
}
.rent-savedrental .rent-custdetail {
  border: #f60 1px dotted;
  background-color: #f9f9f9;
}
.rent-autoaddrental .rent-custdetail {
  border: #d9534f 1px solid;
  background-color: #f2dede;
}
.supplements .rent-savedrental h4 {
  color: #f60;
}
.rent-savedrental .rent-status {
  color: #333;
}
.rent-savedrental .rent-custdetail dl {
  padding: 0 0.33333em;
  margin: 0 0 0.33333em;
}
.rent-savedrental .rent-custdetail ul {
  margin: 0 0 0.33333em;
  padding: 0 0.33333em;
  list-style: none;
}
.rent-savedrental .rent-custdetail dd,
.rent-savedrental .rent-custdetail ul li {
  font-size: 13px;
  color: #333;
  margin: 0;
}
.rent-savedrental .rent-custdetail dt,
.rent-savedrental .rent-custdetail ul li span {
  font-size: 12px;
  color: #999;
  font-weight: 400;
}
.ui-fixed-pos {
  position: fixed;
  z-index: 1000;
}
.rent-step {
  border: #eee 1px solid;
  padding: 0.5em 0.75em;
  color: #666;
}
.rent-step dt,
.rent-tempresult dt {
  font-weight: 400;
  border-bottom: #ddd 1px dotted;
  padding: 0.25em 0;
  text-transform: uppercase;
}
.rent-step dd.rent-times {
  height: 128px;
}
.rent-step dd label {
  margin: 0;
}
/*.rent-step dd label span{padding-top:4px;font-weight:400;}*/
.rent-step .form-control {
  color: #333;
  font-weight: 300;
}
.rent-step select.form-control[disabled] {
  appearance: none;
}
#rent-form {
  position: relative;
}
.rent-formtitle {
  border-bottom: #000 1px solid;
  margin: 0.625em 0;
  font-weight: 400;
  text-transform: uppercase;
}
/*#rent-form .rent-prim,#rent-form .rent-secn,#rent-form .rent-base{font-size:0.875em;}*/
#rent-form .rent-select {
  height: 68.75em;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 0.5em;
}
.rent-pending {
  background: url('/i2/spinner.gif') no-repeat center center;
}
.rent-require {
  color: #f00;
}
#rent-form .rent-base {
  min-height: 10em;
  font-weight: 300;
  margin-bottom: 1.125em;
  border-radius: 0.5em;
}
#rent-form .rent-step .form-group {
  margin-bottom: 0.375em;
}
#rent-form .rent-step .form-group .selectric {
  border-width: 1.75px;
  border-color: #222;
}
#rent-form .rent-step .has-feedback .form-control-feedback {
  top: 0;
}
#rent-form .rent-step .has-feedback .parsley-errors-list,
.skisizes .has-feedback .parsley-errors-list {
  margin: 0;
  padding: 0;
  font-size: 0.75em;
  list-style: none;
  color: #a94442;
}
#rent-form .rent-prim {
  height: 234px;
}
#rent-form .rent-secn {
  min-height: 6em;
  font-weight: 300;
  margin-bottom: 0.5em;
}
#rent-form .rent-step dd label input {
  margin: 0;
  border: #ccc 1px solid;
}
#rent-form .rent-step dd label.rent-date input {
  width: 186px;
}
#rent-form .rent-select dd {
  padding: 0.375em 0.5em 1.125em;
  margin: 0.375em 0 0.625em;
}
#rent-form .rent-select dd:hover {
  border: #01e5a4 0.125em dashed;
  padding: 0.25em 0.375em 1em;
  cursor: ponter;
}
#rent-form .rent-select dd.rent-cartypeselected {
  border: #01e5a4 0.125em solid;
  padding: 0.25em 0.375em 1em;
  background: url('/i2/roomselected.png') no-repeat scroll right bottom #ffffff;
  border-radius: 0.5em;
}
#rent-form .rent-select dd.rent-cartypeselected:hover {
  cursor: ponter;
  border: #01e5a4 0.125em solid;
}
#rent-form .rent-base label,
#rent-form .rent-secn label {
  font-size: 0.875em;
}
.rent-step .rent-type {
  width: 240px;
}
.rent-step div.rent-dpf {
  margin: 0.5em 0;
  font-size: 0.75em;
}
.rent-step div.rent-desc {
  display: inline-block;
  vertical-align: top;
  width: 180px;
}
.rent-step div.rent-dp label.rent-date {
  margin-right: 0;
}
.rent-step .selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 1.5em 0 0;
  padding: 0.375em 0 0.375em 0.75em;
  color: #8e9195;
  height: 2.5em;
  text-align: left;
  font-size: 100%;
  font-weight: 300;
  line-height: 1.875;
}
.rent-step .selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 1.5em;
  height: 2.5em;
  line-height: 2.875em;
  color: #444;
  text-align: center;
}
.rent-step .selectric-items ul,
.rent-step .selectric-items li {
  font-size: 100%;
  line-height: 1.875em;
  min-height: 1.875em;
}
.rent-carimg {
  width: 180px;
  height: 100px;
  overflow: hidden;
  padding: 1px;
  border: #ddd 1px solid;
  float: left;
  margin: 0.375em 0.5em 0 0;
  border-radius: 0.5em;
}
.rent-carimg img {
  width: 180px;
  height: 100px;
  display: block;
}
.rent-carsele {
  margin-bottom: 0.375em;
  font-weight: 700;
}
.rent-carsele label {
  display: block;
  font-weight: 700;
  font-size: 0.875em;
}
.rent-carsele label span {
  text-transform: uppercase;
}
.rent-cardesc {
  font-size: 0.857143em;
  font-weight: 300;
}
/*.rent-step dd .rent-carsele label span b{font-size:1.15em;}*/
#rent-form .rent-step dd .rent-carsele label input[type='radio'] {
  vertical-align: middle;
  margin: 3px 4px 4px 0;
  display: none;
}
#rent-form .rent-step dd label.rent-info input {
  width: 186px;
}
#rent-form .rent-step dd label.rent-info input.rent-birthday {
  width: 170px;
}
#rent-form .rent-step dd label.rent-info-addr input {
  width: 375px;
}
.rent-adults {
  width: 300px;
}
.rent-primaryprice,
.rent-secondaryprice {
  margin: 0;
  height: 1.5em;
  font-size: 0.875em;
}
.rent-submit {
  clear: both;
  text-align: right;
  padding: 0.5em 0.75em;
}

@media only screen and (max-width: 61.9375em) {
  .rent-step,
  .rent-submit {
    padding-left: 0;
    padding-right: 0;
    border: none;
  }
}

/* jssor slider thumbnail navigator skin 11 css */
.jssort11 {
  position: absolute;
  width: 300px;
  height: 300px;
  font-family: Arial, Helvetica, sans-serif;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.jssort11 .p:hover {
  border: 2px dashed #01e5a4;
}
.jssort11 .p {
  background-color: white;
  border: 2px dashed #ccc;
  border-radius: 5px;
  position: absolute;
  width: 300px;
  height: 69px;
  cursor: pointer;
}
.jssort11 .tp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.jssort11 .i,
.jssort11 .pav:hover .i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 60px;
  height: 30px;
  border: white 1px dashed;
}
.jssort11 .i {
  width/**/: 62px;
  height/**/: 32px;
}
.jssort11 .pav .i {
  border: white 1px solid;
}
.jssort11 .t,
.jssort11 .pav:hover .t {
  padding-top: 6px;
  font-weight: bold;
}
.jssort11 .c,
.jssort11 .pav:hover .c {
  clear: both;
  display: block;
  padding-left: 6px;
}
.jssort11 .t,
.jssort11 .c {
  transition: color 2s;
  -moz-transition: color 2s;
  -webkit-transition: color 2s;
  -o-transition: color 2s;
}
.jssort11 .p:hover .t,
.jssort11 .pav:hover .t,
.jssort11 .p:hover .c,
.jssort11 .pav:hover .c {
  transition: none;
  -moz-transition: none;
  -webkit-transition: none;
  -o-transition: none;
}
.jssort11 .pav,
.jssort11 .p.pdn.rent-cartypeselected {
  border: 2px solid #01e5a4;
  border-radius: 5px;
  background: #fff url('/i2/roomselected.png') no-repeat scroll right bottom;
}

/* jssor slider thumbnail navigator (arrow) */
.jssora08l,
.jssora08r {
  display: inline-block;
  position: absolute;
  width: 36px;
  height: 36px;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.4;
  filter: alpha(opacity=40);
}
.jssora08l {
  top: 0;
  background: url('/Static/Img/Jssor.Slider/arrow_go_up.png') no-repeat;
}
.jssora08r {
  bottom: 0;
  background: url('/Static/Img/Jssor.Slider/arrow_go_down.png') no-repeat;
}
.jssora08l:hover,
.jssora08r:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.jssora08l.jssora08ldn,
.jssora08r.jssora08rdn {
  opacity: 0.3;
  filter: alpha(opacity=30);
}

#small-dialog {
  background: white;
  padding: 20px 30px;
  text-align: left;
  max-width: 600px;
  margin: 40px auto;
  position: relative;
}
#alert-dialog {
  background: white;
  padding: 50px 30px;
  text-align: left;
  max-width: 400px;
  margin: 40px auto;
  position: relative;
}
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

@charset "UTF-8";

/*Over all styles*/
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
}

iframe {
  border: none;
}

/*::-moz-selection {background:#419641;color:#FFF;text-shadow:none;}
::selection {background:#419641;color:#FFF;text-shadow:none;}*/
::-webkit-input-placeholder {
  font-style: normal;
}

:-moz-placeholder {
  font-style: normal;
}

::-moz-placeholder {
  font-style: normal;
}

:-ms-input-placeholder {
  font-style: normal;
}

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
}

.ir:before {
  content: '';
  display: block;
  width: 0;
  height: 150%;
}

[v-cloak] {
  display: none;
}

#sentenelxxs {
  display: none;
}

.img-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit:cover;';
}

.clear {
  clear: both;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

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

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

.invisible {
  visibility: hidden;
}

.btnreset {
  border-radius: 0;
  color: #fff;
  box-shadow: none;
  text-shadow: none;
}

.vcb:after {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
  overflow: hidden;
}

.vce {
  display: inline-block;
  vertical-align: bottom;
}

.nowrap {
  word-wrap: break-word;
}

.dropdownpad {
  padding: 1em;
}

.text-thin {
  font-weight: 300;
}

.text-normal {
  font-weight: 400;
}

.text-white {
  color: #fff;
}

.text-black {
  color: #000;
}

.text-red {
  color: #eb1d25;
}

.text-green {
  color: #00a85c;
}

.text-teal {
  color: #2e7b73;
}

.text-purple {
  color: #721f62;
}

.text-yellow {
  color: #ffc514;
}

.text-orange {
  color: #f60;
}

.text-muted {
  color: #777;
}

.text-default {
  color: #58585e;
}

.text-invalid {
  color: #b2b2b2;
}

.text-disabled {
  color: #ccc;
}

.text-blue {
  color: #4467cc;
}

/* .text-primary {
  color: #eb1e25;
}
.text-success {
  color: #138587;
}
.text-info {
  color: #31708f;
}
.text-warning {
  color: #8a6d3b;
}
.text-danger {
  color: #a94442;
} */
.text-allcap {
  text-transform: uppercase;
}

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

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

.text-notrans {
  text-transform: none;
}

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

.headernomargin {
  margin-top: 0;
}

.footernomargin {
  margin-bottom: 0 !important;
}

.bg-red,
.btn-red {
  background-color: #eb1d25;
}

.bg-green,
.btn-green {
  background-color: #00a85c;
}

.bg-yellow,
.btn-yellow {
  background-color: #ffc514;
}

.bg-purple,
.btn-purple {
  background-color: #721f62;
}

.bg-white {
  background-color: #fff;
}

.bg-blue {
  background-color: #d7e9f1;
}

.bg-lightblue {
  background-color: #eaf4f5;
}

a.text-white:hover {
  color: #fff;
}

/* .bg-primary {
  background-color: #337ab7;
}
.bg-success {
  background-color: #9dd48e;
}
.bg-warning {
  background-color: #fcf8e3;
}
.bg-danger {
  background-color: #f2dede;
} */
.border-none {
  border-style: none !important;
}

.bg-gray {
  background-color: #eceeec;
}

.border-gray {
  border: 1px solid #d6d1d1;
  border-radius: 0.5em;
}

.border-blue {
  border: 1px solid #128588;
  border-radius: 0.5em;
}

.border-teal {
  border-bottom: 1px solid #128588;
  border-radius: 0.5em;
}

.border-solid {
  border-width: 1.5px;
  border-style: solid;
}

.bg-teal,
.btn-teal {
  background-color: #128588;
}

.btn-teal:hover,
.btn-teal:active {
  background-color: #159b9f;
  border-color: #0f6f71;
}

.btn-teal:focus {
  background-color: #159b9f;
  border-color: #094344;
}

.btn-teal:focus,
.btn-teal:active:focus,
.btn-teal.active:focus,
.btn-teal.focus,
.btn-teal:active.focus,
.btn-teal.active.focus {
  outline: none !important;
}

.tooltip.top {
  padding: 5px 0;
}

.tooltip.top .tooltip-arrow {
  margin-left: -5px;
  border-width: 5px 5px 0px;
}

.tooltip.bottom {
  padding: 5px 0;
}

.tooltip.bottom .tooltip-arrow {
  margin-left: -5px;
  border-width: 0px 5px 5px;
}

.tooltip.left {
  padding: 0 5px;
}

.tooltip.left .tooltip-arrow {
  margin-top: -5px;
  border-width: 5px 0px 5px 5px;
}

.tooltip.right {
  padding: 0 5px;
}

.tooltip.right .tooltip-arrow {
  margin-top: -5px;
  border-width: 5px 5px 5px 0px;
}

/* .form-control,.btn{border-radius:0;} */
.btn.btn-runway:not(.btn-sm) {
  border-radius: 20px;
}

.btn-primary,
.btn-success,
.btn-info,
.btn-warning,
.btn-danger {
  background-image: none;
}

.splash-content a.btn-splash {
  display: inline-block;
  padding: 0.25em 0.75em;
  border: #fff 2px solid;
  color: #fff;
  font-size: inherit;
  font-weight: 700;
}

.splash-content a.btn-splash.btn-red,
.splash-content a.btn-splash.btn-green,
.splash-content a.btn-splash.btn-yellow,
.splash-content a.btn-splash.btn-purple {
  background-color: transparent;
}

.splash-content a.btn-splash.btn-red:hover {
  text-decoration: none;
  background-color: rgba(238, 64, 92, 0.5);
}

.splash-content a.btn-splash.btn-green:hover {
  text-decoration: none;
  background-color: rgba(0, 168, 92, 0.5);
}

.splash-content a.btn-splash.btn-yellow:hover {
  text-decoration: none;
  background-color: rgba(255, 197, 20, 0.5);
}

.splash-content a.btn-splash.btn-purple:hover {
  text-decoration: none;
  background-color: rgba(114, 31, 98, 0.5);
}

.splash-content a:hover {
  text-decoration: none;
  text-shadow: 0 0 6px #333333;
}

.table-noborder {
  border: none;
}

.table-noborder>thead>tr>th,
.table-noborder>tbody>tr>th,
.table-noborder>tfoot>tr>th,
.table-noborder>thead>tr>td,
.table-noborder>tbody>tr>td,
.table-noborder>tfoot>tr>td {
  border: none;
}

.table-noborder>thead>tr>th,
.table-noborder>thead>tr>td {
  border: none;
}

img[src=''] {
  display: none;
}

.popover .popover-title {
  font-weight: 300;
  padding: 0.25em 0.5em;
  color: #31708f;
}

/*Form Wizard*/
.bookingstepsbox .container {
  margin-left: -0.5em;
  margin-right: -0.5em;
}

.bookingstepsbox .container .row {
  margin-left: 0;
  margin-right: 0;
}

.bs-wizard {
  padding-top: 1em;
  padding-bottom: 1em;
}

.bs-wizard>.bs-wizard-step {
  padding: 0;
  position: relative;
}

.bs-wizard>.bs-wizard-step+.bs-wizard-step {}

.bs-wizard>.bs-wizard-step .bs-wizard-stepnum {
  color: #138586;
  font-size: 1em;
  margin-top: 0.375em;
  text-align: center;
}

.bs-wizard>.bs-wizard-step.disabled .bs-wizard-stepnum {
  color: #b1b5b6;
}

.bs-wizard>.bs-wizard-step .bs-wizard-info {
  color: #999;
  font-size: 0.875em;
}

.bs-wizard>.bs-wizard-step>.bs-wizard-dot {
  position: absolute;
  width: 2.25em;
  height: 2.25em;
  text-align: center;
  line-height: 2.25em;
  display: block;
  background: #138586;
  color: #fff;
  top: 1.25em;
  left: 50%;
  margin-top: -1em;
  margin-left: -1em;
  border-radius: 50%;
}

/* .bs-wizard > .bs-wizard-step > .bs-wizard-dot:after {content:' ';width:1em;height:1em;background:#1D64CC;border-radius:50%;position: absolute;top:0.5em;left:0.5em;} */
.bs-wizard>.bs-wizard-step>.progress {
  position: relative;
  border-radius: 0;
  height: 0.125em;
  margin: 1.3125em 0;
  box-shadow: none;
  background-color: #c5c5c5;
}

.bs-wizard>.bs-wizard-step>.progress>.progress-bar {
  width: 0px;
  box-shadow: none;
  background: #138586;
}

.bs-wizard>.bs-wizard-step.complete>.progress>.progress-bar {
  width: 100%;
}

.bs-wizard>.bs-wizard-step.active>.progress>.progress-bar {
  width: 50%;
}

.bs-wizard>.bs-wizard-step:first-child.active>.progress>.progress-bar {
  width: 50%;
}

.bs-wizard>.bs-wizard-step:last-child.active>.progress>.progress-bar {
  width: 100%;
}

.bs-wizard>.bs-wizard-step.disabled>.bs-wizard-dot {
  width: 2.25em;
  height: 2.25em;
  line-height: 2em;
  color: #c5c5c5;
  border: #c5c5c5 0.125em solid;
  background-color: #fff;
}

.bs-wizard>.bs-wizard-step.disabled a.bs-wizard-dot {
  pointer-events: none;
}

#showselectroom {
  max-width: 32em;
}

.peoplenumselect-dropdown {
  width: 90%;
}

.peoplenumselect-fields {
  width: 100%;
  padding: 2.5em 2em;
}

.popupbox-selectguests .peoplenumselect-fields {
  width: auto;
  padding: 0;
}

.peoplenumselect-fields>div:not(.row) {
  padding: 0;
}

.peoplenumselect-fields>div.peoplenumselect-child {
  margin-top: 1.125em;
  padding-top: 1.125em;
  border-top: 1px solid #000;
}

.peoplenumselect-fields>div:first-child {
  margin: 0;
}

.peoplenumselect-fields>div.peoplenumselect-room {
  margin: 1.125em 0 3.5em;
  padding-top: 1.625em;
  border-top: 1px solid #000;
}

.peoplenumselect-fields>div.ageselect-dropdown {
  margin-top: 0.875em;
}

.peoplenumselect-label {
  text-transform: capitalize;
  width: 40%;
  height: 2em;
  line-height: 2em;
  float: left;
}

.peoplenumselect-set {
  float: right;
  width: auto;
}

.peoplenumselect-roomtip {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  clear: both;
}

.peoplenumselect-label span {
  display: inline-block;
  font-size: 0.75em;
  margin-left: 1.33333em;
}

.peoplenumselect-plus,
.peoplenumselect-minus {
  font-size: 2em;
  color: #138587;
  width: 1em;
  height: 1em;
  line-height: 0.75;
  text-align: center;
  border-radius: 50%;
  font-weight: 300;
  cursor: pointer;
  border: #138587 1px solid;
  float: left;
}

.peoplenumselect-amount {
  width: 2em;
  text-align: center;
  height: 1.6em;
  float: left;
  margin: 0;
}

.peoplenumselect-fields input.form-control {
  font-size: 1.25em;
  height: 1.6em;
  padding: 0;
  border: none;
  box-shadow: none;
  text-align: center;
  font-weight: 400;
}

.tripfinder .selectbox .peoplenumselect-fields input.form-control {
  background-color: #fff;
}

.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  border: 1px solid #5a5a5a;
  background: #fff;
  position: relative;
  border-radius: 0.25em;
}

.has-error .selectric,
.has-error .selectric-hover .selectric {
  border-color: #d9534f;
}

.selectric-hover .selectric {
  border-color: #66afe9;
}

.selectric-hover .selectric .button {
  color: #a2a2a2;
}

.selectric-hover .selectric .button:after {
  border-top-color: #a2a2a2;
}

.selectric-open {
  z-index: 9999;
}

.selectric-open .selectric {
  border-color: #66afe9;
}

.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectric-hide-select select {
  position: absolute;
  left: -100%;
  display: none;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 0.5em;
  border: none;
  z-index: -1;
  box-shadow: 0 0 10px -6px;
  text-align: left;
}

.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}

.selectric-above .selectric-items {
  top: auto;
  bottom: 125%;
}

.selectric-below .selectric-items {
  top: 125%;
  bottom: auto;
}

.selectric-items ul,
.selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.selectric-items ul {
  padding: 1.25em 1.75em;
}

.selectric-items ul>ul {
  padding: 0;
}

.selectric-items li {
  display: block;
  padding: 0;
  color: #000;
  cursor: pointer;
  font-weight: 300;
}

.selectric-items li.selected {
  background: #fff;
  color: #666;
}

.selectric-items li:hover {
  background: #fff;
  color: #666;
}

.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
  font-weight: 700;
  padding-left: 0.5em;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: none;
  color: #444;
}

.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}

.selectric-items .selectric-group li {
  padding-left: 1em;
}

/* last minute module */
.muurigrid {
  position: relative;
}

.muuriitem {
  position: absolute;
}

#lastminutetab .tab-pane {
  min-height: 10em;
}

.lastmin-spin {
  height: 6em;
}

.lastmin-filter {
  margin-top: 0.5em;
  margin-bottom: 2em;
}

.lastmin-filterby {
  margin-bottom: 1em;
}

.lastmin-filterby .lastmin-select .form-control {
  height: 2.875em;
  border: none;
  box-shadow: none;
  font-weight: 300;
  color: #222;
}

.lastmin-container,.flightonly-container {
  padding: 1em 0;
}

.lastmin-container .wrapper,.flightonly-container .wrapper {
  border: #ddd 1px solid;
  padding-bottom: 7.5em;
  min-height: 35.5em;
}

#oneway .lastmin-container .wrapper {
  position: relative;
  min-height: 31.5em;
}

.lastmin-teaserimg {
  position: relative;
  height: 0;
  padding-bottom: 75%;
}

.lastmin-teasertxt,
.lastmin-badge,
.lastmin-priceoriginal,
.lastmin-seatleft,
.lastmin-short {
  position: absolute;
}

.lastmin-teasertxt {
  width: 100%;
  padding: 0.875em;
  left: 0;
  bottom: 0;
  font-weight: 400;
  color: #fff;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(48, 48, 48, 0.65) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(48, 48, 48, 0.65) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(48, 48, 48, 0.65) 100%);
}

.lastmin-badge {
  padding: 0.125em 0.25em 0.125em 0.75em;
  font-weight: 400;
  color: #eb1d25;
  background: #fff;
  left: -0.0625em;
  top: 1em;
}

.lastmin-badge:before,
.lastmin-badge:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.875em 0 0.875em 0.5em;
  border-color: transparent transparent transparent #fff;
  top: 0;
}

.lastmin-badge:before {
  right: -0.5em;
}

.lastmin-badge:after {
  right: -0.4375em;
}

.lastmin-short {
  padding: 0.142857em 0.571428em;
  font-size: 0.875em;
  font-weight: 400;
  background-color: #fff;
  border-radius: 5px;
  left: 0.571428em;
  top: 0.571428em;
}

.lastmin-destinfo {
  min-height: 7.25em;
}

#oneway .lastmin-destinfo {
  min-height: 4em;
}

.lastmin-destinfo h4 {
  font-size: 1.125em;
  padding: 0 0.5em;
  margin-top: 1em;
}

.lastmin-destinfo h5 {
  margin-top: 0.125em;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 1em;
}

.lastmin-destinfo .hotelstar {
  margin: 0.125em 0 0;
}

.lastmin-destinfo .hotelstar img.svg {
  margin: 0 0.0625em;
}

.lastmin-tripinfobox {
  position: relative;
  min-height: 7em;
}

.lastmin-tripinfo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

#oneway .lastmin-tripinfo {
  margin: 0;
}

.lastmin-tripinfo>p {
  margin: 0;
  white-space: nowrap;
}

.lastmin-tripinfo>p>img.svg {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.75em;
  filter: invert(29%) sepia(72%) saturate(3308%) hue-rotate(346deg) brightness(90%) contrast(100%);
  vertical-align: bottom;
}

.lastmin-tripinfo>p.lastmin-arr>img.svg {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.lastmin-tripinfo>p>img.starplus {
  width: 1.25em;
  height: 1.25em;
  filter: invert(66%) sepia(0%) saturate(47%) hue-rotate(177deg) brightness(93%) contrast(92%);
}

.lastmin-pricebook {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}

.lastmin-price {
  font-size: 1.5em;
  font-weight: 700;
  color: #eb1d25;
  display: inline-block;
  position: relative;
  padding: 0.5em 0;
}

.lastmin-priceoriginal {
  position: absolute;
  width: 4em;
  text-align: right;
  margin: 1.125em 0 0 -4.25em;
  left: 0;
  top: 0;
  font-size: 0.66667em;
  color: #999;
  font-weight: 400;
}

.lastmin-seatleft {
  position: absolute;
  width: 5em;
  text-align: center;
  margin: 1.42857em -5.5em 0 0;
  right: 0;
  top: 0;
  font-weight: 300;
  font-size: 0.58333333em;
  color: #fff;
  background-color: #eb1d25;
}

.lastmin-book {
  padding: 0 1em 1em;
}

body.customer {
  background-color: #fff;
}

.navbar-user {
  text-align: right;
  margin: 0 0 0 2.5em;
}

.navbar-user>a {
  display: block;
  font-size: 0.875em;
  color: #333;
  line-height: 1.285714;
}

/* .navbar-user>a>.lcd{font-size:2em;vertical-align:middle;margin-right:0.5em;} */
.navbar-user>a>img.svg {
  width: 2em;
  height: 2em;
  vertical-align: -0.75em;
  margin-right: 1em;
}

.navbar-user .navbar-avatar {
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2;
  border-radius: 50%;
  margin-right: 0.75em;
  vertical-align: top;
}

.navbar-user .navbar-avatarimg {
  width: 2em;
  height: 2em;
}

.navbar-user .navbar-username {
  display: inline-block;
  height: 2em;
  line-height: 2;
  vertical-align: top;
}

.mylangley-greeting {
  letter-spacing: -1px;
}

.mylangley-greetingsub {
  letter-spacing: -0.3125px;
  line-height: 1.375;
}

.mylangley-user {
  margin-top: 2em;
  text-align: right;
}

.mylangley-user .mylangley-avatar {
  display: inline-block;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  border-radius: 50%;
  margin-right: 0.75em;
  vertical-align: bottom;
}

.mylangley-user .mylangley-username {
  font-size: 1.125em;
  display: inline-block;
  vertical-align: middle;
  color: #333;
}

.mylangley-user .mylangley-username span {
  font-size: 0.75em;
  color: #138587;
}

.mylangley-avatars {}

.mylangley-avatars input[type='radio'] {
  display: none;
}

.mylangley-avatarimg {
  width: 100%;
  cursor: pointer;
}

.mylangley-avatarimg:hover,
.mylangley-avatarimg:focus {
  border-radius: 50%;
  box-shadow: 0 0 0.25em #094344;
}

.mylangley-avatars input[type='radio']:checked+img {
  border: #094344 0.125em solid;
  border-radius: 50%;
  box-shadow: 0 0 0.375em #094344;
}

.mylangley-linkbox {
  border: #666 1px solid;
  border-radius: 0.5em;
  padding: 1em 1.625em;
  min-height: 20.5em;
}

.mylangley-linkbox ul {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mylangley-linkbox ul li {
  display: block;
  box-sizing: content-box;
  line-height: 1.625em;
  padding: 0.625em 0;
}

.mylangley-linkbox ul li div.mylangley-noicon,
.mylangley-linkbox ul li div.mylangley-linkicon {
  display: inline-block;
  width: 1.625em;
  height: 1.625em;
  margin-right: 0.875em;
  vertical-align: top;
}

.mylangley-linkbox ul li div.mylangley-noicon {
  background-color: #ccc;
}

.mylangley-linkbox ul li div.mylangley-linkicon img {
  display: block;
  width: 100%;
  height: 100%;
}

.mylangley-linkbox ul li a {
  color: #333;
  font-weight: 400;
  vertical-align: middle;
}

.mylangley-switch {
  margin: 2em 0 1em;
}

.mylangley-switch ul.nav-pills>li+li {
  margin-left: 0.5em;
}

.mylangley-switch ul.nav-pills>li>a {
  border-radius: 0.875em;
  padding: 0.125em 1em;
  font-weight: 400;
  background-color: #fff;
  color: #58585e;
  border: #ccc 1px solid;
}

.mylangley-switch ul.nav-pills>li>a:hover,
.mylangley-switch ul.nav-pills>li.active>a {
  background-color: #138586;
  border: #138586 1px solid;
  color: #fff;
}

.mylangley-resempty {
  border: #666 1px solid;
  border-radius: 0.5em;
  min-height: 20.5em;
  position: relative;
}

.mylangley-resempty>p {
  font-size: 1.25em;
  font-weight: 400;
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.mylangley-res {
  border-bottom: #777 1px solid;
}

.mylangley-reslist .mylangley-res:first-child {
  border-top: #777 1px solid;
}

.mylangley-hotelimgbox {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mylangley-hotelimgbox img {
  display: block;
  width: 100%;
  height: auto;
}

.mylangley-resbrief {
  width: 100%;
  height: 100%;
  min-height: 12.175em;
  position: relative;
}

.mylangley-resbrief h3 {
  text-transform: none;
  margin-top: 0;
  padding-top: 0.75em;
}

.mylangley-resbrief h5 {
  margin-top: 0.5em;
}

.mylangley-resbrief .mylangley-resbrno {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 1.125em;
}

.mylangley-resbrief .mylangley-resbrno p:first-child {
  font-size: 0.875em;
}

.mylangley-resbrief .mylangley-seeres {
  position: absolute;
  font-weight: 400;
  display: block;
  border: #138586 1px solid;
  color: #138586;
  border-radius: 0.95em;
  padding: 0.2em 0.75em;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.mylangley-resbrief .mylangley-seeres:hover {
  background-color: #138586;
  color: #fff;
}

.mylangley-reslistlinks {
  margin-top: 1.25em;
}

.mylangley-newloginbtn {
  color: #138586;
  display: inline-block;
  font-weight: 400;
  padding: 0.2625em 0.75em;
  line-height: 1.5;
}

.mylangley-reslistlinks button.mylangley-newloginbtn {
  border: #138586 1px solid;
  padding: 0.2em 0.75em;
  border-radius: 0.95em;
}

.mylangley-lo {}

.mylangley-lo p {
  margin: 1.5em 0;
}

.mylangley-lo form .form-group {
  margin-bottom: 1.125em;
}

.mylangley-lo form>.row {
  margin-top: 2.5em;
}

.mylangley-loginform {}

.mylangley-resoverview,
.mylangley-respayment {
  border-top: #666 1px solid;
}

.mylangley-overviewgroup {
  border-bottom: #666 1px solid;
}

.mylangley-overviewitem {
  padding: 0.25em 0 1em;
}

.mylangley-overviewtextlist {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mylangley-overviewtextlist li {
  padding: 0.125em 0;
}

.mylangley-resguest dl {
  margin-bottom: 0;
}

.mylangley-flightoverview {
  border-top: #666 1px solid;
  padding: 0.5em 0 0.25em;
  margin: 0;
}

.mylangley-flightoverview+.mylangley-overviewsubgroup {
  padding: 1em 0 0;
  border-top: #666 1px solid;
}

.mylangley-flightinfo {
  margin-bottom: 1.5em;
}

.mylangley-flightinfo .cart-flightinfo {
  border: none;
  margin: 0;
  padding: 0;
}

.mylangley-overviewtextlist li.mylangley-overviewprice {
  border-top: #666 1px solid;
  padding: 0.875em 0;
  margin-top: 0.125em;
}

.mylangley-overviewbtns {
  margin: 2em 0 3em;
}

.mylangley-overviewbtns a.btn,
.mylangley-overviewbtns button.btn {
  width: 10.5em;
  color: #138586;
  padding: 0.125em 0.75em;
  margin: 0 0 0 0.5em;
  text-align: center;
  font-weight: 400;
  border-radius: 1em;
  border: #138586 1px solid;
  background-color: #fff;
}

.mylangley-moreinfobtns .btn,
.mylangley-updcustinfo .btn {
  color: #138586;
  padding: 0.25em 0;
  margin: 0;
  text-align: center;
  font-weight: 400;
  border-radius: 1.25em;
  border: #138586 1px solid;
  background-color: #fff;
}

.mylangley-overviewbtns a.btn:first-child {
  margin: 0;
}

.mylangley-overviewbtns a.btn:hover,
.mylangley-overviewbtns button.btn:hover,
.mylangley-moreinfobtns .btn:hover,
.mylangley-updcustinfo .btn:hover {
  background-color: #138586;
  color: #fff;
}

.mylangley-updatesuppbtn {
  margin: 1em 0;
}

.mylangley-updatesuppbtn button.btn,
.mylangley-updatesuppbtn a.btn {
  color: #138586;
  padding: 0.125em 0.75em;
  margin: 0;
  text-align: center;
  font-weight: 400;
  border-radius: 1em;
  border: #138586 1px solid;
  background-color: #fff;
}

.mylangley-updatesuppbtn a.suppdetailbtn {
  min-width: auto;
}

.mylangley-overviewlinkinfo {
  margin: 0 0 2em;
}

.mylangley-overviewlinks {
  margin: 0;
  padding: 0;
  font-weight: 400;
  list-style: none;
}

.mylangley-overviewlinks a {
  color: #138586;
}

.mylangley-ressupplement .panel-group .panel {
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-top: #666 1px solid;
}

.mylangley-ressupplement .panel-group .panel+.panel {
  margin-top: 0;
}

.mylangley-ressupplement .panel-group .panel.mylangley-ovas {
  border-bottom: #666 1px solid;
}

.mylangley-excursiongroup {
  margin-top: 1.5em;
}

.mylangley-ressupplement .panel-default>.panel-heading {
  background-color: transparent;
  color: inherit;
  padding: 0;
}

.mylangley-ressupplement .panel-default>.panel-heading a,
.mylangley-ressupplement .panel-default>.panel-heading .panel-nolink {
  display: block;
  padding: 0.9375em 0;
}

.mylangley-ressupplement .panel-default>.panel-heading+.panel-collapse>.panel-body {
  border: 0;
  padding: 0;
}

.mylangley-ressupplement .panel-default>.panel-heading+.mylangley-moreinfobtns {
  border: 0;
  padding: 0 0 1em;
}

.mylangley-moreinfobtns .mylangley-moreinfobtn {
  margin-top: 1em;
}

.mylangley-hotelinfo .hotelimage {
  position: relative;
}

.mylangley-hotelinfo .hotelimage img {
  border-radius: 0.5em;
}

.mylangley-hotelinfo .hotelimage .hotel-label {
  background-color: #fff;
  position: absolute;
  font-size: 0.875em;
  font-weight: 400;
  padding: 0.375em 0.625em;
  top: 0.625em;
  left: 0.625em;
  color: #333;
}

.mylangley-hotelinfo .hotelimage .hoteldescgallery {
  position: absolute;
  z-index: 25;
  padding: 0.5em 0.75em;
  color: #fff;
  left: 0.625em;
  bottom: 0.625em;
  background-color: rgba(0, 0, 0, 0.6);
}

.mylangley-hotelinfo .hotelimage .hoteldescgallery img.svg {
  width: 1em;
  height: 1em;
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(189deg) brightness(111%) contrast(101%);
  vertical-align: -0.16667em;
}

.mylangley-respaxprices,
.mylangley-restotalprice,
.mylangley-respaymentform {
  border-bottom: #ccc 1px solid;
}

.mylangley-respaxprices ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mylangley-respaxprices ul>li {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.mylangley-restotalprice dl {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.mylangley-respaymentform {}

.mylangley-pricestopay {
  margin-top: 1.5em;
  margin-bottom: 2.5em;
}

.mylangley-pricestopay .checkbox {
  margin-top: 1em;
  margin-bottom: 1em;
}

.mylangley-pricestopay .checkbox label {
  font-weight: 300;
}

.mylangley-priceverify label {
  margin-right: 1em;
}

.mylangley-paymentmethods {
  margin-top: 2.5em;
  margin-bottom: 1.5em;
}

.mylangley-paymentlogs {
  margin-top: 1.5em;
}

.mylangley-paymentmethods button.btn,
.mylangley-travelerinfosubmit .btn {
  color: #138586;
  padding: 0.125em 0.75em;
  margin: 0;
  text-align: center;
  font-weight: 400;
  border-radius: 1em;
  border: #138586 1px solid;
  background-color: #fff;
}

.mylangley-paymentmethods button.btn:hover,
.mylangley-travelerinfosubmit .btn:hover {
  background-color: #138586;
  color: #fff;
}

.mylangley-giftcardfield {
  min-height: 6em;
}

.mylangley-profileediting {
  padding-top: 1em;
  border-top: #666 1px solid;
}

.rentalcar-formspin {
  height: 10em;
  position: relative;
}

.rentalcar-types {
  margin: 2em 0;
}

.rentalcar-img {
  height: 16.75em;
  overflow: hidden;
}

.rentalcar-img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}

.rentalcar-fields .has-error ul.parsley-errors-list {
  margin: 0;
  padding-left: 1.285714em;
  color: #eb1d25;
  font-size: 0.875em;
}

/* mobile styles */
@media only screen {
  .container-fluid {
    min-height: 2.5em;
  }

  .portalgrid {
    background-color: #fff;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .wrapper {
    margin-bottom: 1.25em;
  }

  .portalgrid,
  .portalrow {
    margin-left: -0.5em;
    margin-right: -0.5em;
  }

  .portalgrid a,
  .portalgrid a:hover {
    text-decoration: none;
  }

  .portaldesc {
    padding: 2em;
    height: 100%;
  }

  #languagelist>a {
    color: #58585a;
    font-size: 0.75em;
    font-weight: 400;
    text-transform: uppercase;
  }

  .navbar-nav {
    margin: 0;
  }

  #nav>li>a {
    color: #000;
  }

  #phone a {
    color: #666;
  }

  #search a {
    color: #939598;
  }

  .breadcrumb-container {
    position: absolute;
    width: 100%;
    z-index: 200;
    background-color: rgba(0, 0, 0, 0.3);
  }

  .breadcrumb-container .breadcrumb {
    margin: 0 auto;
    border-radius: 0;
    max-width: 75em;
    background: transparent none;
  }

  .breadcrumb-container .breadcrumb a {
    color: #fff;
  }

  .breadcrumb-container .breadcrumb li {
    font-size: 87.5%;
  }

  .breadcrumb-container .breadcrumb>li+li::before {
    color: #fff;
    content: '>';
    padding: 0 0.5em;
  }

  .breadcrumb-container .breadcrumb li.active {
    color: #0473c5;
  }

  #bannerbox {
    position: relative;
    margin-bottom: 4em;
  }

  #bannerbox [class^='col-'] {
    padding-left: 0;
    padding-right: 0;
  }

  #bannerbox .wrapper {
    margin: 0;
  }

  #bannerbox .embed-responsive-16by9 {
    padding-bottom: 30.21%;
  }

  .portalgrid .embed-responsive-portal-vertical {
    padding-bottom: 133.7143%;
  }

  .portalgrid .embed-responsive-portal-horizontal {
    padding-bottom: 66.857%;
  }

  .splash {
    min-height: 6.5em;
  }

  .emptysplash {
    position: static !important;
    min-height: 0;
    height: 0;
  }

  .tripfinderwrap .bookingsearchform>h6 {
    display: none;
  }

  .searchbarslidebox {
    padding: 0.625em 0;
  }

  .searchbaralone {
    position: static;
  }

  .tripsearch {
    margin: 0;
  }

  .tripfinder {
    padding-right: 0.5em;
    padding-left: 0.5em;
    margin-right: auto;
    margin-left: auto;
  }

  .splash-content,
  .banner-content,
  #bannerbox .video-content,
  .portalgrid .video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 1.125;
  }

  .splashslideshow {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
  }

  .splashslideshow>li,
  #bannerbox .banner {
    width: 100%;
    overflow: hidden;
    height: 100%;
  }

  .splashslideshow>li>img,
  .banner>img {
    height: 100%;
    position: relative;
  }

  .splashslideshow {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
  }

  #navSlideshowControl {
    position: absolute;
    width: 100%;
    bottom: 5%;
    left: 0;
    text-align: center;
    z-index: 120;
  }

  .galleryindwrap {
    position: absolute;
    width: 100%;
    top: 1em;
    left: 0;
    z-index: 140;
  }

  .galleryindwrap .hoteldescgallery {
    font-size: 1.125em;
    padding: 0.5em 0.75em;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
  }

  #navSlideshowControl a {
    display: inline-block;
    border: #fff 2px solid;
    margin: 0 0.5em;
  }

  #navSlideshowControl a:hover,
  #navSlideshowControl a.activeSlide {
    border: #eb1d25 2px solid;
  }

  .contentareas>h2 {
    margin: 0 0 0.5em;
  }

  .textsearch {
    padding: 1.5em;
    background: #fff;
  }

  .textsearch>h3 {
    margin: 2.5em 0 0.5em;
    padding: 0 0.625em;
  }

  .textsearch .list-group {
    border-radius: 0;
    box-shadow: none;
  }

  .textsearch .list-group .list-group-item {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-style: dotted;
  }

  .textsearch .pagination>li>a,
  .textsearch .pagination>li>span {
    color: #00a85c;
  }

  .textsearch .pagination>.active>a,
  .textsearch .pagination>.active>span,
  .textsearch .pagination>.active>a:hover,
  .textsearch .pagination>.active>span:hover,
  .textsearch .pagination>.active>a:focus,
  .textsearch .pagination>.active>span:focus {
    background: #00a85c;
    border-color: #00a85c;
    color: #fff;
  }

  .textsearch .pagination>.disabled>span,
  .textsearch .pagination>.disabled>span:hover,
  .textsearch .pagination>.disabled>span:focus,
  .textsearch .pagination>.disabled>a,
  .textsearch .pagination>.disabled>a:hover,
  .textsearch .pagination>.disabled>a:focus {
    color: #c6c9cc;
  }

  #splashvideo .videoplayer {
    position: relative;
  }

  .videoplayer .black-popup {
    display: none;
  }

  .videoplayer .blockimg {
    cursor: pointer;
  }

  #splashvideo .videoplayer video,
  #mobisplashvideo .videoplayer video {
    object-fit: cover;
    display: block;
    border-radius: 0 0 0.5em 0.5em;
  }

  .splitter {
    padding-left: 0.5em;
    padding-right: 0.5em;
    margin: 1.5em 0;
  }

  .grids {
    margin-top: 0;
  }

  .grid-last {
    margin-top: 0;
  }

  /* .tripfinderwrap{padding-top:1.5em;padding-bottom:1em;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA3NCSVQICAjb4U/gAAAABlBMVEX///8AAABVwtN+AAAAAnRSTlMAqkCQh84AAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAWdEVYdENyZWF0aW9uIFRpbWUAMDcvMTMvMTYE18vEAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAAApJREFUCJljaAAAAIIAgcsTsmEAAAAASUVORK5CYII=");}
    :root .tripfinderwrap{background-image:none;background-color:#F9F9F8;} */
  .lastmin-fbtn,.flighttrips-fbtn {
    margin-bottom: 0.625em;
  }

  .lastmin-link {
    font-weight: 300;
    margin: 1em 0 0;
  }

  .lastmin-fbtn button,.flighttrips-fbtn button {
    font-size: 0.875em;
    border-color: #000;
  }

  .hasdropdown {
    position: relative;
  }

  .hasdropdown .selectbox {
    margin-bottom: 0;
  }

  .flightfinder {
    min-height: 32em;
  }

  .selectbox .selectric {
    border: none;
    background-color: #f3f3f3;
    border-radius: 0.5em;
    height: 3.125em;
  }

  .selectbox .selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 1.5em 0 0;
    padding: 0.625em 0 0.625em 0.75em;
    color: #222;
    height: 3.125em;
    text-align: left;
    font-size: 100%;
    font-weight: 300;
    line-height: 1.75;
  }

  .selectbox .selectric .button,
  .popupbox-selectguests .selectric .button {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 1.5em;
    height: 3.125em;
    line-height: 3.125em;
    color: #444;
    text-align: center;
  }

  .selectbox .ageselect-ages .selectric {
    background-color: #fff;
    border: #000 1px solid;
    height: 2.625em;
    border-radius: 0.25em;
  }

  .selectbox .selectric-warn,
  .selectbox .selectric-warn[readonly] {
    /* background-color: #d9534f; */
    color: #d9534f;
    border-color: #d9534f;
  }

  .selectbox .selectric-warn .label,
  .selectbox .selectric-warn .button {
    color: #d9534f;
  }

  .selectbox .selectric-items ul,
  .selectbox .selectric-items li,
  .popupbox-selectguests .selectric-items ul,
  .popupbox-selectguests .selectric-items li {
    font-size: 100%;
    line-height: 1.875em;
    min-height: 1.875em;
  }

  .selectbox .form-control {
    border-color: #fff;
    background-color: #f3f3f3;
    border-radius: 0.5em;
  }

  .flightfinder .selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 1.5em 0 0;
    padding: 0.375em 0 0.375em 0.75em;
    color: #8e9195;
    height: 2.5em;
    text-align: left;
    font-size: 100%;
    font-weight: 300;
    line-height: 1.875;
  }

  .flightfinder .selectric .button {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 1.5em;
    height: 2.5em;
    line-height: 2.5em;
    color: #444;
    text-align: center;
  }

  .tripfinder-full .guestamount {
    position: relative;
    margin-bottom: 0.625em;
  }

  .departuredate-hide {
    display: none;
  }

  .tripfinder h3 {
    color: #138587;
    line-height: 1;
    font-weight: 400;
    border-bottom: #666 1px solid;
    margin-top: 0;
    padding: 0 0 0.2em;
    text-transform: uppercase;
  }

  .tripfinder label,
  .flightfinder label {
    line-height: 1;
    font-size: 0.875em;
    font-weight: 400;
    display: block;
    margin: 0 0 0.428571em;
    color: #000;
  }

  .flightfinder .form-control {
    color: #8e9195;
  }

  .flightfinder .flightfindbtn {
    margin-top: 1.1875em;
  }

  .popupbox-selectguests h4 {
    font-weight: 300;
  }

  .popupbox-selectguests h5 {
    text-transform: uppercase;
    font-weight: 300;
  }

  .tripfinder .form-control {
    height: 3.125em;
    padding: 0.625em 0.75em;
    border-radius: 0.5em;
    box-shadow: none;
    font-weight: 300;
  }

  .tripfinder input#departuredate::-moz-placeholder {
    font-style: normal;
    color: #8e9195;
  }

  .tripfinder input#departuredate:-moz-placeholder {
    font-style: normal;
    color: #8e9195;
  }

  .tripfinder input#departuredate::-webkit-input-placeholder {
    font-style: normal;
    color: #8e9195;
  }

  .tripfinder input#departuredate:-ms-input-placeholder {
    font-style: normal;
    color: #8e9195;
  }

  .tripfinder input#departuredate::placeholder {
    font-style: normal;
    color: #8e9195;
  }

  .tripfinder input.selectric-warn#departuredate::-moz-placeholder {
    font-style: normal;
    color: #fff;
  }

  .tripfinder input.selectric-warn#departuredate:-moz-placeholder {
    font-style: normal;
    color: #fff;
  }

  .tripfinder input.selectric-warn#departuredate::-webkit-input-placeholder {
    font-style: normal;
    color: #fff;
  }

  .tripfinder input.selectric-warn#departuredate:-ms-input-placeholder {
    font-style: normal;
    color: #fff;
  }

  .tripfinder input.selectric-warn#departuredate::placeholder {
    font-style: normal;
    color: #fff;
  }

  .tripfinder .input-group-addon {
    border-radius: 0;
    border-color: #b2b7b7;
    cursor: pointer;
  }

  .tripfinder .hasdropdown .children_ages {
    font-size: 0.75em;
    font-weight: 300;
    padding: 0.25em 0;
    clear: both;
    color: #fff;
  }

  .datepicker {
    border: none;
    margin: 0;
    border-radius: 0.5em;
    width: 340px;
    padding: 1.25em 1.75em;
    box-shadow: 0 0 10px -6px;
    max-width: 100vw;
  }

  .datepicker-orient-top {
    transform: translateY(-0.71875em);
  }

  .datepicker-orient-bottom {
    transform: translateY(0.71875em);
  }

  .datepicker table tr td,
  .datepicker table tr th {
    border-radius: 0;
  }

  .datepicker table tr th.datepicker-switch,
  .datepicker table tr th.dow {
    text-transform: capitalize;
  }

  .datepicker table tr td.disabled,
  .datepicker table tr td.disabled:hover,
  .datepicker table tr td.cw,
  .datepicker table tr td.cw:hover {
    color: #ccc;
  }

  .datepicker table tr td.enabled {
    color: #138586;
  }

  .datepicker table tr td.enabled:hover {
    background-color: transparent;
  }

  .datepicker table tr td.enabled:hover .datepicker-datebox {
    width: 2em;
    height: 2em;
    line-height: 2em;
    color: #000;
    border: #000 1px solid;
    border-radius: 50%;
  }

  .datepicker:before,
  .datepicker:after {
    content: none;
  }

  .datepicker table {
    width: 100%;
  }

  .datepicker table tr td,
  .datepicker table tr th {
    width: 2.625em;
    height: 2.625em;
    padding: 0;
  }

  .datepicker table tr th svg {
    margin-top: 0.5em;
  }

  .datepicker table tr td.active:active,
  .datepicker table tr td.active.highlighted:active,
  .datepicker table tr td.active.active,
  .datepicker table tr td.active.highlighted.active {
    background-color: transparent;
    border-color: transparent;
  }

  .datepicker table tr td.active:active .datepicker-datebox,
  .datepicker table tr td.active.highlighted:active .datepicker-datebox,
  .datepicker table tr td.active.active .datepicker-datebox,
  .datepicker table tr td.active.highlighted.active .datepicker-datebox {
    width: 2em;
    height: 2em;
    line-height: 2em;
    color: #138586;
    border: #138586 1px solid;
    border-radius: 50%;
  }

  .datepicker table tr td.active:active:hover,
  .datepicker table tr td.active.highlighted:active:hover,
  .datepicker table tr td.active.active:hover,
  .datepicker table tr td.active.highlighted.active:hover,
  .datepicker table tr td.active:active:focus,
  .datepicker table tr td.active.highlighted:active:focus,
  .datepicker table tr td.active.active:focus,
  .datepicker table tr td.active.highlighted.active:focus,
  .datepicker table tr td.active:active.focus,
  .datepicker table tr td.active.highlighted:active.focus,
  .datepicker table tr td.active.active.focus,
  .datepicker table tr td.active.highlighted.active.focus {
    color: #138586;
    background-color: transparent;
    border-color: transparent;
  }

  /* .tripfinder-full .depselect .datepicker{width:21.875em;margin-top:0.71875em;padding:1.25em 1.75em;}
    .tripfinder-full .depselect .datepicker:before,.tripfinder-full .depselect .datepicker:after{content:none;}
    .tripfinder-full .depselect .datepicker table{width:100%;}
    .tripfinder-full .depselect .datepicker table tr td,.tripfinder-full .depselect .datepicker table tr th{width:2.625em;height:2.625em;padding:0;}
    .tripfinder-full .depselect .datepicker table tr td.active:active,.tripfinder-full .depselect .datepicker table tr td.active.highlighted:active,.tripfinder-full .depselect .datepicker table tr td.active.active,.tripfinder-full .depselect .datepicker table tr td.active.highlighted.active{background-color:transparent;border-color:transparent;}
    .tripfinder-full .depselect .datepicker table tr td.active:active .datepicker-datebox,.tripfinder-full .depselect .datepicker table tr td.active.highlighted:active .datepicker-datebox,.tripfinder-full .depselect .datepicker table tr td.active.active .datepicker-datebox,.tripfinder-full .depselect .datepicker table tr td.active.highlighted.active .datepicker-datebox{width:2.5em;height:2.5em;line-height:2.5em;color:#138586;border:#138586 1px solid;border-radius:50%;} */
  .panel {
    border-radius: 0;
  }

  .autocomplete-dropdown {
    border-radius: 0;
    background-color: #fff;
    float: none;
    position: absolute;
    padding: 0;
  }

  .autocomplete-dropdown .list-group {
    border-radius: 0;
    box-shadow: none;
  }

  .autocomplete-dropdown .list-group-item {
    border-radius: 0;
    border-left: none;
    border-right: none;
    font-size: 0.75em;
    white-space: nowrap;
  }

  .autocomplete-dropdown .list-group-item:first-child {
    border-top: none;
  }

  .autocomplete-dropdown .list-group-item:last-child {
    border-bottom: none;
  }

  .ageselect-dropdown {
    min-height: 2em;
    margin-top: 1em;
  }

  .autocomplete-dropdown:before {
    content: '';
    display: inline-block;
    border-left: 0.4375em solid transparent;
    border-right: 0.4375em solid transparent;
    border-bottom: 0.4375em solid #ccc;
    border-top: 0;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: -0.4375em;
    left: 1em;
  }

  .ageselect-ages {}

  .ageselect {}

  .ageselect .selectric-items .selectric-scroll>ul {
    padding: 0.625em;
  }

  .ageselect-ages label {
    font-weight: 300;
    margin-bottom: 0.714285em;
  }

  .ageselect-ages .age {
    margin-bottom: 0.5em;
  }

  .ageselect-ages .selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 1.5em 0 0;
    padding: 0.375em 0 0.375em 0.5em;
    color: #8e9195;
    height: 2.625em;
    text-align: left;
    font-size: 100%;
    font-weight: 300;
    line-height: 1.875;
  }

  .ageselect-ages .selectric .button {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 1.5em;
    height: 2.625em;
    line-height: 2.875em;
    color: #444;
    text-align: center;
  }

  .ageselect-close {
    border-top: #ddd 1px solid;
    padding: 0.5em 0.25em;
    text-align: right;
  }

  .ageselect-close button {
    background-color: #eb1d25;
    color: #fff;
    font-weight: 700;
  }

  .guests-allocation {}

  .guests-allocation .form-group.checkbox {
    margin-top: 1.1875em;
  }

  .guests-allocation .form-group.checkbox label {
    line-height: 1.4285;
  }

  #room-allocation h6 {
    margin: 1em 0;
  }

  .tripfindbtn {
    background-color: #138586;
    border-radius: 0.5em;
    font-weight: 400;
    width: 100%;
  }

  #triphotelsbox {
    min-height: 10em;
    position: relative;
  }

  #triphotelsbox #triphotelstitle {
    font-weight: 400;
    margin-top: 0.5em;
  }

  #triphotelsbox #triphotelstitle small {
    color: #666;
    text-transform: none;
    font-size: 80%;
  }

  .triphotelprocess {
    max-width: 25%;
    min-width: 20em;
  }

  #magnificPopupSpinner {
    height: 4em;
    position: relative;
  }

  .triphotelprocess h4 {
    margin-top: 1em;
  }

  .hotelslist {
    padding: 1em 0;
    background: #fff;
    min-height: 10em;
  }

  .backtohotelslist {
    margin: 1em 0 0;
  }

  .backtohotelslist .hotelbackbtn {
    border: #128387 2px solid;
    color: #128387;
    font-weight: 400;
  }

  .hotelslist>.hotel {
    margin-bottom: 1.125em;
    padding-top: 2.25em;
    border-top: #8e9293 1px solid;
  }

  .hotelslist>.hotel .hotelinfo .equal-height>div {
    min-height: 16em;
  }

  .hotelslist>.hotel .hotelimage {
    position: relative;
  }

  .hotelslist>.hotel .hotelimage .hotel-label,
  .hotelslist>.hotel .hotelimage .hotel-swlabel {
    position: absolute;
    font-size: 0.875em;
    font-weight: 400;
    padding: 0.375em 0.625em;
    top: 1em;
    color: #333;
    background-color: #fff;
  }

  .hotelslist>.hotel .hotelimage .hotel-label {
    left: 1em;
  }

  .hotelslist>.hotel .hotelimage .hotel-swlabel {
    right: 1em;
  }

  .hotelslist>.hotel .hotelimage .hoteldescgallery {
    position: absolute;
    z-index: 25;
    font-size: 1.125em;
    padding: 0.5em 0.75em;
    color: #fff;
    left: 0.77778em;
    bottom: 0.77778em;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 0.2222em;
  }

  .hotelslist>.hotel .hotelimage .hotelteaserimg {
    border-radius: 0.5em;
  }

  .hotelslist>.hotel .hotelbook .hotelpricefrom {
    font-size: 1.5em;
    font-weight: 400;
  }

  .hotelslist>.hotel .hotelimage .hoteldescgallery img.svg {
    width: 1em;
    height: 1em;
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(189deg) brightness(111%) contrast(101%);
    vertical-align: -0.16667em;
  }

  .hotelslist>.hotel .hotelbook .hotelpricefrom span {
    font-size: 1.5em;
  }

  .hotelslist>.hotel .hotelbook .hotelpricefrom span small,
  .hotelslist>.hotel .hotelbook .hotelpricefrom span s {
    font-size: 67%;
  }

  .hotelslist>.hotel .hotelbook .hotelpricefrom span s {
    color: #58585e;
  }

  .hotelslist>.hotel .hotelbook .hotelpricefrom span.hotel-pricediff {
    display: inline-block;
    text-align: left;
  }

  .hotelslist>.hotel:first-child {
    padding-top: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .hotelslist>.hotel .hotelbook .hotelbookbtn {
    font-weight: 400;
  }

  .hotelbanner {
    height: 26.25em;
    overflow: hidden;
    position: relative;
  }

  .hotelbanner>a.lightbox {
    display: block;
    height: 100%;
  }

  .hotelbanner>a.lightbox>img.hotelteaserimg {
    position: absolute;
    left: 50%;
    height: 100%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .hotelsinfo {
    padding: 1em;
    margin-bottom: 1em;
    font-weight: 300;
    background-color: #fff;
  }

  .system-info {
    border-width: 0.1em;
    border-style: solid;
    border-radius: 0.5em;
  }

  .system-info .infobarbox,
  .tipinfo .infobarbox {
    font-size: 0.875em;
    padding: 1em 1em 1em 4em;
    position: relative;
  }

  .system-info .infobarbox a,
  .tipinfo .infobarbox a {
    color: inherit;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
  }

  .system-info .infobarbtn,
  .tipinfo .infobarbtn {
    padding: 1em;
  }

  .system-info .infobarbtn .btn,
  .tipinfo .infobarbtn .btn {
    font-size: 14px;
  }

  .system-info img.svg {
    width: 1.285714em;
    height: 1.285714em;
    position: absolute;
    top: 1.125em;
    left: 1.3125em;
  }

  .system-info svg {
    position: absolute;
    top: 0.6875em;
    left: 1em;
  }

  .system-info ul {
    font-weight: 300;
  }

  .tipinfo {
    border-width: 0.1em;
    border-style: solid;
    border-radius: 0.5em;
    margin-bottom: 1em;
  }

  .tipinfo img.svg {
    width: 1.285714em;
    height: 1.285714em;
    position: absolute;
    top: 1.125em;
    left: 1.3125em;
  }

  .text-info img.svg {
    filter: invert(24%) sepia(9%) saturate(5549%) hue-rotate(148deg) brightness(97%) contrast(96%);
  }

  .text-danger img.svg {
    filter: invert(28%) sepia(65%) saturate(1311%) hue-rotate(323deg) brightness(106%) contrast(101%);
  }

  .border-warning img.svg {
    filter: invert(77%) sepia(94%) saturate(2094%) hue-rotate(334deg) brightness(104%) contrast(98%);
  }

  .suppinfo {
    font-weight: 300;
    font-size: 0.875em;
    margin-bottom: 1em;
  }

  .suppinfo .lcd {
    width: 1em;
    height: 1em;
  }

  .saveinfo {
    border-width: 0.1em;
    border-style: solid;
    border-radius: 0.5em;
    font-weight: 300;
    font-size: 0.875em;
    margin: 0 0 0.5em;
  }

  .saveinfo .infobarbox {
    padding: 1em 1em 1em 4em;
    position: relative;
  }

  .saveinfo .infobarbtn {
    padding: 0 1em 1em;
  }

  .saveinfo img.svg {
    width: 1.285714em;
    height: 1.285714em;
    position: absolute;
    top: 1.125em;
    left: 1.3125em;
  }

  .hotel .hotelsimpledesc>h3 {
    font-weight: 400;
  }

  .hotel .hotelname,
  .hotel .hotelname a {
    color: #58585e;
  }

  .hotel .hotelsimpledesc>h5 {
    font-size: 1.125em;
    text-transform: uppercase;
  }

  .hoteltabbox {
    border-bottom: #bbb 1px solid;
    padding-top: 1.4375em;
  }

  .hoteltab {
    display: none;
  }

  .hoteltab .gallery {
    margin: 0.75em 0 1.5em;
    padding-left: 0.625em;
    padding-right: 0.625em;
  }

  .hoteltab .gallery span {
    margin: 0;
  }

  .hotelinfoexpbtn {
    padding-left: 0;
    padding-right: 0;
  }

  .hotelinfoexpbtn img {
    width: 1em;
    height: 1em;
    vertical-align: text-bottom;
    filter: invert(38%) sepia(80%) saturate(451%) hue-rotate(132deg) brightness(94%) contrast(91%);
  }

  .hotelinfoexpbtn:hover img,
  .hotelinfoexpbtn:focus img {
    filter: invert(19%) sepia(12%) saturate(3178%) hue-rotate(132deg) brightness(98%) contrast(92%);
  }

  .hotelinfoexpander>.btn-link:focus,
  .hotelinfoexpander>.btn-link:focus-visible {
    outline: none;
  }

  .hoteltab .tabrelation {
    margin-top: 0.75em;
  }

  .hoteltab .tabrelation .wrapper {
    margin-bottom: 0.75em;
  }

  .hotelinfotxt {
    padding: 0.75em;
    cursor: pointer;
    border-bottom: #999 2px solid;
  }

  .hotelinfotxt span {
    font-size: 1.25em;
    font-weight: 400;
    display: inline-block;
    vertical-align: middle;
    margin-right: 1.3125em;
  }

  .hotelinfotxt i.lcd {
    font-size: 1.25em;
    vertical-align: bottom;
  }

  /* .hotelinfotxt img{width:2em;} */
  #roomselectoption table {
    font-weight: 300;
  }

  #roomselectoption table caption {
    text-align: center;
  }

  #roomselectoption table th {
    white-space: nowrap;
  }

  #roomselectoption table td {
    vertical-align: middle;
  }

  #roomselectoption table th.room-description {
    width: 30%;
  }

  #roomselectoption table td.room-description {
    font-size: 0.875em;
  }

  #roomselectoption .room-description p {
    margin: 0;
  }

  .hoteltrips {
    margin: 0.75em 0 0;
  }

  .hoteltrips .triproomstitle {
    margin: 1.66667em 0 0.75em;
    font-weight: 400;
  }

  .hoteltrips .tripsinglebox,
  .hoteltrips .triptabbox {
    padding: 0.75em 1.875em;
  }

  .hoteltrips .tripsinglebox h3,
  .hoteltrips .triptabbox h3 {
    font-weight: 400;
    margin: 0 0 0.33333em;
    padding: 0.33333em 0;
  }

  .hoteltrips .hoteltripbox {
    background-color: #fff;
    padding: 0.625em 0 0;
    position: relative;
    min-height: 11.25em;
  }

  .hoteltrips .tripmatch {
    background-color: #138587;
  }

  .hoteltrips table {
    border-collapse: separate;
    margin-bottom: 0;
  }

  .hoteltrips table tbody tr th,
  .hoteltrips table tbody tr td,
  .hoteltrips table thead tr th {
    vertical-align: middle;
    font-weight: 300;
  }

  .hoteltrips table.tripcalendar {
    margin-bottom: 0;
  }

  .hoteltrips table.tripcalendarheader thead th {
    width: 13%;
    text-align: center;
    color: #666;
  }

  .hoteltrips table.tripcalendarheader thead th:first-child {
    width: 20%;
  }

  .hoteltrips table.tripcalendarheader thead th:last-child {
    border-right: none;
  }

  .hoteltrips table.tripcalendarheader thead th .depinfo::first-line {
    font-size: 1.0625em;
    font-weight: 400;
  }

  .hoteltrips table tbody .roomtypes {
    width: 20%;
    color: #666;
    font-size: 0.875em;
    border: #fff 0.125em solid;
    border-left: none;
    height: 4em;
    position: relative;
  }

  .hoteltrips .hotelareaheader table tbody p {
    margin: 0;
  }

  .hoteltrips .hotelareaheader table tbody tr {
    background-color: #fff;
  }

  .hoteltrips .hotelareaheader table tbody tr.expanded {
    background-color: #ecfff8;
  }

  .hoteltrips .hotelareaheader table tbody td {
    width: 13%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hoteltrips .hotelareaheader table tbody td.roomtypeheader {
    width: 20%;
    padding: 0;
    border-left: none;
  }

  /* .hoteltripbox .hoteltripsfilter{border-bottom: darkgray 1px dashed;} */
  .hoteltripbox .tripscycleshow {
    margin: 1em 0;
  }

  .hoteltripbox .tripscyclepnb {
    margin-bottom: 0.5em;
  }

  .hoteltripbox .tripscycle .tripshalf table tbody .roomtype {
    font-size: 0.875em;
  }

  .hoteltrips table tbody .roomtypes .popover-content {
    font-size: 87.5%;
    font-weight: 300;
    color: #666;
  }

  .hoteltrips table tbody .roombasic {
    cursor: pointer;
    padding-right: 1em;
  }

  .hoteltrips table tbody .roombasic span {
    cursor: pointer;
    text-transform: capitalize;
  }

  .hoteltrips table tbody .roombasic span:first-child {
    text-transform: none;
  }

  .hoteltrips table tbody .roomcell {
    width: 13%;
    font-size: 0.875em;
    background-color: #eff0ed;
    color: #666;
  }

  .hoteltrips table tbody tr td.roomprice {
    position: relative;
  }

  .hoteltrips table tbody tr td.roomcell:last-child {
    border-right: none;
  }

  .hoteltrips table tbody tr td.roomprice .addtheroom {
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
    font-weight: 700;
    display: block;
    position: absolute;
    margin-top: -1em;
    margin-right: 0.5em;
    top: 50%;
    right: 0;
    border-radius: 50%;
    background: #fff;
  }

  .hoteltripstack {
    margin-top: 0.5em;
  }

  .hoteltripstack .tripcalbox {
    margin-bottom: 2em;
  }

  .hoteltripstack .tripdeparturedates {
    border-bottom: #eee 1px solid;
  }

  .hoteltripstack .tripdeparturedates .depinfo {
    padding: 0.5em;
  }

  .hoteltripstack .tripdeparturedates .depinfo::first-line {
    font-size: 1.0625em;
    font-weight: 400;
  }

  .hoteltripstack .tripdeparturedates .defdates {
    border-bottom: #138587 0.25em solid;
  }

  .hoteltrips .tripsinglebox h3.triproomheader,
  .hoteltrips .triptabbox h3.triproomheader {
    text-transform: none;
    margin: 1.25em 0;
    padding: 0;
  }

  .hoteltripstack .triproomstacks .roomstack {
    padding: 0.625em;
    margin-top: 0.5em;
    min-height: 5em;
  }

  .hoteltripstack .triproomstacks .panel-group .panel {
    border-radius: 0;
  }

  .hoteltripstack .triproomstacks .panel-group .panel-title a {
    color: #138587;
  }

  .hoteltripstack .triproomstacks .panel-group .panel-body {
    padding: 0.0625em 0.5em 0.5625em;
  }

  .hoteltripstack .triproomstacks .roomstack .roomtype {
    margin: 0.1875em 0 0.125em;
    line-height: 1.125;
  }

  .hoteltripstack .triproomstacks .roomstack label {
    margin: 0 0 0.125em;
    font-size: 0.875em;
    font-weight: 400;
  }

  .hoteltripstack .triproomstacks .roomstack label input {
    position: absolute;
  }

  .hoteltripstack .triproomstacks .roomstack .roommealpackage,
  .hoteltripstack .triproomstacks .roomstack .roomtotal {
    font-size: 0.75em;
    margin: 0;
  }

  .hoteltripstack .triproomstacks .roomstack .roomforall {
    font-size: 0.8125em;
    margin: 0;
    line-height: 1.125;
  }

  .hoteltripstack .triproomstacks .roomstack .roomforall+button {
    font-size: 0.8125em;
    margin: 0;
    height: 3.23em;
  }

  .hoteltrips table tbody tr td.roomprice label i.lcd {
    color: #ccc;
  }

  .hoteltrips table tbody tr td.roomprice:hover,
  .hoteltrips table tbody tr td.roomselected,
  .hoteltripstack .triproomstacks .roomselected {
    background-color: #138587 !important;
  }

  .hoteltrips table tbody tr td.roomselected span:not(.text-red),
  .hoteltrips table tbody tr td.roomprice:hover span:not(.text-red),
  .hoteltrips table tbody tr td.roomselected label i.lcd,
  .hoteltrips table tbody tr td.roomprice:hover label i.lcd,
  .hoteltripstack .triproomstacks .roomselected span:not(.text-red),
  .hoteltripstack .triproomstacks .roomselected p {
    color: #fff;
  }

  .hoteltrips table tbody td label {
    font-weight: 300;
    margin-bottom: 0;
  }

  .hoteltrips table tbody td label input.invisible {
    position: absolute;
  }

  .hoteltripbox .tipinfo {
    margin-top: 2em;
    margin-bottom: 0;
  }
  .hoteltripbox .tipinfo.timenotmatchinfo {
    margin-top: 0.75em;
    margin-bottom: 1.375em;
  }
  .hoteltrips table tbody td:hover label {
    color: #fff;
    cursor: pointer;
  }

  .hoteltrips table tbody td label span.hotelprice {
    font-weight: 400;
  }

  .hoteltrips table tbody td .pricepop {
    display: none;
  }

  .hoteltrips .popover-content {
    font-weight: 300;
    font-size: 0.875em;
  }

  .hoteltrips .popover-content .pricecompare {
    display: inline-block;
    vertical-align: top;
    line-height: 1;
  }

  .hoteltrips .popover-content .pricecompare b {
    color: #eb1d25;
  }

  .hoteltrips .popover-content .pricecompare i {
    text-decoration: line-through;
    font-size: 85.7143%;
    color: #ccc;
  }

  .room-recomm {
    padding: 2em 2.5em;
    border: #3c8e85 2px solid;
    border-radius: 5px;
    background-color: #eef8f4;
    margin: 2em 0 3.5em;
  }

  .room-norecomm {
    margin: 2em 0 0;
  }

  .room-recommguests img.svg {
    width: 1.5em;
    height: 1.5em;
  }

  .room-recommguests small img.svg {
    width: 1.4368em;
    height: 1.4368em;
  }

  .room-recommtype p {
    font-size: 0.875em;
  }

  .room-recomm1pp p:first-child {
    font-size: 0.875em;
  }

  .room-recommtype h5 {
    font-size: 1.125em;
    color: #333;
  }

  .room-candidates {
    padding-top: 1.625em;
    padding-bottom: 1.5em;
    border-top: #58585e 1px dashed;
  }

  .room-addtocart button {
    padding: 0.375em 0.75em;
  }

  .room-candidates .room-addtocart button {
    margin-top: 1.625em;
  }

  .room-types .room-candidates:first-child {
    border-top: none;
  }

  .room-types .room-candidates .selectric,
  .room-types .roomstack .selectric {
    border: 1px solid #222;
    border-radius: 0.25em;
  }

  .room-types .room-candidates .selectric .label,
  .room-types .roomstack .selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 1.5em 0 0;
    padding: 0.5625em 0 0.5625em 0.8125em;
    color: #222;
    height: 2.625em;
    text-align: left;
    font-size: 100%;
    font-weight: 300;
    line-height: 1.5;
  }

  .room-types .room-candidates .selectric b.button,
  .room-types .roomstack .selectric b.button {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 1.5em;
    height: 2.625em;
    line-height: 2.875em;
    color: #222;
    text-align: center;
  }

  .room-types .room-candidates .selectric-items ul,
  .room-types .roomstack .selectric-items ul {
    padding: 1em 0;
  }

  .room-types .room-candidates .selectric-items ul li,
  .room-types .roomstack .selectric-items ul li {
    padding: 0.25em 1.25em;
  }

  .room-filterinit .btn-capsule {
    border-color: #000;
    border-radius: 10em;
  }

  .room-filterinit .btn-capsule:hover {
    background-color: #138587;
    border-color: #138587;
    color: #fff;
  }

  .room-typedesc {
    min-height: 10.375em;
  }

  .room-typedesc h5 {
    font-size: 1.5em;
    margin-top: 0.1666667em;
    margin-bottom: 0.4666667em;
  }

  .room-typedesc h5 span.label {
    font-size: 0.5em;
    background-color: #e7e7e7;
    color: #000;
    vertical-align: middle;
  }

  .room-suminfo {
    width: 1.5em;
    height: 1.125em;
    display: inline-block;
    text-align: center;
    line-height: 1.125em;
    cursor: pointer;
    position: relative;
    vertical-align: 0.3125em;
  }

  /* .room-suminfo > i.lcd {
    color: #128488;
    font-size: 1.25em;
  } */
  .room-suminfo>img {
    width: 1em;
    filter: invert(29%) sepia(53%) saturate(2860%) hue-rotate(161deg) brightness(94%) contrast(86%);
  }

  .room-facility {
    padding: 0;
    list-style: none;
  }

  .room-facility li {
    padding-left: 1.5em;
    width: 49.875%;
    float: left;
  }

  .room-facility li:first-child {
    overflow: hidden;
    height: 1.5em;
  }

  .room-facility li:first-child img.svg {
    width: 1.125em;
    height: 1.125em;
  }

  .room-facility li::before {
    content: '\2022';
    display: inline-block;
    font-size: 1.125em;
    width: 0.8889em;
    height: 1.2em;
    line-height: 1.2em;
    text-align: center;
    position: absolute;
    margin-left: -1.2em;
    color: #58585e;
    letter-spacing: normal;
  }

  .room-sumbox {
    width: 100%;
    min-height: 3em;
    background-color: #fff;
    padding: 1em 0;
    position: relative;
    margin-bottom: 1em;
    font-size: 0.875em;
    border-radius: 0.571428em;
  }

  .room-sumbox .room-sumvalue {
    font-size: 1.5em;
    line-height: 1;
  }

  .room-sumbox .room-sumvalue s {
    font-size: 0.75em;
    font-weight: 300;
    color: #58585e;
  }

  .room-sumbox .room-sumvalue small {
    font-size: 0.667em;
    font-weight: 300;
  }

  .room-sumbox p.room-packinfo {
    line-height: 1.125;
  }

  /* New shopping cart */
  .cart {
    display: block;
    width: 100%;
    background-color: #fff;
    position: fixed;
    padding-left: 0.625em;
    padding-right: 0.625em;
    left: 0;
    bottom: 0;
    z-index: 300;
    -webkit-box-shadow: 0 -4px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 -4px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 -4px 6px 0 rgba(0, 0, 0, 0.16);
  }

  .cart .popover {
    max-width: 30em;
    min-width: 20em;
  }

  .cart .popover .popover-content {
    padding: 1em;
    position: relative;
  }

  .cart .popover .popover-content dl {
    margin: 0;
  }

  .cart .popover dt {
    font-weight: 400;
    font-size: 1.25em;
  }

  .cart .popover dt span.cart-popoverclose {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 46px;
    height: 46px;
    text-align: center;
    font-size: 3em;
    line-height: 0.625;
    font-weight: 200;
    cursor: pointer;
  }

  .cart-box {
    padding: 1.2222em 1em;
    font-size: 1.125em;
  }

  .cart-box h5 {
    font-weight: 400;
  }

  .cart-sumbox {
    padding: 0.72222em;
  }

  .cart-alert {
    background-color: #fff;
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
    margin: 0;
    padding: 2em 2em 2.5em;
    position: relative;
  }

  .cart-alert .close {
    font-family: 'Brown', 'Century Gothic', 'Segoe UI', Arial, sans-serif;
    color: #333;
    font-size: 3.75em;
    font-weight: 100;
    width: 0.5em;
    line-height: 1;
    top: 0;
    right: 0.4375em;
    opacity: 1;
    position: absolute;
  }

  .cart-alert .close:hover {
    opacity: 1;
  }

  .cart-alert h3 {
    font-size: 2em;
    margin-bottom: 0.5em;
  }

  .cart-alert .room-config {
    padding: 0.5em 0 0;
    margin: 0;
  }

  .cart-alert .room-config dt {
    font-size: 1.5em;
    line-height: 1;
    letter-spacing: -1px;
  }

  .cart-alert .room-config dd {
    font-size: 1.375em;
    letter-spacing: -1px;
  }

  .cart-alert .room-allowed>p {
    padding: 0;
    letter-spacing: -0.4375em;
  }

  .cart-alert .room-allowed img.guest-adult {
    width: 2em;
    height: 2em;
    vertical-align: baseline;
  }

  .cart-alert .room-allowed img.guest-child {
    width: 1.5em;
    height: 1.5em;
    vertical-align: 2px;
    margin-left: 2px;
  }

  .cart-alert .room-baseprice {
    padding-top: 2.25em;
    padding-bottom: 2.25em;
  }

  .cart-alert .room-baseprice strong {
    font-size: 1.5em;
  }

  .cart-detail {
    padding: 2.5em !important;
  }

  .cart-detail .hotelteaser h2 {
    margin: 0;
    font-size: 1.125em;
    font-weight: 400;
  }

  .cart-detail .hotelteaser h5 {
    margin: 0 0 0.5em;
    font-weight: 400;
  }

  .cart-hotel {}

  .cart-hotel>h1 {
    font-size: 1.25em;
    margin-bottom: 0;
    font-weight: 400;
  }

  .cart-hotel>h5 {
    font-size: 0.875em;
  }

  .cart-backtolist {
    background-color: transparent;
  }

  .cart-roomlist dd {
    border-top: #ddd 1px dotted;
    padding: 0.5em 0;
  }

  .cart-table {
    margin: 0.5em 0 1em;
  }

  .popupbox .cart-table>h5 {
    margin-top: 1em;
    margin-bottom: 0;
    padding-bottom: 0.25em;
    border-bottom: #ddd 2px solid;
  }

  .cart-table .cart-th {
    border-bottom: #ddd 2px solid;
    display: flex;
  }

  .cart-table .cart-th span,
  .cart-table .cart-th div.cart-align {
    font-size: 0.75em;
    font-weight: 400;
    text-transform: uppercase;
  }

  .cart-table .cart-th .cart-thcell {
    flex: 1;
  }

  .cart-table .cart-th .cart-thcell.cart-bedtype,
  .cart-table .cart-th .cart-thcell.cart-meal {
    flex: 1.5;
  }

  .cart-table .cart-tbody {
    border-bottom: #ddd 1px solid;
    display: flex;
  }

  .cart-table .cart-tbody .room-allowed {
    padding: 0.875em;
  }

  .cart-table .cart-tbody .room-baseprice dt {
    font-size: 1.125em;
  }

  .cart-table .cart-tbody .cart-td {
    flex: 1;
    font-size: 0.875em;
  }

  .cart-table .cart-tbody .cart-td.cart-bedtype,
  .cart-table .cart-tbody .cart-td.cart-meal {
    flex: 1.5;
  }

  .cart-table dl.room-config,
  .cart-table dl.room-baseprice,
  .cart-table .cart-tbody .room-amountchange {
    margin: 0;
    padding: 0.875em 0.375em 0.875em 1em;
  }

  .cart-table dl.room-config dt,
  .cart-table dl.room-baseprice dt {
    font-size: 1.125em;
  }

  .cart-table .room-amountchange strong {
    font-size: 1.25em;
  }

  .cart-table .room-minus,
  .cart-table .room-plus,
  .cart-table .room-plus-locked,
  .cart-table .room-minus-locked {
    display: inline-block;
    font-size: 1.25em;
    width: 1.6em;
    height: 1.6em;
    line-height: 1.375em;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    vertical-align: 0.125em;
  }

  .cart-table .room-minus,
  .cart-table .room-plus {
    border: #363232 1px solid;
    cursor: pointer;
  }

  .cart-table .room-plus-locked,
  .cart-table .room-minus-locked {
    border: #c7c7ca 1px solid;
    cursor: not-allowed;
    color: #b1b1b6;
  }

  .cart-table .room-plus,
  .cart-table .room-plus-locked {
    margin-left: 0.6em;
  }

  .cart-table .room-minus,
  .cart-table .room-minus-locked {
    margin-right: 0.6em;
  }

  .cart-table .room-plus:hover {
    background-color: #138587;
    border-color: #00b7a3;
    color: #fff;
  }

  .cart-table .room-plus-locked:hover,
  .cart-table .room-minus-locked:hover {
    background-color: #e53201;
    border-color: #b74700;
    color: #fff;
  }

  .cart-table .room-minus:hover {
    background-color: #286090;
    border-color: #204d74;
    color: #fff;
  }

  .cart-flightinfo,
  .cart-roomsinfo {
    margin-top: 1.5em;
    padding-top: 1.5em;
    border-top: #58585e 1px solid;
  }

  .cart-roomsinfo {
    border-bottom: #58585e 1px solid;
    padding-bottom: 1em;
    margin-bottom: 1.5em;
  }

  .cart-flightinfo h4,
  .cart-roomsinfo h4,
  .cart-frexpander h4 {
    font-size: 1.125em;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 0.5em;
  }

  .cart-roomsinfo h6,
  .cart-summarybox h6 {
    font-size: 1em;
  }

  .cart-summarybox h4 {
    font-weight: 400;
  }

  .cart-summarybox h4 .cart-summarytotal {
    position: relative;
  }

  .cart-summarybox h4 .cart-summarytotal strong {
    font-weight: 400;
  }

  .cart-summarybox h4 .cart-summarytotal s {
    font-size: 58.33333%;
    width: 100%;
    text-align: center;
    font-weight: 300;
    color: #585858;
    position: absolute;
    top: -1em;
  }

  .cart-summaryexpander button {
    padding: 0;
  }

  .cart-summaryexpander button img {
    width: 1em;
    height: 1em;
    vertical-align: text-bottom;
    filter: invert(38%) sepia(80%) saturate(451%) hue-rotate(132deg) brightness(94%) contrast(91%);
  }

  .cart-summaryexpander button:hover img,
  .cart-summaryexpander button:focus img {
    filter: invert(19%) sepia(12%) saturate(3178%) hue-rotate(132deg) brightness(98%) contrast(92%);
  }

  .cart-summaryexpander button span {
    font-size: 0.875em;
  }

  .cart-summaryexpander button:active,
  .cart-summaryexpander button:focus,
  .cart-summaryexpander button:active:focus {
    outline: none;
  }

  .cart-collapsebox,
  .cart-loadingspin {
    min-height: 2.25em;
  }

  .cart-loadingspin {
    position: relative;
  }

  .cart-pricesummary {
    font-weight: 400;
    margin-bottom: 0.5em;
  }

  .cart-pricesum {
    margin-top: 1.25em;
    padding-top: 1.25em;
    border-top: #58585e 1px solid;
    margin-bottom: 1em;
    padding-bottom: 1em;
  }

  .room-recommtype h5 span.label {
    font-size: 0.6em;
    background-color: #e7e7e7;
    color: #000;
  }

  .cart-fldate {
    margin-top: 0.25em;
  }

  .cart-airline {
    display: block;
    margin-top: 0.5em;
  }

  .cart-fldep {
    text-align: right;
    position: relative;
  }

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

  .cart-flroute p {
    font-size: 0.875em;
  }

  .cart-routeline {
    height: 3px;
    width: auto;
    position: relative;
    overflow: visible;
    margin: 0.25em 1em 0.25em 0;
    background-color: #58585e;
  }

  .cart-routeline img.svg {
    position: absolute;
    right: -1em;
    top: -0.4375em;
    width: 1em;
    height: 1em;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .cart-routeline .cart-routedot {
    position: absolute;
    width: 7px;
    height: 7px;
    border: #fff 1px solid;
    border-radius: 50%;
    background-color: #e53201;
    left: 50%;
    transform: translateX(0.25em);
    top: -2px;
  }

  .cart-flarr {
    text-align: left;
    position: relative;
  }

  .cart-fldep sub,
  .cart-flarr sub {
    font-size: 0.625em;
    bottom: 0;
  }

  .cart-fldep sup,
  .cart-flarr sup {
    position: absolute;
    display: block;
    top: -0.25em;
  }

  .cart-fldep sup {
    right: 0.875em;
  }

  .cart-flarr sup {
    left: 0.875em;
  }

  .cart-fldep .cart-fltime,
  .cart-flarr .cart-fltime {
    font-size: 1.5em;
  }

  .cart-roomsincart {
    border-top: #58585e 1px solid;
    border-bottom: #58585e 1px solid;
    margin: 1.5em 0;
  }

  .cart-roomsincart>.row {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
  }

  .room-amounttip {
    margin-top: 0.5em;
  }

  .room-amounttip .room-avail {
    display: inline-block;
    font-size: 0.875em;
    background-color: #e53201;
    color: #fff;
    padding: 0 0.42857em;
  }

  .cart-pricebook .room-warnbox {
    color: #31708f;
    margin-bottom: 0.75em;
  }

  .cart-pricebook .room-sumbox {
    background-color: #e2f4ed;
    padding: 1.5em 0;
    line-height: 1.25;
    margin: 0 0 1.25em;
  }

  .cart-pricebook .room-sumbox .room-sumvalues {
    display: inline-block;
    vertical-align: middle;
  }

  .cart-pricebook .room-sumbox .room-sumvalues strong {
    font-size: 2em;
    font-weight: 400;
  }

  .cart-pricebook .room-sumbox .room-sumvalues strong s {
    font-size: 0.75em;
    font-weight: 300;
    color: #58585e;
  }

  .cart-pricebook .room-sumbox .room-hasdiscount strong {
    color: #e30614;
  }

  .cart-pricebook .room-sumbox .room-sumvalues+del {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.5em;
    font-style: normal;
    text-decoration: none;
    margin-left: 0.625em;
    position: relative;
  }

  .cart-pricebook .room-sumbox .room-sumvalues+del:before {
    content: '';
    display: block;
    position: absolute;
    width: 110%;
    left: 0;
    height: 0;
    border-top: #000 1px solid;
    top: 50%;
    -webkit-transform: skewY(5deg);
    transform: translateX(-5%) translateY(-50%) skewY(5deg);
  }

  .booking {
    padding: 1.25em 0;
  }

  .booking h2 {
    padding: 0.25em 0 0.75em;
    margin: 0 0 0.5em;
    border-bottom: #aaa 1px solid;
    font-weight: 300;
    letter-spacing: 3px;
  }

  .mypages h2 {
    padding: 0.5em 0;
    margin: 0 0 0.8em;
    border-bottom: #aaa 1px solid;
    font-weight: 300;
    letter-spacing: 3px;
  }

  .hotelsupplement {
    padding: 0 0 1.25em;
    border-bottom: #8e9293 1px solid;
    margin-bottom: 1.5em;
  }

  .hotelpaymentbox {
    border-bottom: none;
  }

  .hotelpaymentbox .paydeposit img.svg,
  .hotelpaymentbox .travelportpaydeposit img.svg {
    width: 1.25em;
    height: 1.25em;
    vertical-align: text-top;
  }

  .bookingloginbox {
    border-bottom: #8e9293 1px solid;
    margin: 2em 0 1.75em;
    padding: 0 0 1.75em;
  }

  /*h3.personalinfotitle{font-size:2.5em;padding:0.3125em 0 0.25em;margin:0;font-weight:300;letter-spacing:1px;text-transform: none;}*/
  p.personalinfodesc {
    font-size: 1.25em;
    line-height: 1.5;
    letter-spacing: 0px;
  }

  .hotelsupplement h3 {
    font-size: 2em;
    padding: 0 0 0.325em;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: -1px;
  }

  .hotelsupplement h4 {
    font-size: 2em;
    padding: 0 0 0.325em;
    margin-top: 0;
    margin-bottom: 0px;
    font-weight: 300;
    letter-spacing: 0px;
  }

  .hotelsupplement h6.paydeposit .lcd {
    vertical-align: bottom;
  }

  .hotelsupplement .mealinfoicon {
    cursor: pointer;
    position: relative;
    background-color: #00dfb3;
    margin: 0 0 0 1em;
    bottom: 0;
    top: auto;
  }

  .hotelsupplement .mealinfoicon:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(17, 20, 17, 0);
    border-bottom-color: #00dfb3;
    border-width: 5px;
    margin-left: -5px;
  }

  .hotelsupplement .mealinfoicon:hover {
    background-color: #138587;
  }

  .hotelsupplement .mealinfoicon:hover:before {
    border-color: transparent;
    border-bottom-color: #138587;
  }

  .hotelsupplement .mealinfoicon img.svg {
    vertical-align: -0.125em;
    filter: invert(99%) sepia(0%) saturate(2888%) hue-rotate(172deg) brightness(109%) contrast(100%);
  }

  .hotelsupplement .wrapper {
    background-color: transparent;
  }

  .bookingwarn {
    padding: 0.75em 1.5em 1.125em;
  }

  .personaldetail+.bookingwarn {
    margin-top: 1.75em;
  }

  .mealinfotxt {
    font-size: 0.875em;
    font-weight: 300;
  }

  .form-desc {
    font-size: 0.875em;
    word-wrap: break-word;
    font-weight: 400;
  }

  .hotelguests {
    padding: 0;
    font-weight: 300;
  }

  .personaldetail .hotelguests {
    margin-top: 1.75em;
    padding-bottom: 1.5em;
  }

  .personaldetail .hotelguests:first-child {
    margin-top: 3em;
    padding: 0;
  }

  .hoteladdcoupon {
    margin-bottom: 0.75em;
  }

  .hotelguests h5 {
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 0px;
  }

  .personaldetail .hotelguests h5 {
    color: #000;
  }

  .hotelguests .hotelskibtn {
    margin-top: 0.75em;
  }

  .hotelguests h6 {
    font-size: 0.875em;
    font-weight: 300;
    color: #00a85c;
    margin: 0;
  }

  .hotelguests .control-label,
  .rent-base .control-label,
  .rent-secn .control-label {
    font-weight: 300;
  }

  .hotelguests .form-inline {
    margin: 0;
  }

  .hotelguests .form-group {
    vertical-align: top;
  }

  .form-group img.svg {
    width: 1em;
    height: 1em;
  }

  .form-group img.svg.form-control-feedback {
    top: 0.125em;
    right: 0.5em;
  }

  .hotelguests .form-group img.svg.form-control-feedback {
    right: 0.5em;
  }

  .has-feedback label~img.svg.form-control-feedback {
    filter: invert(30%) sepia(65%) saturate(1374%) hue-rotate(324deg) brightness(95%) contrast(79%);
  }

  .hotelguests .form-group label {
    font-weight: 400;
  }

  .hotelguests .payment-giftcardfield {
    margin-bottom: 1em;
  }

  .popupbox h5 {
    margin: 0.25em 0;
  }

  .popupbox h6 {
    margin: 0.5em 0 0.25em;
  }

  .popupbox .form-inline {
    margin: 0 0 1em;
  }

  .suppdetailpop .wrapper {
    margin: 0;
  }

  .suppdetailpop .wrapper .blockdesc {
    padding: 0;
  }

  .suppdetailpop .freeedit {
    padding-top: 0;
    padding-bottom: 0;
  }

  .suppdetailpop .table-responsive {
    border: none;
  }

  .suppdetailpop .freeedit .tabextend .blockimg {
    margin-top: 0;
  }

  .suppdetailpop .freeedit .tabextend .blockimg p {
    margin: 0;
  }

  .suppdetailpop .freeedit .tabextend:first-child {
    margin-top: 0;
  }

  .mealrestrict h5,
  .iatarestrict h5 {
    font-size: 1em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
  }

  .mealrestrict h5:first-child,
  .iatarestrict h5:first-child {
    margin-top: 0;
  }

  .mealrestrict label,
  .iatarestrict label {
    font-weight: 400;
  }

  .hotelguests .form-group .popover {
    left: 0 !important;
  }

  .hotelguests .form-extra {
    margin-bottom: 0.625em;
  }

  .hotelguests .form-extra .optionpanel {
    font-size: 0.875em;
    font-weight: 400;
    cursor: pointer;
  }

  .hotelguests .radio,
  .hotelguests .checkbox {
    text-align: left;
    margin-top: 0;
  }

  .hotelguests .radio label,
  .hotelguests .checkbox label {
    width: 100%;
  }

  .hotelguests .form-error {
    min-height: 1em;
    line-height: 1;
  }

  .hotelguests .form-error .help-block,
  .hotelguests .form-error2 .help-block {
    margin: 0.25em 0;
  }

  .hotelguests .form-group .popupbox {
    display: none;
  }

  .hotelguests .traveler .traveler-retrysave {
    clear: both;
    padding: 0;
    margin-bottom: 1em;
  }

  .hotelguests .traveler .input-group-addon {
    cursor: pointer;
  }

  .hotelguests .row .traveler-retrysave {
    padding: 0 0.625em;
  }

  .hotelguests .control-select {
    width: 100%;
  }

  .hotelguests .control-select select {
    width: 100%;
    color: #333;
    font-weight: 300;
  }

  .hotelguests .control-select .selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 1.5em 0 0;
    padding: 0.375em 0 0.375em 0.75em;
    color: #8e9195;
    height: 2.5em;
    text-align: left;
    font-size: 100%;
    font-weight: 400;
    line-height: 1.625;
  }

  .hotelguests .control-select .selectric .button {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 1.5em;
    height: 2.5em;
    line-height: 2.875em;
    color: #444;
    text-align: center;
  }

  .hotelguests .control-select .selectric-items ul,
  .hotelguests .control-select .selectric-items li {
    font-size: 100%;
    line-height: 1.875em;
    min-height: 1.875em;
  }

  .hotelguests .control-label select {
    font-weight: 300;
  }

  /*.hotelguests .form-inline .form-group{width:12.5em;color:#666;}*/
  .rent-base .form-inline .form-group {
    width: 8.75em;
  }

  #rent-customerbox h5 {
    padding: 0 0.625em;
    font-weight: 400;
    text-transform: uppercase;
  }

  .hotelguests .form-inline .form-label {
    width: 5em;
  }

  .hotelguests .form-inline .form-label2 {
    width: 7em;
  }

  .hotelguests .form-inline .form-tiny {
    width: 4em;
  }

  .hotelguests .has-feedback .form-control {
    padding-right: 0.75em;
  }

  .hotelguests .form-inline .form-short {
    width: 7.5em;
  }

  .hotelguests .form-inline .form-short2 {
    width: 13.825em;
  }

  .hotelguests .form-inline .form-long {
    width: 20.25em;
  }

  .hotelguests .form-inline .form-full {
    width: 32.75em;
  }

  .hotelguests .form-inline .form-half {
    width: 16.25em;
  }

  .hotelguests .form-inline .control-chrd {
    width: 20.25em;
    padding-left: 20px;
    min-height: 1.5em;
  }

  .hotelguests .form-inline .control-chrd input[type='checkbox'] {
    position: absolute;
    left: 0;
  }

  .hotelguests .form-inline .form-group input[type='text'],
  .rent-base .form-inline .form-group input[type='text'],
  .hotelguests .input-group {
    width: 100%;
    color: #333;
  }

  .hotelguests .form-inline .form-label h6 {
    text-align: right;
    line-height: 2.5;
  }

  .hotelguests .form-inline .form-label .control-label {
    display: inline-block;
  }

  .hotelguests .booking-main {
    padding: 0.5em 0 0;
  }

  .hotelguests .booking-other {
    padding: 0.5em 0 0;
    border-top: #ccc 1px dotted;
  }

  .hotelguests>h5+.booking-other {
    border-top: none;
  }

  .hotelguests .traveler .checkbox label {
    font-weight: 400;
  }

  .hotelguests .form-group .vce {
    margin-right: 1em;
  }

  .hotelguests .form-group .vce+.vce,
  .hotelguests .suppinfo {
    margin: 0;
  }

  .hotelguests .checkbox label input[type='checkbox'][name^='baggage-'] {
    top: 50%;
    margin-top: -6.5px;
  }

  .hotelsubmit {}

  .suppdetailbtn {
    min-width: 10em;
  }

  .popupbox {
    background-color: #fff;
    border-radius: 0.5em;
  }

  .popupbox>h3 {
    font-size: 2em;
    margin-bottom: 0.5em;
  }

  .popupbox .simplepanel h1 {
    color: #58585a !important;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 150%;
    letter-spacing: 2px;
  }

  .popupbox .simplepanel h3 {
    color: #58585a !important;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 150%;
    letter-spacing: 2px;
  }

  #deposit-note {
    font-weight: 300;
  }

  #deposit-note h5 {
    text-transform: uppercase;
    margin: 2em 0 0;
    line-height: 1.5;
  }

  #deposit-note h6 {
    font-size: 1em;
    font-weight: 300;
    margin: 1.25em 0 0;
    line-height: 1.5;
  }

  #deposit-note h6~.travelportpaydeposit {
    margin-top: 1.25em;
  }

  .paymentoptions {
    margin-top: 2em;
  }

  .paymentagreement {
    padding-top: 2em;
    margin-top: 2em;
    border-top: #8e9293 1px solid;
  }

  .paymentoptions h5 {
    margin-bottom: 1.5em;
  }

  .paymentagreement h5 {
    font-size: 0.875em;
    font-weight: bold;
    margin-bottom: 1.428571em;
  }

  .hoteladditionalinfo {}

  .hoteladditionalinfo dl.col-xs-12 {
    width: 100%;
    min-height: 1em;
  }

  .hoteladditionalinfo dl.col-xs-12 dt {
    font-size: 1em;
  }

  .hoteladditionalinfo dl.col-xs-12 dd {
    font-size: 0.75em;
    font-weight: 300;
  }

  .financialtable {
    background-color: #fff;
    border: #b9b9b9 1px solid;
    border-radius: 0.5em;
    margin-left: 0;
    margin-right: 0;
  }

  .financialgroups {
    padding: 1.25em 0;
  }

  .financialgroups .financial-hotel {
    padding: 0 1.25em;
    margin-bottom: 1.25em;
  }

  .financialgroups .financial-hotel h3 {
    color: #000;
    margin-top: 0.47059em;
  }

  .financialgroups .financial-hotel h5 {
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
  }

  .financialgroups .financial-hotel img.svg {
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
  }

  .financialtable .financial-popupbtn {
    display: none;
  }

  .financialgroups .financial-summary h5 {
    font-size: 1em;
    font-weight: 700;
    color: #000;
    padding: 1.25em 0;
    margin: 0 1.25em;
    border-top: #b9b9b9 1px solid;
  }

  .financialgroups .financial-summary .financial-collapse {
    padding-bottom: 1.25em;
  }

  .financialgroups .financial-summary h6 {
    font-size: 1em;
    font-weight: 700;
    color: #000;
  }

  .financialgroups .financial-summary .financial-row {
    padding: 0.375em 1.25em;
  }

  .financial-row .financial-label {
    position: relative;
    padding-left: 1.25em;
  }

  .financial-row .financial-label img.svg {
    position: absolute;
    width: 1em;
    height: 1em;
    left: 0;
    top: 0.25em;
  }

  .financialgroups .financial-hotel .hotelstar {
    margin-bottom: 0;
  }

  .financialgroups .financial-hotel .hotelstar img.svg {
    width: 1.75em;
    height: 1.75em;
    margin-right: 0;
    filter: invert(29%) sepia(72%) saturate(3308%) hue-rotate(346deg) brightness(90%) contrast(100%);
  }

  .financialgroups .financial-hotel .hotelstar img.starplus {
    width: 1.25em;
    height: 1.25em;
    filter: invert(66%) sepia(0%) saturate(47%) hue-rotate(177deg) brightness(93%) contrast(92%);
  }

  .financialgroups .financial-hotel i.lcd {
    font-size: 1.125em;
    vertical-align: sub;
  }

  .financial-flights .cart-flightinfo {
    margin: 1.5em 0;
    padding-top: 0;
    border-top: none;
  }

  .financial-pricetotal {
    border-top: #000 2px solid;
    padding: 1.75em 1.25em 1.25em;
    border-radius: 0 0 0.5em 0.5em;
  }

  .financial-pricetotal h6 {
    font-size: 1.125em;
  }

  .financial-highlight {
    background-color: #fef4f3;
  }

  .roomdescriptionbaloon,
  .roompriceballoon {
    display: none;
  }

  .roompricedetail h4 {
    font-weight: 400;
  }

  .roompricedetail .table {
    margin-bottom: 0;
  }

  .roompricedetail dl {
    margin: 0 0 1em;
    font-size: 0.857143em;
  }

  .roompricedetail dl dt {
    border-bottom: #ddd 2px solid;
  }

  .roompricedetail .roomtable1st {
    font-weight: 700;
  }

  .roompricedetail .roompricetotal {
    color: #f60;
    text-align: right;
  }

  .roompricedetail .roompricetotal span {
    color: #666;
    font-size: 0.875em;
  }

  .roompricedetail tr td:first-child {
    white-space: nowrap;
  }

  .bookinghotelinfo {
    margin-bottom: 1.25em;
  }

  .bookinghotelinfo h2 {
    color: #eb1d25;
  }

  .booking #login h4 {
    font-size: 1.125em;
    letter-spacing: 1px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 0.5em;
  }

  .bookinglogin h5 {
    color: #eb1d25;
    text-transform: uppercase;
    font-weight: 400;
  }

  .bookinglogin h6 {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1.25em;
  }

  .bookinglogin .logincontainer {
    font-weight: 300;
  }

  .bookinglogin .logincontainer .form-group {
    margin-bottom: 0.5em;
  }

  .bookinglogin .logincontainer .form-error {
    font-size: 0.75em;
  }

  .bookinglogin .logincontainer .form-error .help-block {
    margin-bottom: 0;
  }

  .bookinglogin .submit-area .btn {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
  }

  .bookinglogin label {
    font-size: 0.875em;
    width: 100%;
    font-weight: 400;
  }

  .bookinglogin input[type='text'],
  .bookinglogin input[type='password'] {
    font-weight: 300;
    width: 100%;
  }

  .profile-mybooking .table {
    font-weight: 300;
    margin-top: 1em;
    font-size: 0.875em;
  }

  .profile-mybooking .table th {
    text-transform: uppercase;
    font-weight: 700;
    padding-top: 0.75em;
    padding-bottom: 1.5em;
  }

  .profile-mybooking .popover {
    max-width: 25em;
  }

  .profile-mybooking .popover .table {
    font-size: 0.75em;
    width: 25em;
  }

  #form-newaccount {
    padding: 0.25em 0.75em;
    font-weight: 300;
  }

  #loginbox .login-submit {
    margin-top: 2.625em;
  }

  #loginbox .login-links {
    font-size: 0.875em;
    margin-top: 2em;
    font-weight: 700;
  }

  #loginbox .control-label,
  .profile-editing .control-label {
    font-weight: 300;
  }

  #loginbox .form-inline,
  .profile-editing .form-inline {
    margin: 0 0 0.25em;
  }

  #loginbox .form-group,
  .profile-editing .form-group,
  #newsletter .form-group {
    font-weight: 300;
    vertical-align: top;
  }

  #loginbox .form-group label,
  .profile-editing .form-group label,
  #newsletter .form-group label,
  #newsletter .form-group h5 {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* #newsletter .form-group label{margin-right:1em;} */
  /* #loginbox .form-group .radio,.profile-editing .form-group .radio,#newsletter .form-group .radio{margin:0;} */
  #loginbox .form-group .radio label {
    text-transform: none;
    letter-spacing: 0;
  }

  #loginbox .control-select select,
  .profile-editing .control-select select {
    width: 100%;
    color: #333;
  }

  #loginbox .form-inline .form-group,
  .profile-editing .form-inline .form-group {
    min-height: 4.6em;
  }

  #loginbox .form-inline .form-tiny,
  .profile-editing .form-inline .form-tiny {
    width: 14.625%;
  }

  #loginbox .form-inline .form-short,
  .profile-editing .form-inline .form-short {
    width: 33%;
  }

  #loginbox .form-inline .form-mid,
  .profile-editing .form-inline .form-mid {
    width: 34.425%;
  }

  #loginbox .form-inline .form-long,
  .profile-editing .form-inline .form-long {
    width: 66%;
  }

  #loginbox .form-inline .form-full,
  .profile-editing .form-inline .form-full {
    width: 100%;
  }

  #loginbox .form-inline .input-group,
  .profile-editing .form-inline .input-group {
    width: 100%;
    position: static;
  }

  #loginbox .form-inline .form-half,
  .profile-editing .form-inline .form-half {
    width: 49.625%;
  }

  #loginbox .form-inline .form-group input[type='text'],
  #loginbox .form-inline .form-group input[type='password'],
  .profile-editing .form-inline .form-group input[type='text'],
  .profile-editing .form-inline .form-group input[type='password'] {
    width: 100%;
    color: #333;
  }

  #loginbox .has-feedback .form-control,
  .profile-editing .has-feedback .form-control {
    padding-right: 0.75em;
  }

  #loginbox .help-block,
  .profile-editing .help-block {
    font-size: 0.875em;
    margin-bottom: 0;
  }

  #loginbox p,
  .profile-editing p {
    font-size: 0.875em;
  }

  .mylangley-links {
    margin: 1em 0;
    padding: 0;
    list-style: none;
  }

  .mylangley-infobox .freeedit,
  .mylangley-normalinfobox .freeedit {
    background-color: #eceeec;
  }

  .mylangley-resbtnbox .btn {
    width: 10em;
    margin: 0.107142857em 0;
  }

  .traveler .selectric,
  .mylangley-profileediting .selectric {
    border-width: 1.75px;
  }

  .traveler .selectric .label,
  .mylangley-profileediting .selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 1.5em 0 0;
    padding: 0.375em 0 0.375em 0.5em;
    color: #222;
    height: 2.4625em;
    text-align: left;
    font-size: 100%;
    font-weight: 400;
    line-height: 1.75;
  }

  .traveler .selectric .button,
  .mylangley-profileediting .selectric .button {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 1.5em;
    height: 2.625em;
    line-height: 2.875em;
    color: #222;
    text-align: center;
  }

  .mylangley-payment {
    padding: 1.25em 0;
  }

  .link-black {
    color: #000;
    text-decoration: underline;
    font-size: 12.5px;
  }

  #newsletter .form-group {
    font-weight: 300;
  }

  #newsletter .checkbox label,
  #newsletter .radio-inline label,
  .profile-editing .checkbox label,
  .profile-editing .radio label {
    font-weight: 300;
    font-size: 1em;
  }

  .contentareas {
    margin-top: 0.375em;
  }

  .blockimg,
  .videoblock {
    position: relative;
  }

  .blockimg img {
    border-radius: 0.5em;
  }

  .videoblock {
    margin-bottom: 3.5em;
  }

  .videoblock video {
    display: block;
    border-radius: 0.5em;
  }

  .horizontalleft .blockimg {
    float: left;
    width: 50%;
    margin: 0;
  }

  .horizontalright .blockimg {
    float: right;
    width: 50%;
    margin: 0;
  }

  .blocktitle,
  .portaltitle {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    color: #fff;
    font-weight: 400;
    line-height: 1.25;
  }

  .videoblock .video-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .portaltitle .vce,
  .videoblock .vce {
    vertical-align: middle;
  }

  .blocktitle .video-play {
    font-size: 100%;
    width: 3.33333em;
    height: 3.33333em;
    background: url('/Static/Img/mediaelement/mejs-controls.svg') 0 -1.625em no-repeat;
  }

  .blocktitle:hover .video-play {
    background-position: -3.33333em -1.625em;
  }

  .blocktitle {
    font-size: 1.5em;
  }

  .blocktitle .vce {
    padding: 0 1em;
    vertical-align: middle;
  }

  .blockcycle {}

  .blockcycle ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .blockcolumns {
    margin: 0 0 2em;
  }

  .blockcolumns .colhaslgap {
    padding-left: 4.75em;
  }

  .blockcolumns .colhasrgap {
    padding-right: 4.75em;
  }

  .blockdesc,
  .blockcolumns-ps {
    padding: 1.125em 0 0.9625em;
  }

  .rentalcar-cmsinfo .blockdesc {
    padding: 0;
  }

  .blockimg+.blockdesc h5 {
    font-size: 1.25em;
  }

  .blockimg+.blockdesc h5>a {
    color: #000;
  }

  .horizontalleft .blockdesc,
  .horizontalright .blockdesc {
    padding: 0.5625em 1.5em 1em;
    overflow: hidden;
  }

  .blockoverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.75);
    display: none;
  }

  .blockoverlay-inner {
    padding: 1.5em;
    color: #fff;
    font-weight: 300;
  }

  .blocklinkbtn {
    background-color: #39b87c;
  }

  .blockribbon {
    position: absolute;
    top: 0;
    right: 0;
  }

  .blockbadge {
    position: absolute;
    width: 6em;
    height: 6em;
    overflow: hidden;
    border-radius: 3em;
    text-align: center;
  }

  .blockbadge>div {
    text-align: center;
    margin: 0 0.25em;
    max-width: 98%;
    line-height: 1.25;
    font-weight: 400;
    word-wrap: break-word;
    word-break: break-all;
  }

  .rev-wrapper {
    margin-bottom: 6em;
  }

  .rev-topcomp {
    padding: 0;
    margin: 0 0 9em;
  }

  .rev-bottomcomp {
    padding: 0;
    margin: 0 0 9em;
  }

  .rev-txtlbox1 {
    padding-right: 6.75em;
  }

  .rev-txtlbox2 {
    padding-right: 4.75em;
  }

  .rev-txtrbox1 {
    padding-left: 6.75em;
  }

  .rev-txtrbox2 {
    padding-left: 4.75em;
  }

  .rev-wrapper .rev-img {
    position: relative;
  }

  .rev-wrapper .rev-img .rev-imgmain {
    border-radius: 0.5em;
  }

  .rev-wrapper .rev-img .rev-imgfloat {
    position: absolute;
    border: #fff 0.375em solid;
    border-radius: 0.5em;
    transform: translate(-50%, -50%);
  }

  .heroimg img,
  .herovid {
    border-radius: 0.5em;
  }

  .text-white>div {
    color: #fff;
  }

  .text-red>div {
    color: #eb1d25;
  }

  .text-green>div {
    color: #00a85c;
  }

  .text-yellow>div {
    color: #ffc514;
  }

  .text-purple>div {
    color: #721f62;
  }

  .bg-white {
    background-color: #fff;
  }

  .bg-red {
    background-color: #eb1d25;
  }

  .bg-green {
    background-color: #00a85c;
  }

  .bg-yellow {
    background-color: #ffc514;
  }

  .bg-purple {
    background-color: #721f62;
  }

  .top-left {
    top: 0.75em;
    left: 0.75em;
  }

  .horizontalleft .top-right {
    right: 1.75em;
  }

  .top-right {
    top: 0.75em;
    right: 0.75em;
  }

  .horizontalright .top-left {
    left: 1.75em;
  }

  .bottom-left {
    bottom: 0.75em;
    left: 0.75em;
  }

  .bottom-right {
    bottom: 0.75em;
    right: 0.75em;
  }

  .gridmore {
    background-color: #fff;
    font-size: 1.25em;
    padding: 0.5em 1em;
    margin: 0;
    display: block;
    font-weight: 300;
  }

  .freearea,
  .freeedit,
  .form {
    padding: 1em;
  }

  .freeedit {
    padding: 1em 0;
  }

  .usermessage {
    margin-top: 1em;
    margin: 1em auto;
  }

  .usermessage h4 {
    margin-top: 0;
  }

  .usermessage ul {
    margin: 0;
  }

  .error-message h4 {
    color: #fff;
  }

  .freeedit,
  .form {
    background-color: #fff;
  }

  #errorForm table {
    table-layout: fixed;
  }

  #errorForm td {
    padding: 0.5em 0;
  }

  .fullbox {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }

  .freeeditcontainer {
    margin-bottom: 1.25em;
  }

  .gallery {
    padding: 0;
    margin: 2.375em 0 0;
    line-height: 1;
    text-align: justify;
    width: 100%;
  }

  .gallery span {
    background-color: #fff;
    display: block;
    margin: 0.625em 0;
  }

  .gallery span img {
    border: #fff 1px solid;
  }

  /* .hoteldescblock{margin-bottom:1.25em;} */
  .hoteldescblock .wrapper {
    margin: 0;
  }

  .hoteldescblock .wrapper .hoteldescgallery {
    position: absolute;
    z-index: 25;
    font-size: 1.125em;
    padding: 0.5em 0.75em;
    color: #fff;
    left: 1em;
    top: 1em;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .hoteldescblock .wrapper .hoteldescgallery img.svg {
    width: 1em;
    height: 1em;
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(189deg) brightness(111%) contrast(101%);
    vertical-align: -0.16667em;
  }

  .hoteldesc {
    padding: 1px 0 12.375em 0;
    margin-right: 1.25em;
    height: 100%;
    position: relative;
  }

  .hotelstar {
    margin-bottom: 0.5em;
  }

  .hotelstar img.svg {
    width: 1.5em;
    height: 1.5em;
    margin-right: 0;
    filter: invert(29%) sepia(72%) saturate(3308%) hue-rotate(346deg) brightness(90%) contrast(100%);
  }

  .hotelstar img.starplus {
    width: 1.25em;
    height: 1.25em;
    /* filter: invert(66%) sepia(0%) saturate(47%) hue-rotate(177deg) brightness(93%) contrast(92%); */
    filter: invert(29%) sepia(72%) saturate(3308%) hue-rotate(346deg) brightness(90%) contrast(100%);
  }

  .hotelstar-sm img {
    width: 1.25em;
    height: 1.25em;
  }

  .hotelmap {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 1.25em;
  }

  .hotelmap .btn-block {
    margin-top: 0.625em;
  }

  .tab {
    margin-bottom: 1.25em;
    background-color: #fff;
  }

  #triphotelslist .tab {
    margin-bottom: 0;
  }

  .tab .nav-tabs {
    border-bottom: #bbb 1px solid;
    position: relative;
  }

  .tab .nav-tabs>li {
    vertical-align: middle;
    margin-left: 1.875em;
  }

  .tab .nav-tabs>li:first-child,
  .tab .nav-tabs>li.tabdrop {
    margin-left: 0;
  }

  .tab .nav-tabs>li>a {
    border-radius: 0;
    text-align: center;
    border: none;
    font-size: 1.125em;
    color: #000;
    padding-left: 0.22em;
    padding-right: 0.22em;
  }

  .tab .nav-tabs>li.tabdrop>a>.icon-bar {
    display: block;
    width: 1.2em;
    height: 0.1em;
    margin: 0.25em 0;
    background-color: #545659;
  }

  .tab .nav-tabs>li.tabdrop>a>.icon-bar:first-child {
    margin-top: 0.35em;
  }

  .tab .nav-tabs>li>a>i.lcd {
    font-size: 1.25em;
    vertical-align: -0.12em;
  }

  .tab .nav-justified>li>a {
    margin-right: 0;
    white-space: nowrap;
  }

  .tab .nav-tabs>li.active>a,
  .tab .nav-tabs>li.active>a:hover,
  .tab .nav-tabs>li.active>a:focus {
    background-color: #fff;
    border: none;
    border-bottom: #138587 0.15em solid;
    color: #138587;
    border-radius: 0;
    padding-bottom: 1em;
  }

  .tab .nav-tabs>li>a:hover,
  .tab .nav-tabs>li>a:focus {
    background-color: #fff;
    border: none;
    border-bottom: #138587 0.15em solid;
    color: #138587;
    border-radius: 0;
    padding-bottom: 1em;
  }

  .tab .nav-tabs>li.active>a:empty {
    display: none;
  }

  .hoteldeparturetab .tab .nav-tabs {
    border-bottom: none;
  }

  .hoteldeparturetab .tab .nav-tabs>li>a {
    font-size: 0.875em;
    font-weight: 400;
    border: #58585e 1px solid;
    margin: 0 0.142857em;
    padding: 0.5em 0;
    border-radius: 5px;
  }

  .hoteldeparturetab .tab .nav-tabs>li.active>a,
  .hoteldeparturetab .tab .nav-tabs>li.active>a:hover,
  .hoteldeparturetab .tab .nav-tabs>li.active>a:focus {
    color: #32d690;
    border: #32d690 2px solid;
    padding: 0.5em 0;
    border-radius: 5px;
  }

  .hoteldeparturetab .tab .nav-tabs>li>a:hover,
  .hoteldeparturetab .tab .nav-tabs>li>a:focus {
    color: #32d690;
    border: #32d690 2px solid;
  }

  .hoteldeparturetab .tab .nav-tabs>li.active>a:before,
  .hoteldeparturetab .tab .nav-tabs>li.active>a:hover:before,
  .hoteldeparturetab .tab .nav-tabs>li.active>a:focus:before,
  .hoteldeparturetab .tab .nav-tabs>li>a:hover:before,
  .hoteldeparturetab .tab .nav-tabs>li>a:focus:before {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #32d690;
    border-bottom: 10px solid transparent;
    right: 50%;
    bottom: -21px;
    transform: translateX(50%);
  }

  .hoteldeparturetab .tab .nav-tabs>li.active>a:after,
  .hoteldeparturetab .tab .nav-tabs>li.active>a:hover:after,
  .hoteldeparturetab .tab .nav-tabs>li.active>a:focus:after,
  .hoteldeparturetab .tab .nav-tabs>li>a:hover:after,
  .hoteldeparturetab .tab .nav-tabs>li>a:focus:after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    border-bottom: 10px solid transparent;
    right: 50%;
    bottom: -18px;
    transform: translateX(50%);
  }

  .tab .tab-content {
    clear: left;
  }

  .roompricetab .tab-content {
    padding: 1em 0 0;
  }

  .tab .tab-content .tab-leftimage,
  .tab .tab-content .tab-rightimage {
    padding: 0;
    margin: 0;
  }

  .tab .tab-content .tab-leftimage {
    float: left;
  }

  .tab .tab-content .tab-rightimage {
    float: right;
  }

  .tab>.panel-group {
    margin-bottom: 0;
  }

  .tab>.panel-group>.panel {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .tab>.panel-group>.panel>.panel-heading {
    padding: 0;
    background: none;
  }

  .tab>.panel-group>.panel>.panel-heading>.panel-title {
    font-size: 1.125em;
    border-top-style: solid;
    border-top-width: 0.25em;
  }

  .tab>.panel-group>.panel>.panel-heading>.panel-title a {
    display: block;
    padding: 0.625em 0.9375em;
    text-align: center;
  }

  .tab>.panel-group>.panel>.panel-heading>.panel-title a .lcd {
    float: right;
  }

  .tabrelation {
    display: none;
  }

  .tabrelation .blockdesc {
    padding: 1em 1.5em;
  }

  .tabrelation .collapse,
  .tabrelation .collapsing {
    margin-top: 1.25em;
  }

  .tablecontent {
    background-color: #fff;
    margin-bottom: 1.25em;
  }

  .tablecontent .tablebox {
    padding: 0 0.625em;
  }

  .tablecontent dl {
    border: none;
    margin: 0;
    padding: 1em 1.5em;
    min-height: 23em;
  }

  .tablecontent .tablebox dl:first-child {
    padding-left: 1.5em;
  }

  .tablecontent .tablebox dl:last-child {
    padding-right: 1.5em;
  }

  .tablecontent dt {
    font-size: 1.5em;
    margin-bottom: 0.5em;
    color: #666;
    font-weight: 400;
    text-transform: uppercase;
  }

  .tabextend {
    background-color: #fff;
    margin-bottom: 1.25em;
  }

  .tabextend .blockcontent {
    padding: 1.5em;
  }

  .tabextend .tabexcolhaslgap {
    padding-left: 4.75em;
  }

  .tabextend .tabexcolhasrgap {
    padding-right: 4.75em;
  }

  .tabextend .blockimg h1,
  .tabextend .blockimg h2,
  .tabextend .blockimg h3,
  .tabextend .blockimg h4,
  .tabextend .blockimg h5,
  .tabextend .blockimg h6 {
    margin-bottom: 0.5em;
  }

  .tab-inner .tabextend,
  .freeedit .tabextend {
    background-color: #fff;
    padding: 2em 0 0;
    margin: 1.25em 0 0;
  }

  .tabextend3col {
    padding: 2.5em 0 2em;
  }

  .tab-inner .tabextend:first-child,
  .freeedit .tabextend:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 1em;
  }

  .tab-inner .tabextend3col:first-child,
  .freeedit .tabextend3col:first-child {
    border-top: none;
    padding-top: 1.5em;
  }

  .popupbox>.tabextend3col {
    border-top: none;
  }

  .tabextend .blockcontent {
    padding: 0.5em 0;
  }

  .tabextend .blockimg {
    padding: 0.5em 0;
  }

  .tabblockitem {
    padding: 1.375em;
    margin-bottom: 1.25em;
    background-color: #eceeec;
  }

  .tabblockbox {
    padding: 1.375em;
    margin-bottom: 1.5em;
    border-radius: 0.5em;
  }

  .tabblockbox ul.hotelfactlist,
  .tabblockbox ol.hotelfactlist {
    padding-left: 1.375em;
  }

  .tabblockbox h5.hotelfacttitle {
    margin-bottom: 1em;
  }

  .tabblockbox p.hotelfact {
    margin-bottom: 0;
  }

  .tabblockbox p.hotelfact-pti {
    padding: 0.25em 0;
    overflow: hidden;
  }

  .tabblockbox p.hotelfact img.img-icon {
    float: left;
    margin-right: 0.5em;
  }

  .tabblockbox p.hotelfact img.svg {
    width: 1.75em;
    height: 1.75em;
    filter: invert(41%) sepia(37%) saturate(630%) hue-rotate(124deg) brightness(92%) contrast(87%);
  }

  .tabblockbox p.hotelfact img.svg.tick-blue {
    width: 1.75em;
    height: 1.75em;
    filter: invert(41%) sepia(58%) saturate(504%) hue-rotate(133deg) brightness(96%) contrast(96%);
  }

  .tabblockbox p.hotelfact img.tick-black {
    width: 1.75em;
    height: 1.75em;
    filter: invert(0%) sepia(4%) saturate(4185%) hue-rotate(329deg) brightness(97%) contrast(78%);
  }

  .tabblockbox p.hotelfact img.tick-green {
    width: 1.75em;
    height: 1.75em;
    filter: invert(75%) sepia(64%) saturate(4823%) hue-rotate(125deg) brightness(105%) contrast(101%);
  }

  .tabblockbox p.hotelfact img.img-icon+span.hotelfact-str {
    display: block;
    padding: 0.125em 0;
  }

  .tabblockbox table {
    margin: 0;
  }

  .tabblockitem table tr th,
  .tabblockitem table tr td {
    padding: 0.3125em 0;
    border: none;
  }

  .tabblockbox table tr th,
  .tabblockbox table tr td {
    padding: 0.3125em 0;
    border: none;
  }

  .tabofferbox {
    margin-bottom: 1.25em;
  }

  .tabextend .tabofferbox .blockimg {
    padding: 0;
  }

  .facility {
    display: inline-block;
    width: 33%;
    min-height: 2.5em;
    margin: 0.25em 0;
    vertical-align: top;
  }

  .facilities-sm .facility {
    min-height: auto;
    margin: 0;
  }

  .facility-img {
    margin-right: 0.5em;
  }

  .facilities-sm .facility .facility-img {
    width: 2em;
  }

  .facility-label {
    font-size: 0.875em;
  }

  .accordioncontent {
    padding: 1.5em 0;
    background-color: #fff;
    margin-bottom: 1.25em;
  }

  .accordioncontent h3 {
    margin-top: 0.125em;
    margin-bottom: 0.75em;
    text-transform: uppercase;
    font-weight: 400;
  }

  .accordioncontent .panel {
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .accordioncontent .panel-group {
    margin-bottom: 0;
  }

  .accordioncontent .panel-heading {
    padding: 0;
    background: transparent none;
  }

  .accordioncontent .panel-title {
    font-size: 1.5em;
  }

  .accordioncontent .panel-tinytitle {
    font-size: 1em;
    border-top: #bbb 1.75px solid;
  }

  .accordioncontent .panel-chevtitle {
    font-size: 1em;
    border-bottom: #bbb 1.75px solid;
  }

  .accordioncontent .panel-expand .panel-title {
    border-bottom: #b0b1b2 1.75px solid;
  }

  .accordioncontent .panel-title a {
    display: block;
    padding: 0.5em 0 0.8125em;
    text-align: center;
    color: #000;
  }

  .accordioncontent .panel-chevtitle a {
    text-align: left;
  }

  .accordioncontent .panel-title a .panel-dir {
    float: right;
    width: 1em;
    height: 1em;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .accordioncontent .panel-chevtitle a .lcd {
    float: right;
  }

  .accordioncontent .panel-chevtitle a img.svg {
    float: right;
    width: 1.25em;
    height: 1.25em;
  }

  .accordioncontent .panel-title a .panel-chevron-down {
    background-image: url('/Static/Img/Down.png');
  }

  .accordioncontent .panel-title a .panel-chevron-up {
    background-image: url('/Static/Img/Up.png');
  }

  .accordioncontent .panel-group .panel-heading+.panel-collapse>.panel-body {
    padding-top: 0.25em;
    padding-bottom: 0.5em;
  }

  .accordioncontent .panel-group .panel-heading+.panel-collapse>.panel-body,
  .accordioncontent .panel-group .panel-group .panel-heading+.panel-collapse>.list-group {
    border: none;
  }

  .dropdowntext>button {
    border-top: none;
    border-left: none;
    border-right: none;
    text-align: left;
  }

  .dropdowntext>button>.lcd {
    float: right;
    margin-top: 0.3125em;
  }

  .singleaccordion {
    border-bottom: none;
    padding-bottom: 0;
  }

  .accordionsupplement .panel {
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .accordionsupplement .panel+.panel {
    margin-top: 0;
  }

  .accordionsupplement .panel-group {
    margin-bottom: 0;
  }

  .accordionsupplement .panel-heading {
    padding: 0;
    background: transparent none;
  }

  .accordionsupplement .panel-title {
    border-top: #000 0.0625em solid;
    font-size: 1em;
    font-weight: 400;
    text-transform: capitalize;
    padding-bottom: 0;
  }

  /* .singleaccordion .panel-title{border-top:none;color:#F42D2D;font-size:1.25em;font-weight:400;text-transform:uppercase;} */
  .accordionsupplement .panel-title a {
    display: block;
    padding: 1.5em 0.125em;
    text-decoration: none;
    color: #000;
  }

  .accordionsupplement .panel-title a .lcd {
    float: right;
    font-size: 1.5em;
    margin-top: -0.125em;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .accordionsupplement .panel-group .panel-heading+.panel-collapse>.panel-body {
    padding: 0.5em 0;
  }

  .accordionsupplement .panel-group .panel-heading+.panel-collapse>.panel-body,
  .accordionsupplement .panel-group .panel-group .panel-heading+.panel-collapse>.list-group {
    border: none;
  }

  .pricecalendar {}

  .pricecalendar h2 {
    margin-top: 1em;
  }

  #pricecal {
    min-height: 4em;
    position: relative;
    margin-top: 2.125em;
  }

  .pricecal-condition {
    margin-top: 3.125em;
  }

  .pricecal-condition label {
    font-weight: 400;
    font-size: 1.125em;
    display: inline-block;
    width: auto;
    height: 2.5556em;
    line-height: 2.5556em;
    margin: 0;
    vertical-align: top;
  }

  .pricecal-condition .selectbox {
    display: inline-block;
    vertical-align: top;
    margin-left: 0.5em;
  }

  .pricecal-table {
    margin: 0 -0.25em;
    position: relative;
  }

  .pricecal-table th {
    position: relative;
    height: 3em;
    border-bottom: none !important;
  }

  .pricecal-table td {
    position: relative;
    height: 7.5625em;
  }

  .pricecal-table td .pricecal-holder {
    min-width: 5em;
  }

  .pricecal-date {
    font-weight: 300;
    position: absolute;
  }

  .pricecal-table th .pricecal-date {
    bottom: 0;
    text-transform: capitalize;
  }

  .pricecal-table td .pricecal-date {
    font-size: 1.125em;
    left: 0.75em;
  }

  .pricecal-info {
    position: absolute;
    padding: 0.5em;
    width: 100%;
    top: 1.5em;
    left: 0;
    text-align: center;
    cursor: pointer;
  }

  .popover .pricecal-info {
    top: 0.5em;
  }

  .pricecal-row,
  .pricecal-rows {
    display: block;
    font-size: 0.875em;
    font-weight: 700;
  }

  .pricecal-row input {
    margin-left: -1em;
  }

  .pricecal-price,
  .pricecal-baseprice {
    border-bottom: #ccc 1px dotted;
    color: #138587;
  }

  .pricecal-basic {
    display: block;
    font-size: 0.75em;
  }

  .pricecal-room {
    display: none;
  }

  .pricecal-book {
    width: 21.125em;
  }

  .pricecal-book table {
    margin: 0;
  }

  .pricecal-stay .pricecal-book {
    display: none;
  }

  .pricecal-table .popover-content {
    font-weight: 300;
    font-size: 0.875em;
  }

  .pricecal-weeks {
    border: #ddd 1px solid;
  }

  .pricecal-week {
    padding: 0 0.1875em;
  }

  .pricecal-spin {
    height: 2em;
    position: relative;
  }

  .pricecal-week h5 {
    margin: 0;
    font-size: 0.875em;
    padding: 0.4285714em 0.2142857em;
    text-transform: capitalize;
    clear: both;
  }

  .pricecal-week .pricecal-day {
    float: left;
    width: 50%;
    padding: 0 0.1875em;
    margin-bottom: 0.375em;
  }

  .pricecal-week .pricecal-dayinner {
    background-color: #eff0ed;
    min-height: 6em;
    width: 100%;
    position: relative;
  }

  .pricecal-week .pricecal-preselected {
    background-color: #138587;
    color: #fff;
    font-weight: 400;
  }

  .pricecal-week .pricecal-preselected .pricecal-price {
    color: #fff;
  }

  .pricecal-week .pricecal-dayinner .pricecal-info {
    top: 0;
    height: 100%;
    padding: 0.875em 0.5em;
  }

  .pricecal-week .pricecal-dayinner .pricecal-row {
    font-size: 1.125em;
  }

  .pricecal-week .pricecal-dayinner .pricecal-basic {
    font-size: 0.75em;
  }

  .pricecal-table table tbody tr td {
    background-color: #fff4f4;
    border: #fff 0.25em solid;
    background-clip: padding-box;
  }

  .pricecal-table table tbody tr td.pricecal-exdate {
    color: #999;
  }

  .pricecal-table table tbody tr td.pricecal-preselected {
    background-color: #138587;
    color: #fff;
    font-weight: 400;
  }

  .pricecal-table table tbody tr td.pricecal-preselected .pricecal-baseprice {
    color: #fff;
  }

  .pricecal-table table tbody tr td.pricecal-preselected .pricecal-info>.pricecal-row .pricecal-price {
    color: #fff;
  }

  .mapcontainer {
    min-height: 25em;
    position: relative;
  }

  .cluster {
    width: 2.8125em;
    height: 2.8125em;
    background: url('/Static/Img/m1.png') 0 0;
    color: #fff;
    font-size: 1.45454545em;
    line-height: 2.8125;
    text-align: center;
  }

  .bubble {
    min-width: 12.5em;
  }

  .bubble a {
    text-decoration: underline;
  }

  .bubble .mapdesc .pull-left {
    margin: 0 0.5em 0.25em 0;
  }

  .bubble .mapdesc .pull-right {
    margin: 0 0 0.25em 0.5em;
  }

  .bubble .markerlist {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .bubble .markerlist li {
    display: block;
    vertical-align: bottom;
    font-size: 0.875em;
  }

  .bubble .markerlist li span {
    display: inline-block;
    line-height: 1.5;
    vertical-align: top;
  }

  .bubble .markerlist li img {
    vertical-align: top;
    margin: 0.1em 0.3em 0.1em 0;
  }

  .socialmedia {}

  .socialmedia h2 {
    margin: 1em 0;
  }

  .socialmedia a {
    color: #666;
  }

  .sociallink {
    display: inline-block;
    vertical-align: top;
    margin: 0 0.25em 0.25em;
  }

  #social {
    margin: 0;
    padding: 0;
    display: block;
    text-align: center;
    padding: 1em 0 2.2em;
  }

  #social li {
    display: inline-block;
  }

  #last-minute-tabs .tab-content {
    font-weight: 300;
  }

  #last-minute-tabs .room-description-info {
    display: none;
  }

  #last-minute-tabs .tab-content .usermessage {
    font-size: 1.25em;
    margin: 0 0.625em;
  }

  #footer {
    margin-top: 1em;
  }

  #portalfooter {
    margin: 0;
  }

  #footer .newsletterbox {
    background-color: #eff8f5;
    padding-top: 2em;
    padding-bottom: 4em;
    border-radius: 0.5em;
    margin: 0 auto 6em;
  }

  #footer .newsletterbox .newsletterdesc {
    margin-bottom: 1em;
  }

  #footer .footerbox {
    min-height: 8em;
    padding: 3em 0;
  }

  #portalfooter .footerbox {
    min-height: 8em;
    padding: 4.5em 0;
  }

  #footer .footerbox,
  #footer .footerbox .wrapper,
  #portalfooter .footerbox,
  #portalfooter .footerbox .wrapper {
    background-color: #fef4f3;
  }

  #footer .wrapper {
    margin-top: 1.75em;
  }

  #footer .wrapper h6 {
    font-size: 1em;
    margin-top: 1.625em;
  }

  #footer .wrapper h6:first-child {
    margin: 0;
  }

  #footer .footerlist {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  #footer .footerlist+.footerlist {
    margin-top: 1.625em;
  }

  #footer .footerlist li {
    padding: 0.1875em 0;
  }

  #footer .footerlist li a {
    display: block;
    color: #000;
    font-size: 0.875em;
    font-weight: 400;
  }

  #footer #footerlogo {
    display: block;
    margin-top: 2.25em;
  }

  #footer .footersocial a {
    display: inline-block;
    width: 2.625em;
    height: 2.625em;
    border: #eb1d25 2px solid;
    border-radius: 50%;
    line-height: 0;
  }

  #footer .footersocial a img.svg {
    filter: invert(14%) sepia(100%) saturate(4466%) hue-rotate(351deg) brightness(96%) contrast(91%);
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  #portalfooter .wrapper h5 {
    color: #000;
    font-size: 1.5em;
  }

  #portalfooter .footerlist {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  #portalfooter .footerlist li a {
    display: block;
    padding: 0.375em 0;
    color: #000;
  }

  #portalfooter .footerteaser {
    margin: 2em 0 0;
    border-top: #000 1px solid;
    padding: 2em 2em 0;
  }

  #bkt {
    position: fixed;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 1.25em;
    z-index: 100;
    cursor: pointer;
  }

  #bkt img {
    vertical-align: -0.4em;
  }

  .flightpacks {}

  .flightpacks .freeedit .flightpack {
    padding-top: 1.5em;
    border-top: #aaa 1px solid;
  }

  .flightpacks .freeedit .flightpack:first-child {
    padding-top: 0.5em;
    border: none;
  }

  .flightpacks .freeedit .flightpack td[rowspan] {
    vertical-align: middle;
  }

  .promptbtn>div {
    margin-top: 1em;
  }
}

/* max-width 384px, to resolve issues on legacy mobile devices */
@media only screen and (max-width: 24em) {
  #sentenelxxs {
    display: block;
  }

  #languagelist {
    text-align: right;
    width: 100%;
  }

  .lastmin-container,.flightonly-container {
    padding: 0.5em;
  }

  .tab .nav-tabs>li>a {
    font-size: 93.75%;
  }

  .hoteltripstack .tripdeparturedates .depinfo {
    font-size: 87.5%;
    padding: 0.5em 0;
  }

  .hoteltripstack .tripdeparturedates .depinfo>span,
  .hoteltripstack .triproomstacks .roomstack .hotelprice {
    white-space: nowrap;
  }

  .hoteltripstack .triproomstacks .roomstack {
    font-size: 93.75%;
  }

  .tabextend .tabexcolhaslgap {
    padding-left: 0.5em;
  }

  .tabextend .tabexcolhasrgap {
    padding-right: 0.5em;
  }

  .blockcolumns .colhaslgap {
    padding-left: 0.5em;
  }

  .blockcolumns .colhasrgap {
    padding-right: 0.5em;
  }

  .rev-wrapper .rev-txt {
    margin-top: 1em;
  }

  .rev-txtlbox1,
  .rev-txtrbox1,
  .rev-txtlbox2,
  .rev-txtrbox2 {
    padding-left: 0;
    padding-right: 0;
  }

  .rev-topcomp {
    padding-top: 0;
  }

  .rev-bottomcomp {
    padding-bottom: 0;
  }

  .rev-topcomp .rev-img {
    margin-top: 5em;
  }

  .rev-bottomcomp .rev-img {
    margin-bottom: 5em;
  }

  .mylangley-infobox {
    margin: 0.625em 0.625em 1.25em;
  }

  .mylangley-infobox h4 {
    margin-top: 12px;
  }

  .mylangley-greeting {
    font-size: 1.5em;
    margin-bottom: 0.7667em;
    line-height: 1.25;
  }

  .mylangley-switch {
    margin: 0.5em 0 1em;
  }

  .mylangley-switch ul.nav-pills>li>a {
    font-size: 0.875em;
  }

  .mylangley-user {
    margin: 2em 0;
    text-align: left;
  }

  .mylangley-user .lcd {
    font-size: 2em;
    color: #333;
  }

  .mylangley-user .mylangley-avatar {
    vertical-align: middle;
    margin-right: 0.5em;
  }

  .mylangley-user .mylangley-username {
    display: inline-block;
    vertical-align: middle;
    line-height: 1.125;
  }

  .mylangley-user .mylangley-username span {
    font-size: 0.8em;
    color: #138587;
    display: block;
  }

  .mylangley-hotelimgbox {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .mylangley-hotelimgbox img {
    position: absolute;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .mylangley-reslist .mylangley-res {
    border: none;
    margin-top: 1.25em;
  }

  .mylangley-reslist .mylangley-res:first-child {
    border: none;
    margin: 0;
  }

  .mylangley-resbrief {
    min-height: 7.5em;
  }

  .mylangley-resbrief h3 {
    padding-top: 0.333em;
    font-size: 1.125em;
  }

  .mylangley-resbrief h5 {
    margin-top: 0;
    font-size: 0.875em;
  }

  .mylangley-resbrief p {
    font-size: 0.875em;
  }

  .mylangley-resbrief p.mylangley-resmobistat {
    margin-top: 1em;
    font-size: 0.75em;
  }

  .mylangley-resbrief .mylangley-resbrno {
    position: static;
  }

  .mylangley-reslistlinks {
    text-align: center;
    margin: 2em 0;
  }

  .mylangley-linkbox {
    border: none;
    padding: 0;
  }

  .mylangley-linkbox ul li {
    border-top: #666 1px solid;
  }

  .mylangley-mobilink {
    margin: 2em 0 0;
    font-weight: 400;
  }

  .mylangley-mobilink a {
    font-size: 0.875em;
    color: #128588;
  }

  .mylangley-mobilink a.btn {
    border-radius: 1em;
    padding: 0.125em 1em;
    font-weight: 400;
    border: #128588 1px solid;
    margin-bottom: 1em;
  }

  .mylangley-overviewbtns,
  .mylangley-updcustinfo,
  .mylangley-travelerinfosubmit {
    margin: 2em 0 3em;
    text-align: center;
  }

  .mylangley-overviewbtns a.btn,
  .mylangley-overviewbtns a.btn:first-child,
  .mylangley-overviewbtns button.btn,
  .mylangley-updcustinfo .btn,
  .mylangley-travelerinfosubmit .btn {
    margin: 0.5em;
  }

  .customer-popup .hotelguests>h5 {
    margin-top: 1em;
  }

  .customer-popup .hotelguests .form-group {
    margin: 1em 0 0;
  }
}

/* max-width 479px, to resolve issues on extra-small mobile devices */
@media only screen and (max-width: 29.9375em) {
  .topcontainer {
    height: 2.25em;
    background-color: #fef4f3;
  }

  .topcontainer .nav>li>a {
    font-size: 0.875em;
    border-radius: 0;
    color: #000;
    padding: 0.5em;
  }

  .topcontainer .nav>li>a.has-lucide {
    line-height: 0;
    padding-top: 0.642857em;
    padding-bottom: 0.714286em;
  }

  .topcontainer .nav>li>a.has-lucide img.svg {
    width: 1.142857em;
    height: 1.142857em;
  }

  .topcontainer .nav>li>a:hover,
  .topcontainer .nav>li>a:focus {
    background-color: #fff;
  }

  .topcontainer>.container {
    position: relative;
  }

  .headercontainer {
    position: relative;
    height: 4.25em;
  }

  .headercontainer>.container {
    position: absolute;
    width: 100%;
    min-height: 4.25em;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 200;
    border-bottom-left-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
    padding-right: 0.75em;
  }

  #mobibanner,
  #mobisplashvideo {
    height: 45em;
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 0.5em 0.5em;
  }

  #mobibanner .bannerimage,
  #mobisplashvideo .videoembed-box video {
    height: 100%;
    width: auto;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  #bannerbox.trippage {
    margin-bottom: 2.5em;
  }

  #bannerbox.trippage .searchbarcontainer {
    padding-bottom: 2.5em;
  }

  .searchbarcontainer {
    z-index: 199;
    width: 100%;
    position: absolute;
    top: 13.75em;
  }

  .tripsearchbaralone .searchbarcontainer {
    position: static;
    border-top: #b1b1b6 1px solid;
    border-bottom: #b1b1b6 1px solid;
  }

  .tripfinderwrap {
    margin: 0 1.25em;
    padding: 0.375em 0 0.625em;
    border-radius: 0.5em;
    background-color: #fff;
  }

  #bannerbox.trippage .tripfinderwrap {
    padding-bottom: 0;
    margin: 0 0.25em;
  }

  #triphotelsbox #triphotelstitle {
    margin: 0;
  }

  #triphotelslist {
    margin-top: 2.25em;
  }

  .customer .container {
    padding-left: 1.25em;
    padding-right: 1.25em;
  }

  .img-responsive {
    width: 100%;
  }

  .img-fluid {
    max-width: 100%;
  }

  .table-teal {
    border-top: 1px solid #128588;
  }

  .table-teal>thead>tr>th,
  .table-teal>tbody>tr>th,
  .table-teal>tfoot>tr>th,
  .table-teal>thead>tr>td,
  .table-teal>tbody>tr>td,
  .table-teal>tfoot>tr>td {
    padding: 1em 0.5em;
  }

  .table-teal>thead>tr>th,
  .table-teal>thead>tr>td {
    border-top: none;
    border-bottom: 2px solid #128588;
    padding-top: 0.5em;
  }

  .table-teal>thead>tr:first-child>th,
  .table-teal>thead>tr:first-child>td {
    border-bottom: none;
    padding-top: 1em;
    padding-bottom: 0;
  }

  .table-teal>tbody>tr>th,
  .table-teal>tfoot>tr>th,
  .table-teal>tbody>tr>td,
  .table-teal>tfoot>tr>td {
    border-top: none;
  }

  .table-teal>thead>tr>th:not(:first-child),
  .table-teal>thead>tr>td:not(:first-child),
  .table-teal>tbody>tr>th:not(:first-child),
  .table-teal>tfoot>tr>th:not(:first-child),
  .table-teal>tbody>tr>td:not(:first-child),
  .table-teal>tfoot>tr>td:not(:first-child) {
    border-left: 1px solid #128588;
  }

  #sentenelxxs {
    display: block;
  }

  #languagelist {
    text-align: right;
    width: 100%;
  }

  #languagelist>a {
    display: inline-block;
    padding: 0.5em;
    margin-left: 1em;
  }

  #header {
    padding: 1em 0;
    margin: 0;
    border: none;
  }

  .navbar-header .navbar-mobiroot {
    height: 2.25em;
  }

  .navbar-header .mobinav-toggle {
    position: relative;
    float: right;
    height: 2.25em;
    margin: 0;
    padding: 0;
    line-height: 1;
    border: 0;
    background-color: transparent;
  }

  .navbar-header .mobinav-back {
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 1.25em;
    height: 1.8em;
    border: 0;
    background-color: transparent;
  }

  .navbar-header .mobinav-toggle .icon-bar {
    display: block;
    width: 2em;
    height: 0.125em;
    background-color: #f16369;
  }

  .navbar-header .mobinav-toggle .icon-bar+.icon-bar {
    margin-top: 0.375em;
  }

  .navbar-header .mobinav-toggle>i {
    font-size: 2.25em;
  }

  .navbar-header .mobinav-back>i {
    font-size: 1.4em;
    line-height: 1;
    vertical-align: -0.25em;
    margin-left: -0.25em;
  }

  .navbar-header .mobinav-toggle>i.lcd,
  .navbar-header .mobinav-back>i.lcd {
    color: #6c6c6c;
  }

  #navbar {
    background-color: #fff;
    margin-top: 0.5em;
  }

  #logo img {
    width: 9em;
    margin-top: 0.4375em;
    margin-left: 1px;
  }

  #navbar {
    padding: 0;
  }

  #mobinavbar .mobinav-header {
    font-size: 1.625em;
    margin: 1.625em 0 0;
  }

  #mobinavbar .mobinav-header>a {
    color: #000;
  }

  #mobinavbar .mobinav-list {
    padding: 0.75em 0 2.5em;
    margin: 0;
  }

  #mobinavbar .mobinav-user {
    border-top: #777 1.5px solid;
    padding: 2em 0 0;
    margin: 0 0.5em 0 0;
  }

  #mobinavbar .mobinav-list>li {
    padding: 0.5em 0;
  }

  #mobinavbar .mobinav-list>li>a,
  #mobinavbar .mobinav-list>li>span {
    padding: 0;
    font-size: 1.375em;
    display: inline;
    letter-spacing: -0.25px;
    color: #000;
  }

  #mobinavbar .mobinav-lv2>li>a {
    font-size: 1.125em;
  }

  #mobinavbar .mobinav-list>li>button {
    background-color: transparent;
    border: none;
    font-size: 1.625em;
    padding: 0 0 0 0.5em;
    line-height: 1.5;
  }

  #mobinavbar .mobinav-lv2>li>button {
    line-height: 1;
  }

  #mobinavbar .mobinav-sublist {
    list-style: none;
    padding-left: 1.25em;
  }

  #mobinavbar .mobinav-sublist>li {
    padding: 0.375em 0;
  }

  #mobinavbar .mobinav-sublist>li>a {
    padding: 0;
    font-size: 1em;
    display: inline;
    letter-spacing: -0.5px;
    color: #000;
  }

  .navbar-right {
    float: right;
    padding-right: 0.75em;
  }

  .navbar-user {
    text-align: left;
    margin: 0;
  }

  .navbar-user>a {
    font-size: 1.125em;
  }

  .navbar-user>a>img.svg {
    width: 1.555556em;
    height: 1.555556em;
    vertical-align: middle;
    margin-right: 0.375em;
  }

  #navbar li#user {
    padding: 2em 0 1em;
  }

  .navbar-nav .open .dropdown-menu {
    background-color: #fff;
  }

  #loginform {
    right: 0;
    left: auto;
  }

  #loginel h5 {
    text-transform: uppercase;
    font-weight: 400;
  }

  #loginbox,
  .profile-editing {
    font-weight: 300;
    padding: 0.75em;
  }

  #loginbox .nav-tabs,
  .profile-editing .nav-tabs {
    padding: 0 0.75em;
  }

  #loginbox .tab-content,
  .profile-editing .tab-content {
    padding: 0.75em;
  }

  #loginbox .form-inline .form-tiny,
  .profile-editing .form-inline .form-tiny {
    width: 49.625%;
  }

  #loginbox .form-inline .form-short,
  .profile-editing .form-inline .form-short {
    width: 100%;
  }

  #loginbox .form-inline .form-mid,
  .profile-editing .form-inline .form-mid {
    width: 100%;
  }

  #loginbox .form-inline .form-long,
  .profile-editing .form-inline .form-long {
    width: 100%;
  }

  #loginbox .form-inline .form-full,
  .profile-editing .form-inline .form-full {
    width: 100%;
  }

  #loginbox .form-inline .input-group,
  .profile-editing .form-inline .input-group {
    width: 100%;
    position: static;
  }

  #loginbox .form-inline .form-half,
  .profile-editing .form-inline .form-half {
    width: 100%;
  }

  #bannerbox .bs-wizard {
    margin: 0.625em 0;
  }

  .bs-wizard>.bs-wizard-step .bs-wizard-stepnum {
    color: #138586;
    font-size: 0.75em;
    margin-bottom: 0.375em;
    font-weight: 300;
    text-transform: uppercase;
  }

  .profile-booktable .nav-tabs {
    border-bottom: #ccc 2px solid;
  }

  .profile-booktable .nav-tabs>li>a {
    border-radius: 0;
    color: #545659;
    text-align: center;
    border: none;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.75em;
    margin-bottom: -1px;
  }

  .profile-booktable .nav-tabs>li.active>a,
  .profile-booktable .nav-tabs>li.active>a:hover,
  .profile-booktable .nav-tabs>li.active>a:focus {
    background-color: #fff;
    border: none;
    border-bottom: #00a4de 0.16667em solid;
    color: #00a4de;
    border-radius: 0;
  }

  .mega-menu-col {
    padding: 0.5em;
  }

  .mega-menu-col h5,
  .navparentlink {
    font-weight: 300;
    padding: 0.25em 0;
    margin: 0.5em 0;
    text-transform: uppercase;
    border-bottom: #ccc 1px solid;
  }

  .mega-menu-col h5 a,
  .navparentlink a {
    color: #00dfb3;
  }

  .navparentlink {
    margin: 0.5em;
  }

  .mega-menu-col ul {
    padding: 0;
    margin: 0;
    font-weight: 300;
    list-style: none;
  }

  .mega-menu-col ul li {
    padding: 0.25em 0;
  }

  .mega-menu-col ul a {
    color: #666;
  }

  .mega-menu-col ul a:hover {
    color: #37e7c8;
    text-decoration: none;
  }

  #bannerbox .embed-responsive-16by9 {
    padding-bottom: 57.14%;
  }

  #splash,
  .banner {
    position: relative;
    max-width: 100%;
    margin: 0;
  }

  .portalgrid .video-content {
    font-size: 87.5%;
  }

  .splash-content,
  .banner-content,
  #bannerbox .video-content {
    height: 13.75em;
  }

  .portalgrid .portaltitle,
  .portaldesc {
    font-size: 75%;
  }

  .splash-content .vce,
  .banner-content .vce,
  .video-content .vce {
    margin: 0 2em 2em;
    font-size: 75%;
    max-width: 80%;
    letter-spacing: -1.5px;
  }

  .portaltitle .vce {
    max-width: 93.75%;
  }

  .hoteldescblock .wrapper .hoteldescgallery {
    border-radius: 0.25em;
  }

  .hoteldescblock #banner .bannerimage {
    width: 100%;
    height: auto;
    border-radius: 0.5em;
  }

  .tab .nav-tabslide {
    margin-left: -1.25em;
    margin-right: -1.25em;
  }

  .tab .nav-tabs {
    padding-left: 1.25em;
    padding-right: 1.25em;
    overflow-x: scroll;
  }

  .hoteldeparturetab .tab .nav-tabs {
    overflow-x: initial;
    padding-left: 0;
    padding-right: 0;
  }

  .tab .nav-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab .nav-tabs>li {
    margin-left: 0;
    float: none;
    display: table-cell;
    white-space: nowrap;
  }

  .tripfinder .selectbox {
    float: left;
    width: 50%;
    padding: 0.375em 0.5em 0;
    margin-bottom: 0.375em;
  }

  .flightfinder label,
  .popupbox-selectguests label {
    color: #fff;
  }

  .tripfinder .searchbutton,
  .tripfinder .guestamount {
    width: 100%;
  }

  .tripfinder .guestamount {
    margin-bottom: 0.625em;
  }

  .tripfinder .guestamount .form-control {
    line-height: 1.875;
  }

  .tripfinder .selectbox .tripfindbtn {
    padding: 0.375em 0.75em;
    height: 2.875em;
    border: none;
  }

  .tripfinder .selectbox .tripfindbtn>span {
    font-size: 1.25em;
    line-height: 1.5;
  }

  .tripfinder .guestamount .peoplenumselect-dropdown {
    left: auto;
    right: 0.5em;
    transform: translateY(0.71875em);
  }

  #navSlideshowControl {
    bottom: 0;
  }

  #navSlideshowControl a {
    width: 0.5em;
    height: 0.5em;
    border-radius: 0.25em;
  }

  .nav-tabs.nav-justified>li {
    display: table-cell;
    width: 1%;
  }

  .nav-tabs.nav-justified>li>a {
    margin-bottom: 0;
  }

  .hoteldeparturetab .tab .nav-tabs>li {
    vertical-align: top;
  }

  .hoteldesc {
    padding: 0 0 0.625em;
    margin: 1em 0 0;
    height: auto;
    position: static;
  }

  .hoteldesc .hoteltext h1 {
    margin-bottom: 0;
    font-size: 1.5em;
    font-weight: 400;
  }

  .hoteldesc .hoteltext h5 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 0.875em;
  }

  .hoteldesc .hoteltext .hotelstar img.svg {
    width: 1.25em;
    height: 1.25em;
    filter: invert(29%) sepia(72%) saturate(3308%) hue-rotate(346deg) brightness(90%) contrast(100%);
    vertical-align: baseline;
  }

  .hoteldesc .hoteltext .hotelstar img.starplus {
    width: 1.25em;
    height: 1.25em;
    filter: invert(66%) sepia(0%) saturate(47%) hue-rotate(177deg) brightness(93%) contrast(92%);
  }

  .hotelmap {
    position: static;
    width: 100%;
    padding: 0.625em 0 0;
  }

  .facility {
    width: 49%;
    min-height: 2em;
  }

  .facility-img {
    width: 2em;
    height: 2em;
  }

  .tab .nav-tabs>li.tabindicator {
    font-size: 1.25em;
    padding: 0.5em;
    margin-right: 2.5em;
    float: none;
  }

  .tab .nav-tabs>li>a,
  .tab .nav-tabs>li>a:hover,
  .tab .nav-tabs>li>a:focus,
  .tab .nav-tabs>li.active>a,
  .tab .nav-tabs>li.active>a:hover,
  .tab .nav-tabs>li.active>a:focus {
    padding: 0.5em;
    background-color: transparent;
    margin-right: 0;
  }

  .tab .nav-tabs>li>a.dropdown-toggle,
  .tab .nav-tabs>li>a.dropdown-toggle:hover,
  .tab .nav-tabs>li>a.dropdown-toggle:focus,
  .tab .nav-tabs>li.active>a.dropdown-toggle,
  .tab .nav-tabs>li.active>a.dropdown-toggle:hover,
  .tab .nav-tabs>li.active>a.dropdown-toggle:focus {
    border-bottom: none;
  }

  .tab-inner .tabextend:first-child,
  .freeedit .tabextend:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 1.625em;
  }

  .tab-inner .tabextend .blockimg,
  .freeedit .tabextend .blockimg {
    margin-top: 1.625em;
  }

  .accordioncontent {
    padding: 0;
  }

  .pricecalendar .tab .nav-tabs>li>a {
    font-size: 0.875em;
  }

  .popupbox>h3 {
    font-size: 1.5em;
    padding-right: 1.25em;
    margin-bottom: 1em;
  }

  .popupbox .tab .nav-tabs>li>a {
    font-size: 1em;
    padding: 0.5em;
    text-transform: capitalize;
  }

  .hoteldeparturetab .tab .nav-tabs>li>a {
    font-size: 0.75em;
    padding: 0;
    text-transform: capitalize;
  }

  .tabextend .blockimg {
    padding: 0;
  }

  .horizontalleft .blockimg {
    float: none;
    width: 100%;
    margin: 0;
  }

  .horizontalright .blockimg {
    float: none;
    width: 100%;
    margin: 0;
  }

  .horizontalleft .blockdesc,
  .horizontalright .blockdesc {
    overflow: hidden;
    padding: 1em;
  }

  .horizontalleft .top-right {
    right: 0.75em;
  }

  .horizontalright .top-left {
    left: 0.75em;
  }

  .tripfinderph h3 {
    padding: 0.5em;
    margin: 0 0 1em 0;
    cursor: pointer;
  }

  .hotel .hotelsimpledesc {
    margin: 0;
    padding: 0.625em;
  }

  .hoteldescblock {
    margin-top: 1.25em;
  }

  .hotel .hoteldescblock {
    margin-top: 0;
  }

  .rev-wrapper {
    margin-bottom: 4em;
  }

  .rev-wrapper .rev-img .rev-imgfloat {
    max-width: 57.63%;
    max-height: 62.5%;
  }

  .rev-wrapper .rev-txt {
    margin-top: 2em;
    margin-bottom: 0;
  }

  .rev-txtlbox1,
  .rev-txtrbox1,
  .rev-txtlbox2,
  .rev-txtrbox2 {
    padding-left: 0;
    padding-right: 0;
  }

  .rev-topcomp {
    padding-top: 0;
  }

  .rev-bottomcomp {
    padding-bottom: 0;
  }

  .rev-topcomp .rev-txt {
    margin-top: 2em;
  }

  .rev-bottomcomp .rev-txt {
    margin-top: 1em;
  }

  .rev-topcomp .rev-img {
    margin-top: 4em;
  }

  .rev-bottomcomp .rev-img {
    margin-bottom: 4em;
  }

  .tabextend .tabexcolhaslgap {
    padding-left: 0.5em;
  }

  .tabextend .tabexcolhasrgap {
    padding-right: 0.5em;
  }

  .blockcolumns {
    margin-bottom: 0;
  }

  .blockcolumns .colhaslgap {
    padding-left: 0.5em;
  }

  .blockcolumns .colhasrgap {
    padding-right: 0.5em;
  }

  .expandpanel .wrapper {
    background-color: #f5f5f5;
    position: relative;
    height: 30em;
    overflow: hidden;
  }

  .expandpanel .blocknocomment {
    background-color: #fff;
  }

  .expandpanel .blockimg {
    height: auto;
  }

  .expandpanel .blockimg-outer .blockcomment {
    padding: 2em;
  }

  .expandpanel .blocknocomment .blockimg-outer .blockcomment {
    display: none;
  }

  .expandpanel .blockcontent {
    background-color: #fff;
    padding: 0.5em 1em 1em;
  }

  .expandpanel .blocktrigger {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -24px 16px -8px rgba(255, 255, 255, 0.8);
  }

  .expandpanel .blocktrigger-inner {
    padding: 1em 0.5em;
    text-align: right;
  }

  .expandpanel .blocktrigger-inner .btn-dir {
    width: 1.5em;
    height: 1.5em;
    display: inline-block;
    background-position: center center;
    background-repeat: no-repeat;
    vertical-align: middle;
  }

  .expandpanel .blocktrigger-inner .btn-chevron-up {
    background-image: url('/Static/Img/Up-w.png');
  }

  .expandpanel .blocktrigger-inner .btn-chevron-down {
    background-image: url('/Static/Img/Down-w.png');
  }

  .simplepanel .blockbasic {
    padding: 1em 1em 0.5em;
    position: relative;
    border-bottom: #fff 1px solid;
  }

  .simplepanel .blockbasic h3 {
    margin-top: 0;
  }

  .simplepanel .blockbasic .blocktrigger {
    display: block;
    position: absolute;
    bottom: -1px;
    right: 0;
  }

  .simplepanel .blockbasic .blocktrigger .btn-dir {
    width: 1.5em;
    height: 1.5em;
    display: inline-block;
    background-position: center center;
    background-repeat: no-repeat;
    vertical-align: middle;
  }

  .simplepanel .blockbasic .blocktrigger .btn-chevron-up {
    background-image: url('/Static/Img/Up-w.png');
  }

  .simplepanel .blockbasic .blocktrigger .btn-chevron-down {
    background-image: url('/Static/Img/Down-w.png');
  }

  .simplepanel .blockcontent {
    background-color: #fff;
    border-top: #ccc 1px solid;
    display: none;
  }

  .simplepanel .blockeqheightr-outer {
    border-top: #ccc 1px solid;
  }

  .simplepanel .blockeqheightl,
  .simplepanel .blockeqheightr {
    padding: 1em;
  }

  .simplepanel .blockcontent .blockfull .blockeqheightl-outer {
    display: none;
  }

  .hoteltrips .tripmatch {
    display: none;
  }

  .hoteltrips .tripsinglebox,
  .hoteltrips .triptabbox {
    padding: 0;
  }

  .hoteltrips table tbody .roombasic {
    font-size: 0.75em;
  }

  .hoteltrips .tripscycle table tbody td label span.hotelprice {
    font-size: 1.142857em;
  }

  .hoteltrips table tbody .roomcell {
    border-top: #fff 0.1666667em solid;
    border-bottom: #fff 0.1666667em solid;
  }

  .hoteltrips table tbody td label {
    display: block;
    padding: 1em 0.75em;
  }

  .hoteltrips .hoteltripbox {
    padding-top: 2em;
  }

  .flightinfobox tbody tr td.flight-luggage {
    height: 5.5em;
  }

  .hotelslist {
    padding: 0;
  }

  .triproomstacks .room-types {
    border: none;
  }

  .hotelfeature {
    padding: 0;
    margin: 0 0 1.25em;
  }

  .hotelfeature>.hotelteaser-full>h1,
  .hotelfeature>.hotelteaser-half>h1 {
    margin-bottom: 0;
    font-size: 1.5em;
    font-weight: 400;
  }

  .hotelfeature>.hotelteaser-full>h5,
  .hotelfeature>.hotelteaser-half>h5 {
    margin-top: 0;
    font-size: 0.875em;
  }

  .hotelstar {
    margin-top: 0;
    margin-bottom: 1.25em;
  }

  .facilities-sm .facility .facility-img {
    width: 2em;
  }

  .hoteltripsfilter h4 {
    font-size: 1em;
  }

  .hoteltripsfilter label.text-thin {
    font-weight: 300 !important;
    font-size: 0.875em !important;
  }

  .hotelslist>.hotel .hotelbook .hotelpricefrom {
    line-height: 1;
    font-size: 1.25em;
    font-weight: 400;
  }

  .hotelslist>.hotel .hotelbook .hotelpricefrom span {
    font-size: 1.75em;
  }

  .hotelslist>.hotel .hotelbook .hotelpricefrom span small {
    font-size: 55.56%;
  }

  .hotelslist>.hotel {
    border: none;
    padding: 2.5em 0 0;
    margin-bottom: 0;
  }

  .hotelslist>.hotel .hotelinfo .equal-height>div {
    min-height: auto;
  }

  .hotelslist>.hotel .hotelinfo .equal-height>.hotelprice {
    background-color: transparent !important;
    min-height: 6.5em;
  }

  .hotelslist>.hotel .hotelimage {
    min-height: 12em;
  }

  .hotelslist>.hotel .hotelprice {
    margin-bottom: 0;
  }

  .hotelslist>.hotel .hotelbook {
    position: static;
    bottom: auto;
    left: auto;
    padding: 0;
  }

  .hotelslist>.hotel .hotelbookbtn {
    margin-top: 1.1666667em;
  }

  .hotelslist>.hotel .hotelimage .hoteldescgallery {
    font-size: 1em;
    left: 0.875em;
    bottom: 0.875em;
  }

  .hotelstar+p,
  .hotelfeature>.hotelteaser-half>h5+p,
  .hotelfeature>.hotelteaser-full>h5+p {
    display: none;
  }

  .hoteltripstack .triproomstacks .roomstack {
    margin-top: 1.4375em;
  }

  .hoteltripbox .tipinfo {
    margin-top: 1em;
    margin-bottom: 0;
  }

  .room-recomm {
    padding: 1em;
    margin-top: 1em;
    margin-bottom: 1.625em;
  }

  .room-norecomm {
    margin: 1em 0 0;
  }

  .room-recommtype h5 {
    font-size: 1em;
  }

  .room-recommtype p {
    font-size: 0.75em;
  }

  .room-recomm1pp p:first-child {
    font-size: 0.75em;
  }

  .triproomstacks .room-listtitle {
    margin-top: 2em;
  }

  .room-addtocart button {
    font-weight: 400;
  }

  .room-addtocart .room-recommprice .room-recommspin {
    min-height: 9.125em;
  }

  .room-addtocart .room-recommprice .room-recommspin svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .room-addtocart .room-recommprice .room-recommspin .room-recommretry {
    position: absolute;
    width: 75%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .room-addtocart .room-recommprice .room-recommspin .room-recommretry p {
    font-size: 0.875em;
  }

  .room-addtocart .room-recommprice .room-recommspin .room-recommretry button img.svg {
    width: 1em;
    height: 1em;
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(189deg) brightness(111%) contrast(101%);
  }

  .room-priceppbox .room-pricepp .room-pricefrom {
    font-size: 1em;
    line-height: 1;
    font-weight: 400;
  }

  .room-priceppbox .room-pricepp .room-pricefrom span {
    font-size: 1.875em;
  }

  .room-priceppbox .room-pricepp .room-pricediff {
    display: inline-block;
    text-align: left;
  }

  .room-priceppbox .room-pricepp .room-pricediff s {
    font-size: 0.625em;
    font-weight: 300;
    color: #58585e;
    text-decoration: line-through;
  }

  .room-priceppbox .room-pricepp .room-pricediff small {
    font-size: 0.625em;
    font-weight: 300;
  }

  .room-recomm1pp {
    font-size: 1.125em;
    padding: 0;
  }

  .backtohotelslist {
    margin: 2em 0 0;
    padding: 0 0.675em 0.625em;
  }

  .hoteltripstack .triproomstacks .roomstack label {
    font-size: 0.875em;
  }

  .room-sumbox {
    background-color: transparent;
    margin-bottom: 0;
  }

  .hoteltripstack .triproomstacks .roomstack .roomtype {
    margin-top: 0.5em;
    font-size: 1.5em;
    font-weight: 400;
  }

  .hoteltripstack .triproomstacks .roomstack .roommealpackage span.label {
    font-size: 0.857143em;
    color: #000;
    background-color: #e7e7e7;
    letter-spacing: 0.25px;
  }

  .hoteltripstack .triproomstacks .roomstack .roommealpackage {
    margin-bottom: 1.428571em;
    font-size: 0.875em;
    line-height: 1.444;
  }

  .hoteltripstack .triproomstacks .roomstack .room-priceppbox {
    margin-bottom: 1.25em;
  }

  .hoteltripstack .triproomstacks .roomstack .form-group {
    margin-bottom: 1.5em;
  }

  .hoteltripstack .triproomstacks .roomstack .form-group .form-control {
    border-width: 1px;
  }

  .cart-alert h3 {
    font-size: 1.5em;
    margin-bottom: 0.375em;
  }

  .cart-alert .room-config dt {
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 0.25em;
  }

  .cart-alert .room-config dd {
    font-size: 1em;
    font-weight: 400;
  }

  .financetotal th,
  .financetotal td {
    font-weight: 700;
    text-transform: uppercase;
  }

  .hotelbaseimg {
    width: 100%;
  }

  .hotelbaseinfo {
    overflow: hidden;
    padding: 0.625em;
  }

  .hotelbanner {
    height: 12em;
    overflow: hidden;
    position: relative;
  }

  .hotelpaymentbox {
    padding-bottom: 0;
    margin: 0 0.875em;
  }

  .hotelguestsbase {
    margin: 0 0 2em;
    padding-bottom: 0;
  }

  .hotelsupplement {
    padding-bottom: 1em;
  }

  .hotelsupplement>h4 {
    letter-spacing: 0px;
    font-size: 2em;
    margin-bottom: 0;
  }

  .hotelsupplement .wrapper {
    margin: 1em 0;
  }

  #skirental .wrapper {
    margin: 1em 0 1.625em;
  }

  .hotelsupplement .form-desc {
    font-size: 1em;
    font-weight: 300;
  }

  .form-creditcards>h5 {
    color: #000;
  }

  /* .hotelguests .form-group,
  .bookinglogin .logincontainer .form-group,
  .hotelguests .form-creditcards .radio,
  .hotelguests .form-approveterms .checkbox {
    margin: 3em 0 0;
  } */
  .hotelguests .travelerbox {
    padding: 2em 0;
    border-top: #8e9293 1px solid;
  }

  .hotelguests .travelerbox:first-child {
    padding: 0 0 2em;
    border-top: none;
  }

  .hotelguests .form-error {
    margin-bottom: 0;
  }

  .hotelguests .form-extra {
    margin: 1.5em 0 0;
  }

  .accordionsupplement {
    margin-top: 2.5em;
    border: none;
    padding-bottom: 0;
  }

  .accordionsupplement .panel-title {
    border-top: #000 1px solid;
    font-size: 1.125em;
    font-weight: 400;
    text-transform: capitalize;
  }

  .accordionsupplement .panel-title a {
    display: block;
    padding: 1.33333em 0.11111em;
  }

  .accordionsupplement .panel-group {
    border-bottom: #000 0.0625em solid;
  }

  .accordionsupplement .panel-group .panel-heading+.panel-collapse>.panel-body {
    padding: 0;
  }

  .accordionsupplement .panel-group .wrapper {
    margin: 0;
  }

  .accordionsupplement .panel-group .wrapper p {
    margin: 0;
  }

  .accordionsupplement .panel-group .wrapper .suppdetailbtn {
    margin: 1.625em 0 2em;
  }

  .accordionsupplement .panel-group .hotelguests {
    margin: 0 0 2em;
  }

  .accordionsupplement .panel-group .hotelguests>h5 {
    margin: 1em 0 0;
  }

  .accordionsupplement .panel-group .hotelguests .form-group {
    margin: 1em 0 0;
  }

  .accordionsupplement .panel-group .accordionbtn {
    margin: 2em 0;
  }

  h3.personalinfotitle {
    font-size: 2.5em;
    padding: 0.3125em 0 0.25em;
    margin: 0;
    font-weight: 300;
    letter-spacing: -1px;
    text-transform: none;
  }

  p.personalinfodesc {
    font-size: 1.125em;
  }

  .hotelguests .traveler .form-group {
    margin-bottom: 0;
  }

  .hotelguests .traveler .form-group:first-child,
  .bookinglogin .logincontainer .form-group:first-child {
    margin-top: 0;
  }

  .bookinglogin .submit-area .btn {
    margin-top: 3em;
  }

  .hotelexcursion>h5 {
    font-size: 1.125em;
    margin: 0;
  }

  .coursessupplement h5 {
    font-size: 1.125em;
    margin-top: 0;
  }

  .coursessupplement .hotelguests>h5 {
    margin-top: 0;
  }

  .hotelguests .form-extra .optionpanel {
    font-size: 1em;
  }

  .hotelguests .form-inline .form-label h6 {
    text-align: left;
    line-height: 1.25;
  }

  .hotelguests .control-select {
    width: 100%;
  }

  .hotelguests .control-select select {
    width: 100%;
    color: #333;
    font-weight: 300;
  }

  .hotelguests .control-label select {
    font-weight: 300;
  }

  .hotelguests .form-inline .form-group {
    width: 100%;
    color: #666;
  }

  .rent-base .form-inline .form-group {
    width: 100%;
  }

  .hotelguests .form-inline .form-label {
    width: 100%;
  }

  .hotelguests .form-inline .form-label2 {
    width: 100%;
  }

  .hotelguests .form-inline .form-tiny {
    width: 100%;
  }

  .hotelguests .has-feedback .form-control {
    padding-right: 0.75em;
  }

  .hotelguests .form-inline .form-short {
    width: 100%;
    margin: 0;
  }

  .hotelguests .form-inline .form-short2 {
    width: 100%;
    margin: 0;
  }

  .hotelguests .form-inline .form-long {
    width: 100%;
  }

  .hotelguests .form-inline .form-full {
    width: 100%;
  }

  .hotelguests .form-inline .form-half {
    width: 100%;
  }

  .hotelguests .form-inline .control-chrd {
    width: 100%;
    padding-left: 20px;
    min-height: 1.5em;
  }

  .hotelguests .form-inline .control-chrd input[type='checkbox'] {
    margin-left: 0;
  }

  #rent-customerbox .rent-customer {
    margin-top: 2em;
  }

  #rent-customerbox h5 {
    font-size: 1.125em;
    padding: 0 0.55556em;
    margin: 0;
  }

  #rent-customerbox .rent-operate {
    margin: 0.75em 0.5em;
    font-size: 1.125em;
  }

  .hotelsubmit {
    margin: 3em 0 2em;
  }

  .hotelsubmit .bookingsubmitbtn {
    margin: 0 0 2em;
  }

  .skipass-note {
    font-size: 87.5%;
  }

  .bookinglogin h6 {
    min-height: 1em;
  }

  .bookinglogin .logincontainer {
    min-height: 2em;
  }

  .bookingsubmitbtn {
    margin-bottom: 1.25em;
  }

  .financial {
    display: block;
    width: 100%;
    padding: 1em 1.25em;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 800;
    background-color: #fff;
    -webkit-box-shadow: 0 -4px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 -4px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 -4px 6px 0 rgba(0, 0, 0, 0.16);
  }

  .financial-highlight {
    background-color: #fef4f3;
  }

  .financial .financial-hide {
    display: none;
  }

  .financial .financial-show {
    display: block;
  }

  .financial-info {
    display: flex;
    align-items: center;
  }

  .financial-pricetotal {
    padding: 1em 1.25em;
  }

  .financialtable .financial-popupbtn {
    display: block;
    padding: 1em 1.25em 1.25em;
  }

  #bkt {
    bottom: 1em;
    right: 0.75em;
  }

  .splitter {
    padding-left: 0.5em;
    padding-right: 0.5em;
    margin-top: 0.5em;
  }

  .campaignbase {
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .campaignbase>h2 {
    margin: 0 0 1em;
  }

  .campaignqualify {
    margin-bottom: 1em;
  }

  .campaigncountdown {
    padding: 1em;
    text-align: center;
    color: #666;
  }

  .campaignend {
    padding: 1em;
    color: #666;
  }

  .campaigncountdown>p {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 16.666667%;
  }

  .campaigncountdown>p:first-child {
    font-size: 3em;
  }

  .campaigncountdown>p>span {
    font-size: 1.5em;
  }

  .campaigntarget {
    font-size: 2em;
    padding: 0.5em;
    color: #666;
  }

  .campaigntimes {
    margin-top: 1.5em;
  }

  table.small-only {
    display: table;
  }

  table.large-only {
    display: none;
  }

  .tabblockitem {
    padding: 1em 1.125em 1.125em;
    margin-bottom: 1.25em;
    background-color: #eceeec;
  }

  .tabblockbox {
    padding: 1em 1.125em 1.125em;
    margin-bottom: 1.5em;
  }

  .tabblockbox ul.hotelfactlist,
  .tabblockbox ol.hotelfactlist {
    padding-left: 1.25em;
  }

  .tabblockbox h5.hotelfacttitle {
    margin-bottom: 1em;
  }

  .tabblockbox p.hotelfact {
    margin-bottom: 0;
  }

  .tabblockitem table tr th,
  .tabblockbox table tr td {
    padding: 0.3125em 0;
    border: none;
  }

  .tabblockbox table tr th,
  .tabblockbox table tr td {
    padding: 0.3125em 0;
    border: none;
  }

  .lastmin-filterby {
    margin-bottom: 0;
  }

  .lastmin-select {
    margin-bottom: 0.625em;
  }

  .cart {
    background-color: #fff;
    padding-left: 0;
    padding-right: 0;
  }

  .cart-box {
    font-size: 1em;
    padding: 1em 0;
  }

  .cart-flightinfo,
  .cart-roomsinfo {
    padding-top: 1em;
    border-top: #58585e 1px solid;
  }

  .cart-flightinfo {
    margin-top: 1.6255em;
  }

  .cart-roomsinfo {
    margin-top: 1em;
    margin-bottom: 1.5em;
    border-bottom: #58585e 1px solid;
    padding-bottom: 0.5em;
  }

  .cart-accomoinfo {
    display: flex;
    align-items: center;
  }

  .cart-accomoinfo p {
    font-size: 87.5%;
  }

  .cart-accomoinfo a.cart-popover {
    color: #000;
  }

  .cart-show>span {
    font-size: 0.875em;
  }

  .cart-detail h3 {
    font-size: 1.5em;
    margin-bottom: 1em;
    font-weight: 300;
  }

  .cart-hotel>h1 {
    font-size: 1.5em;
    font-weight: 400;
  }

  .cart-hotel>h5 {
    font-size: 1em;
    margin-top: 0.125em;
  }

  .cart-hotel>.hotelstar {
    margin-top: 0.25em;
    margin-bottom: 0.6875em;
  }

  .cart-times,
  .cart-flight {
    font-weight: 400;
  }

  .cart-times strong,
  .cart-flight strong {
    font-weight: 400;
  }

  .cart-detail {
    padding: 1.375em !important;
  }

  .cart-roomsincart>.row {
    margin-top: 1em;
    margin-bottom: 1em;
  }

  .cart-summarybox h4 {
    font-size: 1.125em;
    font-weight: 700;
  }

  .cart-pricebook form button[type='submit'].btn {
    margin-bottom: 1em;
  }

  .room-priceppbox .room-pricepp .room-pricefrom {
    font-size: 1.25em;
    line-height: 1;
  }

  .room-priceppbox .room-pricepp .room-pricefrom span {
    font-size: 1.75em;
    font-weight: 400;
  }

  .room-priceppbox .room-pricepp .room-pricefrom span small {
    font-size: 55.56%;
  }

  .room-priceppbox .room-pricepp .room-pricediff {
    display: inline-block;
    text-align: left;
  }

  .room-priceppbox .room-pricepp .room-pricediff s {
    font-size: 0.625em;
    font-weight: 300;
    color: #58585e;
    text-decoration: line-through;
  }

  .room-priceppbox .room-pricepp .room-pricediff small {
    font-size: 0.625em;
    font-weight: 300;
  }

  .room-recommtype h5 {
    font-weight: 400;
  }

  .room-recommtype i.lcd {
    font-size: 1.25em;
  }

  .room-recommtype small i.lcd {
    color: #333;
  }

  .room-recommtype table {
    font-size: 0.875em;
    border-top: #ddd 2px solid;
  }

  .room-recommtype table thead th {
    font-weight: 400;
  }

  .mylangley-infobox {
    margin: 0.625em 0.625em 1.25em;
  }

  .mylangley-infobox h4 {
    margin-top: 12px;
  }

  .mylangley-greeting {
    font-size: 1.5em;
    margin-bottom: 0.7667em;
    line-height: 1.25;
  }

  .mylangley-switch {
    margin: 0.5em 0 1em;
  }

  .mylangley-switch ul.nav-pills>li>a {
    font-size: 0.875em;
  }

  .mylangley-user {
    margin: 2em 0;
    text-align: left;
  }

  .mylangley-user .lcd {
    font-size: 2em;
    color: #333;
  }

  .mylangley-user .mylangley-avatar {
    vertical-align: middle;
    margin-right: 0.5em;
  }

  .mylangley-user .mylangley-username {
    display: inline-block;
    vertical-align: middle;
    line-height: 1.125;
  }

  .mylangley-user .mylangley-username span {
    font-size: 0.8em;
    color: #138587;
    display: block;
  }

  .mylangley-hotelimgbox {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .mylangley-hotelimgbox img {
    position: absolute;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .mylangley-reslist .mylangley-res {
    border: none;
    margin-top: 1.25em;
  }

  .mylangley-reslist .mylangley-res:first-child {
    border: none;
    margin: 0;
  }

  .mylangley-resbrief {
    min-height: 7.5em;
  }

  .mylangley-resbrief h3 {
    padding-top: 0.333em;
    font-size: 1.125em;
  }

  .mylangley-resbrief h5 {
    margin-top: 0;
    font-size: 0.875em;
  }

  .mylangley-resbrief p {
    font-size: 0.875em;
  }

  .mylangley-resbrief p.mylangley-resmobistat {
    margin-top: 1em;
    font-size: 0.75em;
  }

  .mylangley-resbrief .mylangley-resbrno {
    position: static;
  }

  .mylangley-reslistlinks {
    text-align: center;
    margin: 2em 0;
  }

  .mylangley-linkbox {
    border: none;
    padding: 0;
  }

  .mylangley-linkbox ul li {
    border-top: #666 1px solid;
  }

  .mylangley-mobilink {
    margin: 2em 0 0;
    font-weight: 400;
  }

  .mylangley-mobilink a {
    font-size: 0.875em;
    color: #128588;
  }

  .mylangley-mobilink a.btn {
    border-radius: 1em;
    padding: 0.125em 1em;
    font-weight: 400;
    border: #128588 1px solid;
    margin-bottom: 1em;
  }

  .mylangley-overviewbtns,
  .mylangley-updcustinfo,
  .mylangley-travelerinfosubmit {
    margin: 2em 0 3em;
    text-align: center;
  }

  .mylangley-overviewbtns a.btn,
  .mylangley-overviewbtns a.btn:first-child,
  .mylangley-overviewbtns button.btn,
  .mylangley-updcustinfo .btn,
  .mylangley-travelerinfosubmit .btn {
    margin: 0.5em;
  }

  .customer-popup .hotelguests>h5 {
    margin-top: 1em;
  }

  .customer-popup .hotelguests .form-group {
    margin: 1em 0 0;
  }

  #footer .newsletterbox {
    margin: 3.5em 1.25em 1.5em;
  }

  #footer #footerlogo {
    text-align: center;
  }

  .mfp-btnbox .col-xs-12 {
    margin-top: 1em;
  }

  .mfp-btnbox .col-xs-12:first-child {
    margin-top: 0;
  }

  .rentalcar-img {
    height: 12.75em;
    overflow: hidden;
  }
}

/* min-width 480px, small screens */
@media only screen and (min-width: 30em) {
  .img-responsive {
    width: 100%;
  }

  .img-fluid {
    max-width: 100%;
  }

  #logo img {
    width: 8.25em;
  }

  .table-teal>thead>tr>th,
  .table-teal>tbody>tr>th,
  .table-teal>tfoot>tr>th,
  .table-teal>thead>tr>td,
  .table-teal>tbody>tr>td,
  .table-teal>tfoot>tr>td {
    padding: 1em 0.5em;
  }

  .table-teal>tbody>tr>th,
  .table-teal>tfoot>tr>th,
  .table-teal>tbody>tr>td,
  .table-teal>tfoot>tr>td {
    border-top: 1px solid #128588;
  }

  .table-teal>thead>tr>th,
  .table-teal>thead>tr>td {
    border-bottom: 2px solid #128588;
  }

  .topcontainer {
    height: 2.25em;
    background-color: #fef4f3;
  }

  .topcontainer .nav>li>a {
    font-size: 0.875em;
    border-radius: 0;
    color: #000;
    padding: 0.5em 1em;
  }

  .topcontainer .nav>li>a.has-lucide {
    line-height: 0;
    padding-top: 0.642857em;
    padding-bottom: 0.714286em;
  }

  .topcontainer .nav>li>a.has-lucide img.svg {
    width: 1.142857em;
    height: 1.142857em;
  }

  .topcontainer .nav>li>a:hover,
  .topcontainer .nav>li>a:focus {
    background-color: #fff;
  }

  .topcontainer>.container {
    position: relative;
  }

  .topcontainer>.container>.navbar-right {
    float: right;
  }

  .headercontainer {
    position: relative;
    height: 4.25em;
  }

  .headercontainer>.container {
    position: absolute;
    width: 100%;
    min-height: 4.25em;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 200;
    border-bottom-left-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
  }

  #languagelist {
    text-align: right;
    width: 100%;
    position: absolute;
    height: 2.25em;
    top: -2.25em;
    left: 0;
  }

  #languagelist>a {
    display: inline-block;
    padding: 0.5em;
    margin-left: 1em;
  }

  #header {
    padding: 0;
    margin: 0 0 1em;
    min-height: 2.5em;
  }

  .navbar-header {
    padding-right: 0;
  }

  #navbar {
    background-color: #f1f1f1;
    margin-top: 0.5em;
  }

  #nav {
    border-bottom: #f7a9ad 1px solid;
    margin-bottom: 0;
  }

  #nav>li>a {
    padding: 1em;
  }

  .navbar-right .navsearch {
    padding: 0.25em 0.5em;
  }

  #loginform {
    right: 0;
    left: auto;
  }

  #loginbox,
  .profile-editing {
    font-weight: 300;
    padding: 0.75em;
  }

  #loginbox .nav-tabs,
  .profile-editing .nav-tabs {
    padding: 0 1em;
  }

  #loginbox .tab-content,
  .profile-editing .tab-content {
    padding: 1em;
  }

  #bannerbox .bs-wizard {
    margin: 0.625em 0;
  }

  .hotel .hotelsimpledesc {
    margin: 0;
    padding: 0.625em;
  }

  .mylangley-infobox {
    margin: 0.625em 0.625em 1.25em;
  }

  .mylangley-infobox h4 {
    margin-top: 12px;
  }

  .profile-booktable .nav-tabs {
    border-bottom: #ccc 2px solid;
  }

  .profile-booktable .nav-tabs>li>a {
    border-radius: 0;
    color: #545659;
    text-align: center;
    border: none;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.75em;
    margin-bottom: -1px;
  }

  .profile-booktable .nav-tabs>li.active>a,
  .profile-booktable .nav-tabs>li.active>a:hover,
  .profile-booktable .nav-tabs>li.active>a:focus {
    background-color: #fff;
    border: none;
    border-bottom: #00a4de 0.16667em solid;
    color: #00a4de;
    border-radius: 0;
  }

  .navparentlink {
    font-weight: 300;
    padding: 0.25em;
    margin: 0.5em 0;
    text-transform: uppercase;
    border-bottom: #ccc 1px solid;
  }

  .navparentlink a {
    color: #eb1d25;
  }

  #splash,
  .banner {
    position: relative;
    max-width: 100%;
    margin: 0;
  }

  .portalgrid .video-content {
    font-size: 60%;
  }

  .portalgrid .portaltitle,
  .portaldesc {
    font-size: 75%;
  }

  /* .splash-content .vce,.banner-content .vce,.video-content .vce{margin:0 2em 3em;font-size:75%;max-width:80%;} */
  .portaltitle .vce {
    max-width: 93.75%;
  }

  .hoteldescblock #banner .bannerimage {
    width: 100%;
    height: auto;
  }

  .horizontalleft .blockimg {
    float: none;
    width: 100%;
    margin: 0;
  }

  .horizontalright .blockimg {
    float: none;
    width: 100%;
    margin: 0;
  }

  .horizontalleft .blockdesc,
  .horizontalright .blockdesc {
    overflow: hidden;
    padding: 1em;
  }

  .searchbarcontainer {
    width: 100%;
    z-index: 299;
  }

  .tripsearchbaralone .searchbarcontainer {
    position: static;
    border-top: #b1b1b6 1px solid;
    border-bottom: #b1b1b6 1px solid;
  }

  #mobibanner,
  #mobisplashvideo {
    height: 42em;
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 0.5em 0.5em;
  }

  #mobibanner .bannerimage {
    height: 100%;
    width: auto;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  #mobisplashvideo .videoembed-box video {
    height: 100%;
    width: auto;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .searchbarcontainer {
    z-index: 199;
    width: 100%;
    position: absolute;
    top: 14em;
  }

  .accordioncontent {
    padding: 0;
  }

  .tripfinderwrap {
    margin: 0 1.25em;
    padding: 0.375em 0 0.625em;
    border-radius: 0.5em;
    background-color: #fff;
  }

  .portalgrid .video-content {
    font-size: 87.5%;
  }

  .splash-content,
  .banner-content,
  #bannerbox .video-content {
    height: 14em;
  }

  .splash-content .vce,
  .banner-content .vce,
  .video-content .vce {
    margin: 0 2em 2em;
    font-size: 75%;
    max-width: 80%;
    letter-spacing: -1.5px;
  }

  .portaltitle .vce {
    max-width: 93.75%;
  }

  .tripfinder .selectbox {
    float: left;
    width: 50%;
    padding: 0.375em 0.5em 0;
    margin-bottom: 0.375em;
  }

  .tripfinder .searchbutton,
  .tripfinder .guestamount {
    width: 100%;
  }

  .tripfinder .guestamount {
    margin-bottom: 0.625em;
  }

  .tripfinder .guestamount .form-control {
    line-height: 1.875;
  }

  .tripfinder .selectbox .tripfindbtn {
    padding: 0.375em 0.75em;
    height: 2.875em;
    border: none;
  }

  .tripfinder .selectbox .tripfindbtn>span {
    font-size: 1.25em;
    line-height: 1.5;
  }

  .tripfinder .guestamount .peoplenumselect-dropdown {
    left: auto;
    right: 0.5em;
    width: 80%;
    transform: translateY(0.71875em);
  }

  .peoplenumselect-fields {
    width: 100%;
  }

  #navSlideshowControl a {
    width: 1em;
    height: 1em;
    border-radius: 0.5em;
  }

  .nav-tabs.nav-justified>li {
    display: table-cell;
    width: 1%;
  }

  .nav-tabs.nav-justified>li>a {
    margin-bottom: 0;
  }

  .tab .nav-tabs>li>a {
    padding: 1.15em 0.5em;
  }

  .tab .nav-tabs>li {
    margin-left: 0;
  }

  .room-recomm1pp p:first-child {
    font-size: 0.75em;
  }

  .cart-pricebook form button[type='submit'].btn {
    margin-bottom: 1em;
  }

  .room-addtocart button {
    margin-top: 0;
    font-weight: 400;
    width: 100%;
  }

  .room-addtocart .room-recommprice button.btn-tobook {
    margin-top: 1.25em;
  }

  .room-addtocart .room-recommprice .room-recommspin {
    min-height: 7.6875em;
  }

  .room-addtocart .room-recommprice .room-recommspin svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .room-addtocart .room-recommprice .room-recommspin .room-recommretry {
    position: absolute;
    width: 75%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .room-addtocart .room-recommprice .room-recommspin .room-recommretry p {
    font-size: 0.875em;
  }

  .room-addtocart .room-recommprice .room-recommspin .room-recommretry button img.svg {
    width: 1em;
    height: 1em;
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(189deg) brightness(111%) contrast(101%);
  }

  .room-recomm1pp {
    font-size: 1.125em;
    padding: 0.667em 0;
    margin: 0.25em 0;
  }

  .hoteltripstack .triproomstacks .roomstack label {
    font-size: 0.875em;
  }

  .hoteldesc {
    padding: 0;
    margin: 1em 0.625em 0.625em;
    height: auto;
    position: static;
  }

  .hotelmap {
    position: static;
    width: 100%;
    padding: 0.625em 0 0;
  }

  .expandpanel .wrapper {
    background-color: #f5f5f5;
    position: relative;
    height: 40em;
    overflow: hidden;
  }

  .expandpanel .blocknocomment {
    background-color: #fff;
  }

  .expandpanel .blockimg {
    height: auto;
  }

  .expandpanel .blockimg-outer .blockcomment {
    padding: 2em;
  }

  .expandpanel .blocknocomment .blockimg-outer .blockcomment {
    display: none;
  }

  .expandpanel .blockcontent {
    background-color: #fff;
    padding: 1em 2em 2em;
  }

  .expandpanel .blocktrigger {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -24px 16px -8px rgba(255, 255, 255, 0.8);
  }

  .expandpanel .blocktrigger-inner {
    padding: 1em 0.5em;
    text-align: right;
  }

  .expandpanel .blocktrigger-inner .btn-dir {
    width: 1.5em;
    height: 1.5em;
    display: inline-block;
    background-position: center center;
    background-repeat: no-repeat;
    vertical-align: middle;
  }

  .expandpanel .blocktrigger-inner .btn-chevron-up {
    background-image: url('/Static/Img/Up-w.png');
  }

  .expandpanel .blocktrigger-inner .btn-chevron-down {
    background-image: url('/Static/Img/Down-w.png');
  }

  .simplepanel .blockbasic {
    padding: 1.5em 1.5em 0.5em;
    position: relative;
    border-bottom: #fff 1px solid;
  }

  .simplepanel .blockbasic h3 {
    margin-top: 0;
  }

  .simplepanel .blockbasic .blocktrigger {
    display: block;
    position: absolute;
    bottom: -1px;
    right: 0;
  }

  .simplepanel .blockbasic .blocktrigger .btn-dir {
    width: 1.5em;
    height: 1.5em;
    display: inline-block;
    background-position: center center;
    background-repeat: no-repeat;
    vertical-align: middle;
  }

  .simplepanel .blockbasic .blocktrigger .btn-chevron-up {
    background-image: url('/Static/Img/Up-w.png');
  }

  .simplepanel .blockbasic .blocktrigger .btn-chevron-down {
    background-image: url('/Static/Img/Down-w.png');
  }

  .simplepanel .blockcontent {
    background-color: #fff;
    border-top: #ccc 1px solid;
    display: none;
  }

  .simplepanel .blockeqheightr-outer {
    border-top: #ccc 1px solid;
  }

  .simplepanel .blockeqheightl,
  .simplepanel .blockeqheightr {
    padding: 1.5em;
  }

  .simplepanel .blockcontent .blockfull .blockeqheightl-outer {
    display: none;
  }

  .booking h2,
  .mypages h2 {
    font-size: 1.5em;
  }

  .hoteltrips .tripsinglebox,
  .hoteltrips .triptabbox {
    padding: 0;
  }

  .hoteltrips .tripscycle table tbody td label span.hotelprice {
    font-size: 1.142857em;
  }

  .hotelbaseimg {
    width: 100%;
  }

  .hotelbaseinfo {
    overflow: hidden;
    padding: 0.625em;
  }

  .hotelbanner {
    height: 15em;
    overflow: hidden;
    position: relative;
  }

  .hoteldescblock {
    margin-top: 1.25em;
  }

  .hotel .hoteldescblock {
    margin-top: 0;
  }

  .hotelsupplement .wrapper {
    margin: 1em 0;
  }

  .hotelslist>.hotel .hotelinfo .equal-height>div {
    min-height: auto;
  }

  .hotelslist>.hotel .hotelinfo .equal-height>.hotelprice {
    background-color: transparent !important;
    min-height: 6.875em;
  }

  .hotelslist>.hotel .hotelbook {
    position: static;
    bottom: auto;
    left: auto;
    padding: 0 1em;
  }

  .hotelfeature>.hotelteaser-full>h1,
  .hotelfeature>.hotelteaser-half>h1 {
    margin-bottom: 0;
    /* white-space: nowrap; */
    font-size: 1.5em;
    font-weight: 400;
  }

  .hotelfeature>.hotelteaser-full>h5,
  .hotelfeature>.hotelteaser-half>h5 {
    margin-top: 0;
    font-size: 1em;
  }

  .hotelfeature>.hotelteaser-full>.hotelstar+p,
  .hotelfeature>.hotelteaser-full>h5+p {
    display: none;
  }

  .hotelslist>.hotel .hotelbook .hotelpricefrom {
    line-height: 1;
    font-size: 1.25em;
    font-weight: 400;
  }

  .hotelslist>.hotel .hotelbook .hotelpricefrom span {
    font-size: 1.75em;
  }

  .hotelslist>.hotel .hotelbook .hotelpricefrom span small {
    font-size: 55.56%;
  }

  .triproomstacks .room-types {
    border: none;
  }

  .triproomstacks .room-listtitle {
    margin-top: 2em;
  }

  .poscontainer .affix,
  .poscontainer .affix-top,
  .poscontainer .affix-bottom {
    position: static;
    width: inherit;
  }

  .skipass-note {
    font-size: 87.5%;
  }

  #bkt {
    bottom: 1em;
    right: 0.75em;
  }

  .campaigngiveaway h2 {
    margin-bottom: 1em;
    font-size: 250%;
  }

  .campaignbase {
    background-position: center top;
    background-size: cover;
  }

  .campaignqualify {
    margin-bottom: 1em;
  }

  .campaigncountdown {
    padding: 1em;
    text-align: center;
  }

  .campaignend {
    padding: 1em;
  }

  .campaigncountdown>p {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 16.666667%;
  }

  .campaigncountdown>p:first-child {
    font-size: 3em;
  }

  .campaigncountdown>p>span {
    font-size: 1.5em;
  }

  .campaigntarget {
    font-size: 2em;
    padding: 0.5em;
  }

  .campaigntimes {
    margin-top: 1.5em;
  }

  .campaigninputgroup legend {
    font-size: 1em;
    font-weight: 700;
    padding: 0 0 0.3125em;
    margin: 0 0 0.9375em;
    color: #58585e;
    border-bottom-color: #aaa;
  }

  .campaigninputgroup label {
    font-weight: 300;
  }

  table.small-only {
    display: table;
  }

  table.large-only {
    display: none;
  }

  .room-priceppbox .room-pricepp .room-pricefrom {
    font-size: 1.25em;
    line-height: 1;
    font-weight: 400;
  }

  .room-priceppbox .room-pricepp .room-pricefrom span {
    font-size: 1.75em;
  }

  .room-priceppbox .room-pricepp .room-pricefrom span small {
    font-size: 55.56%;
  }

  .room-priceppbox .room-pricepp .room-pricediff {
    display: inline-block;
    text-align: left;
  }

  .room-priceppbox .room-pricepp .room-pricediff s {
    font-size: 0.625em;
    font-weight: 300;
    color: #58585e;
    text-decoration: line-through;
  }

  .room-priceppbox .room-pricepp .room-pricediff small {
    font-size: 0.625em;
    font-weight: 300;
  }

  .room-recommtype h5 {
    font-weight: 400;
  }

  .room-recommtype small i.lcd {
    color: #333;
  }

  .room-recommtype table {
    font-size: 0.875em;
    border-top: #ddd 2px solid;
  }

  .room-recommtype table thead th {
    font-weight: 400;
  }
}

/* min-width 480px, max-width 767px, to resolve issues on big smart phones and pads */
@media only screen and (min-width: 30em) and (max-width: 47.9375em) {
  #bannerbox .embed-responsive-16by9 {
    padding-bottom: 57.14%;
  }

  #header {
    padding: 1em 0;
    margin: 0;
    border: none;
  }

  .popupbox>h3 {
    font-size: 1.5em;
    padding-right: 1.25em;
    margin-bottom: 0.667em;
  }

  .navbar-header .navbar-mobiroot {
    height: 2.25em;
  }

  .navbar-header .mobinav-toggle {
    position: relative;
    float: right;
    height: 2.25em;
    margin: 0;
    padding: 0;
    line-height: 1;
    border: 0;
    background-color: transparent;
  }

  .navbar-header .mobinav-back {
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 1.25em;
    height: 1.8em;
    border: 0;
    background-color: transparent;
  }

  .navbar-header .mobinav-toggle .icon-bar {
    display: block;
    width: 2em;
    height: 0.125em;
    background-color: #f16369;
  }

  .navbar-header .mobinav-toggle .icon-bar+.icon-bar {
    margin-top: 0.375em;
  }

  .navbar-header .mobinav-toggle>i {
    font-size: 2.25em;
  }

  .navbar-header .mobinav-back>i {
    font-size: 1.4em;
    line-height: 1;
    vertical-align: -0.25em;
    margin-left: -0.25em;
  }

  .navbar-header .mobinav-toggle>i.lcd,
  .navbar-header .mobinav-back>i.lcd {
    color: #6c6c6c;
  }

  .navbar-user {
    text-align: left;
    margin: 0;
  }

  #navbar {
    background-color: #fff;
    margin-top: 0.5em;
  }

  #logo img {
    width: 9em;
    margin-top: 0.4375em;
    margin-left: 1px;
  }

  #navbar {
    padding: 0;
  }

  .headercontainer>.container {
    padding-right: 0.75em;
  }

  #mobinavbar .mobinav-header {
    font-size: 1.625em;
    margin: 1.625em 0 0;
  }

  #mobinavbar .mobinav-header>a {
    color: #000;
  }

  #mobinavbar .mobinav-list {
    padding: 0.75em 0 2.5em;
    margin: 0;
  }

  #mobinavbar .mobinav-user {
    border-top: #777 1.5px solid;
    padding: 2em 0 0;
    margin: 0 0.5em 0 0;
  }

  #mobinavbar .mobinav-list>li {
    padding: 0.5em 0;
  }

  #mobinavbar .mobinav-list>li>a,
  #mobinavbar .mobinav-list>li>span {
    padding: 0;
    font-size: 1.375em;
    display: inline;
    letter-spacing: -0.25px;
    color: #000;
  }

  #mobinavbar .mobinav-lv2>li>a {
    font-size: 1.125em;
  }

  #mobinavbar .mobinav-list>li>button {
    background-color: transparent;
    border: none;
    font-size: 1.625em;
    padding: 0 0 0 0.5em;
    line-height: 1.5;
  }

  #mobinavbar .mobinav-lv2>li>button {
    line-height: 1;
  }

  #mobinavbar .mobinav-sublist {
    list-style: none;
    padding-left: 1.25em;
  }

  #mobinavbar .mobinav-sublist>li {
    padding: 0.375em 0;
  }

  #mobinavbar .mobinav-sublist>li>a {
    padding: 0;
    font-size: 1em;
    display: inline;
    letter-spacing: -0.5px;
    color: #000;
  }

  .navbar-user>a>.lcd {
    font-size: 1.555556em;
    vertical-align: middle;
    margin-right: 0.375em;
  }

  #bannerbox.trippage {
    margin-bottom: 2.5em;
  }

  #bannerbox.trippage .searchbarcontainer {
    padding-bottom: 2.5em;
  }

  #bannerbox.trippage .tripfinderwrap {
    padding-bottom: 0;
  }

  #triphotelsbox #triphotelstitle {
    margin: 0;
  }

  #triphotelslist {
    margin-top: 2.25em;
  }

  .hotelfeature {
    padding: 0;
    margin: 0 0 1.25em;
  }

  .hotelfeature>.hotelteaser-full>h1,
  .hotelfeature>.hotelteaser-half>h1 {
    font-size: 2em;
  }

  .hotelstar {
    margin-bottom: 1.5em;
  }

  .facility {
    width: 49%;
  }

  .facilities-sm .facility .facility-img {
    width: 2em;
  }

  .hotelslist>.hotel {
    border: none;
    padding: 2.5em 0 0;
    margin-bottom: 0;
  }

  .hotelslist>.hotel .hotelbook {
    position: static;
    bottom: auto;
    left: auto;
    padding: 0;
  }

  .hotelslist>.hotel .hotelbookbtn {
    margin-top: 1.1666667em;
  }

  .hotelslist>.hotel .hotelimage .hoteldescgallery {
    font-size: 1em;
    left: 0.875em;
    bottom: 0.875em;
  }

  .hotelslist>.hotel .hotelprice {
    margin-bottom: 0;
  }

  .hoteltripstack .triproomstacks .roomstack {
    margin-top: 1.4375em;
  }

  .hoteltripbox .tipinfo {
    margin-top: 1em;
    margin-bottom: 0;
  }

  .room-recomm {
    padding: 1em;
    margin-top: 1em;
    margin-bottom: 1.625em;
  }

  .hoteltripstack .triproomstacks .roomstack .roomtype {
    margin-top: 0.5em;
    font-size: 1.5em;
    font-weight: 400;
  }

  .hoteltripstack .triproomstacks .roomstack .roommealpackage span.label {
    font-size: 0.75em;
    color: #000;
    background-color: #e7e7e7;
    letter-spacing: 0.25px;
  }

  .hoteltripstack .triproomstacks .roomstack .roommealpackage {
    margin-bottom: 1.428571em;
    font-size: 0.875em;
    line-height: 1.444;
  }

  .hoteltripstack .triproomstacks .roomstack .room-priceppbox {
    margin-bottom: 1.25em;
  }

  .hoteltripstack .triproomstacks .roomstack .form-group {
    margin-bottom: 1.5em;
  }

  .backtohotelslist {
    margin: 2em 0 0;
    padding: 0 0.675em 0.625em;
  }

  .tab .nav-tabslide {
    margin-left: -1.25em;
    margin-right: -1.25em;
  }

  .tab .nav-tabs {
    padding-left: 0;
    padding-right: 0;
    overflow-x: scroll;
  }

  .hoteldeparturetab .tab .nav-tabs {
    overflow-x: initial;
  }

  .tab .nav-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab .nav-tabs>li {
    margin-left: 0;
    float: none;
    display: table-cell;
    white-space: nowrap;
  }

  .tab .nav-tabs>li.tabindicator {
    font-size: 1.25em;
    padding: 0.5em;
    margin-right: 2.5em;
    float: none;
  }

  .tab .nav-tabs>li>a,
  .tab .nav-tabs>li>a:hover,
  .tab .nav-tabs>li>a:focus,
  .tab .nav-tabs>li.active>a,
  .tab .nav-tabs>li.active>a:hover,
  .tab .nav-tabs>li.active>a:focus {
    padding: 0.5em;
    background-color: transparent;
    margin-right: 0;
  }

  .tabextend .blockimg {
    padding: 0;
  }

  .flightinfobox tbody tr td.flight-luggage {
    height: 5.5em;
  }

  .hoteltrips table tbody .roomcell {
    border-top: #fff 0.1666667em solid;
    border-bottom: #fff 0.1666667em solid;
  }

  .hoteltrips table tbody td label {
    display: block;
    padding: 1em 0.75em;
  }

  .hoteltrips .hoteltripbox {
    padding-top: 2em;
  }

  .room-sumbox {
    background-color: transparent;
    margin-bottom: 0;
  }

  .hotelslist>.hotel .hotelbook {
    position: static;
    bottom: auto;
    left: auto;
    margin-top: 1em;
    padding: 0;
  }

  .hoteltripstack .triproomstacks .roomstack .roomtype {
    margin-top: 0.5em;
    font-size: 1.5em;
    font-weight: 400;
  }

  .hoteltripstack .triproomstacks .roomstack .roomtype span.label {
    font-size: 0.6em;
  }

  .hoteltripstack .triproomstacks .roomstack .roommealpackage,
  .hoteltripstack .triproomstacks .roomstack .roomtotal {
    font-size: 1em;
    margin-bottom: 1em;
  }

  .hotelsupplement {
    padding-bottom: 1em;
    margin: 0 0 1em;
  }

  .hotelguestsbase {
    margin: 0 0 2em;
    padding-bottom: 0;
  }

  .hotelpaymentbox {
    padding-bottom: 3em;
    margin: 0 0.875em;
  }

  .hotelsupplement .wrapper {
    margin: 1em 0;
  }

  #skirental .wrapper {
    margin: 1em 0 1.625em;
  }

  .hotelsupplement .mealinfoicon {
    cursor: pointer;
    position: relative;
    background-color: #00dfb3;
    margin: 0 0 0 1em;
    bottom: 0;
    top: auto;
  }

  .hotelsupplement .mealinfoicon:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(17, 20, 17, 0);
    border-bottom-color: #00dfb3;
    border-width: 5px;
    margin-left: -5px;
  }

  .hotelsupplement .mealinfoicon:after {
    display: none;
  }

  /* .hotelguests .form-group,
  .bookinglogin .logincontainer .form-group,
  .hotelguests .form-creditcards .radio,
  .hotelguests .form-approveterms .checkbox {
    margin: 3em 0 0;
  } */
  .hotelguests .travelerbox {
    padding: 2.5em 0;
    border-top: #8e9293 1px solid;
  }

  .hotelguests .travelerbox:first-child {
    padding-top: 0;
    border-top: none;
  }

  .hotelguests .form-error {
    margin-bottom: 0;
  }

  .hotelguests .form-extra {
    margin: 1.25em 0 0.25em;
  }

  .hotelguests .traveler .form-group {
    margin-bottom: 0;
  }

  .hotelguests .traveler .form-group:first-child,
  .bookinglogin .logincontainer .form-group:first-child {
    margin-top: 0;
  }

  .bookinglogin .submit-area .btn {
    margin-top: 3em;
  }

  .hotelsupplement>h4 {
    letter-spacing: -1px;
    font-size: 2em;
    margin-bottom: 0;
  }

  .hotelsupplement .form-desc {
    font-size: 1em;
    font-weight: 300;
  }

  .form-creditcards>h5 {
    color: #f42d2d;
  }

  .hotelguests>h5,
  .hotelexcursion>h5 {
    font-size: 1.125em;
    margin-top: 0;
  }

  .coursessupplement h5 {
    font-size: 1.125em;
    margin-top: 2.75em;
  }

  .coursessupplement .hotelguests>h5 {
    margin-top: 0;
  }

  .hotelguests>h5 {
    margin-bottom: 1em;
  }

  .accordionsupplement {
    margin-top: 2.5em;
    border: none;
    padding-bottom: 0;
  }

  .accordionsupplement .panel-group {
    margin-top: 0;
    border-bottom: #58595a 0.0625em solid;
  }

  .accordionsupplement .panel-group .panel-heading+.panel-collapse>.panel-body {
    padding: 0;
  }

  .accordionsupplement .panel-group .wrapper {
    margin: 0;
  }

  .accordionsupplement .panel-group .wrapper p {
    margin: 0;
  }

  .accordionsupplement .panel-group .wrapper .suppdetailbtn {
    margin: 1.625em 0 2em;
  }

  .accordionsupplement .panel-group .hotelguests>h5 {
    margin: 1em 0 0;
  }

  .accordionsupplement .panel-group .hotelguests .form-group {
    margin: 1em 0 0;
  }

  .accordionsupplement .panel-group .accordionbtn {
    margin: 2em 0;
  }

  .hotelguests .form-extra .optionpanel {
    font-size: 1em;
  }

  .accordionsupplement {
    margin-top: 3em;
  }

  /* .hotelguests>h5+.form-group,.hotelguests .form-creditcards h5+.radio{margin-top:0;} */
  .hotelguests .form-inline .form-label h6 {
    text-align: left;
    line-height: 1.25;
  }

  .hotelguests .control-select {
    width: 100%;
  }

  .hotelguests .control-select select {
    width: 100%;
    color: #333;
    font-weight: 300;
  }

  .hotelguests .control-label select {
    font-weight: 300;
  }

  .hotelguests .form-inline .form-group {
    width: 100%;
    color: #666;
  }

  .rent-base .form-inline .form-group {
    width: 100%;
  }

  #rent-customerbox .rent-customer {
    margin-top: 2em;
  }

  #rent-customerbox h5 {
    font-size: 1.125em;
    padding: 0 0.55556em;
    margin: 0;
  }

  #rent-customerbox .rent-operate {
    margin: 0.75em 0.5em;
    font-size: 1.125em;
  }

  .hotelguests .form-inline .form-label {
    width: 100%;
  }

  .hotelguests .form-inline .form-label2 {
    width: 100%;
  }

  .hotelguests .form-inline .form-tiny {
    width: 100%;
  }

  .hotelguests .has-feedback .form-control {
    padding-right: 0.75em;
  }

  .hotelguests .form-inline .form-short {
    width: 100%;
    margin: 0;
  }

  .hotelguests .form-inline .form-short2 {
    width: 100%;
    margin: 0;
  }

  .hotelguests .form-inline .form-long {
    width: 100%;
  }

  .hotelguests .form-inline .form-full {
    width: 100%;
  }

  .hotelguests .form-inline .form-half {
    width: 100%;
  }

  .hotelguests .form-inline .control-chrd {
    width: 100%;
    padding-left: 20px;
    min-height: 1.5em;
  }

  .hotelguests .form-inline .control-chrd input[type='checkbox'] {
    margin-left: 0;
  }

  p.personalinfodesc {
    font-size: 1.125em;
  }

  .bookingsubmitbtn {
    margin-bottom: 1.25em;
  }

  .bookinglogin h6 {
    min-height: 1em;
  }

  .bookinglogin .logincontainer {
    min-height: 2em;
  }

  #loginbox .form-inline .form-tiny,
  .profile-editing .form-inline .form-tiny {
    width: 49.625%;
  }

  #loginbox .form-inline .form-short,
  .profile-editing .form-inline .form-short {
    width: 100%;
  }

  #loginbox .form-inline .form-mid,
  .profile-editing .form-inline .form-mid {
    width: 100%;
  }

  #loginbox .form-inline .form-long,
  .profile-editing .form-inline .form-long {
    width: 100%;
  }

  #loginbox .form-inline .form-full,
  .profile-editing .form-inline .form-full {
    width: 100%;
  }

  #loginbox .form-inline .input-group,
  .profile-editing .form-inline .input-group {
    width: 100%;
    position: static;
  }

  #loginbox .form-inline .form-half,
  .profile-editing .form-inline .form-half {
    width: 100%;
  }

  .tripfinderph h3 {
    padding: 0.5em;
    margin: 0 0 1em 0;
    cursor: pointer;
  }

  .profile-booktable .nav-tabs {
    border-bottom: #ccc 2px solid;
  }

  .profile-booktable .nav-tabs>li>a {
    font-size: 0.875em;
    margin-bottom: -1px;
  }

  .profile-booktable .nav-tabs>li.active>a,
  .profile-booktable .nav-tabs>li.active>a:hover,
  .profile-booktable .nav-tabs>li.active>a:focus {
    border-bottom: #00a4de 0.142857em solid;
  }

  .financial {
    display: block;
    width: 100%;
    padding: 1em 1.25em;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 800;
    background-color: #fff;
    -webkit-box-shadow: 0 -4px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 -4px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 -4px 6px 0 rgba(0, 0, 0, 0.16);
  }

  .financial-highlight {
    background-color: #fef4f3;
  }

  .financial .financial-hide {
    display: none;
  }

  .financial .financial-show {
    display: block;
  }

  .financial-info {
    display: flex;
    align-items: center;
  }

  .financial-pricetotal {
    padding: 1em 1.25em;
  }

  .financialtable .financial-popupbtn {
    display: block;
    padding: 1em 1.25em 1.25em;
  }

  .cart-accomoinfo {
    display: flex;
    align-items: center;
  }

  .rev-wrapper {
    margin-bottom: 4em;
  }

  .rev-wrapper .rev-img .rev-imgfloat {
    max-width: 57.63%;
    max-height: 62.5%;
  }

  .rev-wrapper .rev-txt {
    margin-top: 2em;
    margin-bottom: 0;
  }

  .rev-txtlbox1,
  .rev-txtrbox1,
  .rev-txtlbox2,
  .rev-txtrbox2 {
    padding-left: 0;
    padding-right: 0;
  }

  .rev-topcomp {
    padding-top: 0;
  }

  .rev-bottomcomp {
    padding-bottom: 0;
  }

  .rev-topcomp .rev-txt {
    margin-top: 2em;
  }

  .rev-bottomcomp .rev-txt {
    margin-top: 1em;
  }

  .rev-topcomp .rev-img {
    margin-top: 4em;
  }

  .rev-bottomcomp .rev-img {
    margin-bottom: 4em;
  }

  .cart {
    background-color: #fff;
    padding-left: 0;
    padding-right: 0;
  }

  .cart-box {
    padding-left: 0;
    padding-right: 0;
  }

  .cart-flightinfo,
  .cart-roomsinfo {
    padding-top: 1em;
    border-top: #58585e 1px solid;
  }

  .cart-flightinfo {
    margin-top: 1.6255em;
  }

  .cart-roomsinfo {
    margin-top: 1em;
    margin-bottom: 1.5em;
    border-bottom: #58585e 1px solid;
    padding-bottom: 0.5em;
  }

  .cart-detail h3 {
    font-size: 2.125em;
    margin-bottom: 0.8235em;
  }

  .cart-hotel>h1 {
    font-size: 1.5em;
    font-weight: 400;
  }

  .cart-hotel>h5 {
    font-size: 1em;
    margin-top: 0.125em;
  }

  .cart-hotel>.hotelstar {
    margin-top: 0.25em;
    margin-bottom: 0.6875em;
  }

  .cart-times,
  .cart-flight {
    font-weight: 400;
  }

  .cart-times strong,
  .cart-flight strong {
    font-weight: 400;
  }

  .cart-accomoinfo a.cart-popover {
    color: #000;
  }

  .cart-summarybox h4 {
    font-size: 1.125em;
    font-weight: 700;
  }

  .tabextend .tabexcolhaslgap {
    padding-left: 0.5em;
  }

  .tabextend .tabexcolhasrgap {
    padding-right: 0.5em;
  }

  .blockcolumns .colhaslgap {
    padding-left: 0.5em;
  }

  .blockcolumns .colhasrgap {
    padding-right: 0.5em;
  }

  #footer .newsletterbox {
    margin: 3.5em 1.25em 1.5em;
  }

  #footer #footerlogo {
    text-align: center;
  }

  .mfp-btnbox .col-xs-12 {
    margin-top: 1em;
  }

  .mfp-btnbox .col-xs-12:first-child {
    margin-top: 0;
  }

  .promptbtn>div {
    margin-top: 1em;
  }

  .promptbtn>div:first-child {
    margin-top: 0;
  }
}

/* min-width 768px, medium screens */
@media only screen and (min-width: 48em) {
  #languagelist {}

  #languagelist a {}

  #header {
    padding: 0;
  }

  #loginbox {
    min-width: 27.5em;
  }

  #loginbox {
    font-weight: 300;
    padding: 1em 2.25em;
  }

  .profile-editing {
    font-weight: 300;
    padding: 0;
  }

  #loginbox .nav-tabs,
  .profile-editing .nav-tabs {
    padding: 0 1em;
  }

  #loginbox .tab-content,
  .profile-editing .tab-content {
    padding: 1em;
  }

  #loginel h5 {
    text-transform: uppercase;
    font-weight: 400;
  }

  .navbar-nav .open .dropdown-menu {
    background-color: #fff;
    border-bottom-left-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
  }

  .mega-menu .nav,
  .mega-menu .collapse,
  .mega-menu .open {
    position: static;
  }

  .mega-menu-dropdown {
    padding: 1.75em 0 2em !important;
    border: none;
    border-radius: 0;
    box-shadow: none;
    top: 6em;
    left: 0;
    right: 0;
    background-color: transparent;
  }

  .headeraffix .mega-menu-dropdown {
    top: 3em;
  }

  .splash {
    position: relative;
  }

  #splash,
  .banner {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    min-height: 20em;
  }

  #bannerbox .bs-wizard {
    margin: 1.25em 0;
  }

  .headercontainer {
    width: 100%;
    z-index: 300;
    background-color: #fff;
  }

  .searchbarcontainer {
    top: 16em;
  }

  .selectbox .selectric .label {
    height: 3.125em;
    padding: 0.625em 0 0.625em 0.75em;
  }

  .selectbox .selectric .button {
    height: 3.125em;
    line-height: 3.125em;
  }

  .headeraffix {
    position: fixed;
    top: 0;
    -webkit-box-shadow: 0px 4px 3px -3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 4px 3px -3px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 4px 3px -3px rgba(0, 0, 0, 0.3);
  }

  .headeraffix #languagelist {
    display: none;
  }

  .headeraffix #header {
    padding: 0.125em 0;
  }

  .headeraffix .navbar-header {
    height: 1.5em;
    margin: 0.5em 0 0;
  }

  #hotelname {
    line-height: 1.875;
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }

  .bookingsearchfields .form-control {
    height: 3.5em;
    padding: 0.75em;
  }

  .bookingsearchfields>button[type='submit'].btn {
    height: 3.5em;
    padding: 0.75em;
  }

  .searchbaraffix .bookingsearchfields>button[type='submit'].btn {
    height: 2.625em;
    padding: 0.375em 0.75em;
  }

  .navbar-header {
    padding: 0;
  }

  .navbar-right {
    float: none;
  }

  .navbar-right .navsearch {
    padding: 0.25em 0.5em;
  }

  #splash,
  .banner {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    min-height: 20em;
  }

  .portalgrid .video-content {
    font-size: 65%;
  }

  .portalgrid .portaltitle,
  .portaldesc {
    font-size: 80%;
  }

  .splash-content,
  .banner-content,
  #bannerbox .video-content {
    height: 16em;
  }

  .splash-content .vce,
  .banner-content .vce,
  .video-content .vce,
  .portaltitle .vce {
    max-width: 90%;
  }

  .expandpanel .wrapper {
    background-color: #f5f5f5;
    height: 13.5em;
    overflow: hidden;
    position: relative;
  }

  .expandpanel .blocknocomment {
    background-color: #fff;
  }

  .expandpanel .blockimg-outer {
    width: 50%;
    float: left;
  }

  .expandpanel .blocksmallimg .blockimg-outer {
    width: 40%;
  }

  .expandpanel .blocknocomment .blockimg-outer {
    margin-right: 2em;
  }

  .expandpanel .blockimg-outer .blockcomment {
    padding: 5em;
  }

  .expandpanel .blocknocomment .blockimg-outer .blockcomment {
    display: none;
  }

  .expandpanel .blockimg {
    height: 13.5em;
    overflow: hidden;
  }

  .expandpanel .wrapper,
  .expandpanel .blockimg {}

  .expandpanel .blocknocomment .blockimg {
    margin: 0 0 0.5em 0;
  }

  .expandpanel .blockcontent {
    overflow: hidden;
    background-color: #fff;
    padding: 1px 2em 0;
  }

  .expandpanel .blocknocomment .blockcontent {
    overflow: visible;
  }

  .expandpanel .blocktrigger {
    display: block;
    width: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -24px 16px -8px rgba(255, 255, 255, 0.8);
  }

  .expandpanel .blocksmallimg .blocktrigger {
    width: 60%;
  }

  .expandpanel .blocktrigger-inner {
    padding: 1.5em 2em;
    text-align: right;
  }

  .simplepanel {}

  .simplepanel .blockbasic {
    padding: 1.5em 1.5em 0.5em;
    position: relative;
    border-bottom: #fff 1px solid;
  }

  .simplepanel .blockbasic h3 {
    margin-top: 0;
  }

  .simplepanel .blockbasic .blocktrigger {
    display: block;
    position: absolute;
    bottom: -1px;
    right: 0;
  }

  .simplepanel .blockcontent {
    background-color: #fff;
    border-top: #ccc 1px solid;
    display: none;
  }

  .simplepanel .blockeqheight {
    margin-left: 33.333333%;
    border-left: #ccc 1px solid;
  }

  .simplepanel .blockeqheightl-outer {
    width: 49%;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    margin-left: -50%;
  }

  .simplepanel .blockeqheightr-outer {
    overflow: hidden;
    display: inline-block;
    border: none;
    vertical-align: top;
  }

  .simplepanel .blockeqheightl,
  .simplepanel .blockeqheightr {
    padding: 1.5em;
  }

  .simplepanel .blockcontent .blockfull {
    margin-left: 0;
    border: none;
  }

  .simplepanel .blockcontent .blockfull .blockeqheightl-outer {
    display: none;
  }

  .simplepanel .blockcontent .blockfull .blockeqheightr-outer {
    display: block;
  }

  .skipass-note {
    font-size: 100%;
  }

  .hotelbanner {
    height: 18em;
    overflow: hidden;
    position: relative;
  }

  .hoteldescblock #banner {
    border-radius: 0.5em;
  }

  .hoteltrips .tripscycle table tbody td label span.hotelprice {
    font-size: 1.428571em;
  }

  .hotelslist>.hotel .hotelbook {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: fit-content;
  }

  .hotelslist>.hotel .hotelbook-spin {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8.25em;
  }

  .hotelslist>.hotel .hotelfeature .hotelbook {
    position: static;
    bottom: auto;
    left: auto;
    padding: 0;
    margin-top: 0.5em;
  }

  .financetotal th,
  .financetotal td {
    font-size: 1.375em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .campaigncountdown>p:first-child {
    font-size: 3em;
  }

  .campaigncountdown>p>span {
    font-size: 2em;
  }

  .campaigntarget {
    font-size: 1.875em;
    padding: 0.5em;
  }

  .campaigntimes {
    margin-top: 1.5em;
  }

  .campaigninputgroup legend {
    font-size: 1em;
    font-weight: 700;
    padding: 0 0 0.3125em;
    margin: 0 0 0.9375em;
    color: #58585e;
    border-bottom-color: #aaa;
  }

  .campaigninputgroup label {
    font-weight: 300;
  }

  table.small-only {
    display: none;
  }

  table.large-only {
    display: table;
  }

  .extensivebtn-visible {
    display: none !important;
  }

  .extensivebox-visible {
    display: block !important;
  }

  .cart-pricebook form button[type='submit'].btn {
    margin-bottom: 0;
  }

  .room-recommtype h5 {
    font-weight: 400;
  }

  .room-recommtype small i.lcd {
    color: #333;
  }

  .room-recommtype table {
    font-size: 0.875em;
    border-top: #ddd 2px solid;
  }

  .room-recommtype table thead th {
    font-weight: 400;
  }
}

/* min-width 768px and max-width 991px, to resolve issues in modern bowser on old computer */
@media only screen and (min-width: 48em) and (max-width: 61.9375em) {
  .img-responsive {
    width: 100%;
  }

  .img-fluid {
    max-width: 100%;
  }

  .popupbox>h3 {
    font-size: 1.5em;
    padding-right: 1.25em;
    margin-bottom: 0.667em;
  }

  .navbar-header .navbar-toggle {
    margin-top: 0.375em;
  }

  #header {
    padding: 1em 0;
    margin: 0;
    border: none;
  }

  .headercontainer>.container {
    padding-left: 1.25em;
    padding-right: 0.75em;
  }

  #mobinavbar .navbar-header {
    float: none;
  }

  .navbar-header .navbar-mobiroot {
    height: 2.25em;
  }

  .navbar-header .mobinav-toggle {
    position: relative;
    float: right;
    height: 2.25em;
    margin: 0;
    padding: 0;
    line-height: 1;
    border: 0;
    background-color: transparent;
  }

  .navbar-header .mobinav-back {
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 1.25em;
    height: 1.8em;
    border: 0;
    background-color: transparent;
  }

  .navbar-header .mobinav-toggle .icon-bar {
    display: block;
    width: 2em;
    height: 0.125em;
    background-color: #f16369;
  }

  .navbar-header .mobinav-toggle .icon-bar+.icon-bar {
    margin-top: 0.375em;
  }

  .navbar-header .mobinav-toggle>i {
    font-size: 2.25em;
  }

  .navbar-header .mobinav-back>i {
    font-size: 1.4em;
    line-height: 1;
    vertical-align: -0.25em;
    margin-left: -0.25em;
  }

  .navbar-header .mobinav-toggle>i.lcd,
  .navbar-header .mobinav-back>i.lcd {
    color: #6c6c6c;
  }

  #navbar {
    background-color: #fff;
    margin-top: 0.5em;
  }

  #logo img {
    width: 9em;
    margin-top: 0.4375em;
    margin-left: 1px;
  }

  #navbar {
    padding: 0;
  }

  #mobinavbar .mobinav-header {
    font-size: 1.625em;
    margin: 1.625em 0 0;
  }

  #mobinavbar .mobinav-header>a {
    color: #000;
  }

  #mobinavbar .mobinav-list {
    padding: 0.75em 0 2.5em;
    margin: 0;
    float: none;
  }

  #mobinavbar .mobinav-user {
    border-top: #777 1.5px solid;
    padding: 2em 0 0;
    margin: 0 0.5em 0 0;
    float: none;
  }

  #mobinavbar .mobinav-list>li {
    padding: 0.5em 0;
    float: none;
  }

  #mobinavbar .mobinav-user>li,
  #mobinavbar .mobinav-user>li .navbar-user {
    float: none;
    margin: 0;
    text-align: left;
  }

  #mobinavbar .mobinav-list>li>a,
  #mobinavbar .mobinav-list>li>span {
    padding: 0;
    font-size: 1.375em;
    display: inline;
    letter-spacing: -0.25px;
    color: #000;
  }

  #mobinavbar .mobinav-lv2>li>a {
    font-size: 1.125em;
  }

  #mobinavbar .mobinav-list>li>button {
    background-color: transparent;
    border: none;
    font-size: 1.625em;
    padding: 0 0 0 0.5em;
    line-height: 1.5;
  }

  #mobinavbar .mobinav-lv2>li>button {
    line-height: 1;
  }

  #mobinavbar .mobinav-sublist {
    list-style: none;
    padding-left: 1.25em;
  }

  #mobinavbar .mobinav-sublist>li {
    padding: 0.375em 0;
  }

  #mobinavbar .mobinav-sublist>li>a {
    padding: 0;
    font-size: 1em;
    display: inline;
    letter-spacing: -0.5px;
    color: #000;
  }

  .navbar-user>a>.lcd {
    font-size: 1.555556em;
    vertical-align: middle;
    margin-right: 0.375em;
  }

  .bookingsearchfields>.form-group,
  .searchbarslidebox .bookingsearchfields>.form-group {
    width: 18%;
  }

  .bookingsearchfields>.form-group:first-child,
  .searchbarslidebox .bookingsearchfields>.form-group:first-child {
    width: 32%;
  }

  .bookingsearchfields>button[type='submit'].btn,
  .searchbarslidebox .bookingsearchfields>button[type='submit'].btn {
    width: 14%;
  }

  .tripfinderwrap {
    margin: 0 1.25em;
  }

  .tripfinderph h3 {
    padding: 0.5em;
    margin: 0 0 1em 0;
    cursor: pointer;
  }

  #bannerbox.trippage {
    margin-bottom: 2.5em;
  }

  #bannerbox.trippage .searchbarcontainer {
    padding-bottom: 2.5em;
  }

  #bannerbox.trippage .tripfinderwrap {
    padding-bottom: 0;
  }

  #triphotelsbox #triphotelstitle {
    margin: 0;
  }

  #triphotelslist {
    margin-top: 2.25em;
  }

  .hotelfeature {
    padding: 0;
    margin: 0 0 1.25em;
  }

  .hotelfeature>.hotelteaser-full>h1,
  .hotelfeature>.hotelteaser-half>h1 {
    font-size: 2em;
  }

  .hotelstar {
    margin-bottom: 1.5em;
  }

  .hotelslist>.hotel {
    border: none;
    padding-top: 2.5em;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .hotelslist>.hotel .hotelbook {
    position: static;
    bottom: auto;
    left: auto;
    padding: 0;
  }

  .hotelslist>.hotel .hotelbookbtn {
    margin-top: 1.1666667em;
  }

  .hotelslist>.hotel .hotelimage .hoteldescgallery {
    font-size: 1em;
    left: 0.875em;
    bottom: 0.875em;
  }

  .hotelslist>.hotel .hotelprice {
    margin-bottom: 0;
  }

  .hoteltripstack .triproomstacks .roomstack {
    margin-top: 1.4375em;
  }

  .hoteltripbox .tipinfo {
    margin-top: 1em;
    margin-bottom: 0;
  }

  .room-recomm {
    padding: 1em;
    margin-top: 1em;
    margin-bottom: 1.625em;
  }

  .hoteltripstack .triproomstacks .roomstack .roomtype {
    margin-top: 0.5em;
    font-size: 1.5em;
    font-weight: 400;
  }

  .hoteltripstack .triproomstacks .roomstack .roommealpackage span.label {
    font-size: 0.875em;
    color: #000;
    background-color: #e7e7e7;
    letter-spacing: 0.25px;
  }

  .hoteltripstack .triproomstacks .roomstack .roommealpackage {
    margin-bottom: 1.428571em;
    font-size: 0.875em;
    line-height: 1.444;
  }

  .hoteltripstack .triproomstacks .roomstack .room-priceppbox {
    margin-bottom: 1.25em;
  }

  .hoteltripstack .triproomstacks .roomstack .form-group {
    margin-bottom: 1.5em;
  }

  .hoteltrips table tbody .roomcell {
    border-top: #fff 0.1666667em solid;
    border-bottom: #fff 0.1666667em solid;
  }

  .hoteltrips table tbody td label {
    display: block;
    padding: 1em 0.75em;
  }

  .hoteltrips .hoteltripbox {
    padding-top: 2em;
  }

  h3.personalinfotitle {
    font-size: 2em;
    padding: 0.3125em 0 0.25em;
    margin: 0;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: none;
  }

  p.personalinfodesc {
    font-size: 1.125em;
  }

  .financial {
    display: block;
    width: 100%;
    padding: 1em 1.25em;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 800;
    background-color: #fff;
    -webkit-box-shadow: 0 -4px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 -4px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 -4px 6px 0 rgba(0, 0, 0, 0.16);
  }

  .financial-highlight {
    background-color: #fef4f3;
  }

  .financial .financial-hide {
    display: none;
  }

  .financial .financial-show {
    display: block;
  }

  .financial-info {
    display: flex;
    align-items: center;
  }

  .financial-pricetotal {
    padding: 1em 1.25em;
  }

  .financialtable .financial-popupbtn {
    display: block;
    padding: 1em 1.25em 1.25em;
  }

  .room-sumbox {
    background-color: transparent;
    margin-bottom: 0;
  }

  .hotelslist>.hotel .hotelbook {
    position: static;
    bottom: auto;
    left: auto;
    margin-top: 1em;
    padding: 0;
  }

  .hoteltripstack .triproomstacks .roomstack .roomtype {
    margin-top: 0.5em;
    font-size: 1.5em;
    font-weight: 400;
  }

  .hoteltripstack .triproomstacks .roomstack .roomtype span.label {
    font-size: 0.6em;
  }

  .hoteltripstack .triproomstacks .roomstack .roommealpackage {
    margin-bottom: 1.428571em;
    font-size: 0.875em;
    line-height: 1.444;
  }

  .hoteltripstack .triproomstacks .roomstack .roomtotal {
    font-size: 1em;
    margin-bottom: 0;
  }

  .table-mobifinancial {
    padding: 2em;
  }

  .table-mobifinancial .table-responsive-original {
    border: none;
    font-size: 0.75em;
  }

  .table-mobifinancial .table-responsive-original caption {
    font-size: 1.5em;
    color: #f00;
    padding: 0 0.25em;
    font-weight: 700;
  }

  .table-mobifinancial .table-responsive-original thead th {
    white-space: nowrap;
  }

  .financetotal th,
  .financetotal td {
    font-weight: 700;
    text-transform: uppercase;
  }

  .cart-accomoinfo {
    display: flex;
    align-items: center;
  }

  .rev-wrapper {
    margin-bottom: 4em;
  }

  .rev-wrapper .rev-img .rev-imgfloat {
    max-width: 57.63%;
    max-height: 62.5%;
  }

  .rev-wrapper .rev-txt {
    margin-top: 2em;
    margin-bottom: 0;
  }

  .rev-txtlbox1,
  .rev-txtrbox1,
  .rev-txtlbox2,
  .rev-txtrbox2 {
    padding-left: 0;
    padding-right: 0;
  }

  .rev-topcomp {
    padding-top: 0;
  }

  .rev-bottomcomp {
    padding-bottom: 0;
  }

  .rev-topcomp .rev-txt {
    margin-top: 2em;
  }

  .rev-bottomcomp .rev-txt {
    margin-top: 1em;
  }

  .rev-topcomp .rev-img {
    margin-top: 4em;
  }

  .rev-bottomcomp .rev-img {
    margin-bottom: 4em;
  }

  .tab .nav-tabslide {
    margin-left: -1.25em;
    margin-right: -1.25em;
  }

  .tab .nav-tabs {
    padding-left: 1.25em;
    padding-right: 1.25em;
    overflow-x: scroll;
  }

  .hoteldeparturetab .tab .nav-tabs {
    padding-left: 0;
    padding-right: 0;
    overflow-x: initial;
  }

  .tab .nav-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab .nav-tabs>li {
    margin-left: 0;
    float: none;
    display: table-cell;
    white-space: nowrap;
  }

  .tab .nav-tabs>li.tabindicator {
    font-size: 1.25em;
    padding: 0.5em;
    margin-right: 2.5em;
    float: none;
  }

  .tab .nav-tabs>li>a,
  .tab .nav-tabs>li>a:hover,
  .tab .nav-tabs>li>a:focus,
  .tab .nav-tabs>li.active>a,
  .tab .nav-tabs>li.active>a:hover,
  .tab .nav-tabs>li.active>a:focus {
    padding: 0.5em;
    background-color: transparent;
  }

  .tabextend .tabexcolhaslgap {
    padding-left: 0.5em;
  }

  .tabextend .tabexcolhasrgap {
    padding-right: 0.5em;
  }

  .blockcolumns .colhaslgap {
    padding-left: 0.5em;
  }

  .blockcolumns .colhasrgap {
    padding-right: 0.5em;
  }

  .cart {
    background-color: #fff;
  }

  .cart-accomoinfo a.cart-popover {
    color: #000;
  }

  #footer .newsletterbox {
    margin-top: 3.5em;
    margin-bottom: 1.5em;
  }
}

/* min-width 992px, large screens */
@media only screen and (min-width: 62em) {
  .popup-inner {
    padding: 2em 1.5em;
  }

  #languagelist>a {
    display: inline-block;
    padding: 0.25em 0.25em 0.25em 0.75em;
    line-height: 1;
  }

  #languagelist>a img {
    margin-right: 0.25em;
  }

  #header {
    padding: 1em 0 0.5em;
    margin: 0;
    position: static;
  }

  .headercontainer {
    position: relative;
  }

  .navbar-header {
    padding: 0 1.5em 0 0;
    margin: 0.5em 0.5em 0 0;
  }

  #navbar {
    clear: both;
    background-color: #fff;
    margin: 0;
    padding: 1em 0.75em 0 0;
  }

  #nav {
    border-bottom: none;
    margin-top: 0.625em;
    margin-bottom: 0;
  }

  #nav>li {
    margin: 0 0.5em;
  }

  #nav>li>a {
    display: block;
    padding: 0 0.25em 4px;
    font-weight: 400;
    line-height: 1.5;
  }

  #nav>li>a:hover,
  #nav>li.open>a {
    border-bottom: #b1b1b6 4px solid;
    padding-bottom: 0;
  }

  #nav>li.active>a {
    border-bottom: #b1b1b6 4px solid;
    padding-bottom: 0;
  }

  .navbar-right {
    padding: 0;
  }

  .columns-box {
    column-count: 3;
    column-gap: 4em;
    column-rule: 0.125em solid #eff0ed;
  }

  #search {
    border: none;
  }

  #search .form-group {
    position: relative;
  }

  #search .form-control {
    width: 9.5em;
    height: 2em;
    padding: 0.1875em 0.25em 0.1875em 1.75em;
    border-color: #b1b1b6;
  }

  #search .form-control::placeholder {
    font-size: 0.875em;
  }

  #search .form-control+img.svg {
    position: absolute;
    width: 1em;
    height: 1em;
    left: 0.375em;
    top: 0.5em;
    opacity: 0.5;
  }

  #search a {
    padding: 0 0.25em;
    line-height: 2;
    font-size: 1.125em;
    font-weight: 400;
  }

  #phone a {
    padding: 0 0.25em;
    font-size: 1em;
    font-weight: 400;
  }

  #splash,
  .banner {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    min-height: 18em;
  }

  #navSlideshowControl a {
    width: 1em;
    height: 1em;
    border-radius: 0.5em;
  }

  .mega-menu-col h5 {
    font-size: 0.9375em;
    font-weight: 700;
    margin-bottom: 0.2em;
  }

  .mega-menu-col h5 a {
    color: #000;
  }

  .mega-menu-col h5 a:hover {
    color: #999;
    text-decoration: none;
  }

  .mega-menu-col ul {
    padding: 0;
    margin: 0;
    font-weight: 300;
    list-style: none;
  }

  .mega-menu-col ul.mega-menu-row {
    margin-left: -0.625em;
    margin-right: -0.625em;
  }

  .mega-menu-col ul li a {
    color: #000;
    display: block;
    padding: 0.0625em 0 0.125em;
  }

  .mega-menu-col ul li a:hover {
    color: #999;
    text-decoration: none;
  }

  .mega-menu-col .mega-menu-img {
    margin: 1.4375em 0 1.125em;
  }

  .portalgrid .portaltitle,
  .portaldesc {
    font-size: 84%;
  }

  .splash-content .vce,
  .banner-content .vce,
  .video-content .vce,
  .portaltitle .vce {
    max-width: 90%;
  }

  .hoteldescblock #banner {
    overflow: hidden;
    border-radius: 0.5em;
  }

  .hoteldescblock #banner .bannerimage {
    width: auto;
    height: 100%;
  }

  .tripfinder-full .input-group-addon {
    padding-left: 0.75em;
    padding-right: 0.75em;
  }

  .emptysplash {
    min-height: 0;
    height: 0;
  }

  .bs-wizard {
    margin-bottom: 1em;
  }

  #bannerbox .bs-wizard {
    margin: 2.25em 0;
  }

  .horizontalleft,
  .horizontalright {
    margin-left: -0.5em;
    margin-right: -0.5em;
  }

  .horizontalleft .blockimg {
    float: left;
    width: 50%;
    margin: 0;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }

  .horizontalright .blockimg {
    float: right;
    width: 50%;
    margin: 0;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }

  .horizontalleft .blockdesc,
  .horizontalright .blockdesc {
    overflow: hidden;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }

  .blockdesc-pb,
  .blockcolumns-pb,
  .freeedit-pb,
  .horizontalleft .blockdesc-pb,
  .horizontalright .blockdesc-pb {
    padding-top: 2.375em;
    padding-bottom: 2.375em;
  }

  .hotelbaseinfo {
    overflow: hidden;
    padding: 0 1.25em;
  }

  .hotelbanner {
    height: 26.25em;
    overflow: hidden;
    position: relative;
  }

  .hoteltripbox .tripscycle .tripshalf table tbody tr td.roomcell {
    padding: 0.75em;
  }

  .hoteltrips table tbody .roomcell {
    border: #fff 0.1666667em solid;
  }

  #splash,
  #banner {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
  }

  .hotel .hotelsimpledesc {
    padding: 0;
  }

  .hotel .freearea {
    padding-left: 0;
    padding-right: 0;
  }

  .hotel .hotelmaps {
    padding: 1em 1em 1em 0;
  }

  .hotelfeature .facilities {
    position: absolute;
    width: 100%;
    bottom: 1.25em;
  }

  .hoteldeparturetab .tab .nav-tabs>li {
    vertical-align: top;
  }

  .hoteldeparturetab .tab .nav-tabs>li.active>a,
  .hoteldeparturetab .tab .nav-tabs>li.active>a:hover,
  .hoteldeparturetab .tab .nav-tabs>li.active>a:focus {
    padding: 0.75em 0;
  }

  .hoteldesc {
    padding: 1px 0 12.375em 0;
    margin: 0;
    height: 100%;
    position: relative;
  }

  .tab .nav-tabs>li {
    margin-left: 1.875em;
  }

  .tab .nav-tabs>li.tabdrop+li {
    margin-left: 0;
  }

  .tab .nav-tabs>li>a {
    padding-left: 0.22em;
    padding-right: 0.22em;
  }

  .tab-inner {
    padding-top: 2.5em;
  }

  .hoteldescblock .hoteldesctxtpd {
    padding-left: 0.5em;
  }

  .hoteldescblock .hoteldescimgpd {
    padding-right: 2.5em;
  }

  .hotelmap {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 1.25em;
    padding: 0;
  }

  .mylangley-spacer {
    height: 4em;
    border-bottom: #ccc 2px solid;
  }

  .mylangley-infobox {
    margin-top: 1.5em;
    margin-right: 1em;
    margin-left: 0;
  }

  .mylangley-infobox h4 {
    margin-top: 12px;
  }

  .mylangley-resbtnbox {
    min-width: 18em;
  }

  .reservations-datetime {
    white-space: nowrap;
  }

  .profile-booktable .nav-tabs {
    border-bottom: none;
    margin-top: -3.875em;
  }

  .profile-booktable .nav-tabs>li>a {
    border-radius: 0;
    color: #545659;
    text-align: center;
    border: none;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1em;
    padding-left: 2em;
    padding-right: 2em;
    letter-spacing: 1px;
  }

  .profile-booktable .nav-tabs>li.active>a,
  .profile-booktable .nav-tabs>li.active>a:hover,
  .profile-booktable .nav-tabs>li.active>a:focus {
    background-color: #fff;
    border: none;
    border-bottom: #00a4de 0.15em solid;
    color: #00a4de;
    border-radius: 0;
  }

  .expandpanel .wrapper {
    height: 16em;
  }

  .expandpanel .blockimg {
    height: 16em;
  }

  .expandpanel .blocksmallimg .blockimg-outer {
    width: 33.3334%;
  }

  .expandpanel .blocksmallimg .blocktrigger {
    width: 66.6667%;
  }

  .simplepanel {}

  .simplepanel .blockbasic {
    padding: 1.5em 1.5em 0.5em;
    position: relative;
    border-bottom: #fff 1px solid;
  }

  .simplepanel .blockbasic h3 {
    margin-top: 0;
  }

  .simplepanel .blockbasic .blocktrigger {
    display: block;
    position: absolute;
    bottom: -1px;
    right: 0;
  }

  .simplepanel .blockcontent {
    background-color: #fff;
    border-top: #ccc 1px solid;
    display: none;
  }

  .simplepanel .blockeqheight {
    margin-left: 33.333333%;
    border-left: #ccc 1px solid;
  }

  .simplepanel .blockeqheightl-outer {
    width: 49.4%;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    margin-left: -50%;
  }

  .simplepanel .blockeqheightr-outer {
    overflow: hidden;
    display: inline-block;
    border: none;
    vertical-align: top;
  }

  .simplepanel .blockeqheightl,
  .simplepanel .blockeqheightr {
    padding: 2.5em 1em 1.5em;
  }

  .simplepanel .blockcontent .blockfull {
    margin-left: 0;
    border: none;
  }

  .simplepanel .blockcontent .blockfull .blockeqheightl-outer {
    display: none;
  }

  .simplepanel .blockcontent .blockfull .blockeqheightr-outer {
    display: block;
  }

  .booking h2 {
    font-size: 1.875em;
  }

  .mypages h2 {
    font-size: 1.5em;
  }

  .poscontainer {
    display: block;
  }

  #financial-mobileclose,
  .financial .financial-info {
    display: none;
  }

  .poscontainer .affix {
    position: fixed;
    width: inherit;
  }

  .poscontainer .affix-top {
    position: static;
    width: inherit;
  }

  .poscontainer .affix-bottom {
    position: absolute;
    width: inherit;
  }

  .hotelslist>.hotel .hotelinfo .equal-height>div {
    min-height: 17.25em;
  }

  .hotelslist>.hotel .hotelinfo .equal-height>.hotelprice {
    min-height: 17.25em;
  }

  .room-addtocart,
  .room-priceppbox {
    position: relative;
  }

  .room-addtocart .room-recommprice {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
  }

  .room-addtocart .room-recommprice button.btn-tobook {
    margin-top: 0;
  }

  .room-priceppbox .room-pricepp {
    position: absolute;
    left: 0;
    right: 0;
    padding: 0 0.625em;
    bottom: -0.75em;
    text-align: right;
  }

  .room-priceppbox .room-pricepp .room-pricefrom {
    font-size: 1.5em;
    line-height: 1;
  }

  .room-priceppbox .room-pricepp .room-pricefrom span {
    font-size: 1.5em;
    font-weight: 400;
  }

  .room-priceppbox .room-pricepp .room-pricediff {
    display: inline-block;
    text-align: left;
  }

  .room-priceppbox .room-pricepp .room-pricediff s {
    font-size: 0.625em;
    font-weight: 300;
    color: #58585e;
    text-decoration: line-through;
  }

  .room-priceppbox .room-pricepp .room-pricediff small {
    font-size: 0.625em;
    font-weight: 300;
  }

  .room-recomm .colwrap .row {
    margin-top: 1em;
  }

  .room-recomm .colwrap .row:first-child {
    margin-top: 0;
  }

  .accordioncontent {
    padding: 0;
  }

  .block-vamid {
    display: flex;
    align-items: center;
  }

  .block-txtexpdl .blockcontent,
  .block-imgexpdl .blockimg {
    padding-left: 2.75em;
  }

  .block-txtexpdr .blockcontent,
  .block-imgexpdr .blockimg {
    padding-right: 2.75em;
  }

  .tripfinder .guestamount .peoplenumselect-dropdown {
    left: auto;
    right: 0.5em;
    width: 22em;
    transform: translateY(0.71875em);
    padding: 0;
    margin: 0;
    box-shadow: 0 0 10px -6px;
    border: none;
  }
}

/* min-width 992px and max-width 1279px, to resolve issues in modern bowser on common laptop */
@media only screen and (min-width: 62em) and (max-width: 79.9375em) {
  #mobinavbar .navbar-header {
    float: none;
    margin: 0;
    padding: 0;
  }

  .navbar-header .navbar-mobiroot {
    height: 2.25em;
  }

  .navbar-header .mobinav-toggle {
    position: relative;
    float: right;
    height: 2.25em;
    margin: 0;
    padding: 0;
    line-height: 1;
    border: 0;
    background-color: transparent;
  }

  .navbar-header .mobinav-back {
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 1.25em;
    height: 1.8em;
    border: 0;
    background-color: transparent;
  }

  .navbar-header .mobinav-toggle .icon-bar {
    display: block;
    width: 2em;
    height: 0.125em;
    background-color: #f16369;
  }

  .navbar-header .mobinav-toggle .icon-bar+.icon-bar {
    margin-top: 0.375em;
  }

  .navbar-header .mobinav-toggle>i {
    font-size: 2.25em;
  }

  .navbar-header .mobinav-back>i {
    font-size: 1.4em;
    line-height: 1;
    vertical-align: -0.25em;
    margin-left: -0.25em;
  }

  .navbar-header .mobinav-toggle>i.lcd,
  .navbar-header .mobinav-back>i.lcd {
    color: #6c6c6c;
  }

  #navbar {
    background-color: #fff;
    margin-top: 0.5em;
  }

  #logo img {
    width: 9em;
    margin-top: 0.4375em;
    margin-left: 1px;
  }

  #navbar {
    padding: 0;
  }

  #mobinavbar .mobinav-header {
    font-size: 1.625em;
    margin: 1.625em 0 0;
  }

  #mobinavbar .mobinav-header>a {
    color: #000;
  }

  #mobinavbar .mobinav-list {
    padding: 0.75em 0 3em;
    margin: 0;
    float: none;
  }

  #mobinavbar .mobinav-user {
    border-top: #777 1px solid;
    padding: 1.5em 0 0;
    margin: 0;
    float: none;
  }

  #mobinavbar .mobinav-list>li {
    padding: 0.375em 0;
    float: none;
  }

  #mobinavbar .mobinav-user>li,
  #mobinavbar .mobinav-user>li .navbar-user {
    float: none;
    margin: 0;
    text-align: left;
  }

  .navbar-user>a>.lcd {
    font-size: 1.555556em;
    vertical-align: middle;
    margin-right: 0.375em;
  }

  #mobinavbar .mobinav-list>li>a,
  #mobinavbar .mobinav-list>li>span {
    padding: 0;
    font-size: 1.225em;
    display: inline;
    letter-spacing: -0.5px;
    color: #000;
  }

  #mobinavbar .mobinav-lv2>li>a {
    font-size: 1.125em;
  }

  #mobinavbar .mobinav-list>li>button {
    background-color: transparent;
    border: none;
    font-size: 1.625em;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1.5;
  }

  #mobinavbar .mobinav-lv2>li>button {
    line-height: 1;
  }

  #mobinavbar .mobinav-sublist {
    list-style: none;
    padding-left: 1.25em;
  }

  #mobinavbar .mobinav-sublist>li {
    padding: 0.375em 0;
  }

  #mobinavbar .mobinav-sublist>li>a {
    padding: 0;
    font-size: 1em;
    display: inline;
    letter-spacing: -0.5px;
    color: #000;
  }

  .img-responsive {
    width: 100%;
  }

  .img-fluid {
    max-width: 100%;
  }

  .searchbarcontainer {
    top: 11em;
  }

  .splash-content,
  .banner-content,
  #bannerbox .video-content {
    height: 11em;
  }

  .splash-content .vce,
  .banner-content .vce,
  .video-content .vce {
    margin: 0 1.66667em 1em;
  }

  #mobibanner,
  #mobisplashvideo {
    height: 36em;
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 0.5em 0.5em;
  }

  #mobibanner .bannerimage {
    height: 100%;
    width: auto;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  #mobisplashvideo .videoembed-box video {
    height: auto;
    width: 100%;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .bookingsearchfields>.form-group {
    width: 20%;
  }

  .searchbarslidebox .bookingsearchfields>.form-group {
    width: 19%;
  }

  .bookingsearchfields>.form-group:first-child {
    width: 30%;
  }

  .searchbarslidebox .bookingsearchfields>.form-group:first-child {
    width: 29%;
    overflow: hidden;
    white-space: nowrap;
  }

  .bookingsearchfields>button[type='submit'].btn {
    width: 10%;
  }

  .searchbarslidebox .bookingsearchfields>button[type='submit'].btn {
    width: 14%;
  }

  .hoteltripstack .triproomstacks .roomstack .roomtype {
    font-size: 1.25em;
    margin-top: 0.8em;
  }

  .hoteltripstack .triproomstacks .roomstack .roommealpackage,
  .hoteltripstack .triproomstacks .roomstack .roomtotal {
    font-size: 1em;
    margin-bottom: 1em;
  }

  .room-recomm .room-addtocart {
    min-height: 10.75em;
  }

  .rev-wrapper {
    margin: 0 0 4em;
  }

  .rev-wrapper .rev-img .rev-imgfloat {
    max-width: 57.63%;
    max-height: 62.5%;
  }

  .rev-wrapper .rev-txt {
    margin-top: 0;
    margin-bottom: 0;
  }

  .rev-txtlbox1,
  .rev-txtrbox1,
  .rev-txtlbox2,
  .rev-txtrbox2 {
    padding-left: 0;
    padding-right: 0;
  }

  .rev-topcomp {
    padding: 0;
    margin: 0 0 6em;
  }

  .rev-bottomcomp {
    padding: 0;
    margin: 0 0 6em;
  }

  .rev-topcomp .rev-txt {
    margin-top: 0;
  }

  .rev-bottomcomp .rev-txt {
    margin-top: 0;
  }

  .rev-topcomp .rev-img {
    margin-top: 0;
  }

  .rev-bottomcomp .rev-img {
    margin-bottom: 0;
  }

  .tab .nav-tabs>li {
    margin-left: 0;
    float: none;
    display: table-cell;
    white-space: nowrap;
  }

  .tab .nav-tabs>li.tabindicator {
    font-size: 1.25em;
    padding: 0.5em;
    margin-right: 2.5em;
    float: none;
  }

  .tab .nav-tabs>li>a,
  .tab .nav-tabs>li>a:hover,
  .tab .nav-tabs>li>a:focus,
  .tab .nav-tabs>li.active>a,
  .tab .nav-tabs>li.active>a:hover,
  .tab .nav-tabs>li.active>a:focus {
    padding: 0.5em;
    background-color: transparent;
  }

  #footer .newsletterbox {
    margin-top: 3.5em;
    margin-bottom: 1.5em;
  }
}

/* min-width 1280px, xlarge screens, most recent desktops with full hd monitors */
@media only screen and (min-width: 80em) {
  #languagelist {}

  #languagelist a {}

  #header {
    margin: 0 auto;
    padding: 1.125em 0;
    border: none;
    border-radius: 0;
  }

  /* .navbar-header{padding:0 1.5em 0 0;margin:0 0.25em;} */
  #navbar {
    clear: none;
    background-color: #fff;
    margin: 0;
    padding: 0;
  }

  #nav {}

  .navbar-right {
    float: right;
    padding: 0;
  }

  #splash,
  .banner {
    height: auto;
  }

  .splash-content,
  .banner-content,
  #bannerbox .video-content,
  .portalgrid .video-content {
    height: 100%;
  }

  #bannerbox .splash-content,
  #bannerbox .banner-content,
  #bannerbox .video-content {
    padding-bottom: 10em;
    width: 74.75em;
    left: 50%;
    transform: translateX(-50%);
  }

  #bannerbox.noroomsearch .splash-content,
  #bannerbox.noroomsearch .banner-content,
  #bannerbox.noroomsearch .video-content {
    padding-bottom: 0;
  }

  #navSlideshowControl {
    position: absolute;
    width: 100%;
    bottom: 5%;
    left: 0;
    text-align: center;
    z-index: 120;
  }

  /* .galleryindwrap{position:absolute;width:100%;bottom:9em;left:0;z-index:140;} */
  #bannerbox #navSlideshowControl {
    bottom: 0.375em;
  }

  .searchbarcontainer {
    width: 100%;
    z-index: 299;
    position: absolute;
    top: auto;
    bottom: 2.5em;
  }

  .tripfinderwrap {
    margin: 0;
    padding: 0;
    border-radius: none;
    background-color: transparent;
  }

  .tripfinder {
    width: 75.75em;
  }

  .tripsearchbaralone .searchbarcontainer,
  .trippage .searchbarcontainer {
    position: static;
    border-top: #b1b1b6 1px solid;
    border-bottom: #b1b1b6 1px solid;
  }

  .mylangleybox {
    position: relative;
  }

  .hotelsubmit-inner {
    margin: 0 auto;
  }

  :root .trippage .searchbaralone .tripfinderwrap {
    padding: 0;
  }

  .headercontainer {
    min-height: 4.625em;
  }

  .headercontainer>.container {
    position: static;
    width: 75.75em;
    min-height: 4.625em;
  }

  .searchbaraffix .tripfinderwrap {
    padding: 0.9375em 0 0.5em;
  }

  .searchbaraffix .tripsearch {
    display: block;
  }

  .splash-content,
  .banner-content,
  #bannerbox .video-content,
  .portalgrid .video-content,
  .portalgrid .portaltitle,
  .portaldesc {
    font-size: 100%;
  }

  .splash-content .vce,
  .banner-content .vce,
  .video-content .vce,
  .portaltitle .vce {
    max-width: 75%;
    margin: 0 0 2.5% 0;
    font-size: 100%;
  }

  #navSlideshowControl a {
    width: 1em;
    height: 1em;
    border-radius: 0.5em;
  }

  .mega-menu-dropdown {
    top: 4.5em;
  }

  .tripfinder .form-control {
    height: 2.875em;
    padding: 0.5em 0.75em;
    border-radius: 0.5em;
    box-shadow: none;
    font-weight: 300;
    color: #666;
  }

  .tripfinder-full {
    margin: 0;
    padding: 0.5em 0.875em 0;
    min-height: 7.5em;
    background-color: #fff;
    border-radius: 0.5em;
  }

  .tripsearchbaralone .tripfinder-full,
  .trippage .tripfinder-full {
    padding: 0.5em 0;
    margin: 0 -0.375em;
  }

  .tripfinder-full .tripsearch {
    margin: 0;
  }

  .tripfinder .selectbox {
    width: 16%;
  }

  .selectbox .selectric {
    height: 2.875em;
  }

  .selectbox .ageselect-ages .selectric {
    height: 2.375em;
  }

  .selectbox .selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 1.75em 0 0;
    padding: 0.375em 0 0.375em 0.75em;
    color: #222;
    height: 2.875em;
    text-align: left;
    font-size: 100%;
    font-weight: 300;
    line-height: 2;
  }

  .selectbox .ageselect-ages .selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 1.5em 0 0;
    padding: 0.225em 0 0.25em 0.5em;
    color: #8e9195;
    height: 2.375em;
    text-align: left;
    font-size: 100%;
    font-weight: 300;
    line-height: 1.875;
  }

  .selectbox .selectric .button {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1.75em;
    height: 2.875em;
    text-align: center;
  }

  .selectbox .selectric-warn .label,
  .selectbox .selectric-warn .button {
    color: #d9534f;
  }

  .selectbox .ageselect-ages .selectric .button {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1.5em;
    height: 2.375em;
    line-height: 2.625em;
    text-align: center;
  }

  .tripfinder .guestamount .form-control {
    line-height: 1.5;
  }

  .tripfinder .guestamount,
  .tripfinder .searchbutton {
    width: 18%;
  }

  .tripfinder .searchbutton .searchbtnbox {
    margin-left: 3em;
  }

  .tripfinder-full .selectbox .tripfindbtn {
    margin: 1.3125em 0 0.25em;
    padding: 0.5em 0.75em;
    height: 2.875em;
    border: none;
  }

  .tripfinder-full .searchbtnbox .tripfindbtn+a {
    color: #000;
    font-size: 0.75em;
  }

  .booking {
    padding: 1.25em 0;
  }

  .campaigncountdown>p {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-size: 1.5em;
    width: 16.666667%;
  }

  .campaigncountdown>p:first-child {
    font-size: 3em;
  }

  .campaigncountdown>p>span {
    font-size: 2em;
  }

  .campaigntarget {
    font-size: 2em;
    padding: 1em;
  }

  .campaigninputgroup legend {
    font-size: 1em;
    font-weight: 700;
    padding: 0 0 0.3125em;
    margin: 0 0 0.9375em;
    color: #58585e;
    border-bottom-color: #aaa;
  }

  .campaigninputgroup label {
    font-weight: 300;
  }

  .hoteldescblock {
    margin-top: 0;
  }

  .hoteldescblock .hoteldescimgpd {
    padding-right: 2.875em;
  }

  .hotelbaseimg {
    width: 49.75em;
    float: left;
  }

  .poscontainer .financial {
    margin-left: 0;
  }

  .hotelslist>.hotel .hotelinfo .equal-height>div {
    min-height: 16em;
  }

  .hotelslist>.hotel .hotelinfo .equal-height>.hotelprice {
    min-height: 16em;
  }

  .room-recomm .room-addtocart {
    min-height: 9em;
  }

  .room-addtocart .room-recommprice {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
  }

  .room-addtocart .room-recommprice .room-recommspin {
    min-height: 10.125em;
  }

  .room-addtocart .room-recommprice .room-recommspin svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .room-addtocart .room-recommprice .room-recommspin .room-recommretry {
    position: absolute;
    width: 75%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .room-addtocart .room-recommprice .room-recommspin .room-recommretry p {
    font-size: 0.875em;
  }

  .room-addtocart .room-recommprice .room-recommspin .room-recommretry button img.svg {
    width: 1em;
    height: 1em;
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(189deg) brightness(111%) contrast(101%);
  }
}

@media only screen and (min-width: 85.375em) {
  #bkt {
    bottom: 2em;
  }
}

@media only screen and (min-width: 120em) {
  .splashslideshow>li>img {
    width: 100%;
    height: auto;
    position: static;
    border-radius: 0 0 0.5em 0.5em;
  }
}

/* Style adjustments for high resolution devices */
@media print,
(-o-min-device-pixel-ratio: 5/4),
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {}

/* Style adjustments for printer */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

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

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

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

  .ir a:after,
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: '';
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

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

  @page {
    margin: 0.5cm;
  }

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

  h2,
  h3 {
    page-break-after: avoid;
  }
}
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  opacity: 0.8;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyAQMAAAAk8RryAAAAA3NCSVQICAjb4U/gAAAABlBMVEX///8AAABVwtN+AAAAAnRSTlMAzORBQ6MAAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAcdEVYdFNvZnR3YXJlAEFkb2JlIEZpcmV3b3JrcyBDUzbovLKMAAAAFnRFWHRDcmVhdGlvbiBUaW1lADA4LzI0LzE2KOj5RAAAABJJREFUGJVj+A8GBxhG6UFBAwD3dFBkkOx0PwAAAABJRU5ErkJggg==');
}
:root .mfp-bg {
  background-image: none;
  background-color: rgba(0, 0, 0, 0.8);
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 1.25em;
  box-sizing: border-box;
}
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.mfp-video {
  position: relative;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-inline-holder .mfp-content video {
  max-width: 100%;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #ccc;
}
.mfp-preloader a:hover {
  color: #fff;
}
.mfp-s-ready .mfp-preloader {
  display: none;
}
.mfp-s-error .mfp-content {
  display: none;
}
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close {
  width: 1em;
  height: 0.875em;
  line-height: 0.875;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  padding: 0;
  font-style: normal;
  font-size: 5em;
  font-weight: 200;
}
:root .mfp-close {
  font-family: 'Brown', 'Century Gothic', 'Segoe UI', Arial, sans-serif;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-close:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
  top: -10px;
  font-size: 90px;
}
.mfp-video .mfp-close {
  color: #fff;
  font-size: 90px;
  top: -70px;
}
.mfp-video .mfp-bottom-bar {
  position: relative;
  bottom: 6px;
}
.mfp-iframe-scaler .mfp-bottom-bar {
  position: relative;
  bottom: 0;
}
.mfp-counter {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}
.mfp-fa {
  position: absolute;
}
.mfp-arrow {
  position: absolute;
  color: #fff;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
/*.mfp-arrow:before,.mfp-arrow:after{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}
.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}
.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7;filter:alpha(opacity=70);}*/
.mfp-arrow-left {
  left: 0;
}
/*.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}
.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3F3F3F}*/
.mfp-arrow-right {
  right: 0;
}
/*.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}
.mfp-arrow-right:before{border-left:27px solid #3F3F3F}*/
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -70px;
}
.mfp-iframe-scaler,
.mfp-map-scaler {
  width: 100%;
  height: 0; /*overflow:hidden;*/
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
.mfp-map-scaler .mfp-map {
  position: absolute !important;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 60px 0;
  margin: 0 auto;
}
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 60px;
  bottom: 60px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-btnbox {
  margin-top: 1.5em;
}
.mfp-bottom-bar {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  cursor: auto;
  padding: 10px;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyAQMAAAAk8RryAAAAA3NCSVQICAjb4U/gAAAABlBMVEX///8AAABVwtN+AAAAAnRSTlMAmf9A5tgAAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAcdEVYdFNvZnR3YXJlAEFkb2JlIEZpcmV3b3JrcyBDUzbovLKMAAAAFnRFWHRDcmVhdGlvbiBUaW1lADA4LzI0LzE2KOj5RAAAABJJREFUGJVj+A8GBxhG6UFBAwD3dFBkkOx0PwAAAABJRU5ErkJggg==');
}
:root .mfp-bottom-bar {
  background-image: none;
  background-color: rgba(0, 0, 0, 0.6);
}
.mfp-title {
  text-align: left;
  line-height: 18px;
  min-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width: 767px) and (orientation: landscape), screen and (max-height: 320px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
.white-popup,
.customer-popup {
  position: relative;
  background: #fff;
  padding: 2.75em;
  width: auto;
  max-width: 53.375em;
  min-height: 10em;
  margin: 0 auto;
  z-index: 9999;
  overflow-y: auto;
}
.map-popup {
  position: relative;
  background: #fff;
  padding: 0;
  width: auto;
  max-width: 56.25em;
  margin: 0 auto;
  font-weight: 300;
  z-index: 9999;
}
.image-popup {
  position: relative;
  width: auto;
  max-width: 50em;
  margin: 0 auto;
  font-size: 0.875em;
  font-weight: 300;
  z-index: 9999;
}
.form-popup {
  position: relative;
  background: #fff;
  padding: 1em;
  width: auto;
  max-width: 25em;
  margin: 0 auto;
  font-size: 0.875em;
  font-weight: 300;
}
@media all and (max-width: 991px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 1em;
    padding-right: 1em;
  }
  .mfp-longtxt {
    width: 100%;
    height: 100%;
  }
  .white-popup,
  .customer-popup {
    padding: 1.5em;
  }
  .mfp-close {
    font-size: 4.5em;
  }
}
@media all and (min-width: 992px) {
  .mfp-longtxt {
    width: 100%;
    height: 100%;
    padding: 0.75em;
  }
}
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
}
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0;
  filter: alpha(opacity=0);
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
}
.mfp-3d-unfold .mfp-content {
  perspective: 2000px;
}
.mfp-3d-unfold .mfp-with-anim {
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.3s ease-in-out;
  transform-style: preserve-3d;
  transform: rotateY(-60deg);
}
.mfp-3d-unfold.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.5s;
}
.mfp-3d-unfold.mfp-ready .mfp-with-anim {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: rotateY(0deg);
}
.mfp-3d-unfold.mfp-ready.mfp-bg {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.mfp-3d-unfold.mfp-removing .mfp-with-anim {
  transform: rotateY(60deg);
  opacity: 0;
  filter: alpha(opacity=0);
}
.mfp-3d-unfold.mfp-removing.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
}
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    filter: alpha(opacity=100);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
    filter: alpha(opacity=0);
  }
}
.hinge {
  animation-duration: 1s;
  animation-name: hinge;
}
.mfp-ie7 .mfp-img {
  padding: 0;
}
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}
.mfp-ie7 .mfp-container {
  padding: 0;
}
.mfp-ie7 .mfp-content {
  padding-top: 44px;
}
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/*!
 * Photo Sphere Viewer 3.2.3
 * Copyright (c) 2014-2015 Jérémy Heleine
 * Copyright (c) 2015-2017 Damien "Mistic" Sorel
 * Licensed under MIT (http://opensource.org/licenses/MIT)
 */
.psv-container {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  background: radial-gradient(#ffffff, #fdfdfd 16%, #fbfbfb 33%, #f8f8f8 49%, #efefef 66%, #dfdfdf 82%, #bfbfbf 100%);
  overflow: hidden;
}

.psv-canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: opacity linear 100ms;
}

.psv-canvas {
  display: block;
}

.psv-loader-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.psv-loader {
  position: relative;
  text-align: center;
  color: rgba(61, 61, 61, 0.7);
  width: 150px;
  height: 150px;
  border: 10px solid transparent;
}
.psv-loader::before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.psv-loader, .psv-loader-image, .psv-loader-text {
  display: inline-block;
  vertical-align: middle;
}
.psv-loader-canvas {
  position: absolute;
  top: 0;
  left: 0;
}
.psv-loader-text {
  font: 14px sans-serif;
}

.psv-navbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  z-index: 90;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: rgba(61, 61, 61, 0.5);
  transition: bottom ease-in-out .1s;
}
.psv-navbar--open {
  bottom: 0;
}
.psv-navbar, .psv-navbar * {
  box-sizing: content-box;
}

.psv-caption {
  -webkit-box-flex: 10;
  -webkit-flex-grow: 10;
  -moz-flex-grow: 10;
  -ms-flex-positive: 10;
  flex-grow: 10;
  color: rgba(255, 255, 255, 0.7);
  margin: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  font-family: sans-serif;
}
@media (max-width: 800px) {
  .psv-caption {
    visibility: hidden;
  }
}

.psv-spacer--weight-1 {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.psv-spacer--weight-2 {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
  -moz-flex-grow: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}
.psv-spacer--weight-3 {
  -webkit-box-flex: 3;
  -webkit-flex-grow: 3;
  -moz-flex-grow: 3;
  -ms-flex-positive: 3;
  flex-grow: 3;
}
.psv-spacer--weight-4 {
  -webkit-box-flex: 4;
  -webkit-flex-grow: 4;
  -moz-flex-grow: 4;
  -ms-flex-positive: 4;
  flex-grow: 4;
}
.psv-spacer--weight-5 {
  -webkit-box-flex: 5;
  -webkit-flex-grow: 5;
  -moz-flex-grow: 5;
  -ms-flex-positive: 5;
  flex-grow: 5;
}
.psv-spacer--weight-6 {
  -webkit-box-flex: 6;
  -webkit-flex-grow: 6;
  -moz-flex-grow: 6;
  -ms-flex-positive: 6;
  flex-grow: 6;
}
.psv-spacer--weight-7 {
  -webkit-box-flex: 7;
  -webkit-flex-grow: 7;
  -moz-flex-grow: 7;
  -ms-flex-positive: 7;
  flex-grow: 7;
}
.psv-spacer--weight-8 {
  -webkit-box-flex: 8;
  -webkit-flex-grow: 8;
  -moz-flex-grow: 8;
  -ms-flex-positive: 8;
  flex-grow: 8;
}
.psv-spacer--weight-9 {
  -webkit-box-flex: 9;
  -webkit-flex-grow: 9;
  -moz-flex-grow: 9;
  -ms-flex-positive: 9;
  flex-grow: 9;
}
.psv-spacer--weight-10 {
  -webkit-box-flex: 10;
  -webkit-flex-grow: 10;
  -moz-flex-grow: 10;
  -ms-flex-positive: 10;
  flex-grow: 10;
}

.psv-button {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 10px;
  position: relative;
  cursor: pointer;
  height: 20px;
  width: 20px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
}
.psv-button--active {
  background: rgba(255, 255, 255, 0.1);
}
.psv-button--disabled {
  pointer-events: none;
  opacity: 0.5;
}
.psv-button .psv-button-svg {
  width: 100%;
  transform: scale(1);
  transition: transform .3s ease;
}
.psv-button .psv-button-svg * {
  fill: rgba(255, 255, 255, 0.7);
}
.psv-button--hover-scale:not(.psv-button--disabled):hover .psv-button .psv-button-svg {
  transform: scale(1.2);
}

.psv-autorotate-button {
  width: 25px;
  height: 25px;
  padding: 7.5px;
}

.psv-zoom-button {
  cursor: default;
  width: 128px;
}
.psv-zoom-button-minus, .psv-zoom-button-plus {
  float: left;
  position: relative;
  cursor: pointer;
  width: 16px;
  height: 16px;
}
.psv-zoom-button-minus .psv-button-svg, .psv-zoom-button-plus .psv-button-svg {
  position: relative;
  top: 20%;
}
.psv-zoom-button-range {
  float: left;
  padding: 9.5px 8px;
}
.psv-zoom-button-line {
  position: relative;
  cursor: pointer;
  width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  transition: all .3s ease;
}
.psv-zoom-button-handle {
  position: absolute;
  border-radius: 50%;
  top: -3px;
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1);
  transition: transform .3s ease;
}
.psv-zoom-button:not(.psv-button--disabled):hover .psv-zoom-button-line {
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.7);
}
.psv-zoom-button:not(.psv-button--disabled):hover .psv-zoom-button-handle {
  transform: scale(1.3);
}
@media (max-width: 600px) {
  .psv-zoom-button {
    width: auto;
    padding: 0;
  }
  .psv-zoom-button-range {
    display: none;
  }
  .psv-zoom-button-minus, .psv-zoom-button-plus {
    width: 20px;
    height: 20px;
    padding: 10px;
  }
  .psv-zoom-button-minus .psv-button-svg, .psv-zoom-button-plus .psv-button-svg {
    top: 0;
  }
}

.psv-markers-list-title {
  font: 24px sans-serif;
  margin: 1em 0;
  text-align: center;
  text-shadow: 2px 1px #000000;
}

.psv-markers-list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.psv-markers-list-item {
  clear: both;
  min-height: 20px;
  padding: 0.5em 1em;
  cursor: pointer;
  transform: translateX(0);
  transition: transform .3s ease-in-out;
}
.psv-markers-list-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 10px;
  margin-left: -10px;
}
.psv-markers-list-item:nth-child(odd), .psv-markers-list-item:nth-child(odd)::before {
  background: rgba(255, 255, 255, 0.1);
}
.psv-markers-list-item:nth-child(even), .psv-markers-list-item:nth-child(even)::before {
  background: transparent;
}
.psv-markers-list-item:hover {
  transform: translateX(10px);
  transition: transform .1s ease-in-out;
}
.psv-markers-list-image {
  float: left;
  width: 20px;
}
.psv-markers-list-name {
  margin: 0;
  padding: 0;
}
.psv-markers-list-image + .psv-markers-list-name {
  padding-left: calc(20px + 0.5em);
}

.psv-hud {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.psv-hud-svg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}

.psv-marker {
  cursor: pointer;
  display: none;
}
.psv-marker--normal {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  background-size: contain;
  background-repeat: no-repeat;
}
.psv-marker--transparent {
  display: block;
  opacity: 0;
}
.psv-marker--visible {
  display: block;
}

.psv-panel {
  position: absolute;
  z-index: 90;
  right: 0;
  height: 100%;
  width: 400px;
  max-width: calc(100% - 24px);
  background: rgba(10, 10, 10, 0.7);
  transform: translate3d(100%, 0, 0);
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: ease-in-out;
  transition-duration: .1s;
  cursor: default;
  margin-left: 9px;
}
.psv-container--has-navbar .psv-panel {
  height: calc(100% - 40px);
}
.psv-panel-close-button {
  display: none;
  position: absolute;
  top: 0;
  left: -24px;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.9);
}
.psv-panel-close-button::before, .psv-panel-close-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 4px;
  width: 15px;
  height: 1px;
  background-color: #ffffff;
  transition: .2s ease-in-out;
  transition-property: width, left, transform;
}
.psv-panel-close-button::before {
  transform: rotate(45deg);
}
.psv-panel-close-button::after {
  transform: rotate(-45deg);
}
.psv-panel-close-button:hover::before, .psv-panel-close-button:hover::after {
  left: 0;
  width: 23px;
}
.psv-panel-close-button:hover::before {
  transform: rotate(135deg);
}
.psv-panel-close-button:hover::after {
  transform: rotate(45deg);
}
.psv-panel-resizer {
  display: none;
  position: absolute;
  top: 0;
  left: -9px;
  width: 9px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: col-resize;
}
.psv-panel-resizer::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 1px;
  margin-top: -14.5px;
  width: 1px;
  height: 1px;
  box-shadow: 1px 0 #ffffff, 3px 0px #ffffff, 5px 0px #ffffff, 1px 2px #ffffff, 3px 2px #ffffff, 5px 2px #ffffff, 1px 4px #ffffff, 3px 4px #ffffff, 5px 4px #ffffff, 1px 6px #ffffff, 3px 6px #ffffff, 5px 6px #ffffff, 1px 8px #ffffff, 3px 8px #ffffff, 5px 8px #ffffff, 1px 10px #ffffff, 3px 10px #ffffff, 5px 10px #ffffff, 1px 12px #ffffff, 3px 12px #ffffff, 5px 12px #ffffff, 1px 14px #ffffff, 3px 14px #ffffff, 5px 14px #ffffff, 1px 16px #ffffff, 3px 16px #ffffff, 5px 16px #ffffff, 1px 18px #ffffff, 3px 18px #ffffff, 5px 18px #ffffff, 1px 20px #ffffff, 3px 20px #ffffff, 5px 20px #ffffff, 1px 22px #ffffff, 3px 22px #ffffff, 5px 22px #ffffff, 1px 24px #ffffff, 3px 24px #ffffff, 5px 24px #ffffff, 1px 26px #ffffff, 3px 26px #ffffff, 5px 26px #ffffff, 1px 28px #ffffff, 3px 28px #ffffff, 5px 28px #ffffff;
  background: transparent;
}
.psv-panel-content {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  color: gainsboro;
  font: 16px sans-serif;
  overflow: auto;
}
.psv-panel-content:not(.psv-panel-content--no-margin) {
  padding: 1em;
}
.psv-panel-content--no-interaction {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}
.psv-panel--open {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition-duration: .2s;
}
.psv-panel--open .psv-panel-close-button, .psv-panel--open .psv-panel-resizer {
  display: block;
}

.psv-tooltip {
  position: absolute;
  z-index: 50;
  box-sizing: border-box;
  max-width: 200px;
  background-color: rgba(61, 61, 61, 0.8);
  border-radius: 4px;
  padding: 0.5em 1em;
  opacity: 0;
  transition-property: opacity;
  transition-timing-function: ease-in-out;
  transition-duration: 0.1s;
}
.psv-tooltip-content {
  color: white;
  font: 14px sans-serif;
  text-shadow: 0 1px #000000;
}
.psv-tooltip-arrow {
  position: absolute;
  height: 0;
  width: 0;
  border: 7px solid transparent;
}
.psv-tooltip--bottom-center {
  box-shadow: 0 3px 0 rgba(90, 90, 90, 0.7);
  transform: translate3d(0, -5px, 0);
  transition-property: opacity, transform;
}
.psv-tooltip--bottom-center .psv-tooltip-arrow {
  border-bottom-color: rgba(61, 61, 61, 0.8);
}
.psv-tooltip--center-left {
  box-shadow: -3px 0 0 rgba(90, 90, 90, 0.7);
  transform: translate3d(5px, 0, 0);
  transition-property: opacity, transform;
}
.psv-tooltip--center-left .psv-tooltip-arrow {
  border-left-color: rgba(61, 61, 61, 0.8);
}
.psv-tooltip--top-center {
  box-shadow: 0 -3px 0 rgba(90, 90, 90, 0.7);
  transform: translate3d(0, 5px, 0);
  transition-property: opacity, transform;
}
.psv-tooltip--top-center .psv-tooltip-arrow {
  border-top-color: rgba(61, 61, 61, 0.8);
}
.psv-tooltip--center-right {
  box-shadow: 3px 0 0 rgba(90, 90, 90, 0.7);
  transform: translate3d(-5px, 0, 0);
  transition-property: opacity, transform;
}
.psv-tooltip--center-right .psv-tooltip-arrow {
  border-right-color: rgba(61, 61, 61, 0.8);
}
.psv-tooltip--bottom-left {
  box-shadow: -3px 3px 0 rgba(90, 90, 90, 0.7);
  transform: translate3d(0, -5px, 0);
  transition-property: opacity, transform;
}
.psv-tooltip--bottom-left .psv-tooltip-arrow {
  border-bottom-color: rgba(61, 61, 61, 0.8);
}
.psv-tooltip--bottom-right {
  box-shadow: 3px 3px 0 rgba(90, 90, 90, 0.7);
  transform: translate3d(0, -5px, 0);
  transition-property: opacity, transform;
}
.psv-tooltip--bottom-right .psv-tooltip-arrow {
  border-bottom-color: rgba(61, 61, 61, 0.8);
}
.psv-tooltip--top-left {
  box-shadow: -3px -3px 0 rgba(90, 90, 90, 0.7);
  transform: translate3d(0, 5px, 0);
  transition-property: opacity, transform;
}
.psv-tooltip--top-left .psv-tooltip-arrow {
  border-top-color: rgba(61, 61, 61, 0.8);
}
.psv-tooltip--top-right {
  box-shadow: 3px -3px 0 rgba(90, 90, 90, 0.7);
  transform: translate3d(0, 5px, 0);
  transition-property: opacity, transform;
}
.psv-tooltip--top-right .psv-tooltip-arrow {
  border-top-color: rgba(61, 61, 61, 0.8);
}
.psv-tooltip--visible {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition-duration: 0.1s;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    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
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -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
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide>div{height:100%;}
.slick-slide img
{
    display: block;
    border-radius: 0.5em;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-prev,
.slick-next
{
    position: absolute;
    top: 50%;
    display: block;
    width: 3em;
    height: 5.5em;
    padding: 1.75em 0.5em;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 250
}
.slick-prev{left:0;}
.slick-next{right:0;}
.slick-prev:hover,
.slick-next:hover
{
    background: transparent;
}
.slick-prev img,
.slick-next img
{
    width: 100%;
    height: 100%;
}
.slick-prev svg,
.slick-next svg
{
    fill: rgba(255, 255, 255, .75);
}
.slick-prev:hover svg,
.slick-next:hover svg
{
    fill: rgba(255, 255, 255, 1);
}
.slick-image
{
    min-height: 15em;
}