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

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/*!
 * Datepicker for Bootstrap v1.10.0 (https://github.com/uxsolutions/bootstrap-datepicker)
 *
 * Licensed under the Apache License v2.0 (https://www.apache.org/licenses/LICENSE-2.0)
 */

.datepicker{padding:4px;border-radius:4px;direction:ltr}.datepicker-inline{width:220px}.datepicker-rtl{direction:rtl}.datepicker-rtl.dropdown-menu{left:auto}.datepicker-rtl table tr td span{float:right}.datepicker-dropdown{top:0;left:0}.datepicker-dropdown:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #999;border-top:0;border-bottom-color:rgba(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 #999}.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;-moz-user-select:none;user-select:none}.datepicker td,.datepicker th{text-align:center;width:20px;height:20px;border-radius:4px;border:none}.table-striped .datepicker table tr td,.table-striped .datepicker table tr th{background-color:transparent}.datepicker table tr td.day.focused,.datepicker table tr td.day:hover{background:#eee;cursor:pointer}.datepicker table tr td.new,.datepicker table tr td.old{color:#999}.datepicker table tr td.disabled,.datepicker table tr td.disabled:hover{background:0 0;color:#999;cursor:default}.datepicker table tr td.highlighted{background:#d9edf7;border-radius:0}.datepicker table tr td.today,.datepicker table tr td.today.disabled,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today:hover{background-color:#fde19a;background-image:linear-gradient(to bottom,#fdd49a,#fdf59a);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);border-color:#fdf59a #fdf59a #fbed50;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#000}.datepicker table tr td.today.active,.datepicker table tr td.today.disabled,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled.disabled,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today.disabled:hover.active,.datepicker table tr td.today.disabled:hover.disabled,.datepicker table tr td.today.disabled:hover:active,.datepicker table tr td.today.disabled:hover:hover,.datepicker table tr td.today.disabled:hover[disabled],.datepicker table tr td.today.disabled[disabled],.datepicker table tr td.today:active,.datepicker table tr td.today:hover,.datepicker table tr td.today:hover.active,.datepicker table tr td.today:hover.disabled,.datepicker table tr td.today:hover:active,.datepicker table tr td.today:hover:hover,.datepicker table tr td.today:hover[disabled],.datepicker table tr td.today[disabled]{background-color:#fdf59a}.datepicker table tr td.today.active,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:hover.active,.datepicker table tr td.today.disabled:hover:active,.datepicker table tr td.today:active,.datepicker table tr td.today:hover.active,.datepicker table tr td.today:hover:active{background-color:#fbf069\9}.datepicker table tr td.today:hover:hover{color:#000}.datepicker table tr td.today.active:hover{color:#fff}.datepicker table tr td.range,.datepicker table tr td.range.disabled,.datepicker table tr td.range.disabled:hover,.datepicker table tr td.range:hover{background:#eee;border-radius:0}.datepicker table tr td.range.today,.datepicker table tr td.range.today.disabled,.datepicker table tr td.range.today.disabled:hover,.datepicker table tr td.range.today:hover{background-color:#f3d17a;background-image:linear-gradient(to bottom,#f3c17a,#f3e97a);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);border-color:#f3e97a #f3e97a #edde34;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border-radius:0}.datepicker table tr td.range.today.active,.datepicker table tr td.range.today.disabled,.datepicker table tr td.range.today.disabled.active,.datepicker table tr td.range.today.disabled.disabled,.datepicker table tr td.range.today.disabled:active,.datepicker table tr td.range.today.disabled:hover,.datepicker table tr td.range.today.disabled:hover.active,.datepicker table tr td.range.today.disabled:hover.disabled,.datepicker table tr td.range.today.disabled:hover:active,.datepicker table tr td.range.today.disabled:hover:hover,.datepicker table tr td.range.today.disabled:hover[disabled],.datepicker table tr td.range.today.disabled[disabled],.datepicker table tr td.range.today:active,.datepicker table tr td.range.today:hover,.datepicker table tr td.range.today:hover.active,.datepicker table tr td.range.today:hover.disabled,.datepicker table tr td.range.today:hover:active,.datepicker table tr td.range.today:hover:hover,.datepicker table tr td.range.today:hover[disabled],.datepicker table tr td.range.today[disabled]{background-color:#f3e97a}.datepicker table tr td.range.today.active,.datepicker table tr td.range.today.disabled.active,.datepicker table tr td.range.today.disabled:active,.datepicker table tr td.range.today.disabled:hover.active,.datepicker table tr td.range.today.disabled:hover:active,.datepicker table tr td.range.today:active,.datepicker table tr td.range.today:hover.active,.datepicker table tr td.range.today:hover:active{background-color:#efe24b\9}.datepicker table tr td.selected,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected:hover{background-color:#9e9e9e;background-image:linear-gradient(to bottom,#b3b3b3,grey);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);border-color:grey grey #595959;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td.selected.active,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled.active,.datepicker table tr td.selected.disabled.disabled,.datepicker table tr td.selected.disabled:active,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected.disabled:hover.active,.datepicker table tr td.selected.disabled:hover.disabled,.datepicker table tr td.selected.disabled:hover:active,.datepicker table tr td.selected.disabled:hover:hover,.datepicker table tr td.selected.disabled:hover[disabled],.datepicker table tr td.selected.disabled[disabled],.datepicker table tr td.selected:active,.datepicker table tr td.selected:hover,.datepicker table tr td.selected:hover.active,.datepicker table tr td.selected:hover.disabled,.datepicker table tr td.selected:hover:active,.datepicker table tr td.selected:hover:hover,.datepicker table tr td.selected:hover[disabled],.datepicker table tr td.selected[disabled]{background-color:grey}.datepicker table tr td.selected.active,.datepicker table tr td.selected.disabled.active,.datepicker table tr td.selected.disabled:active,.datepicker table tr td.selected.disabled:hover.active,.datepicker table tr td.selected.disabled:hover:active,.datepicker table tr td.selected:active,.datepicker table tr td.selected:hover.active,.datepicker table tr td.selected:hover:active{background-color:#666\9}.datepicker table tr td.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active:hover{background-color:#006dcc;background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td.active.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled.disabled,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active.disabled:hover.active,.datepicker table tr td.active.disabled:hover.disabled,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active.disabled:hover:hover,.datepicker table tr td.active.disabled:hover[disabled],.datepicker table tr td.active.disabled[disabled],.datepicker table tr td.active:active,.datepicker table tr td.active:hover,.datepicker table tr td.active:hover.active,.datepicker table tr td.active:hover.disabled,.datepicker table tr td.active:hover:active,.datepicker table tr td.active:hover:hover,.datepicker table tr td.active:hover[disabled],.datepicker table tr td.active[disabled]{background-color:#04c}.datepicker table tr td.active.active,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover.active,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active:active,.datepicker table tr td.active:hover.active,.datepicker table tr td.active:hover:active{background-color:#039\9}.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.focused,.datepicker table tr td span:hover{background:#eee}.datepicker table tr td span.disabled,.datepicker table tr td span.disabled:hover{background:0 0;color:#999;cursor:default}.datepicker table tr td span.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active:hover{background-color:#006dcc;background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td span.active.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled.disabled,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled:hover.disabled,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active.disabled:hover:hover,.datepicker table tr td span.active.disabled:hover[disabled],.datepicker table tr td span.active.disabled[disabled],.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover.disabled,.datepicker table tr td span.active:hover:active,.datepicker table tr td span.active:hover:hover,.datepicker table tr td span.active:hover[disabled],.datepicker table tr td span.active[disabled]{background-color:#04c}.datepicker table tr td span.active.active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover.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:hover:active{background-color:#039\9}.datepicker table tr td span.new,.datepicker table tr td span.old{color:#999}.datepicker .datepicker-switch{width:145px}.datepicker .datepicker-switch,.datepicker .next,.datepicker .prev,.datepicker tfoot tr th{cursor:pointer}.datepicker .datepicker-switch:hover,.datepicker .next:hover,.datepicker .prev:hover,.datepicker tfoot tr th:hover{background:#eee}.datepicker .next.disabled,.datepicker .prev.disabled{visibility:hidden}.datepicker .cw{font-size:10px;width:12px;padding:0 2px 0 5px;vertical-align:middle}.input-append.date .add-on,.input-prepend.date .add-on{cursor:pointer}.input-append.date .add-on i,.input-prepend.date .add-on i{margin-top:3px}.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 .add-on{display:inline-block;width:auto;min-width:16px;height:18px;padding:4px 5px;font-weight:400;line-height:18px;text-align:center;text-shadow:0 1px 0 #fff;vertical-align:middle;background-color:#eee;border:1px solid #ccc;margin-left:-5px;margin-right:-5px}
/*!
 * jQuery UI CSS Framework 1.14.1
 * https://jqueryui.com
 *
 * Copyright OpenJS Foundation and other contributors
 * Released under the MIT license.
 * https://jquery.org/license
 *
 * https://api.jqueryui.com/category/theming/
 */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
	pointer-events: none;
}


/* Icons
----------------------------------*/
.ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}

.ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block;
}

/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*!
 * jQuery UI Datepicker 1.14.1
 * https://jqueryui.com
 *
 * Copyright OpenJS Foundation and other contributors
 * Released under the MIT license.
 * https://jquery.org/license
 *
 * https://api.jqueryui.com/datepicker/#theming
 */
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
	left: .5em;
	top: .3em;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/*!
 * Datepicker for Bootstrap v1.10.0 (https://github.com/uxsolutions/bootstrap-datepicker)
 *
 * Licensed under the Apache License v2.0 (https://www.apache.org/licenses/LICENSE-2.0)
 */

.datepicker{padding:4px;border-radius:4px;direction:ltr}.datepicker-inline{width:220px}.datepicker-rtl{direction:rtl}.datepicker-rtl.dropdown-menu{left:auto}.datepicker-rtl table tr td span{float:right}.datepicker-dropdown{top:0;left:0}.datepicker-dropdown:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #999;border-top:0;border-bottom-color:rgba(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 #999}.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;-moz-user-select:none;user-select:none}.datepicker td,.datepicker th{text-align:center;width:20px;height:20px;border-radius:4px;border:none}.table-striped .datepicker table tr td,.table-striped .datepicker table tr th{background-color:transparent}.datepicker table tr td.day.focused,.datepicker table tr td.day:hover{background:#eee;cursor:pointer}.datepicker table tr td.new,.datepicker table tr td.old{color:#999}.datepicker table tr td.disabled,.datepicker table tr td.disabled:hover{background:0 0;color:#999;cursor:default}.datepicker table tr td.highlighted{background:#d9edf7;border-radius:0}.datepicker table tr td.today,.datepicker table tr td.today.disabled,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today:hover{background-color:#fde19a;background-image:linear-gradient(to bottom,#fdd49a,#fdf59a);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);border-color:#fdf59a #fdf59a #fbed50;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#000}.datepicker table tr td.today.active,.datepicker table tr td.today.disabled,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled.disabled,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today.disabled:hover.active,.datepicker table tr td.today.disabled:hover.disabled,.datepicker table tr td.today.disabled:hover:active,.datepicker table tr td.today.disabled:hover:hover,.datepicker table tr td.today.disabled:hover[disabled],.datepicker table tr td.today.disabled[disabled],.datepicker table tr td.today:active,.datepicker table tr td.today:hover,.datepicker table tr td.today:hover.active,.datepicker table tr td.today:hover.disabled,.datepicker table tr td.today:hover:active,.datepicker table tr td.today:hover:hover,.datepicker table tr td.today:hover[disabled],.datepicker table tr td.today[disabled]{background-color:#fdf59a}.datepicker table tr td.today.active,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:hover.active,.datepicker table tr td.today.disabled:hover:active,.datepicker table tr td.today:active,.datepicker table tr td.today:hover.active,.datepicker table tr td.today:hover:active{background-color:#fbf069\9}.datepicker table tr td.today:hover:hover{color:#000}.datepicker table tr td.today.active:hover{color:#fff}.datepicker table tr td.range,.datepicker table tr td.range.disabled,.datepicker table tr td.range.disabled:hover,.datepicker table tr td.range:hover{background:#eee;border-radius:0}.datepicker table tr td.range.today,.datepicker table tr td.range.today.disabled,.datepicker table tr td.range.today.disabled:hover,.datepicker table tr td.range.today:hover{background-color:#f3d17a;background-image:linear-gradient(to bottom,#f3c17a,#f3e97a);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);border-color:#f3e97a #f3e97a #edde34;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border-radius:0}.datepicker table tr td.range.today.active,.datepicker table tr td.range.today.disabled,.datepicker table tr td.range.today.disabled.active,.datepicker table tr td.range.today.disabled.disabled,.datepicker table tr td.range.today.disabled:active,.datepicker table tr td.range.today.disabled:hover,.datepicker table tr td.range.today.disabled:hover.active,.datepicker table tr td.range.today.disabled:hover.disabled,.datepicker table tr td.range.today.disabled:hover:active,.datepicker table tr td.range.today.disabled:hover:hover,.datepicker table tr td.range.today.disabled:hover[disabled],.datepicker table tr td.range.today.disabled[disabled],.datepicker table tr td.range.today:active,.datepicker table tr td.range.today:hover,.datepicker table tr td.range.today:hover.active,.datepicker table tr td.range.today:hover.disabled,.datepicker table tr td.range.today:hover:active,.datepicker table tr td.range.today:hover:hover,.datepicker table tr td.range.today:hover[disabled],.datepicker table tr td.range.today[disabled]{background-color:#f3e97a}.datepicker table tr td.range.today.active,.datepicker table tr td.range.today.disabled.active,.datepicker table tr td.range.today.disabled:active,.datepicker table tr td.range.today.disabled:hover.active,.datepicker table tr td.range.today.disabled:hover:active,.datepicker table tr td.range.today:active,.datepicker table tr td.range.today:hover.active,.datepicker table tr td.range.today:hover:active{background-color:#efe24b\9}.datepicker table tr td.selected,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected:hover{background-color:#9e9e9e;background-image:linear-gradient(to bottom,#b3b3b3,grey);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);border-color:grey grey #595959;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td.selected.active,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled.active,.datepicker table tr td.selected.disabled.disabled,.datepicker table tr td.selected.disabled:active,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected.disabled:hover.active,.datepicker table tr td.selected.disabled:hover.disabled,.datepicker table tr td.selected.disabled:hover:active,.datepicker table tr td.selected.disabled:hover:hover,.datepicker table tr td.selected.disabled:hover[disabled],.datepicker table tr td.selected.disabled[disabled],.datepicker table tr td.selected:active,.datepicker table tr td.selected:hover,.datepicker table tr td.selected:hover.active,.datepicker table tr td.selected:hover.disabled,.datepicker table tr td.selected:hover:active,.datepicker table tr td.selected:hover:hover,.datepicker table tr td.selected:hover[disabled],.datepicker table tr td.selected[disabled]{background-color:grey}.datepicker table tr td.selected.active,.datepicker table tr td.selected.disabled.active,.datepicker table tr td.selected.disabled:active,.datepicker table tr td.selected.disabled:hover.active,.datepicker table tr td.selected.disabled:hover:active,.datepicker table tr td.selected:active,.datepicker table tr td.selected:hover.active,.datepicker table tr td.selected:hover:active{background-color:#666\9}.datepicker table tr td.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active:hover{background-color:#006dcc;background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td.active.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled.disabled,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active.disabled:hover.active,.datepicker table tr td.active.disabled:hover.disabled,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active.disabled:hover:hover,.datepicker table tr td.active.disabled:hover[disabled],.datepicker table tr td.active.disabled[disabled],.datepicker table tr td.active:active,.datepicker table tr td.active:hover,.datepicker table tr td.active:hover.active,.datepicker table tr td.active:hover.disabled,.datepicker table tr td.active:hover:active,.datepicker table tr td.active:hover:hover,.datepicker table tr td.active:hover[disabled],.datepicker table tr td.active[disabled]{background-color:#04c}.datepicker table tr td.active.active,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover.active,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active:active,.datepicker table tr td.active:hover.active,.datepicker table tr td.active:hover:active{background-color:#039\9}.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.focused,.datepicker table tr td span:hover{background:#eee}.datepicker table tr td span.disabled,.datepicker table tr td span.disabled:hover{background:0 0;color:#999;cursor:default}.datepicker table tr td span.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active:hover{background-color:#006dcc;background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td span.active.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled.disabled,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled:hover.disabled,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active.disabled:hover:hover,.datepicker table tr td span.active.disabled:hover[disabled],.datepicker table tr td span.active.disabled[disabled],.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover.disabled,.datepicker table tr td span.active:hover:active,.datepicker table tr td span.active:hover:hover,.datepicker table tr td span.active:hover[disabled],.datepicker table tr td span.active[disabled]{background-color:#04c}.datepicker table tr td span.active.active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover.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:hover:active{background-color:#039\9}.datepicker table tr td span.new,.datepicker table tr td span.old{color:#999}.datepicker .datepicker-switch{width:145px}.datepicker .datepicker-switch,.datepicker .next,.datepicker .prev,.datepicker tfoot tr th{cursor:pointer}.datepicker .datepicker-switch:hover,.datepicker .next:hover,.datepicker .prev:hover,.datepicker tfoot tr th:hover{background:#eee}.datepicker .next.disabled,.datepicker .prev.disabled{visibility:hidden}.datepicker .cw{font-size:10px;width:12px;padding:0 2px 0 5px;vertical-align:middle}.input-append.date .add-on,.input-prepend.date .add-on{cursor:pointer}.input-append.date .add-on i,.input-prepend.date .add-on i{margin-top:3px}.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 .add-on{display:inline-block;width:auto;min-width:16px;height:18px;padding:4px 5px;font-weight:400;line-height:18px;text-align:center;text-shadow:0 1px 0 #fff;vertical-align:middle;background-color:#eee;border:1px solid #ccc;margin-left:-5px;margin-right:-5px}
@charset "UTF-8";
/* INPUTS */
html {
  --promo-card-box-shadow: 0 2px 4px -1px rgba(0,0,0,.14), 0 4px 5px 0 rgba(0,0,0,.08), 0 1px 10px 0 rgba(0,0,0,.06);
  --promo-card-box-shadow-hover: 0 5px 5px -3px rgba(0,0,0,.14), 0 8px 10px 1px rgba(0,0,0,.08), 0 3px 14px 2px rgba(0,0,0,.06);
}

.fs-12 {
  font-size: 0.75rem;
}

.t-strike {
  text-decoration: line-through;
}
.t-uppercase {
  text-transform: uppercase;
}

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

@font-face {
  font-family: "thompsons";
  src: url("../../fonts/thompsons.ttf?9bpwha") format("truetype"), url("../../fonts/thompsons.woff?9bpwha") format("woff"), url("../../fonts/thompsons.svg?9bpwha#thompsons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "thompsons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-airplane-landing:before {
  content: "\e900";
}

.icon-airplane-takeoff:before {
  content: "\e901";
}

.icon-calendar:before {
  content: "\e902";
}

.icon-chevron-left:before {
  content: "\e903";
}

.icon-chevron-right:before {
  content: "\e904";
}

.icon-email:before {
  content: "\e905";
}

.icon-headphones:before {
  content: "\e906";
}

.icon-home:before {
  content: "\e907";
}

.icon-magnify:before {
  content: "\e908";
}

.icon-message-text:before {
  content: "\e909";
}

.icon-phone:before {
  content: "\e90a";
}

.icon-pound-box:before {
  content: "\e90b";
}

.icon-send:before {
  content: "\e90c";
}

.icon-star:before {
  content: "\e90d";
}

.icon-whatsapp:before {
  content: "\e90e";
}

.icon-basket:before {
  content: "\e90f";
}

.icon-image-multiple:before {
  content: "\e910";
}

.icon-trending:before {
  content: "\e911";
}

.icon-early-bird:before {
  content: "\e912";
}

.icon-featured:before {
  content: "\e913";
}

.icon-hot-deals:before {
  content: "\e914";
}

.icon-last-minute-deals:before {
  content: "\e915";
}

.icon-top-destinations:before {
  content: "\e916";
}

.icon-top-seller:before {
  content: "\e917";
}

.icon-eye:before {
  content: "\e91a";
}

.icon-hourglass:before {
  content: "\e91b";
}

.icon-deals:before {
  content: "\e91c";
}

.icon-lock:before {
  content: "\e920";
}

.icon-open-new:before {
  content: "\e91d";
}

.icon-verified:before {
  content: "\e91f";
}

.icon-handshake:before {
  content: "\e91e";
}

.icon-basket:before {
  content: "\e90f";
}

/*!
 * Bootstrap v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #ffffff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #ffffff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

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

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: rgb(0, 86.1, 178.5);
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

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

textarea {
  overflow: auto;
  resize: vertical;
}

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

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

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

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

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

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 0.875em;
  font-weight: 400;
}

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

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

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

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

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

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #ffffff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1366px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: rgb(183.6, 218.04, 255);
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: rgb(122.4, 186.36, 255);
}

.table-hover .table-primary:hover {
  background-color: rgb(158.1, 204.84, 255);
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: rgb(158.1, 204.84, 255);
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: rgb(213.84, 216.36, 218.6);
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: rgb(178.56, 183.24, 187.4);
}

.table-hover .table-secondary:hover {
  background-color: rgb(200.3075090253, 203.6560288809, 206.6324909747);
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: rgb(200.3075090253, 203.6560288809, 206.6324909747);
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: rgb(194.8, 230.36, 202.92);
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: rgb(143.2, 209.24, 158.28);
}

.table-hover .table-success:hover {
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: rgb(190.04, 228.96, 235.12);
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: rgb(134.36, 206.64, 218.08);
}

.table-hover .table-info:hover {
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: rgb(255, 237.64, 185.56);
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: rgb(255, 222.76, 126.04);
}

.table-hover .table-warning:hover {
  background-color: rgb(255, 231.265, 160.06);
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: rgb(255, 231.265, 160.06);
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: rgb(245.2, 198.44, 202.92);
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: rgb(236.8, 149.96, 158.28);
}

.table-hover .table-danger:hover {
  background-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: rgb(253.04, 253.32, 253.6);
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: rgb(251.36, 251.88, 252.4);
}

.table-hover .table-light:hover {
  background-color: rgb(238.165, 240.57, 242.975);
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: rgb(238.165, 240.57, 242.975);
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: rgb(198.16, 199.84, 201.52);
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: rgb(149.44, 152.56, 155.68);
}

.table-hover .table-dark:hover {
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #ffffff;
  background-color: #343a40;
  border-color: rgb(69.1465517241, 77.125, 85.1034482759);
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #ffffff;
  background-color: #343a40;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: rgb(69.1465517241, 77.125, 85.1034482759);
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}

.form-control, .custom-form-control textarea, .custom-form-control select, .custom-form-control input.text, .SearchFormHolder .middleColumn select, .SearchFormHolder .middleColumn input {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control, .custom-form-control textarea, .custom-form-control select, .custom-form-control input.text, .SearchFormHolder .middleColumn select, .SearchFormHolder .middleColumn input {
    transition: none;
  }
}
.form-control::-ms-expand, .custom-form-control textarea::-ms-expand, .custom-form-control select::-ms-expand, .custom-form-control input.text::-ms-expand, .SearchFormHolder .middleColumn select::-ms-expand, .SearchFormHolder .middleColumn input::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus, .custom-form-control textarea:focus, .custom-form-control select:focus, .custom-form-control input.text:focus, .SearchFormHolder .middleColumn select:focus, .SearchFormHolder .middleColumn input:focus {
  color: #495057;
  background-color: #ffffff;
  border-color: rgb(127.5, 189, 255);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control::-moz-placeholder, .custom-form-control textarea::-moz-placeholder, .custom-form-control select::-moz-placeholder, .custom-form-control input.text::-moz-placeholder, .SearchFormHolder .middleColumn select::-moz-placeholder, .SearchFormHolder .middleColumn input::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder, .custom-form-control textarea::placeholder, .custom-form-control select::placeholder, .custom-form-control input.text::placeholder, .SearchFormHolder .middleColumn select::placeholder, .SearchFormHolder .middleColumn input::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .custom-form-control textarea:disabled, .custom-form-control select:disabled, .custom-form-control input.text:disabled, .SearchFormHolder .middleColumn select:disabled, .SearchFormHolder .middleColumn input:disabled, .form-control[readonly], .custom-form-control textarea[readonly], .custom-form-control select[readonly], .custom-form-control input[readonly].text, .SearchFormHolder .middleColumn select[readonly], .SearchFormHolder .middleColumn input[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type=date].form-control, .custom-form-control input[type=date].text, .SearchFormHolder .middleColumn input[type=date],
input[type=time].form-control,
.custom-form-control input[type=time].text,
.SearchFormHolder .middleColumn input[type=time],
input[type=datetime-local].form-control,
.custom-form-control input[type=datetime-local].text,
.SearchFormHolder .middleColumn input[type=datetime-local],
input[type=month].form-control,
.custom-form-control input[type=month].text,
.SearchFormHolder .middleColumn input[type=month] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control:-moz-focusring, .custom-form-control select:-moz-focusring, .SearchFormHolder .middleColumn select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
select.form-control:focus::-ms-value, .custom-form-control select:focus::-ms-value, .SearchFormHolder .middleColumn select:focus::-ms-value {
  color: #495057;
  background-color: #ffffff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], .custom-form-control select[size], .SearchFormHolder .middleColumn select[size], select.form-control[multiple], .custom-form-control select[multiple], .SearchFormHolder .middleColumn select[multiple] {
  height: auto;
}

textarea.form-control, .custom-form-control textarea {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #ffffff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}
.form-row > .col > .valid-tooltip, .form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .was-validated .custom-form-control textarea:valid, .custom-form-control .was-validated textarea:valid, .was-validated .custom-form-control select:valid, .custom-form-control .was-validated select:valid, .was-validated .custom-form-control input.text:valid, .custom-form-control .was-validated input.text:valid, .was-validated .SearchFormHolder .middleColumn select:valid, .SearchFormHolder .middleColumn .was-validated select:valid, .was-validated .SearchFormHolder .middleColumn input:valid, .SearchFormHolder .middleColumn .was-validated input:valid, .form-control.is-valid, .custom-form-control textarea.is-valid, .custom-form-control select.is-valid, .custom-form-control input.is-valid.text, .SearchFormHolder .middleColumn select.is-valid, .SearchFormHolder .middleColumn input.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .was-validated .custom-form-control textarea:valid:focus, .custom-form-control .was-validated textarea:valid:focus, .was-validated .custom-form-control select:valid:focus, .custom-form-control .was-validated select:valid:focus, .was-validated .custom-form-control input.text:valid:focus, .custom-form-control .was-validated input.text:valid:focus, .was-validated .SearchFormHolder .middleColumn select:valid:focus, .SearchFormHolder .middleColumn .was-validated select:valid:focus, .was-validated .SearchFormHolder .middleColumn input:valid:focus, .SearchFormHolder .middleColumn .was-validated input:valid:focus, .form-control.is-valid:focus, .custom-form-control textarea.is-valid:focus, .custom-form-control select.is-valid:focus, .custom-form-control input.is-valid.text:focus, .SearchFormHolder .middleColumn select.is-valid:focus, .SearchFormHolder .middleColumn input.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated select.form-control:valid, .was-validated .custom-form-control select:valid, .custom-form-control .was-validated select:valid, .was-validated .SearchFormHolder .middleColumn select:valid, .SearchFormHolder .middleColumn .was-validated select:valid, select.form-control.is-valid, .custom-form-control select.is-valid, .SearchFormHolder .middleColumn select.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:valid, .was-validated .custom-form-control textarea:valid, .custom-form-control .was-validated textarea:valid, textarea.form-control.is-valid, .custom-form-control textarea.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #ffffff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: rgb(51.6956521739, 206.3043478261, 87);
  background-color: rgb(51.6956521739, 206.3043478261, 87);
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #ffffff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}
.form-row > .col > .invalid-tooltip, .form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .was-validated .custom-form-control textarea:invalid, .custom-form-control .was-validated textarea:invalid, .was-validated .custom-form-control select:invalid, .custom-form-control .was-validated select:invalid, .was-validated .custom-form-control input.text:invalid, .custom-form-control .was-validated input.text:invalid, .was-validated .SearchFormHolder .middleColumn select:invalid, .SearchFormHolder .middleColumn .was-validated select:invalid, .was-validated .SearchFormHolder .middleColumn input:invalid, .SearchFormHolder .middleColumn .was-validated input:invalid, .form-control.is-invalid, .custom-form-control textarea.is-invalid, .custom-form-control select.is-invalid, .custom-form-control input.is-invalid.text, .SearchFormHolder .middleColumn select.is-invalid, .SearchFormHolder .middleColumn input.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .was-validated .custom-form-control textarea:invalid:focus, .custom-form-control .was-validated textarea:invalid:focus, .was-validated .custom-form-control select:invalid:focus, .custom-form-control .was-validated select:invalid:focus, .was-validated .custom-form-control input.text:invalid:focus, .custom-form-control .was-validated input.text:invalid:focus, .was-validated .SearchFormHolder .middleColumn select:invalid:focus, .SearchFormHolder .middleColumn .was-validated select:invalid:focus, .was-validated .SearchFormHolder .middleColumn input:invalid:focus, .SearchFormHolder .middleColumn .was-validated input:invalid:focus, .form-control.is-invalid:focus, .custom-form-control textarea.is-invalid:focus, .custom-form-control select.is-invalid:focus, .custom-form-control input.is-invalid.text:focus, .SearchFormHolder .middleColumn select.is-invalid:focus, .SearchFormHolder .middleColumn input.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated select.form-control:invalid, .was-validated .custom-form-control select:invalid, .custom-form-control .was-validated select:invalid, .was-validated .SearchFormHolder .middleColumn select:invalid, .SearchFormHolder .middleColumn .was-validated select:invalid, select.form-control.is-invalid, .custom-form-control select.is-invalid, .SearchFormHolder .middleColumn select.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:invalid, .was-validated .custom-form-control textarea:invalid, .custom-form-control .was-validated textarea:invalid, textarea.form-control.is-invalid, .custom-form-control textarea.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #ffffff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: rgb(227.5316455696, 96.4683544304, 109.0253164557);
  background-color: rgb(227.5316455696, 96.4683544304, 109.0253164557);
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control, .form-inline .custom-form-control textarea, .custom-form-control .form-inline textarea, .form-inline .custom-form-control select, .custom-form-control .form-inline select, .form-inline .custom-form-control input.text, .custom-form-control .form-inline input.text, .form-inline .SearchFormHolder .middleColumn select, .SearchFormHolder .middleColumn .form-inline select, .form-inline .SearchFormHolder .middleColumn input, .SearchFormHolder .middleColumn .form-inline input {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #ffffff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover {
  color: #ffffff;
  background-color: rgb(0, 104.55, 216.75);
  border-color: rgb(0, 98.4, 204);
}
.btn-primary:focus, .btn-primary.focus {
  color: #ffffff;
  background-color: rgb(0, 104.55, 216.75);
  border-color: rgb(0, 98.4, 204);
  box-shadow: 0 0 0 0.2rem rgba(38.25, 142.8, 255, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #ffffff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(0, 98.4, 204);
  border-color: rgb(0, 92.25, 191.25);
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38.25, 142.8, 255, 0.5);
}

.btn-secondary {
  color: #ffffff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #ffffff;
  background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #ffffff;
  background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  box-shadow: 0 0 0 0.2rem rgba(130.05, 137.7, 144.5, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #ffffff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  border-color: rgb(78.4506437768, 84.9881974249, 90.7993562232);
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(130.05, 137.7, 144.5, 0.5);
}

.btn-success {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #ffffff;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
}
.btn-success:focus, .btn-success.focus {
  color: #ffffff;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
  box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(30.1449275362, 125.8550724638, 52);
  border-color: rgb(27.6811594203, 115.5688405797, 47.75);
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
}

.btn-info {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #ffffff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
.btn-info:focus, .btn-info.focus {
  color: #ffffff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  border-color: rgb(15.9166666667, 112.1086956522, 127.3333333333);
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
}
.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
  box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: rgb(211, 158.25, 0);
  border-color: rgb(198.25, 148.6875, 0);
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
}

.btn-danger {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #ffffff;
  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
.btn-danger:focus, .btn-danger.focus {
  color: #ffffff;
  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  box-shadow: 0 0 0 0.2rem rgba(225.25, 83.3, 96.9, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  border-color: rgb(178.3481012658, 30.9018987342, 45.0284810127);
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225.25, 83.3, 96.9, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
}
.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
  box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: rgb(218.25, 223.5, 228.75);
  border-color: rgb(210.8125, 217.125, 223.4375);
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
}

.btn-dark {
  color: #ffffff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #ffffff;
  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
}
.btn-dark:focus, .btn-dark.focus {
  color: #ffffff;
  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
  box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #ffffff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(29.1379310345, 32.5, 35.8620689655);
  border-color: rgb(23.4224137931, 26.125, 28.8275862069);
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:hover {
  color: #ffffff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #ffffff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #ffffff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #ffffff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #ffffff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #ffffff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}
.btn-link:hover {
  color: rgb(0, 86.1, 178.5);
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.width {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.width {
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

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

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

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: rgb(21.6283783784, 24.25, 26.8716216216);
  text-decoration: none;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #ffffff;
  text-decoration: none;
  background-color: #007bff;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

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

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

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

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control, .custom-form-control .input-group > textarea, .custom-form-control .input-group > select, .custom-form-control .input-group > input.text, .SearchFormHolder .middleColumn .input-group > select, .SearchFormHolder .middleColumn .input-group > input,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control, .custom-form-control .input-group > textarea + .form-control, .custom-form-control .input-group > .form-control + textarea, .custom-form-control .input-group > textarea + textarea, .custom-form-control .input-group > select + .form-control, .custom-form-control .input-group > select + textarea, .custom-form-control .input-group > .form-control + select, .custom-form-control .input-group > textarea + select, .custom-form-control .input-group > select + select, .custom-form-control .input-group > input.text + .form-control, .custom-form-control .input-group > input.text + textarea, .custom-form-control .input-group > input.text + select, .custom-form-control .input-group > .form-control + input.text, .custom-form-control .input-group > textarea + input.text, .custom-form-control .input-group > select + input.text, .custom-form-control .input-group > input.text + input.text, .SearchFormHolder .middleColumn .input-group > select + .form-control, .SearchFormHolder .middleColumn .input-group > .form-control + select, .SearchFormHolder .middleColumn .input-group > select + select, .SearchFormHolder .middleColumn .input-group > input + .form-control, .SearchFormHolder .middleColumn .custom-form-control .input-group > input + textarea, .custom-form-control .SearchFormHolder .middleColumn .input-group > input + textarea, .SearchFormHolder .middleColumn .input-group > input + select, .SearchFormHolder .middleColumn .input-group > .form-control + input, .SearchFormHolder .middleColumn .custom-form-control .input-group > textarea + input, .custom-form-control .SearchFormHolder .middleColumn .input-group > textarea + input, .SearchFormHolder .middleColumn .input-group > select + input, .SearchFormHolder .middleColumn .input-group > input + input,
.input-group > .form-control + .custom-select,
.custom-form-control .input-group > textarea + .custom-select,
.custom-form-control .input-group > select + .custom-select,
.custom-form-control .input-group > input.text + .custom-select,
.SearchFormHolder .middleColumn .input-group > select + .custom-select,
.SearchFormHolder .middleColumn .input-group > input + .custom-select,
.input-group > .form-control + .custom-file,
.custom-form-control .input-group > textarea + .custom-file,
.custom-form-control .input-group > select + .custom-file,
.custom-form-control .input-group > input.text + .custom-file,
.SearchFormHolder .middleColumn .input-group > select + .custom-file,
.SearchFormHolder .middleColumn .input-group > input + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.custom-form-control .input-group > .form-control-plaintext + textarea,
.custom-form-control .input-group > .form-control-plaintext + select,
.custom-form-control .input-group > .form-control-plaintext + input.text,
.SearchFormHolder .middleColumn .input-group > .form-control-plaintext + select,
.SearchFormHolder .middleColumn .input-group > .form-control-plaintext + input,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.custom-form-control .input-group > .custom-select + textarea,
.custom-form-control .input-group > .custom-select + select,
.custom-form-control .input-group > .custom-select + input.text,
.SearchFormHolder .middleColumn .input-group > .custom-select + select,
.SearchFormHolder .middleColumn .input-group > .custom-select + input,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.custom-form-control .input-group > .custom-file + textarea,
.custom-form-control .input-group > .custom-file + select,
.custom-form-control .input-group > .custom-file + input.text,
.SearchFormHolder .middleColumn .input-group > .custom-file + select,
.SearchFormHolder .middleColumn .input-group > .custom-file + input,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:focus, .custom-form-control .input-group > textarea:focus, .custom-form-control .input-group > select:focus, .custom-form-control .input-group > input.text:focus, .SearchFormHolder .middleColumn .input-group > select:focus, .SearchFormHolder .middleColumn .input-group > input:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .form-control:not(:first-child), .custom-form-control .input-group > textarea:not(:first-child), .custom-form-control .input-group > select:not(:first-child), .custom-form-control .input-group > input.text:not(:first-child), .SearchFormHolder .middleColumn .input-group > select:not(:first-child), .SearchFormHolder .middleColumn .input-group > input:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: flex;
  align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group:not(.has-validation) > .form-control:not(:last-child), .custom-form-control .input-group:not(.has-validation) > textarea:not(:last-child), .custom-form-control .input-group:not(.has-validation) > select:not(:last-child), .custom-form-control .input-group:not(.has-validation) > input.text:not(:last-child), .SearchFormHolder .middleColumn .input-group:not(.has-validation) > select:not(:last-child), .SearchFormHolder .middleColumn .input-group:not(.has-validation) > input:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > .form-control:nth-last-child(n+3), .custom-form-control .input-group.has-validation > textarea:nth-last-child(n+3), .custom-form-control .input-group.has-validation > select:nth-last-child(n+3), .custom-form-control .input-group.has-validation > input.text:nth-last-child(n+3), .SearchFormHolder .middleColumn .input-group.has-validation > select:nth-last-child(n+3), .SearchFormHolder .middleColumn .input-group.has-validation > input:nth-last-child(n+3),
.input-group.has-validation > .custom-select:nth-last-child(n+3),
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label,
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}
.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea), .custom-form-control .input-group-lg > textarea:not(textarea), .custom-form-control .input-group-lg > select:not(textarea), .custom-form-control .input-group-lg > input.text:not(textarea), .SearchFormHolder .middleColumn .input-group-lg > select:not(textarea), .SearchFormHolder .middleColumn .input-group-lg > input:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control, .custom-form-control .input-group-lg > textarea, .custom-form-control .input-group-lg > select, .custom-form-control .input-group-lg > input.text, .SearchFormHolder .middleColumn .input-group-lg > select, .SearchFormHolder .middleColumn .input-group-lg > input,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea), .custom-form-control .input-group-sm > textarea:not(textarea), .custom-form-control .input-group-sm > select:not(textarea), .custom-form-control .input-group-sm > input.text:not(textarea), .SearchFormHolder .middleColumn .input-group-sm > select:not(textarea), .SearchFormHolder .middleColumn .input-group-sm > input:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control, .custom-form-control .input-group-sm > textarea, .custom-form-control .input-group-sm > select, .custom-form-control .input-group-sm > input.text, .SearchFormHolder .middleColumn .input-group-sm > select, .SearchFormHolder .middleColumn .input-group-sm > input,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .btn,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #ffffff;
  border-color: #007bff;
  background-color: #007bff;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: rgb(127.5, 189, 255);
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #ffffff;
  background-color: rgb(178.5, 215.4, 255);
  border-color: rgb(178.5, 215.4, 255);
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #ffffff;
  border: 1px solid #adb5bd;
}
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50%/50% 50% no-repeat;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23ffffff' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}
.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #ffffff;
  transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #ffffff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-select:focus {
  border-color: rgb(127.5, 189, 255);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #ffffff;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  display: none;
}
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: rgb(127.5, 189, 255);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #ffffff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-range:focus {
  outline: 0;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: rgb(178.5, 215.4, 255);
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: rgb(178.5, 215.4, 255);
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: rgb(178.5, 215.4, 255);
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}

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

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background-color: transparent;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #ffffff;
  border-color: #dee2e6 #dee2e6 #ffffff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #ffffff;
  background-color: #007bff;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50%/100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  flex-wrap: nowrap;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #ffffff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #ffffff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-text a {
  color: #ffffff;
}
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #ffffff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion {
  overflow-anchor: none;
}
.accordion > .card {
  overflow: hidden;
}
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: rgb(0, 86.1, 178.5);
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
  z-index: 3;
  color: #ffffff;
  background-color: #007bff;
  border-color: #007bff;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #ffffff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

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

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #ffffff;
  background-color: #007bff;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #ffffff;
  background-color: rgb(0, 98.4, 204);
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.badge-secondary {
  color: #ffffff;
  background-color: #6c757d;
}
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #ffffff;
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.badge-success {
  color: #ffffff;
  background-color: #28a745;
}
a.badge-success:hover, a.badge-success:focus {
  color: #ffffff;
  background-color: rgb(30.1449275362, 125.8550724638, 52);
}
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.badge-info {
  color: #ffffff;
  background-color: #17a2b8;
}
a.badge-info:hover, a.badge-info:focus {
  color: #ffffff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}
a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: rgb(211, 158.25, 0);
}
a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
  color: #ffffff;
  background-color: #dc3545;
}
a.badge-danger:hover, a.badge-danger:focus {
  color: #ffffff;
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}
a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: rgb(218.25, 223.5, 228.75);
}
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: #ffffff;
  background-color: #343a40;
}
a.badge-dark:hover, a.badge-dark:focus {
  color: #ffffff;
  background-color: rgb(29.1379310345, 32.5, 35.8620689655);
}
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}
@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: rgb(0, 63.96, 132.6);
  background-color: rgb(204, 228.6, 255);
  border-color: rgb(183.6, 218.04, 255);
}
.alert-primary hr {
  border-top-color: rgb(158.1, 204.84, 255);
}
.alert-primary .alert-link {
  color: rgb(0, 39.36, 81.6);
}

.alert-secondary {
  color: rgb(56.16, 60.84, 65);
  background-color: rgb(225.6, 227.4, 229);
  border-color: rgb(213.84, 216.36, 218.6);
}
.alert-secondary hr {
  border-top-color: rgb(200.3075090253, 203.6560288809, 206.6324909747);
}
.alert-secondary .alert-link {
  color: rgb(32.5205150215, 35.2305579399, 37.6394849785);
}

.alert-success {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(212, 237.4, 217.8);
  border-color: rgb(194.8, 230.36, 202.92);
}
.alert-success hr {
  border-top-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}
.alert-success .alert-link {
  color: rgb(10.9449275362, 45.6950724638, 18.88);
}

.alert-info {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(208.6, 236.4, 240.8);
  border-color: rgb(190.04, 228.96, 235.12);
}
.alert-info hr {
  border-top-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.alert-info .alert-link {
  color: rgb(6.2933333333, 44.3269565217, 50.3466666667);
}

.alert-warning {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 242.6, 205.4);
  border-color: rgb(255, 237.64, 185.56);
}
.alert-warning hr {
  border-top-color: rgb(255, 231.265, 160.06);
}
.alert-warning .alert-link {
  color: rgb(82.9625954198, 62.7912977099, 2.2774045802);
}

.alert-danger {
  color: rgb(114.4, 27.56, 35.88);
  background-color: rgb(248, 214.6, 217.8);
  border-color: rgb(245.2, 198.44, 202.92);
}
.alert-danger hr {
  border-top-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
}
.alert-danger .alert-link {
  color: rgb(73.3010989011, 17.6589010989, 22.9898901099);
}

.alert-light {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(253.6, 253.8, 254);
  border-color: rgb(253.04, 253.32, 253.6);
}
.alert-light hr {
  border-top-color: rgb(238.165, 240.57, 242.975);
}
.alert-light .alert-link {
  color: rgb(103.5492351816, 103.98, 104.4107648184);
}

.alert-dark {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(214.4, 215.6, 216.8);
  border-color: rgb(198.16, 199.84, 201.52);
}
.alert-dark hr {
  border-top-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.alert-dark .alert-link {
  color: rgb(4.1779310345, 4.66, 5.1420689655);
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  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);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #ffffff;
}
.list-group-item.active {
  z-index: 2;
  color: #ffffff;
  background-color: #007bff;
  border-color: #007bff;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: rgb(0, 63.96, 132.6);
  background-color: rgb(183.6, 218.04, 255);
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: rgb(0, 63.96, 132.6);
  background-color: rgb(158.1, 204.84, 255);
}
.list-group-item-primary.list-group-item-action.active {
  color: #ffffff;
  background-color: rgb(0, 63.96, 132.6);
  border-color: rgb(0, 63.96, 132.6);
}

.list-group-item-secondary {
  color: rgb(56.16, 60.84, 65);
  background-color: rgb(213.84, 216.36, 218.6);
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: rgb(56.16, 60.84, 65);
  background-color: rgb(200.3075090253, 203.6560288809, 206.6324909747);
}
.list-group-item-secondary.list-group-item-action.active {
  color: #ffffff;
  background-color: rgb(56.16, 60.84, 65);
  border-color: rgb(56.16, 60.84, 65);
}

.list-group-item-success {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(194.8, 230.36, 202.92);
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}
.list-group-item-success.list-group-item-action.active {
  color: #ffffff;
  background-color: rgb(20.8, 86.84, 35.88);
  border-color: rgb(20.8, 86.84, 35.88);
}

.list-group-item-info {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(190.04, 228.96, 235.12);
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.list-group-item-info.list-group-item-action.active {
  color: #ffffff;
  background-color: rgb(11.96, 84.24, 95.68);
  border-color: rgb(11.96, 84.24, 95.68);
}

.list-group-item-warning {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 237.64, 185.56);
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 231.265, 160.06);
}
.list-group-item-warning.list-group-item-action.active {
  color: #ffffff;
  background-color: rgb(132.6, 100.36, 3.64);
  border-color: rgb(132.6, 100.36, 3.64);
}

.list-group-item-danger {
  color: rgb(114.4, 27.56, 35.88);
  background-color: rgb(245.2, 198.44, 202.92);
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: rgb(114.4, 27.56, 35.88);
  background-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
}
.list-group-item-danger.list-group-item-action.active {
  color: #ffffff;
  background-color: rgb(114.4, 27.56, 35.88);
  border-color: rgb(114.4, 27.56, 35.88);
}

.list-group-item-light {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(253.04, 253.32, 253.6);
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(238.165, 240.57, 242.975);
}
.list-group-item-light.list-group-item-action.active {
  color: #ffffff;
  background-color: rgb(128.96, 129.48, 130);
  border-color: rgb(128.96, 129.48, 130);
}

.list-group-item-dark {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(198.16, 199.84, 201.52);
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.list-group-item-dark.list-group-item-action.active {
  color: #ffffff;
  background-color: rgb(27.04, 30.16, 33.28);
  border-color: rgb(27.04, 30.16, 33.28);
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.5;
}
.close:hover {
  color: #000000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.25rem;
}
.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}
.toast.showing {
  opacity: 1;
}
.toast.show {
  display: block;
  opacity: 1;
}
.toast.hide {
  display: none;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -moz-min-content;
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #ffffff;
  text-align: center;
  background-color: #000000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}
.bs-popover-top > .arrow, .bs-popover-auto[x-placement^=top] > .arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=top] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #ffffff;
}

.bs-popover-right, .bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}
.bs-popover-right > .arrow, .bs-popover-auto[x-placement^=right] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=right] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=right] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #ffffff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}
.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=bottom] > .arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #ffffff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid rgb(247.35, 247.35, 247.35);
}

.bs-popover-left, .bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}
.bs-popover-left > .arrow, .bs-popover-auto[x-placement^=left] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=left] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=left] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #ffffff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: rgb(247.35, 247.35, 247.35);
  border-bottom: 1px solid rgb(234.6, 234.6, 234.6);
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #ffffff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.8;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 61px;
  height: 61px;
  background: 50%/100% 100% no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23EFEFEF' x='0px' y='0px'  viewBox='0 0 477.175 477.175' style='enable-background:new 0 0 477.175 477.175;' xml:space='preserve'%3e%3cg%3e %3cpath d='M145.188,238.575l215.5-215.5c5.3-5.3,5.3-13.8,0-19.1s-13.8-5.3-19.1,0l-225.1,225.1c-5.3,5.3-5.3,13.8,0,19.1l225.1,225  c2.6,2.6,6.1,4,9.5,4s6.9-1.3,9.5-4c5.3-5.3,5.3-13.8,0-19.1L145.188,238.575z'/%3e%3c/g%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23EFEFEF' x='0px' y='0px'  viewBox='0 0 477.175 477.175' style='enable-background:new 0 0 477.175 477.175;'%3e%3cg%3e %3cpath d='M360.731,229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1,0s-5.3,13.8,0,19.1l215.5,215.5l-215.5,215.5  c-5.3,5.3-5.3,13.8,0,19.1c2.6,2.6,6.1,4,9.5,4c3.4,0,6.9-1.3,9.5-4l225.1-225.1C365.931,242.875,365.931,234.275,360.731,229.075z'/%3e%3c/g%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #ffffff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #ffffff;
  text-align: center;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentcolor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentcolor;
  border-radius: 50%;
  opacity: 0;
  animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    animation-duration: 1.5s;
  }
}
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: rgb(0, 98.4, 204) !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785) !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: rgb(30.1449275362, 125.8550724638, 52) !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667) !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: rgb(211, 158.25, 0) !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987) !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: rgb(218.25, 223.5, 228.75) !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: rgb(29.1379310345, 32.5, 35.8620689655) !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #ffffff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.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-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

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

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

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

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

.text-wrap {
  white-space: normal !important;
}

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

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

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

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

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #ffffff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: rgb(0, 86.1, 178.5) !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: rgb(72.5407725322, 78.5858369099, 83.9592274678) !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: rgb(25.2173913043, 105.2826086957, 43.5) !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: rgb(14.5, 102.1304347826, 116) !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: rgb(185.5, 139.125, 0) !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: rgb(167.4810126582, 29.0189873418, 42.2848101266) !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: rgb(203.375, 210.75, 218.125) !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: rgb(17.7068965517, 19.75, 21.7931034483) !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #ffffff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
.pl-half {
  padding-left: 7.5px !important;
}

.pr-half {
  padding-right: 7.5px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

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

.Front-End {
  padding-top: 7.25em;
  color: #656565;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 1366px) {
  .Front-End {
    padding-top: 6.25em;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #00bfe9;
  font-family: "Lato", sans-serif;
}

h4 {
  font-weight: 200;
}

img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

.LightBlue-Background {
  background: #00bfe9;
  padding: 30px;
  border-radius: 50%;
  margin-top: 40px;
}

.no-minHeight {
  min-height: 0px !important;
}

.margin-top {
  margin-top: 20px;
}

.HiddenText {
  display: none;
}

.Blue-Text {
  color: #00bfe9;
}

.selectContainer label {
  color: #00bfe9;
}

.TopOffers h1 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: #656565;
  font-size: 2rem;
}

.lazy {
  background-image: none;
  background-color: #f1f1fa;
}

header .fixed-top {
  box-shadow: 1px 3px 7px -1px rgba(0, 0, 0, 0.1);
}

.icon-after::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.smaller-h3 {
  font-weight: 500;
  font-size: 1.2em;
}

.filter-form .selectize-input {
  min-height: 46px;
}
.filter-form .selectize-input,
.filter-form .selectize-control.single .selectize-input.input-active {
  background-color: #f3f1f1;
}
.filter-form .selectize-control.multi .selectize-input [data-value] {
  background-image: linear-gradient(to bottom, white, white);
  background-color: #f3f1f1;
  color: #09c1ea;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.44);
  border: none;
}
.filter-form .selectize-control.plugin-remove_button [data-value] .remove {
  color: #09c1ea;
  border-left: none;
  padding-right: 10px;
  font-size: 17px;
  background-color: white;
  padding-top: 5px;
}
.filter-form .selectize-control.multi .selectize-input > div {
  padding: 4px 6px;
}
.filter-form input::-moz-placeholder {
  color: #8f9397;
}
.filter-form input::placeholder {
  color: #8f9397;
}
.filter-form input:not(.th-btn-solid) {
  width: 100%;
  padding: 10px 8px;
  border-radius: 6px;
  color: #8f9397;
  border: 1px solid #dee2e6;
}
.filter-form label {
  font-weight: 600;
}
@media (min-width: 1200px) {
  .filter-form #Form_FilterForm_PromoPackageDepartureFromDate_Holder,
  .filter-form #Form_FilterForm_PromoPackageDepartureDate_Holder {
    display: inline-block;
    width: 49%;
  }
}
.filter-form #Form_FilterForm_PromoPackagesNumberOfNightsMin_Holder,
.filter-form #Form_FilterForm_PromoPackagesNumberOfNightsMax_Holder,
.filter-form #Form_FilterTripForm_PromoPackagesNumberOfNightsMin_Holder,
.filter-form #Form_FilterTripForm_PromoPackagesNumberOfNightsMax_Holder,
.filter-form #Form_FilterNavForm_PromoPackagesNumberOfNightsMin_Holder,
.filter-form #Form_FilterNavForm_PromoPackagesNumberOfNightsMax_Holder,
.filter-form #Form_FilterNavForm_PromoPackagePriceMin_Holder,
.filter-form #Form_FilterNavForm_PromoPackagePriceMax_Holder,
.filter-form #Form_FilterForm_PromoPackagePriceMin_Holder,
.filter-form #Form_FilterForm_PromoPackagePriceMax_Holder,
.filter-form #Form_FilterTripForm_PromoPackagePriceMin_Holder,
.filter-form #Form_FilterTripForm_PromoPackagePriceMax_Holder {
  display: inline-block;
  width: 24%;
}
.filter-form .Form_FilterTripForm label,
.filter-form #Form_FilterNavForm label,
.filter-form #Form_FilterForm label {
  min-height: 21px;
}
.filter-form .Night-label,
.filter-form .Price-label {
  display: block;
  margin-bottom: 0px;
  color: rgb(9, 193, 234);
  margin-top: 10px;
  text-transform: uppercase;
}
.filter-form #steps-slider1,
.filter-form #steps-slider2,
.filter-form #steps-slider3,
.filter-form #steps-sliderNavPrice,
.filter-form #steps-sliderNavNights {
  margin-right: 5%;
  margin-left: 1%;
  width: 44%;
  display: inline-block;
}
.filter-form .noUi-horizontal {
  height: 9px;
}
.filter-form .noUi-horizontal .noUi-handle {
  width: 20px;
  height: 20px;
  border-radius: 100%;
}
.filter-form .noUi-horizontal .noUi-handle:focus {
  outline: none;
  border: 1px solid #52d1ed;
}
.filter-form .noUi-horizontal .noUi-connect {
  background: #52d1ed;
}
.filter-form .noUi-horizontal .noUi-handle:after,
.filter-form .noUi-horizontal .noUi-handle:before {
  content: none;
}
.filter-form .btn-toolbar {
  text-align: right;
  position: relative;
}
.filter-form .btn-toolbar .CollapseExtraFields {
  position: static;
  right: auto;
  top: auto;
}

#nav-trips.filter-form .btn-toolbar {
  text-align: right;
  position: relative;
}

.filter-form .nav-link {
  font-size: 18px;
}

.nav-search-form .find-btn {
  margin-top: 10px !important;
}

.CollapseExtraFields {
  padding-top: 0;
  right: 17px;
  position: absolute;
  top: 90px;
  color: rgb(0, 91, 171) !important;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}

.CustomCardPromoPackages img {
  width: auto;
}

.DestinationsMetro img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.left-yes {
  float: left;
}

.right-no {
  display: inline-block;
  float: left;
  left: 41px;
  position: relative;
}

.pl-13 {
  padding-left: 0;
}

.dropdown-menu {
  border-top: 4px solid #00bfe9;
}
.dropdown-menu a.dropdown-item:hover,
.dropdown-menu a.dropdown-item.active,
.dropdown-menu a.dropdown-item:focus {
  background: transparent !important;
  color: #00bfe9 !important;
}

.dropdown-menu {
  z-index: 1;
  top: 100%;
}
.dropdown-menu .dropdown-item {
  padding: 0.25rem 0.5rem;
}
.dropdown-menu a {
  font-size: 13px;
}
.dropdown-menu a svg {
  width: 1.15em;
  height: 1.15em;
  margin-bottom: 4px;
}

@media (min-width: 426px) {
  .dropdown-menu {
    margin-top: -5px;
  }
  .dropdown-menu:before {
    position: absolute;
    width: 17px;
    height: 17px;
    border-right: 0px #00bfe9 solid;
    border-bottom: 0px white solid;
    content: "";
    transform: rotate(45deg);
    top: -12px;
    left: 35%;
    z-index: -1;
    background: linear-gradient(135deg, #00bfe9 0%, #00bfe9 50%, #00bfe9 50%, #00bfe9 50%, #00bfe9 50%, rgba(0, 191, 233, 0) 51%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
  }
}
@media screen and (min-width: 1024px) {
  .pl-13 {
    padding-left: 7rem !important;
  }
}
input#MemberLoginForm_LoginForm_action_doLogin {
  width: 100%;
  background: none;
  border: 2px solid #09c1ea;
  border-radius: 4px;
  padding: 10px 30px;
  color: #09c1ea;
  text-transform: uppercase;
  margin: 10px;
  margin-left: 0px;
}

p#ForgotPassword a,
label.left {
  color: #09c1ea;
}

p#ForgotPassword a {
  line-height: 40px;
}

.btn-toolbar {
  display: block !important;
}

.login-form > .col-sm-4 {
  margin-top: 50px;
  text-align: center;
}

input#MemberLoginForm_LoginForm_Email,
input#MemberLoginForm_LoginForm_Password {
  border: 2px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
}

fieldset > div {
  text-align: left;
  margin-top: 10px;
}

main {
  min-height: 22vh;
}

@media (min-width: 992px) {
  #Form_FilterTripForm {
    display: flex;
    flex-wrap: wrap;
  }
  #Form_FilterTripForm fieldset {
    flex: 0 0 80%;
    max-width: 80%;
  }
  #Form_FilterTripForm .btn-toolbar {
    flex: 0 0 20%;
    max-width: 20%;
  }
  #Form_FilterTripForm .btn-toolbar .find-btn {
    font-size: 16px;
  }
  #Form_FilterTripForm .btn-toolbar .CollapseNavExtraFields {
    font-size: 30px;
    color: #005bab;
    padding: 20px;
  }
}
@media (max-width: 992px) {
  #Form_FilterTripForm .btn-toolbar {
    margin-top: 0px !important;
  }
}
.nav-search-form {
  border-top: 1px solid #d0d0d0;
}
.nav-search-form form {
  display: flex;
  flex-wrap: wrap;
}
.nav-search-form form fieldset {
  flex: 0 0 80%;
  max-width: 80%;
}
.nav-search-form form .btn-toolbar {
  flex: 0 0 20%;
  max-width: 20%;
}
.nav-search-form form .btn-toolbar .find-btn {
  font-size: 16px;
}
.nav-search-form form .btn-toolbar .CollapseNavExtraFields {
  font-size: 30px;
  color: #005bab;
  padding: 20px;
}

.nav-search-form .filter-form {
  margin-bottom: 0px;
}
.nav-search-form .tab-nav-links.active {
  color: #52d1ed;
}
.nav-search-form .tab-nav-links {
  color: #656565;
  padding: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

#Form_PopUpForm #Form_PopUpForm_enddate {
  margin-top: 18px;
}

.filter-form input.font-12 {
  padding: 13px 8px;
  font-size: 12.6px;
}

.promo-destination-brochure-info .image-with-text-Custom img {
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1366px) {
  .promo-destination-brochure-info .image-with-text-Custom img {
    height: 150px;
  }
}
.promo-destination-brochure-info .BrochureImage {
  overflow: hidden;
  margin-bottom: 0px;
}
.promo-destination-brochure-info .BrochureImage img {
  height: 350px;
  opacity: 1 !important;
}
@media screen and (max-width: 1366px) {
  .promo-destination-brochure-info .BrochureImage img {
    height: 150px;
  }
}
.promo-destination-brochure-info .BrochureImage .Title {
  position: absolute;
  display: inline-block;
  line-height: 1.2em;
  left: 1.2em !important;
  right: 2em;
  bottom: 1em !important;
  font-size: 1.7em;
  white-space: nowrap;
  color: #efefef;
  letter-spacing: -1px;
  text-overflow: ellipsis;
  overflow: hidden;
  z-index: 1;
}
.promo-destination-brochure-info .BrochureImage svg {
  width: 3em !important;
  height: 3em !important;
  right: 1em !important;
  bottom: 2em !important;
  cursor: pointer;
  z-index: 1;
}
.promo-destination-brochure-info .BrochureImage:hover img {
  transform: scale(1.2);
  transition-duration: 1s;
}
.promo-destination-brochure-info .BrochureImage::after {
  display: block;
  position: relative;
  background-image: linear-gradient(to bottom, transparent 0, #000 100%);
  margin-top: -80px;
  height: 80px;
  width: 100%;
  content: "";
}

.CampaignPackages .PromoName {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.CampaignPackages .PromoName a {
  color: #656565;
}
.CampaignPackages .CampaignPackages-items,
.CampaignPackages .ShowMoreCampaign {
  display: none;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* IE10+ specific styles go here */
  header .navbar-brand svg {
    margin-top: -20px !important;
  }
  .LightBlue-Background img {
    width: 28%;
  }
}
#Form_FilterTripForm .Price-label {
  margin-top: 0;
  margin-bottom: 8px;
}

@media (max-width: 1024px) and (min-width: 767px) {
  .footer-links h2 {
    font-size: 14px;
  }
}

.footer-links h2 {
  font-size: 16px;
  color: #00bfe9;
  font-weight: bold;
  text-transform: uppercase;
  line-break: normal;
}
.footer-links h2 a {
  color: #00bfe9 !important;
  font-weight: bold !important;
  text-transform: uppercase;
}
.footer-links p {
  font-size: 14px;
  color: #656565;
  line-break: normal;
}
.footer-links p a:hover {
  color: #00bfe9;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul a {
  line-break: anywhere;
  font-size: 14px;
  color: #656565;
  text-decoration: none;
}
.footer-links ul a:hover {
  color: #00bfe9;
}

.footer .social-icons a:hover svg path {
  fill: #00bfe9 !important;
}

.center-content-div {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.Highlights-Holder .center-content-div,
.Overview-Holder .center-content-div {
  justify-content: flex-end;
}

.btn-lg,
.btn-group-lg > .btn {
  font-size: 1em;
}

.enquire-page a.btn.btn-lg.btn-reverse-orange.icon-close.center-block, .enquire-page .btn-group-lg > a.btn.btn-reverse-orange.icon-close.center-block {
  padding: 8px 18px 8px 8px;
}
.enquire-page .btn-toolbar {
  margin-top: 30px;
}

.NoToIE {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000000;
  background: rgba(0, 0, 0, 0.3);
}
.NoToIE .TextBlock {
  padding: 30px 20px 30px 20px;
  text-align: center;
  margin-top: 40vh;
  background: white;
}
.NoToIE .TextBlock svg {
  width: 100px;
  height: 50px;
}
.NoToIE .TextBlock p {
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  div.noUi-target {
    max-width: 40%;
  }
  input#Form_FilterForm_PromoPackagesNumberOfNightsMax,
  input#Form_FilterForm_PromoPackagePriceMax {
    margin-left: 8px;
  }
}
input::-webkit-inner-spin-button {
  display: none;
}

.AllRegionsCarousel .carousel-control-prev {
  left: -7%;
}

.AllRegionsCarousel .carousel-control-next {
  right: -7%;
}

.mb-2rem {
  margin-bottom: 2rem;
}

.ui-datepicker {
  z-index: 3001 !important;
}

div.calendar-card {
  height: 580px;
  padding: 20px;
  box-shadow: -1px 3px 8px 5px rgb(224, 220, 224);
}

.media-form {
  background-color: #F2FBFE;
  padding: 0px 35px 35px 35px;
}
.media-form h1 {
  color: #656565 !important;
  font-weight: 300;
}
.media-form input[type=text], .media-form input[type=email] {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #C4C4C4;
  padding: 7px 15px;
  margin-top: 5px;
  margin-bottom: 10px;
}
.media-form #Form_MediaForm_FistName_Holder, .media-form #Form_MediaForm_Email_Holder {
  position: relative;
}
.media-form #Form_MediaForm_FistName_Holder::after, .media-form #Form_MediaForm_Email_Holder::after {
  content: "*";
  font-size: 20px;
  color: #F59000;
  top: 28px;
  right: -12px;
  position: absolute;
}
.media-form .RequiredField label.left::after {
  content: none;
}
.media-form .btn-toolbar {
  text-align: center;
}
.media-form .custom-switch {
  padding: 0;
}
.media-form input[type=submit] {
  text-transform: uppercase;
  width: 100%;
  font-size: 1.25em;
  max-width: 140px;
  border-radius: 3px;
  border: 1px solid #00AEF0;
  padding: 7px 15px 7px 37px;
  color: white;
  background: #00AEF0 url("../../../icons/standard/check-white.svg") left no-repeat;
  background-size: 1.25em 1.25em;
  background-position: 15px;
  fill: white !important;
  margin-top: 10px;
}
.media-form label {
  text-transform: uppercase;
}
.media-form label.left, .media-form label.right {
  margin: 0;
}
.media-form label, .media-form .RequiredField label.left {
  font-size: 1em;
  font-weight: 600;
  margin-top: 10px;
}
.media-form label.right {
  position: absolute;
  color: #09C4EE;
  text-transform: none;
}
.media-form #Form_MediaForm_TravelAgent_Holder {
  text-transform: uppercase !important;
}
.media-form .custom-switch .custom-control-label::after {
  background-color: white;
}

.newsletter-form {
  margin-top: 60px;
  padding: 30px;
  background: #F2FBFE;
  text-align: center;
}
.newsletter-form h1 {
  color: #00BFE9;
  text-align: center;
}
.newsletter-form p {
  text-align: center;
}
.newsletter-form input[type=text], .newsletter-form input[type=email] {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #C4C4C4;
  padding: 7px 15px;
  margin-top: 5px;
  margin-bottom: 10px;
}
.newsletter-form #Form_MediaForm_FistName_Holder, .newsletter-form #Form_MediaForm_Email_Holder {
  display: inline-block;
  width: 34%;
}
.newsletter-form #Form_MediaForm_FistName_Holder {
  margin-left: 11%;
}
.newsletter-form #Form_MediaForm_Email_Holder {
  margin-left: 4%;
  margin-right: 14%;
}
.newsletter-form .slider-btn .custom-switch {
  padding-left: 0;
}
.newsletter-form input[type=submit] {
  text-transform: uppercase;
  width: 100%;
  font-size: 1.25em;
  max-width: 140px;
  border-radius: 3px;
  border: 1px solid #00AEF0;
  padding: 7px 15px 7px 37px;
  color: white;
  background: #00AEF0 url("../../../icons/standard/check-white.svg") left no-repeat;
  background-size: 1.25em 1.25em;
  background-position: 15px;
  fill: white !important;
  margin-top: 10px;
}
.newsletter-form label {
  text-transform: uppercase;
}
.newsletter-form label.left, .newsletter-form label.right {
  margin: 0;
}
.newsletter-form label, .newsletter-form .RequiredField label.left {
  font-size: 1em;
  font-weight: 600;
  margin-top: 10px;
}
.newsletter-form .custom-switch .custom-control-label::after {
  background-color: white;
}
.newsletter-form #Form_MediaForm_FistName_Holder, .newsletter-form #Form_MediaForm_Email_Holder {
  position: relative;
}
.newsletter-form #Form_MediaForm_FistName_Holder::after, .newsletter-form #Form_MediaForm_Email_Holder::after {
  content: "*";
  font-size: 20px;
  color: #F59000;
  top: 28px;
  right: -12px;
  position: absolute;
}
.newsletter-form .RequiredField label.left::after {
  content: none !important;
}

#Form_MediaForm_recaptcha_Holder {
  margin-top: 10px;
}

.socailwidgte {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 350px;
}
.socailwidgte svg {
  width: 0.75em;
  height: 0.75em;
  margin-bottom: 3px;
}
.socailwidgte svg path {
  fill: white !important;
}
.socailwidgte .icon {
  padding: 0px 15px;
  border-radius: 3px;
  display: block;
}
.socailwidgte .facebook {
  background-color: #3D67B6;
}
.socailwidgte .twitter {
  background-color: #4EACF4;
}
.socailwidgte .pinterest {
  background-color: #C82025;
}
.socailwidgte .envelope {
  background-color: #7D7D7D;
}
.socailwidgte .message {
  background-color: #F4C000;
}
.socailwidgte .share {
  background-color: #8FCF3C;
}
.socailwidgte .at-style-responsive .at-share-btn {
  margin: 0 10px 5px !important;
}

.ProductInformation .socailwidgte {
  margin: 15px auto;
}
.ProductInformation .socailwidgte .icon {
  margin: 0px 3px;
}

.blog-entry.content-container .pagination {
  position: relative;
  text-align: center;
  margin-top: 36px;
  justify-content: center;
}
.blog-entry.content-container .pagination .p-num {
  padding: 10px 15px;
  color: #656565;
  border: 2px solid #656565;
  border-radius: 6px;
  font-size: 16px;
  margin: 0px 2.5px;
}
.blog-entry.content-container .pagination .p-num-link {
  padding: 10px 15px;
  color: #00BFE9;
  border: 2px solid #00BFE9;
  border-radius: 6px;
  font-size: 16px;
  margin: 0px 2.5px;
}
.blog-entry.content-container .pagination .next {
  right: 0;
}
.blog-entry.content-container .pagination .prev {
  left: 0;
}
.blog-entry.content-container .pagination .next, .blog-entry.content-container .pagination .prev {
  position: absolute;
  top: 0;
  padding: 10px 15px;
  color: #00BFE9;
  border: 2px solid #00BFE9;
  border-radius: 6px;
  font-size: 16px;
}
.blog-entry.content-container .pagination .next svg, .blog-entry.content-container .pagination .prev svg {
  width: 1em;
  height: 1em;
}
.blog-entry.content-container .pagination .p-num-link:hover, .blog-entry.content-container .pagination .next:hover, .blog-entry.content-container .pagination .prev:hover {
  text-decoration: none;
  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.75);
}

.post-summary {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.4);
}
.post-summary h2 {
  margin-bottom: 16px;
}
.post-summary .blogsummery-info {
  margin-bottom: 25px;
}
.post-summary .blogsummery-info p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-summary .post-image {
  margin: 0;
  position: relative;
}
.post-summary .post-image p.tags {
  line-height: 16px;
  position: absolute;
  margin-bottom: 0.5rem;
  padding: 0 28px;
  bottom: 0;
  text-transform: uppercase;
  z-index: 5;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  color: white;
  text-overflow: ellipsis;
}
.post-summary .post-image p.tags a {
  color: white;
}
.post-summary .post-image p.tags svg {
  width: 1em;
  height: 1em;
  margin-bottom: 2px;
  margin-right: 0.25em;
  position: relative;
}
.post-summary .post-image p.tags svg path {
  fill: white !important;
}
.post-summary .post-image:after {
  content: "";
  background: linear-gradient(rgba(0, 130, 170, 0) 50%, #000 100%);
  height: 200px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.post-summary .inner-post-summary {
  padding: 20px 32px;
}
.post-summary .inner-post-summary a.grey {
  color: #929191;
  text-transform: uppercase;
  position: relative;
  font-size: 14px;
}
.post-summary .inner-post-summary a.grey svg {
  margin-bottom: 2px;
  width: 1em;
  height: 1em;
}
.post-summary .inner-post-summary a.grey svg path {
  fill: #656565 !important;
}
.post-summary .inner-post-summary a.grey:hover {
  color: #7b7a7a;
}
.post-summary .inner-post-summary .text-right {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-summary .inner-post-summary h2, .post-summary .inner-post-summary p {
  text-align: center;
}
.post-summary .inner-post-summary h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  font-weight: bold;
}
.post-summary .inner-post-summary h2 a {
  color: #52d1ed;
}
.post-summary .inner-post-summary p {
  text-align: center;
}
.post-summary .read-more {
  color: #52d1ed;
  text-decoration: none;
}
.post-summary .read-more:hover {
  color: #52d1ed;
}
.post-summary .read-more svg {
  width: 1.25em;
  height: 1.25em;
  display: inline-block;
  margin-bottom: 2px;
  margin-right: 0.25em;
}
.post-summary .read-more svg path {
  fill: #52d1ed !important;
}

.blog-entry .post-image img {
  width: 100% !important;
}

.blog-entry .banner {
  margin-right: -15px;
  margin-left: -15px;
  position: relative;
  height: 35vh;
  min-height: 300px;
  background-size: cover;
}
.blog-entry .banner img {
  height: 30vh;
}
.blog-entry .banner__title {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: lighter;
  font-size: 4em;
}
@media (max-width: 768px) {
  .blog-entry .banner__title {
    font-size: 3em;
  }
}
@media (max-width: 450px) {
  .blog-entry .banner__title {
    font-size: 2.5em;
  }
}
.blog-entry .latest-pots {
  margin-top: 15px;
  margin-bottom: 20px;
}
.blog-entry h1, .blog-entry h2 {
  color: #00bfe9;
}
.blog-entry h2.secondary-header {
  color: #656565;
  font-weight: 300;
  margin-top: 15px;
}
.blog-entry p {
  position: relative;
}
.blog-entry a.grey {
  position: relative;
  color: #656565;
  text-transform: uppercase;
}
.blog-entry a.grey svg {
  width: 1em;
  height: 1em;
  margin-bottom: 2px;
}
.blog-entry .tag-header-float {
  margin-bottom: 10px;
}
.blog-entry .tags-pots {
  position: relative;
  text-transform: uppercase;
}
.blog-entry .tags-pots a {
  color: #52D1ED;
}
.blog-entry .tags-pots svg {
  width: 1em;
  height: 1em;
  margin-bottom: 2px;
  margin-right: 0.25em;
}
.blog-entry .tags-pots svg path {
  fill: #52D1ED !important;
}

.blog-categories, .newsLetters-style {
  padding-top: 25px;
}
.blog-categories h1, .newsLetters-style h1 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
}
.blog-categories .Categories-Banner, .newsLetters-style .Categories-Banner {
  position: relative;
  width: 100%;
  height: 250px;
  background-size: cover !important;
}
.blog-categories .Categories-Banner .ImageText, .newsLetters-style .Categories-Banner .ImageText {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-left: 42px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .blog-categories .Categories-Banner .ImageText, .newsLetters-style .Categories-Banner .ImageText {
    position: absolute;
    top: 50%;
    left: 50%;
    width: -moz-max-content;
    width: max-content;
    transform: translate(-50%, -50%);
    bottom: auto;
    padding-left: 0px;
    padding-bottom: 0px;
  }
}
.blog-categories .Categories-Banner .ImageText .Title, .newsLetters-style .Categories-Banner .ImageText .Title {
  font-size: 28px;
  color: white;
}
.blog-categories .Categories-Banner .ImageText .Title a, .newsLetters-style .Categories-Banner .ImageText .Title a {
  color: white;
}
.blog-categories .Categories-Banner .ImageText .Count, .newsLetters-style .Categories-Banner .ImageText .Count {
  color: white;
}
.blog-categories .Categories-Banner .ImageText .Count svg, .newsLetters-style .Categories-Banner .ImageText .Count svg {
  width: 1em;
  height: 1em;
}
.blog-categories .Categories-Banner .ImageText .Count svg path, .newsLetters-style .Categories-Banner .ImageText .Count svg path {
  fill: white !important;
}
.blog-categories .Categories-Banner .ImageText .card-read-more, .newsLetters-style .Categories-Banner .ImageText .card-read-more {
  position: absolute;
  bottom: 37%;
  right: 2%;
}
.blog-categories .Categories-Banner .ImageText .card-read-more svg, .newsLetters-style .Categories-Banner .ImageText .card-read-more svg {
  width: 3em;
  height: 3em;
}
.blog-categories .summery-category, .newsLetters-style .summery-category {
  margin-top: 0.75rem !important;
  width: 100%;
}
.blog-categories .row-style-post:before, .newsLetters-style .row-style-post:before {
  content: "";
  left: 2.5%;
  background-color: #ccc;
  height: 1px;
  width: 95%;
  top: 0;
  position: absolute;
}
.blog-categories .flex-end, .newsLetters-style .flex-end {
  justify-content: flex-end;
}
.blog-categories .row-style-post, .newsLetters-style .row-style-post {
  position: relative;
  margin-top: 20px;
}
.blog-categories .vertical-align-content, .newsLetters-style .vertical-align-content {
  display: flex;
  align-items: center;
}
.blog-categories h3, .newsLetters-style h3 {
  margin: 0px;
  font-size: 22px;
}
.blog-categories h3 a, .newsLetters-style h3 a {
  color: #52D1ED;
}
.blog-categories p, .newsLetters-style p {
  font-size: 14px;
  margin: 0px;
}
.blog-categories .read-more, .newsLetters-style .read-more {
  text-transform: uppercase;
  color: #52D1ED;
}
.blog-categories .read-more svg, .newsLetters-style .read-more svg {
  width: 1em;
  height: 1em;
}
.blog-categories .read-more svg path, .newsLetters-style .read-more svg path {
  fill: #52D1ED !important;
}
.blog-categories .read-more:hover, .newsLetters-style .read-more:hover {
  color: #13C1EA;
  text-decoration: none;
}

.blog-categories .summery-category h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 450px) {
  .blog-categories .summery-category h3 {
    width: 80%;
  }
}

.prev-arrow {
  height: 4em;
  width: 4em;
  background: url("../../../icons/standard/card-read-more-grey.svg ");
  background-size: contain !important;
  background-repeat: no-repeat !important;
  position: absolute;
  top: 6em;
  left: -6.5%;
  transform: rotate(180deg);
}

.next-arrow {
  height: 4em;
  width: 4em;
  background: url("../../../icons/standard/card-read-more-grey.svg ");
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-size: 4em 4em;
  position: absolute;
  top: 6em;
  right: -6.5%;
}

.blog-categories .prev-arrow {
  left: -4.5%;
}
@media (max-width: 1366px) and (min-width: 1280px) {
  .blog-categories .prev-arrow {
    height: 2.8em;
    width: 2.8em;
    background-size: 2.8em 2.8em;
    left: -2%;
  }
}
.blog-categories .next-arrow {
  right: -4.5%;
}
@media (max-width: 1366px) and (min-width: 1280px) {
  .blog-categories .next-arrow {
    height: 2.8em;
    width: 2.8em;
    background-size: 2.8em 2.8em;
    right: -2%;
  }
}

.brochure-content .image-gradient img {
  height: auto !important;
}

.side-brochure .BrochureImage, .side-brochure .RegionImage {
  position: relative;
  margin-bottom: 30px;
  background: black;
}
.side-brochure .BrochureImage img, .side-brochure .RegionImage img {
  opacity: 0.7;
  -o-object-fit: cover;
     object-fit: cover;
}
.side-brochure .BrochureImage .Title h1, .side-brochure .RegionImage .Title h1 {
  font-size: 1.8em;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 380px) {
  .side-brochure .BrochureImage .Title h1, .side-brochure .RegionImage .Title h1 {
    width: 77%;
  }
}
.side-brochure .BrochureImage .Title h1, .side-brochure .BrochureImage .Title h2, .side-brochure .RegionImage .Title h1, .side-brochure .RegionImage .Title h2 {
  color: white;
  margin: 0px;
}
.side-brochure .BrochureImage .Title h1.subtitle, .side-brochure .RegionImage .Title h1.subtitle {
  font-size: 1.8em;
  width: 96%;
  white-space: nowrap;
  letter-spacing: -1px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.side-brochure .BrochureImage .Title .type, .side-brochure .RegionImage .Title .type {
  font-size: 2.4em;
}
.side-brochure .BrochureImage .Title h2, .side-brochure .RegionImage .Title h2 {
  font-size: 1.4em;
}
.side-brochure .BrochureImage svg, .side-brochure .RegionImage svg {
  position: absolute;
  right: 30px;
  width: 3.5em;
  height: 3.5em;
}
.side-brochure .BrochureImage svg path, .side-brochure .RegionImage svg path {
  fill: white !important;
}
.side-brochure .BrochureImage a, .side-brochure .RegionImage a {
  position: relative;
}

.RelatedArticles h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: #656565;
  font-size: 2rem;
}
.RelatedArticles .top-border {
  padding-bottom: 15px;
  padding-right: 10px;
}
.RelatedArticles .top-border:before {
  content: "";
  border: 0.5px solid #ccc;
  position: absolute;
  top: 0px;
  right: 10px;
  width: 80%;
}
.RelatedArticles h4 {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1px;
  margin-top: 10px;
  font-size: 1.25em;
}
.RelatedArticles a.grey {
  text-transform: none !important;
}
.RelatedArticles a.grey svg {
  width: 1em;
  height: 1em;
  margin-right: -3px;
}
.RelatedArticles .ellipse {
  font-size: 2em;
  position: relative;
  bottom: 2px;
  margin-right: 3px;
}
.RelatedArticles .read-more {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translate(0, -50%);
  color: #00BFE9;
  font-size: 0.92em;
  font-weight: 500;
}
@media (width: 425px) {
  .RelatedArticles .read-more {
    transform: translate(0, 0);
  }
}
@media (width: 375px) {
  .RelatedArticles .read-more {
    margin-top: 3px;
  }
}
@media (width: 360px) {
  .RelatedArticles .read-more {
    margin-top: 6px;
  }
}
.RelatedArticles .read-more svg {
  width: 1.1em;
  height: 1.1em;
  margin-right: 3px;
  margin-bottom: 2px;
}
.RelatedArticles .read-more svg path {
  fill: #00BFE9 !important;
}

.brochure-section-blog .side-brochure .BrochureImage img, .brochure-section-blog .side-brochure .RegionImage img {
  height: 125px;
}
.brochure-section-blog .side-brochure .BrochureImage .Title, .brochure-section-blog .side-brochure .RegionImage .Title {
  padding-left: 30px;
}
.brochure-section-blog .side-brochure .BrochureImage .Title h2, .brochure-section-blog .side-brochure .RegionImage .Title h2 {
  font-size: 1.9em;
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brochure-section-blog .side-brochure .BrochureImage .Title h1, .brochure-section-blog .side-brochure .RegionImage .Title h1 {
  font-size: 2em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brochure-section-blog .side-brochure .BrochureImage svg, .brochure-section-blog .side-brochure .RegionImage svg {
  top: 50%;
  transform: translate(0, -50%);
}
.brochure-section-blog .side-brochure .brochure-info {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
}

.newsLetters-style {
  padding-top: 60px;
}
.newsLetters-style .read-more svg {
  width: 1.4em;
  height: 1.4em;
}
@media (max-width: 767px) {
  .newsLetters-style .read-more svg {
    margin-top: 13px;
    width: 1.6em;
    height: 1.6em;
  }
}
.newsLetters-style .read-more svg polygon {
  fill: #52d1ed;
}
.newsLetters-style .read-more svg rect {
  fill: #52d1ed;
}
.newsLetters-style .owl-nav.disabled {
  display: block !important;
}
@media (max-width: 767px) {
  .newsLetters-style h3 {
    -webkit-line-clamp: 1;
  }
}
.newsLetters-style h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .newsLetters-style .newsletter-img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100px;
  }
}
.newsLetters-style .next-arrow {
  right: -5.5%;
}

.newsletter-content h1 {
  padding-top: 30px;
}

@media (max-width: 1200px) {
  .newsLetters-style .Title {
    font-size: 20px !important;
  }
  .newsLetters-style .prev-arrow {
    width: 2em;
    height: 2em;
    left: -5%;
    background-size: 2em 2em !important;
  }
  .newsLetters-style .next-arrow {
    width: 2em;
    height: 2em;
    right: -2.5%;
    background-size: 2em 2em !important;
  }
}
@media (max-width: 767px) {
  .newsLetters-style .prev-arrow {
    width: 2em;
    height: 2em;
    background: url(../../../icons/standard/card-read-more-grey.svg);
    background-size: contain !important;
    background-repeat: no-repeat !important;
    left: -11%;
  }
  .newsLetters-style .next-arrow {
    width: 2em;
    height: 2em;
    background: url(../../../icons/standard/card-read-more-grey.svg);
    right: -11%;
    background-size: contain !important;
    background-repeat: no-repeat !important;
  }
}
#BookingFormsWrapper {
  background-color: white;
}

#BookingFormsHeading {
  color: #818181;
  font-family: "Raleway", san-serif;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 46px;
}

#BookingForms .booking-form-slide {
  width: 200px;
  min-height: 800px;
  height: auto;
  display: block;
}
#BookingForms .carousel-control-prev,
#BookingForms .carousel-control-next {
  cursor: pointer;
}
#BookingForms .carousel-control-prev .label,
#BookingForms .carousel-control-next .label {
  color: #818181;
  font-family: "Raleway", san-serif;
  font-weight: 200;
  font-style: italic;
  font-size: 26px;
  position: absolute;
}
#BookingForms .carousel-control-prev .label {
  left: 70%;
}
#BookingForms .carousel-control-next .label {
  right: 70%;
}

#TripQuickInfoWrapper {
  margin-bottom: 46px;
  font-family: "Raleway", sans-serif;
  font-size: 24px;
}

#TripQuickInfo {
  padding: 28px;
  background-color: #00adf0;
  color: white;
}
#TripQuickInfo .item {
  font-weight: 300;
  font-style: italic;
}
#TripQuickInfo .item div {
  font-style: normal;
  font-weight: 600;
}
#TripQuickInfo .item svg {
  margin-top: 15px;
}

#TripQuickInfoBookingBreakdown {
  background-color: #d0d0d0;
  padding: 28px;
  color: #656565;
}
#TripQuickInfoBookingBreakdown .item {
  font-weight: 300;
  font-style: italic;
}
#TripQuickInfoBookingBreakdown .item div {
  font-style: normal;
  font-weight: 600;
}
#TripQuickInfoBookingBreakdown .item svg {
  color: #656565;
  margin-top: 15px;
}

#PassengerAccordion .accordion-item {
  border-radius: 0px;
  border-top: 1px solid #efefef;
}
#PassengerAccordion .accordion-item .heading {
  padding: 0;
  margin: 0;
  color: #818181;
  cursor: pointer;
}
#PassengerAccordion .accordion-item .heading .user-icon {
  display: inline-block;
  width: 54px;
  height: 54px;
  background-color: #00adf0;
  color: white;
  margin-left: 15px;
  position: relative;
  float: left;
  margin-right: 15px;
}
#PassengerAccordion .accordion-item .heading .user-icon svg {
  position: absolute;
  left: 20px;
  top: 20px;
}
#PassengerAccordion .accordion-item .heading .name {
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding-top: 16px;
  line-height: 8px;
}
#PassengerAccordion .accordion-item .heading .subtitle {
  font-family: "proxima-nova-condensed", sans-serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}
#PassengerAccordion .accordion-item .actions a {
  display: block;
  position: relative;
  color: #818181;
}
#PassengerAccordion .accordion-item .actions a svg {
  color: #818181;
  position: absolute;
  top: 18px;
  right: 18px;
}
#PassengerAccordion hr {
  margin-top: 0px;
  margin-bottom: 28px;
  border-top: 1px solid #efefef;
}
#PassengerAccordion a.add-passenger {
  color: #818181;
  margin-bottom: 28px;
}

.footer {
  padding: 0px 15px;
  color: #818181;
}
.footer svg, .footer path {
  fill: #818181;
}
@media (min-width: 992px) {
  .footer .top {
    padding-top: 4em;
    padding-bottom: 4em;
    border-bottom: 1px solid #E7E7E7;
  }
  .footer .top h3 {
    color: #09C1EA;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5em;
  }
  .footer .top a {
    display: block;
    font-weight: normal;
    color: #656565;
    text-decoration: none;
    word-break: break-word;
  }
}
@media (max-width: 1199.98px) {
  .footer .top {
    text-align: center;
    padding: 4em 0em;
    border-bottom: 1px solid #E7E7E7;
  }
  .footer .top h3 {
    text-align: center;
    color: #09C1EA;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5em;
  }
  .footer .top a {
    display: block;
    font-weight: normal;
    color: #656565;
    text-decoration: none;
    word-break: break-word;
  }
}
.footer .icons-and-logos {
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .footer .icons-and-logos a, .footer .icons-and-logos p {
    margin-right: 0.5em;
    margin-left: 0.5em;
  }
}
@media (min-width: 576px) {
  .footer .icons-and-logos a, .footer .icons-and-logos p {
    margin-right: 1em;
  }
}
.footer .icons-and-logos a, .footer .icons-and-logos p {
  display: inline-block;
  width: 1em;
  height: 1em;
}
.footer .icons-and-logos a.larger, .footer .icons-and-logos p.larger {
  width: 5em;
  height: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .icons-and-logos .logo-icons {
  text-align: right;
}
.footer .icons-and-logos .logo-icons svg {
  width: 100%;
  height: auto;
}
@media (max-width: 767.98px) {
  .footer .bottom {
    padding: 3em 1em;
  }
}
@media (min-width: 576px) {
  .footer .bottom {
    padding: 3em;
  }
}
.footer .bottom {
  color: #CACBCC;
  background-color: #848484;
}
.footer .bottom h3 {
  color: #f8f6f6;
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0;
}
.footer .bottom h3.agent-login {
  color: #FFF;
}
.footer .bottom h3.agent-login a {
  color: #FFF;
}
.footer .bottom h3.agent-login a svg {
  display: inline-block;
  width: 0.8em;
  margin-left: 0.25em;
  vertical-align: top;
  margin-top: 0.2em;
}
.footer .bottom a {
  font-weight: normal;
  color: #f8f6f6;
}
.footer .bottom .payment-logos a {
  display: inline-block;
  width: 3em;
  height: 3em;
  margin-right: 2em;
}
.footer .bottom .t-and-c a {
  margin-right: 1em;
}

.ThreeColumnSliderWrapper .ThreeColumnSlider {
  background-size: cover;
  position: relative;
}
.ThreeColumnSliderWrapper .ThreeColumnSlider .Blurred-Background {
  padding: 4em 0em 10em 0;
  background-size: cover !important;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  border-left: 2px;
  filter: blur(1px);
}
.ThreeColumnSliderWrapper .ThreeColumnSlider .carousel-item {
  padding: 4em 0em 10em 0;
  padding-left: 12%;
  padding-right: 12%;
}
.ThreeColumnSliderWrapper .ThreeColumnSlider .slide-title {
  color: #ffffff;
  text-align: center;
  font-size: 3em;
  font-weight: 600;
  padding-bottom: 1em;
}
.ThreeColumnSliderWrapper .ThreeColumnSlider .slide-title a {
  color: #ffffff !important;
}
.ThreeColumnSliderWrapper .ThreeColumnSlider .slide-title a:hover {
  text-decoration: none;
}
@media (min-width: 992px) {
  .ThreeColumnSliderWrapper .ThreeColumnSlider .destination {
    text-align: right;
    min-height: 20px;
    max-height: 50px;
  }
}
.ThreeColumnSliderWrapper .carousel-control-prev,
.ThreeColumnSliderWrapper .carousel-control-next {
  top: 4.5em;
  bottom: unset;
  height: 4em;
  width: 4em;
  cursor: pointer;
}
.ThreeColumnSliderWrapper .carousel-control-prev-icon,
.ThreeColumnSliderWrapper .carousel-control-next-icon {
  width: 45px;
  height: 45px;
}
@media (min-width: 992px) {
  .ThreeColumnSliderWrapper .carousel-control-prev {
    left: 20%;
  }
  .ThreeColumnSliderWrapper .carousel-control-next {
    right: 20%;
  }
}
@media (max-width: 1199.98px) {
  .ThreeColumnSliderWrapper .carousel-control-prev {
    top: 5.5em;
    left: 11%;
  }
}
@media (max-width: 1199.98px) and (max-width: 800px) {
  .ThreeColumnSliderWrapper .carousel-control-prev {
    left: 5%;
  }
}
@media (max-width: 1199.98px) {
  .ThreeColumnSliderWrapper .carousel-control-next {
    top: 5.5em;
    right: 11%;
  }
}
@media (max-width: 1199.98px) and (max-width: 800px) {
  .ThreeColumnSliderWrapper .carousel-control-next {
    right: 5%;
  }
}

.ThreeColumnSliderContainer .ColumnHeader {
  margin-top: 50px;
  margin-bottom: 40px;
}

@media (min-width: 1600px) {
  .CustomxlBlock {
    display: block !important;
  }
}

@media (max-width: 1600px) {
  .CustomBreakpointThreeColumnSlider, .CustomWidthBeforeXL {
    flex: 0 0 33.33333%;
  }
}

.Small-top {
  font-size: 15px;
  position: absolute;
}

.CarouselDesktopButtons {
  position: absolute;
  top: 5%;
  right: 10%;
}

.ButtonsBlock .White-Text-Button {
  color: #ffffff;
  display: inline-block;
}
.ButtonsBlock .btn-orange {
  background: #f59000;
  color: #ffffff;
  display: inline;
}

.Left-Text {
  text-align: left;
}

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

.Absolute-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}
.Absolute-container h3 {
  color: #ffffff;
}

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

.Center-Text-City {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20% 0;
  flex-direction: column;
}
.Center-Text-City h2 {
  font-size: 2.5em;
}

.btn-orange {
  background-color: #f59000;
  color: white !important;
  text-transform: uppercase;
}
.btn-orange:hover {
  color: white !important;
  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.75);
}
.btn-orange path {
  fill: white !important;
}
.btn-orange img {
  width: 1.5em;
  display: inline-block;
  margin-bottom: 2px;
  margin-right: 1em;
}

.CampaignSlider .carousel-inner {
  background: black;
}
.CampaignSlider img.img-opacity {
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.7;
}
.CampaignSlider .carousel-caption {
  bottom: auto;
  top: 50%;
  transform: translate(0, -50%);
  line-height: 2em;
}
.CampaignSlider h5, .CampaignSlider p {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
}
.CampaignSlider h5 {
  font-size: 4em;
}
.CampaignSlider p {
  font-weight: lighter;
  font-size: 3.5em;
}
.CampaignSlider .btn {
  margin-top: 1.5em;
}
.CampaignSlider .btn-orange {
  padding: 12px 28px 12px 14px;
}
.CampaignSlider .carousel-item .img-responsive {
  max-height: 413px;
  width: 100%;
}

.DestinationPageBanner {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  position: relative;
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.DestinationPageBanner .Banner-RegionName {
  position: absolute;
  top: 50% !important;
  transform: translate(0, -50%);
  left: 0;
  width: 100%;
  padding: 0px 10%;
}
@media (min-width: 992px) {
  .DestinationPageBanner .Banner-RegionName .DestinationPageBanner__title {
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 4.5em;
  }
}
@media (max-width: 1199.98px) {
  .DestinationPageBanner .Banner-RegionName .DestinationPageBanner__title {
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2.5em;
  }
}
.DestinationPageBanner .Banner-RegionName.vertical-center {
  top: 40%;
}
.DestinationPageBanner .Banner-RegionName.vertical-center-tabs {
  top: 32%;
}

.PageBanner .PageBannerImage {
  height: 350px;
  background-repeat: no-repeat;
  background-size: cover;
}
.PageBanner .PageBannerContentRow {
  height: 350px;
}
.PageBanner .PageBannerContent h1 {
  color: #ffffff;
  font-weight: 100;
  font-size: 4.5em;
}

.CustomCardPromoPackages {
  box-shadow: 0px 0px 4px 0.5px rgb(235, 235, 235);
  padding: 18px;
  border: none;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .CustomCardPromoPackages > img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.CustomCardPromoPackages .collapse-holder.collapse:not(.show) {
  height: 45px !important;
  overflow: hidden;
  display: -webkit-box;
}
.CustomCardPromoPackages .collapse-holder {
  max-height: 75px !important;
  overflow: hidden;
  min-height: 75px !important;
}
.CustomCardPromoPackages .collapse-read-m-l.collapsed:before {
  content: "spac";
  color: transparent;
  white-space: pre;
  background-image: url(../../../icons/standard/ellipsis-read-more.svg);
  background-size: 22px 22px;
  height: 22px;
  width: 22px;
  background-position: 0;
}
.CustomCardPromoPackages .collapse-read-m-l {
  color: #005BAB !important;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
}
.CustomCardPromoPackages .collapse-read-m-l.collapsed:after {
  content: "SEE MORE INCLUSIONS";
}
.CustomCardPromoPackages .collapse-read-m-l:not(.collapsed):after {
  content: "SEE LESS INCLUSIONS";
}
.CustomCardPromoPackages .tag-background {
  display: block;
  position: absolute;
  width: 16em;
  height: 16em;
  top: -9em;
  right: -12em; /* IE 9 */ /* Safari prior 9.0 */
  transform: rotate(45deg); /* Standard syntax */
  background-position: 50% 94%;
  background-size: 2em;
  background-repeat: no-repeat;
  background-size: 27px;
}
@media screen and (min-width: 992px) and (max-width: 1366px) {
  .CustomCardPromoPackages .tag-background {
    top: -8.25em;
  }
}
.CustomCardPromoPackages .tag-background.featured {
  background-color: #52d1ed;
}
.CustomCardPromoPackages .tag-background.last-minute {
  background-color: #005bab;
}
.CustomCardPromoPackages .tag-background.trending {
  background-color: #005bab;
}
.CustomCardPromoPackages .tag-background.top-sellers {
  background-color: #52d1ed;
}
.CustomCardPromoPackages .tag-background.top-seller {
  background-color: #52d1ed;
}
.CustomCardPromoPackages .tag-background.early-bird {
  background-color: #005bab;
}
.CustomCardPromoPackages .tag-background.what-s-hot {
  background-color: #cc201a;
}
.CustomCardPromoPackages .tag-background.hot-deals {
  background-color: #cc201a;
}
.CustomCardPromoPackages .tag-background.last-minute-deals {
  background-color: #005bab;
}
.CustomCardPromoPackages .tag-background.hidden {
  display: none;
}
.CustomCardPromoPackages .tag-background .tag-icon {
  position: absolute;
  text-align: center;
  transform: rotate(-45deg);
}
.CustomCardPromoPackages .tag-background .tag-text {
  text-transform: uppercase;
  color: #ffffff;
  position: absolute;
  left: -65px;
  right: 0;
  bottom: 4px;
  display: block;
  text-align: center;
  font-size: 14px;
}
.CustomCardPromoPackages .tag-background svg {
  transform: rotate(0deg);
  bottom: 1.5em;
  left: 5.18em;
}
.CustomCardPromoPackages .btn-orange {
  margin-top: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  color: white;
}
.CustomCardPromoPackages .btn-orange svg {
  width: 15px;
  height: 15px;
}
.CustomCardPromoPackages .btn-orange path {
  fill: #ffffff !important;
}

.PromoPackageSlider {
  background: #f8f6f6;
}
.PromoPackageSlider .CustomCardPromoPackages h2 {
  font-size: 1.2em;
  margin-top: 20px;
  text-transform: uppercase;
}
.PromoPackageSlider .CustomCardPromoPackages .inclusions-button {
  color: #005aaa;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.7em;
}

.PricingBlock-PromoPages {
  color: blue;
}
.PricingBlock-PromoPages .SpanMedTextBlue {
  font-size: 1em !important;
  color: #00BFE9 !important;
  font-weight: bold !important;
}
.PricingBlock-PromoPages .SpanLargeTextBlue {
  font-size: 2.5em !important;
  color: #00BFE9 !important;
  font-weight: bold !important;
  line-height: 0.8em;
}
.PricingBlock-PromoPages .SpanSmallTextBlue {
  font-size: 0.9em !important;
  text-transform: lowercase;
  color: #00BFE9 !important;
}

#CampaignSlider01 .btn-orange svg {
  width: 1.15em !important;
  height: 1.15em !important;
  margin-right: 10px;
}

.CampaignLandingPage h1 {
  font-weight: bold !important;
}

@media (max-width: 1200px) {
  .PromoPackageSlider {
    padding-top: 0px !important;
  }
}
header {
  height: 7.25em;
  background-color: #ffffff;
  display: flex;
  flex-flow: column;
}
@media screen and (max-width: 1366px) {
  header {
    height: 6.25em;
  }
}
header.show-breadcrumbs {
  height: 11em;
}
header .navbar {
  height: 7.25em;
  background-color: #ffffff;
}
@media screen and (max-width: 1366px) {
  header .navbar {
    height: 6.25em;
  }
  header .navbar .navbar-main .nav-item {
    padding-bottom: 6px;
  }
}
header .navbar-brand {
  position: absolute;
  min-width: 5em;
  max-width: 10em;
  width: 16.6667%;
  top: 0;
}
@media screen and (max-width: 1366px) {
  header .navbar-brand {
    width: 10%;
  }
}
header .navbar-brand svg {
  width: 90%;
  margin-top: 10px;
}
header .navbar-expand .navbar-nav .dropdown-menu {
  top: 65%;
}
header .nav-link {
  padding-top: 0;
  white-space: nowrap;
}
header .navbar-top {
  flex-direction: row;
  color: #00adf0;
  position: absolute;
  right: 2em;
  top: 1em;
  text-transform: uppercase;
  font-size: 0.9em;
}
header .navbar-top a {
  color: #00adf0 !important;
}
header .navbar-top svg {
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.3em;
  margin-bottom: 0.2em;
}
@media (max-width: 768px) {
  header .navbar-top svg {
    width: 1em;
    height: 1em;
  }
}
header .navbar-top svg.payment-thumb {
  width: 3em;
  height: 3em;
  border-radius: 2em;
}
header .navbar-top svg.terms {
  margin-left: 1em;
  margin-right: 1em;
}
header .navbar-top .nav-item {
  margin-right: 1em;
  line-height: 2;
}
header .navbar-top .btn:focus {
  box-shadow: none;
}
header .navbar-top .btn-enquire-now {
  color: #00adf0 !important;
  text-transform: uppercase;
  font-size: inherit;
  padding-right: 0;
  padding-top: 0;
  border: none;
  background: transparent;
}
header .navbar-main {
  background: white;
  position: absolute;
  padding-left: 10px;
  right: 1em;
  top: 4.8em;
  text-transform: uppercase;
  font-size: 0.9em;
}
@media screen and (max-width: 1366px) {
  header .navbar-main {
    top: 3.8em;
    background: none;
  }
}
header .navbar-main .nav-item {
  color: #757575;
  text-transform: uppercase;
}
header .navbar-main .nav-item a {
  color: #757575;
}
header .navbar-main .nav-item.active, header .navbar-main .nav-item.current {
  border-bottom: 4px solid #00bfe9;
}
header .navbar-main .nav-item.active a.active, header .navbar-main .nav-item.current a.active {
  color: white;
}
header .navbar-main .dropdown-menu {
  text-transform: none;
  z-index: 99999;
}
header .navbar-main .dropdown-menu img {
  width: 1em;
  height: 1em;
}
header .navbar-main .nav-item {
  padding-bottom: 0.8rem;
}
header .search-item {
  margin-left: 1em;
  min-width: 2.5em;
  width: 2.5em;
  max-width: 3em;
}
header .navbar-toggler {
  position: absolute;
  right: 1.44em;
  top: 2.5em;
  width: 1.2em;
  height: 1.2em;
  padding: 0;
  border: 0;
  z-index: 9999;
}
header .breadcrumbs {
  height: 3em;
  background-color: #f8f6f6;
  order: 2;
  padding-top: 0.6em;
  padding-left: 1em;
}
header .breadcrumbs a {
  color: #00adf0;
}
@media (max-width: 767.98px) {
  header .navbar-collapse.show .navbar-main, header .navbar-collapse.collapsing .navbar-main {
    position: static;
    right: unset;
    top: unset;
    margin-top: 2.4em;
    background-color: white;
    border: 1px solid lightgray;
    padding: 15px;
  }
  header .navbar-collapse.show .navbar-main .nav-item.active, header .navbar-collapse.show .navbar-main .nav-item.current, header .navbar-collapse.collapsing .navbar-main .nav-item.active, header .navbar-collapse.collapsing .navbar-main .nav-item.current {
    margin-bottom: 1em;
  }
  header .breadcrumbs {
    padding-top: 3.4em;
    background-color: white;
  }
}

.nav-search-form {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: white;
}
.nav-search-form fieldset {
  width: 79%;
  display: inline;
}
.nav-search-form .btn-toolbar {
  display: inline-block !important;
  width: 20%;
}

.dropdown-item {
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-icon {
  background: url("../../../icons/standard/magnifying-glass-light-blue.svg") left no-repeat;
  background-position: 8%;
  background-size: 1.5em 1.5em;
  height: 25px;
}

.fixed-top .nav-link {
  padding-bottom: 0.55rem !important;
}

.extra-top-info .dropdown-toggle {
  padding-left: 6px;
  padding-right: 6px;
}
.extra-top-info .dropdown-toggle svg path {
  fill: #00bfe9 !important;
}
@media (max-width: 425px) {
  .extra-top-info .dropdown-toggle {
    padding-left: 3px;
    padding-right: 3px;
  }
}
@media (max-width: 425px) {
  .extra-top-info .dropdown-toggle:after {
    content: none;
  }
}
.extra-top-info .edge {
  right: 0px !important;
}

.navbar-bottom {
  position: absolute;
  left: 12.5em;
  top: 4.5em;
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

@media (max-width: 1366px) and (min-width: 767px) {
  .extra-top-info .navbar-toggler {
    position: relative;
    right: 0;
    top: 0;
  }
}
@media (max-width: 1366px) {
  li.nav-item > a > i.th-icon {
    font-size: 0.2rem !important;
  }
}
@media (max-width: 767px) {
  .extra-top-info .navbar-toggler {
    position: absolute;
    right: -0.2em !important;
    top: 2.75em;
  }
}
@media (max-width: 450px) {
  .extra-top-info .nav-item {
    margin: 0px !important;
  }
  .extra-top-info .edge {
    right: 0px !important;
  }
  .navbar-bottom {
    left: 1.5em;
    top: 3.5em;
  }
}
.top-items-nav {
  position: absolute !important;
  left: auto;
}

.visa-color-nav svg, .mastercard-color-nav svg, .american-express-brands-nav svg {
  width: 2.5em !important;
  height: 2.5em !important;
  border-radius: 50px;
}

.menu-terms-nav {
  padding-left: 14px !important;
}
.menu-terms-nav svg {
  margin-left: 4px;
  margin-right: 11px;
  width: 1.2em;
  height: 1.2em;
}

.american-express-brands-nav svg {
  padding: 3px;
  background-color: #1CA8E3;
}
.american-express-brands-nav svg path {
  fill: white !important;
}

.extra-top-info .show .dropdown-toggle {
  background: rgba(0, 202, 253, 0.15);
}
.extra-top-info .show .dropdown-menu {
  z-index: 10000;
  margin-top: 0 !important;
}

.top-items-nav:before {
  content: none !important;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  z-index: 99999999999;
  border-right: 1px solid rgba(0, 0, 0, 0.095);
}
.sidenav .card {
  background-color: white;
  background-clip: border-box;
  border: none;
  border-radius: 0;
}
.sidenav .card .card-body {
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.sidenav .card h3 .arrow-nav {
  position: absolute;
  top: 50%;
  right: 6px;
  transition: transform 0.5s;
  animation: fade 0.5s;
  transition-timing-function: ease;
}
.sidenav .card h3 .arrow-nav svg {
  width: 2em;
  height: 2em;
}
.sidenav .card h3 .btn.collapsed .arrow-nav {
  transform: translate(0, -50%) rotate(90deg);
}
.sidenav .card h3 .btn.collapsed .arrow-nav svg path {
  fill: rgba(0, 0, 0, 0.5);
}
.sidenav .card h3 .btn {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
}
.sidenav .card h3 .btn .arrow-nav {
  transform: translate(0, -50%) rotate(270deg);
}
.sidenav .card h3 .btn .arrow-nav svg path {
  fill: #00BFE9;
}
.sidenav .card .card-header {
  position: relative;
  background-color: white;
  padding: 0.4rem 1.25rem;
}
.sidenav .card .card-body a {
  padding: 8px 8px 8px 12px;
  font-size: 14px;
}
.sidenav .card .card-body a.active {
  background-color: white !important;
  color: #00BFE9 !important;
}
.sidenav div.current {
  background-color: rgba(14, 177, 255, 0.54);
}
.sidenav div.current a {
  color: white !important;
}
.sidenav .card-header.current {
  background-color: rgba(14, 177, 255, 0.54);
}
.sidenav .card-header.current .btn.collapsed .arrow-nav svg path {
  fill: white;
}
.sidenav .card-header.current .btn {
  color: white;
}
.sidenav .card-header.current .btn .arrow-nav svg path {
  fill: white;
}
.sidenav .navbar-brand-mobile {
  position: absolute;
  left: -12px;
  top: 0;
}
.sidenav .navbar-brand-mobile svg {
  width: 6em;
  height: 4em;
}
.sidenav .extra-info-nav-collapse .btn {
  color: #00BFE9 !important;
}
.sidenav .extra-info-nav-collapse .btn svg {
  width: 1em;
  margin-right: 2px;
}
.sidenav .extra-info-nav-collapse .btn .arrow-nav svg path {
  fill: #00BFE9 !important;
}
.sidenav .visa-color-nav svg, .sidenav .mastercard-color-nav svg, .sidenav .american-express-brands-nav svg {
  width: 2.5em;
  height: 2.5em;
  border-radius: 50px;
  margin-right: 3px;
}
.sidenav .menu-terms-nav {
  padding-left: 14px !important;
}
.sidenav .menu-terms-nav svg {
  margin-left: 4px;
  margin-right: 14px;
  width: 1.2em;
  height: 1.2em;
}
.sidenav .american-express-brands-nav svg {
  padding: 3px;
  background-color: #1CA8E3;
}
.sidenav .american-express-brands-nav svg path {
  fill: white !important;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  display: block;
  transition: 0.3s;
}
.sidenav a svg {
  width: 1.2em;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.navbar-bottom-mobile {
  z-index: -1;
  position: absolute;
  bottom: 0;
  display: none;
  padding-bottom: 4px;
  font-size: 12px;
  text-transform: uppercase;
}
.navbar-bottom-mobile .inner-bottom {
  padding-right: 60px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.navbar-bottom-mobile .inner-bottom svg {
  width: 1.5em;
  margin-bottom: 2px;
}
.navbar-bottom-mobile a {
  color: #656565;
}
.navbar-bottom-mobile span.active a {
  color: #1CA8E3 !important;
}
@media (max-width: 1200px) and (min-width: 768px) and (max-width: 1024px) {
  .navbar-bottom-mobile .inner-bottom {
    padding: 0px 10px 0px 0px;
  }
}

@media (min-width: 1366px) {
  .navbar-expand-xl .navbar-collapse {
    display: none;
    flex-basis: auto;
  }
}
@media (min-width: 1336px) {
  .navbar-expand-xl .navbar-toggler {
    display: block;
  }
}
@media (max-width: 1200px) {
  .d-nav-none {
    display: none !important;
  }
}
.mailchimp-notice {
  margin: auto;
  text-align: center;
  height: 50px;
  width: 50vw;
  background-color: #fbd9d9;
  position: relative;
  z-index: 3000;
  border: 2px solid #FF5722;
  border-radius: 5px;
  line-height: 24px;
  color: #FF5722;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.4);
}

.mailchimp-notice p {
  line-height: 44px;
  margin-left: 20px;
  font-family: Lato;
}

.PromoPackageSlider {
  position: relative;
}
.PromoPackageSlider .Themes {
  position: absolute;
  bottom: 0;
  color: white;
  padding-bottom: 15px;
  padding-left: 15px;
}
.PromoPackageSlider .Themes svg {
  width: 20px;
  height: 20px;
}
.PromoPackageSlider .Themes svg path {
  fill: white !important;
}

.th-meta__item {
  flex-wrap: wrap;
}

li.nav-item > a > i.th-icon::before {
  font-size: 1rem;
  top: 3px;
  position: relative;
}

.col.col-lg-2.sidebar-padding.lazyloaded {
  max-width: 14%;
}

.sidebar-padding {
  margin: 0rem 1.75rem 3rem 0rem;
  margin: auto;
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 767px) {
  .col.col-lg-2.sidebar-padding.lazyloaded {
    max-width: 11%;
  }
  .sidebar-padding {
    margin: 0rem 1.75rem 3rem 0rem;
    margin: auto;
    margin-bottom: 1.25rem;
  }
}
@media screen and (max-width: 580px) {
  li.nav-item.link {
    display: none;
  }
}
.tabs-row {
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.14), 0 4px 5px 0 rgba(0, 0, 0, 0.08), 0 1px 10px 0 rgba(0, 0, 0, 0.06);
}
.tabs-row a {
  color: #00adf0;
}
.tabs-row svg {
  /* Firefox */
  /* WebKit */
  /* Opera */
  /* Standard */
  transition: all 0.33s ease;
}
.tabs-row .Tabs {
  padding: 0px 0px 0px 0px;
}
.tabs-row .Tabs .nav-tabs a {
  text-transform: uppercase;
  padding: 13px 30px;
  margin: 0;
  font-size: 18px;
}
.tabs-row .chevron {
  float: right;
}
.tabs-row .BrochureDownloadSVG {
  float: right;
}
.tabs-row .BrochureDownloadSVG svg {
  width: 1.5em;
  height: 1.5em;
}
.tabs-row .BrochureDownloadSVG svg path {
  fill: #00adf0 !important;
}
.tabs-row .BrochureDownloadSVG svg polygon {
  fill: #00adf0 !important;
}
.tabs-row .BrochureDownloadSVG svg rect {
  fill: #00adf0 !important;
}
.tabs-row .Facts-Holder p a {
  text-transform: uppercase;
}
.tabs-row .Tab-Header h1, .tabs-row .Tab-Header h2 {
  color: #9b9b9b;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 480px) {
  .tabs-row .Tab-Header h1, .tabs-row .Tab-Header h2 {
    font-size: 2rem;
    font-weight: 300;
  }
}
.tabs-row .Download-Item {
  border-bottom: 1px solid #E9E9E9;
  padding: 20px 0px 20px 0px;
}
.tabs-row .Download-Item p {
  margin-bottom: 0px;
  text-transform: uppercase;
}
.tabs-row .Download-Item h4 {
  font-weight: bold;
}
.tabs-row .Download-Item .Brochure-FileSize {
  padding-left: 5px;
  font-size: 0.7em;
  color: #9b9b9b;
}
.tabs-row .BrochureSVG svg {
  width: 1.3em;
  height: 1.3em;
}
.tabs-row .BrochureSVG svg path {
  fill: #00adf0 !important;
}
@media (min-width: 768px) {
  .tabs-row {
    margin-top: -60px;
  }
  .tabs-row nav {
    background: #ffffff;
  }
}
.tabs-row .tab-content {
  z-index: 99;
  width: 100%;
}
.tabs-row #nav-tabContent {
  box-shadow: 0px 0px 26px -6px rgba(0, 0, 0, 0.75);
}
.tabs-row .nav-tabs .nav-item {
  border: none;
  background: none;
  color: #818181;
}
.tabs-row .nav-tabs .active {
  border-bottom: 4px solid #00adf0;
}
.tabs-row .nav-itineraryInfo-tab, .tabs-row .active {
  z-index: 900;
}
.tabs-row .Facts-dropdown {
  display: block;
  padding: 15px 30px;
  border: 1px solid #EAE8E9;
  color: #00adf0;
}
.tabs-row .tab-option {
  background: none;
}
.tabs-row .tab-option.show {
  background: none !important;
  border: none;
}
.tabs-row .tab-option.show svg {
  transform: rotate(-180deg);
}
.tabs-row .tab-option.collapse {
  background: #efefef;
}
.tabs-row .tab-option.collapsing {
  border: none;
}
.tabs-row .tab-option.collapsing svg {
  transform: rotate(-180deg);
}
.tabs-row .tab-option.collapsing.collapsed svg {
  transform: rotate(0deg);
}
.tabs-row .Facts-Content {
  border: 1px solid #9b9b9b;
}
.tabs-row .Facts-Holder p {
  margin: 0px;
}
.tabs-row .Facts-Holder .Facts-Content {
  padding: 15px 45px;
  border: none;
}
.tabs-row .tab-nav-links {
  background: #00adf0;
  color: #ffffff;
  margin-right: 10px;
}
.tabs-row .nav-tabs .active {
  color: #00adf0;
}
.tabs-row .tab-pane {
  padding: 20px 30px;
}
.tabs-row .tab-pane p:last-child {
  margin-bottom: 0;
}
.tabs-row #nav-tabContent {
  background: #ffffff;
  margin-bottom: 30px;
}
.tabs-row .Itinerary-Info {
  margin-bottom: 15px;
}
.tabs-row .Itinerary-Info a {
  color: #9b9b9b;
  font-weight: 300;
  font-style: italic;
  padding-bottom: 10px;
}
.tabs-row .Itinerary-Info .Itinerary-dropdown {
  display: block;
  border-bottom: 1px solid #9b9b9b;
}
.tabs-row .Itinerary-header {
  color: #9b9b9b;
  font-weight: bold;
}

.Overview-Holder .collapse-holder.collapse:not(.show) {
  height: 45px !important;
  overflow: hidden;
  display: inline-block;
}
.Overview-Holder .collapse-holder {
  min-height: 42px !important;
}
.Overview-Holder .collapse-read-m-l.collapsed:before {
  content: "spac";
  color: transparent;
  white-space: pre;
  background-image: url(../../../icons/standard/ellipsis-read-more.svg);
  background-size: 22px 22px;
  height: 22px;
  width: 22px;
  background-position: 0;
}
.Overview-Holder .collapse-read-m-l {
  color: #005BAB !important;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
}
.Overview-Holder .collapse-read-m-l.collapsed:after {
  content: "READ MORE";
}
.Overview-Holder .collapse-read-m-l:not(.collapsed):after {
  content: "READ LESS";
}

.Highlights-Holder .collapse-holder.collapse:not(.show) {
  height: 45px !important;
  overflow: hidden;
  display: -webkit-box;
}
.Highlights-Holder .collapse-holder {
  min-height: 42px !important;
}
.Highlights-Holder .collapse-read-m-l.collapsed:before {
  content: "spac";
  color: transparent;
  white-space: pre;
  background-image: url(../../../icons/standard/ellipsis-read-more.svg);
  background-size: 22px 22px;
  height: 22px;
  width: 22px;
  background-position: 0;
}
.Highlights-Holder .collapse-read-m-l {
  color: #005BAB !important;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
}
.Highlights-Holder .collapse-read-m-l.collapsed:after {
  content: "READ MORE";
}
.Highlights-Holder .collapse-read-m-l:not(.collapsed):after {
  content: "READ LESS";
}

.Custom-Overview .collapse-holder.collapse:not(.show) {
  height: 45px !important;
  overflow: hidden;
  display: -webkit-box;
}
.Custom-Overview .collapse-holder {
  min-height: 42px !important;
}
.Custom-Overview .collapse-read-m-l.collapsed:before {
  content: "spac";
  color: transparent;
  white-space: pre;
  background-image: url(../../../icons/standard/ellipsis-read-more.svg);
  background-size: 22px 22px;
  height: 22px;
  width: 22px;
  background-position: 0;
}
.Custom-Overview .collapse-read-m-l {
  color: #005BAB !important;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
}
.Custom-Overview .collapse-read-m-l.collapsed:after {
  content: "READ MORE";
}
.Custom-Overview .collapse-read-m-l:not(.collapsed):after {
  content: "READ LESS";
}

.Itinerary-Day-Block {
  border-left: 2px solid #cbcbc6;
  padding: 10px;
  padding-top: 0;
  margin-top: 15px;
  width: 100%;
}
.Itinerary-Day-Block .Itinerary-day-content {
  padding-left: 35px;
}
.Itinerary-Day-Block .Itinerary-Header .Header-Name {
  padding-left: 30px;
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 600;
  color: #52d1ed;
}
.Itinerary-Day-Block .Itinerary-Header .Header-Day-Number {
  padding-left: 30px;
  font-size: 2.2em;
  font-weight: 700;
  line-height: 0.5em;
  margin-left: 0.3em;
  color: #52d1ed;
}
.Itinerary-Day-Block .Itinerary-Header .Location svg {
  background: white;
  height: 50px;
  width: 40px;
  margin-left: -30px;
}
.Itinerary-Day-Block .Itinerary-Header .Location svg path {
  fill: #00BFE9 !important;
}
.Itinerary-Day-Block .Itinerary-Header .ReadMore svg {
  background: white;
  height: 25px;
  width: 25px;
  float: right;
  transform: rotate(-90deg);
}
.Itinerary-Day-Block .Itinerary-Header .ReadMore svg path {
  fill: #52d1ed;
}
.Itinerary-Day-Block .collapsed .ReadMore svg {
  transform: rotate(90deg);
}
.Itinerary-Day-Block .collapsed .ReadMore svg path {
  fill: #9B9B9B;
}

.Tabs-Header a {
  font-size: 1.2em;
  color: #656565;
}

.Tabs-Header-Promo .CustomTab {
  border-bottom: none;
  align-items: center;
}
.Tabs-Header-Promo .CustomTab {
  display: block;
  padding: 0.5rem 1rem;
  border: none !important;
}
.Tabs-Header-Promo a {
  text-decoration: none;
}
.Tabs-Header-Promo .CustomTab.active {
  border-bottom: 4px solid #52d1ed !important;
}
.Tabs-Header-Promo .CustomPromoTabs {
  border-bottom: none;
}

html, body.PromoPackage {
  scroll-padding-top: 370px; /* height of sticky header */
}

.ShortInfo .col {
  font-size: 1em;
}

.inclusions h3 {
  font-weight: 500;
  font-size: 1.2em;
}

.PromoTabs h2 {
  font-size: 1.5rem;
}

.HomeTabs .Tabs {
  display: none;
  background: transparent;
}
.HomeTabs .Tabs .nav-item {
  background: #52d1ed;
  color: white;
  margin-right: 20px !important;
}
.HomeTabs .Tabs .nav-item.active {
  color: #52d1ed;
  background: white;
  border: none !important;
}
.HomeTabs #Form_FilterForm_PromoPackageDepartureFromDate_Holder {
  width: 100% !important;
}

/*********************** New Search & navbar ***********************/
img.mobicred {
  width: 2.5em;
  height: 2.5em;
  margin-right: 0.3em;
  margin-bottom: 0.2em;
  border-radius: 50px;
}

a#dropdown02 {
  margin: 0px;
  padding: 0px;
}

.nav-search-form {
  border-top: 1px solid #d0d0d0;
}

.nav-search-form form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.nav-search-form form fieldset {
  flex: 0 0 85%;
  max-width: 85%;
  max-height: 70px;
}

.nav-search-form form .btn-toolbar {
  flex: 0 0 15%;
  max-width: 15%;
}

.nav-search-form form .btn-toolbar .find-btn {
  font-size: 16px;
}

.nav-search-form form .btn-toolbar .CollapseNavExtraFields {
  font-size: 30px;
  color: #005bab;
  padding: 20px;
}

.nav-search-form .filter-form {
  margin-bottom: 0;
}

.nav-search-form .tab-nav-links.active {
  color: #52d1ed;
}

.nav-search-form .tab-nav-links {
  color: #656565;
  padding: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

#Form_PopUpForm #Form_PopUpForm_enddate {
  margin-top: 18px;
}

.filter-form input.font-12 {
  padding: 13px 8px;
  font-size: 12.6px;
}

.nav-search-form form {
  flex: 0 0 95%;
  max-width: 95%;
  margin: auto;
}

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

#DealsCollection .Card.CardTwoByFour {
  padding-top: 45%;
}
#DealsCollection .Card.CardFourByFour {
  padding-top: 92%;
}
@media (max-width: 1366px) and (min-width: 1280px) {
  #DealsCollection .carousel-control-prev .carousel-control-prev-icon {
    height: 40px;
  }
}
@media (max-width: 1366px) and (min-width: 1280px) {
  #DealsCollection .carousel-control-next .carousel-control-next-icon {
    height: 40px;
  }
}
#DealsCollection .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23868686' x='0px' y='0px'  viewBox='0 0 477.175 477.175' style='enable-background:new 0 0 477.175 477.175;'%3e%3cg%3e %3cpath d='M360.731,229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1,0s-5.3,13.8,0,19.1l215.5,215.5l-215.5,215.5  c-5.3,5.3-5.3,13.8,0,19.1c2.6,2.6,6.1,4,9.5,4c3.4,0,6.9-1.3,9.5-4l225.1-225.1C365.931,242.875,365.931,234.275,360.731,229.075z'/%3e%3c/g%3e%3c/svg%3e");
}
#DealsCollection .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23868686' x='0px' y='0px'  viewBox='0 0 477.175 477.175' style='enable-background:new 0 0 477.175 477.175;' xml:space='preserve'%3e%3cg%3e %3cpath d='M145.188,238.575l215.5-215.5c5.3-5.3,5.3-13.8,0-19.1s-13.8-5.3-19.1,0l-225.1,225.1c-5.3,5.3-5.3,13.8,0,19.1l225.1,225  c2.6,2.6,6.1,4,9.5,4s6.9-1.3,9.5-4c5.3-5.3,5.3-13.8,0-19.1L145.188,238.575z'/%3e%3c/g%3e%3c/svg%3e");
}

@media (min-width: 576px) {
  .Masonry {
    display: grid;
    display: -ms-grid;
    grid-template-rows: auto;
    grid-gap: 15px;
    margin-bottom: 15px;
  }
  .Masonry .MasonrySplitHalf {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 100%;
    -ms-grid-columns: 100%;
    grid-gap: 15px;
  }
}
@media (min-width: 576px) and (min-width: 768px) {
  .Masonry .MasonryHalfHeight {
    display: grid;
    grid-template-columns: 50% 50%;
    -ms-grid-columns: 50% 50%;
    grid-gap: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 576px) {
  .Masonry .MasonrySpecial {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 100%;
    -ms-grid-columns: 100%;
    grid-gap: 15px;
    justify-content: center;
  }
  .Masonry--grid-1 {
    grid-template-columns: 100% !important;
  }
  .Masonry--grid-1 .MasonrySpecial,
  .Masonry--grid-1 .MasonryHalfHeight {
    display: none;
  }
  .Masonry--grid-1 .MasonrySplitHalf {
    grid-template-columns: repeat(1, 100%);
  }
  .Masonry--grid-1 .MasonrySplitHalf .Card.CardTwoByFour {
    padding-top: 45% !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .Masonry--grid-1 {
    grid-template-columns: 100% !important;
  }
  .Masonry--grid-1 .MasonrySplitHalf {
    grid-column: 1/2;
  }
  .Masonry--grid-1 .MasonrySplitHalf .Card.CardTwoByFour {
    grid-column: 1/2;
    padding-top: 100%;
  }
}
@media (min-width: 576px) {
  .Masonry--grid-2 {
    grid-template-columns: 100% !important;
  }
  .Masonry--grid-2 .MasonrySpecial,
  .Masonry--grid-2 .MasonryHalfHeight {
    display: none;
  }
  .Masonry--grid-2 .MasonrySplitHalf {
    grid-template-columns: repeat(2, 50%);
  }
  .Masonry--grid-2 .MasonrySplitHalf .Card.CardTwoByFour {
    padding-top: 100% !important;
    background-position: 50% 50%;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .Masonry--grid-2 {
    grid-template-columns: 100% !important;
  }
  .Masonry--grid-2 .MasonryHalfHeight {
    grid-column: 1/2;
  }
  .Masonry--grid-2 .MasonryHalfHeight .Card.CardTwoByFour {
    grid-column: 1/2;
    padding-top: 50%;
    background-position: 50% 50%;
  }
}
@media (min-width: 576px) {
  .Masonry--grid-4 {
    grid-template-columns: 50% 50% !important;
  }
  .Masonry--grid-4 .MasonrySpecial:last-child {
    display: none;
  }
  .Masonry--grid-4 .MasonryHalfHeight {
    grid-column: 1/3;
  }
  .Masonry--grid-4 .MasonryHalfHeight .Card.CardTwoByTwo {
    grid-column: 1/3;
    padding-top: 25%;
    background-position: 50% 50%;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .Masonry--grid-4 {
    grid-template-columns: 100% !important;
  }
  .Masonry--grid-4 .MasonryHalfHeight {
    grid-column: 1/2;
  }
  .Masonry--grid-4 .MasonryHalfHeight .Card.CardTwoByTwo {
    grid-column: 1/2;
    padding-top: 50%;
    background-position: 50% 50%;
  }
}
@media (min-width: 576px) {
  .Masonry--grid-5 {
    grid-template-columns: 50% 50% !important;
  }
  .Masonry--grid-5 .MasonryHalfHeight {
    grid-column: 1/3;
  }
  .Masonry--grid-5 .MasonryHalfHeight .Card.CardTwoByTwo {
    padding-top: 45%;
    background-position: 50% 50%;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .Masonry--grid-5 {
    grid-template-columns: 100% !important;
  }
  .Masonry--grid-5 .MasonrySpecial {
    grid-column: 1/2;
  }
  .Masonry--grid-5 .MasonryHalfHeight {
    grid-column: 1/2;
  }
  .Masonry--grid-5 .MasonryHalfHeight .Card.CardTwoByTwo {
    grid-column: 1/2;
    padding-top: 50%;
  }
}
@media (max-width: 767.98px) {
  .Masonry {
    display: grid;
    display: -ms-grid;
    grid-template-rows: auto;
    -ms-grid-rows: auto;
    grid-gap: 15px;
    margin-bottom: 15px;
  }
  .Masonry .MasonrySplitHalf {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 90%;
    -ms-grid-columns: 90%;
    grid-gap: 15px;
    justify-content: center;
  }
  .Masonry .MasonryHalfHeight {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 90%;
    -ms-grid-columns: 90%;
    grid-gap: 15px;
    justify-content: center;
  }
  .Masonry .MasonrySpecial {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 90%;
    -ms-grid-columns: 90%;
    grid-gap: 15px;
    justify-content: center;
  }
  #DealsCollection .carousel-control-prev span {
    height: 30px;
  }
  #DealsCollection .carousel-control-next span {
    height: 30px;
  }
  #ThreeDealsCollection .carousel-control-prev span {
    height: 30px;
  }
  #ThreeDealsCollection .carousel-control-next span {
    height: 30px;
  }
}
.Masonry {
  grid-template-columns: 100%;
  -ms-grid-columns: 100%;
  padding-right: 0;
}
.Masonry .tag-background {
  top: -35em;
  right: -35em;
}

@media (min-width: 768px) {
  .Masonry {
    grid-template-columns: 50% 50%;
    -ms-grid-columns: 50% 50%;
    padding-right: 15px;
  }
  .Masonry .tag-background {
    top: -30em;
    right: -30em;
  }
}
.DealsCollection {
  margin-top: 50px;
}

@media (max-width: 767.98px) {
  #ThreeDealsCollection .carousel-control-prev {
    width: 5%;
    left: -2%;
  }
  #ThreeDealsCollection .carousel-control-next {
    width: 5%;
    right: -2%;
  }
}
@media (max-width: 991.98px) {
  #ThreeDealsCollection .carousel-control-prev {
    width: 5%;
    left: 0;
  }
  #ThreeDealsCollection .carousel-control-next {
    width: 5%;
    right: 0;
  }
}
@media (min-width: 768px) {
  #ThreeDealsCollection .carousel-control-prev {
    left: -10%;
  }
  #ThreeDealsCollection .carousel-control-next {
    right: -10%;
  }
}
#ThreeDealsCollection .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23868686' x='0px' y='0px'  viewBox='0 0 477.175 477.175' style='enable-background:new 0 0 477.175 477.175;'%3e%3cg%3e %3cpath d='M360.731,229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1,0s-5.3,13.8,0,19.1l215.5,215.5l-215.5,215.5  c-5.3,5.3-5.3,13.8,0,19.1c2.6,2.6,6.1,4,9.5,4c3.4,0,6.9-1.3,9.5-4l225.1-225.1C365.931,242.875,365.931,234.275,360.731,229.075z'/%3e%3c/g%3e%3c/svg%3e");
}
#ThreeDealsCollection .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23868686' x='0px' y='0px'  viewBox='0 0 477.175 477.175' style='enable-background:new 0 0 477.175 477.175;' xml:space='preserve'%3e%3cg%3e %3cpath d='M145.188,238.575l215.5-215.5c5.3-5.3,5.3-13.8,0-19.1s-13.8-5.3-19.1,0l-225.1,225.1c-5.3,5.3-5.3,13.8,0,19.1l225.1,225  c2.6,2.6,6.1,4,9.5,4s6.9-1.3,9.5-4c5.3-5.3,5.3-13.8,0-19.1L145.188,238.575z'/%3e%3c/g%3e%3c/svg%3e");
}

.PackageHeaderName h1 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: #656565;
  font-size: 2rem;
}

.Social-Include {
  margin-top: 2.5rem;
}

.CustomShadow {
  margin-bottom: 30px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.4);
  text-align: center;
}
.CustomShadow .tag-names {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-left: 15px;
  color: white;
  padding-bottom: 20px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.CustomShadow .tag-names svg {
  width: 1em;
  height: 1em;
  top: 0.45em;
  left: 0;
}
.CustomShadow .CardHeader {
  height: 250px;
  margin-bottom: 15px;
}
.CustomShadow .PromoName {
  color: #656565;
  font-size: 1.5em;
  white-space: normal;
  text-align: center;
  letter-spacing: -0.06em;
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 20px;
}
.CustomShadow .RegionName {
  color: #656565;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: -1px;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: right;
}
.CustomShadow .RegionName svg {
  width: 15px;
  height: 15px;
}
.CustomShadow .Nights {
  color: #656565;
  text-transform: uppercase;
  text-align: left;
}
.CustomShadow .Nights svg {
  width: 15px;
  height: 15px;
}
.CustomShadow .btn-enquire {
  background: none;
  color: #f59000;
  margin-bottom: 20px;
}
.CustomShadow .btn-enquire svg {
  width: 15px;
  height: 15px;
}
.CustomShadow .btn-enquire svg path {
  fill: #f59000 !important;
}
.CustomShadow .btn-enquire:hover {
  color: #f59000;
}
.CustomShadow .ValidText {
  margin-bottom: 0px;
}
.CustomShadow .Ratings {
  min-height: 25px;
  margin-bottom: 0;
}
.CustomShadow .Ratings svg {
  width: 15px;
  height: 15px;
}

.btn-blue-outline {
  background: none;
  color: #52d1ed !important;
  border: 2px solid #52d1ed;
  padding: 15px 0px;
}
.btn-blue-outline svg {
  width: 20px;
  height: 20px;
}
.btn-blue-outline svg path {
  fill: #52d1ed !important;
}

.Expanding-Text .btn-blue-outline:after {
  content: "SHOW LESS";
}
.Expanding-Text .btn-blue-outline.collapsed:after {
  content: "LOAD MORE";
}

.tab-pane {
  background: #ffffff;
}

.SearchFormHolder {
  background: #ffffff;
  padding: 15px;
}
.SearchHeaderHolder h4 {
  background: #00bfe9;
  color: #ffffff;
  margin: 0px;
  padding: 15px;
  font-weight: bold;
}

.Blue-Header-Text {
  color: #00bfe9;
  text-align: center;
  padding: 30px 0px;
}

.white-background {
  background: #ffffff;
  padding: 15px;
  margin-bottom: 15px;
}

.EnquireBlock {
  color: #00bfe9;
  font-weight: bold;
  font-size: 13px;
}

.BookBlock {
  color: #f59000;
  font-weight: bold;
  font-size: 13px;
}

.Product img {
  filter: brightness(0.5);
}
.Product h3 {
  font-size: 16px;
  margin-bottom: 0px;
}
.Product .Absolute-text {
  width: 100%;
  height: 100%;
}
.Product .align-bottom {
  align-items: flex-end;
}

.MoreProductsButton {
  text-align: center;
}
.MoreProductsButton a {
  color: #656565;
}

.DestinationImage h2 {
  position: absolute;
  bottom: 0;
  color: #ffffff;
  padding-left: 5%;
}

.ProviderBlock {
  padding: 30px 10px;
}

.AssociatesRow {
  background: #ffffff;
}
.AssociatesRow img {
  padding: 20px;
}
.AssociatesRow .col {
  display: flex;
}

.AssosciatesDemoRow {
  background: #ffffff;
}

#BookingStepper {
  margin-bottom: 32px;
  font-family: "Raleway";
  font-weight: bold;
}
#BookingStepper .stepper .line {
  display: block;
  height: 1px;
  background-color: #d0d0d0;
  margin: 0;
  top: 18px;
  position: relative;
  border: 0;
}
#BookingStepper .stepper .item {
  text-transform: uppercase;
  padding: 0px;
  color: #d0d0d0;
}
#BookingStepper .stepper .item div {
  display: inline-block;
  background-color: white;
  padding: 0px 18px;
  white-space: nowrap;
}
#BookingStepper .stepper .item span {
  display: inline-block;
  border-radius: 200px;
  color: white;
  background-color: #d0d0d0;
  border: 10px #d0d0d0;
  padding: 6px 14px;
  line-height: unset;
}
#BookingStepper .stepper .item.active {
  color: #00adf0;
}
#BookingStepper .stepper .item.active span {
  background-color: #00adf0;
  border-color: #00adf0;
}

.DestinationsMetro {
  color: #002e56;
}
@media (max-width: 1200px) {
  .DestinationsMetro .large-icon-with-text svg {
    width: 3em !important;
    height: 3em !important;
  }
}
.DestinationsMetro img {
  width: 100%;
  height: 158px;
}
.DestinationsMetro .image-gradient::after {
  display: block;
  position: relative;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 100%);
  margin-top: -180px;
  height: 180px;
  width: 100%;
  content: "";
}
.DestinationsMetro .content {
  position: relative;
  padding: 2.1em;
  height: 300px;
}
.DestinationsMetro .content h4 {
  font-size: 1.8em;
  color: #002e56;
  letter-spacing: -1px;
  margin: 0;
  font-weight: 400 !important;
}
.DestinationsMetro .content h4 a {
  color: #002e56;
}
.DestinationsMetro .content .subtitle {
  max-width: 200px;
  text-transform: uppercase;
  font-size: 0.9em;
  margin-bottom: 0.7em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.DestinationsMetro .content .subtitle svg {
  width: 1em;
  height: 1em;
}
.DestinationsMetro .content .read-more {
  display: block;
  text-align: center;
  position: absolute;
  bottom: 0;
  height: 3em;
  width: 100%;
  left: 0;
}
.DestinationsMetro .content .read-more svg {
  width: 2em;
  height: 2em;
}
.DestinationsMetro .image-with-text {
  position: relative;
  line-height: 1em;
}
.DestinationsMetro .image-with-text img {
  width: 100%;
  height: 341px;
}
.DestinationsMetro .image-with-text.half-height img {
  height: 117px;
}
.DestinationsMetro .image-with-text.half-height .image-gradient::after {
  margin-top: -90px;
  height: 90px;
}
.DestinationsMetro .image-with-text .title {
  position: absolute;
  display: inline-block;
  line-height: 1.2em;
  height: 1.2em;
  left: 1.2em;
  right: 2em;
  bottom: 1.8em;
  font-size: 1.7em;
  white-space: nowrap;
  color: #efefef;
  letter-spacing: -1px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.DestinationsMetro .image-with-text .deals {
  display: block;
  position: absolute;
  left: 2em;
  bottom: 2em;
  font-size: 1em;
  color: #efefef;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  right: 4.5em;
}
.DestinationsMetro .image-with-text .deals svg {
  width: 1em;
  height: 1em;
  top: 0.05em;
  left: 0;
}
.DestinationsMetro .image-with-text .deals svg path {
  fill: #ffffff !important;
}
.DestinationsMetro .image-with-text .card-read-more {
  position: absolute;
  width: 3em;
  height: 3em;
  right: 1em;
  bottom: 2em;
  cursor: pointer;
}
.DestinationsMetro .image-with-text .card-read-more svg {
  width: 3em;
  height: 3em;
}
.DestinationsMetro .large-icon-with-text {
  padding: 0px 15px;
  position: relative;
  line-height: 1em;
  width: 100%;
  height: 341px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.DestinationsMetro .large-icon-with-text.royal-blue {
  background-color: #002e56;
}
.DestinationsMetro .large-icon-with-text.blue {
  background-color: #00bfe9;
}
.DestinationsMetro .large-icon-with-text .inner {
  text-align: center;
}
.DestinationsMetro .large-icon-with-text .inner h1 a {
  color: white;
}
.DestinationsMetro .large-icon-with-text .inner h4 a {
  color: #002E56;
}
.DestinationsMetro .large-icon-with-text svg {
  width: 5em;
  height: 5em;
}
.DestinationsMetro .large-icon-with-text h4 {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 1em;
  margin: 0;
  padding-bottom: 0.7em;
}
.DestinationsMetro .large-icon-with-text h1 {
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  font-size: 2em;
}
.DestinationsMetro .btn-see-more {
  position: relative;
  border: 2px solid #00BFE8;
  color: #00bfe9;
  text-transform: uppercase;
  padding: 1em 1em 1em 2.5em;
  width: 300px;
  min-width: 300px;
}
.DestinationsMetro .btn-see-more svg {
  width: 1.4em;
  height: 1.4em;
  display: block;
  position: absolute;
  top: 1em;
  left: 1.2em;
}
.DestinationsMetro .btn-see-more svg path {
  fill: #00BFE8 !important;
}
.DestinationsMetro .btn-see-more:hover {
  text-decoration: none;
  box-shadow: -1px 0px 5px 3px rgba(0, 0, 0, 0.13);
}
.DestinationsMetro .intro p {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  color: #6b6a6a;
  text-align: justify;
}
.DestinationsMetro .popular-destination-title h2 {
  color: #656565;
  font-weight: 300;
}

.hover-popout {
  z-index: 1;
}
.hover-popout a {
  text-decoration: none;
}

.hover-popout:hover {
  z-index: 999 !important;
  overflow: hidden;
}
.hover-popout:hover img {
  transform: scale(1.2);
  transition-duration: 1s;
}

.hover-popout-background {
  z-index: 1;
}
.hover-popout-background a {
  text-decoration: none;
}

.hover-popout-background:hover {
  box-shadow: 0px -1px 6px 4px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.hover-popout-background:hover img {
  transform: scale(1.2);
  transition-duration: 1s;
}

.WorldTravel .DestinationName {
  text-transform: capitalize;
}
.WorldTravel .pl-half {
  padding-left: 7.5px !important;
}
.WorldTravel .pr-half {
  padding-right: 7.5px !important;
}
.WorldTravel .pb-15 {
  padding-bottom: 15px !important;
}
.WorldTravel .pb-30 {
  padding-bottom: 30px !important;
}
.WorldTravel .padding-for-bottom-left {
  padding-top: 46%;
  padding-right: 0;
}
.WorldTravel .btn-see-all-deals {
  position: relative;
  border: 2px solid #00BFE8;
  color: #00bfe9;
  text-transform: uppercase;
  padding-left: 2.5em;
}
.WorldTravel .btn-see-all-deals img {
  width: 1em;
  height: 1em;
  display: block;
  position: absolute;
  top: 0.7em;
  left: 1em;
}

.btn-reverse-blue {
  padding: 12px;
  position: relative;
  border: 2px solid #00BFE8;
  color: #00bfe9;
  text-transform: uppercase;
  max-width: 20em;
}
.btn-reverse-blue svg {
  fill: #00BFE8;
  height: 1em;
  width: 1em;
  display: inline;
  margin-bottom: 0.2em;
}
.btn-reverse-blue svg path {
  fill: #00BFE8 !important;
  width: 1em;
}

.btn-reverse-blue:hover {
  color: #00bfe9;
  box-shadow: 0px 0px 2px 1px rgb(0, 191, 232);
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.tag-background svg {
  position: absolute;
  text-align: center;
  transform: rotate(-45deg);
  width: 1.6em !important;
  height: 1.6em;
  bottom: 2.6em;
  left: 47%;
}

@media (max-width: 767.98px) {
  #DestinationCollection .carousel-control-prev {
    width: 12%;
    left: -2%;
  }
  #DestinationCollection .carousel-control-next {
    width: 12%;
    right: -2%;
  }
}
@media (max-width: 991.98px) {
  #DestinationCollection .carousel-control-prev {
    width: 5%;
    left: 0;
  }
  #DestinationCollection .carousel-control-next {
    width: 5%;
    right: 0;
  }
}
@media (min-width: 768px) {
  #DestinationCollection {
    width: 100%;
  }
  #DestinationCollection .carousel-control-prev {
    left: -10%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  #DestinationCollection .carousel-control-prev {
    left: -10%;
  }
}
@media (min-width: 768px) {
  #DestinationCollection .carousel-control-next {
    right: -10%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  #DestinationCollection .carousel-control-next {
    right: -10%;
  }
}
#DestinationCollection .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23868686' x='0px' y='0px'  viewBox='0 0 477.175 477.175' style='enable-background:new 0 0 477.175 477.175;'%3e%3cg%3e %3cpath d='M360.731,229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1,0s-5.3,13.8,0,19.1l215.5,215.5l-215.5,215.5  c-5.3,5.3-5.3,13.8,0,19.1c2.6,2.6,6.1,4,9.5,4c3.4,0,6.9-1.3,9.5-4l225.1-225.1C365.931,242.875,365.931,234.275,360.731,229.075z'/%3e%3c/g%3e%3c/svg%3e");
}
@media (min-width: 768px) {
  #DestinationCollection .carousel-control-next-icon {
    position: absolute;
    top: 23.5em;
  }
}
#DestinationCollection .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23868686' x='0px' y='0px'  viewBox='0 0 477.175 477.175' style='enable-background:new 0 0 477.175 477.175;' xml:space='preserve'%3e%3cg%3e %3cpath d='M145.188,238.575l215.5-215.5c5.3-5.3,5.3-13.8,0-19.1s-13.8-5.3-19.1,0l-225.1,225.1c-5.3,5.3-5.3,13.8,0,19.1l225.1,225  c2.6,2.6,6.1,4,9.5,4s6.9-1.3,9.5-4c5.3-5.3,5.3-13.8,0-19.1L145.188,238.575z'/%3e%3c/g%3e%3c/svg%3e");
}
@media (min-width: 768px) {
  #DestinationCollection .carousel-control-prev-icon {
    position: absolute;
    top: 23.5em;
  }
}

@media (max-width: 767.98px) {
  .AllRegionsCarousel .carousel-control-prev {
    width: 5%;
    left: -2%;
  }
  .AllRegionsCarousel .carousel-control-next {
    width: 5%;
    right: -2%;
  }
}
@media (max-width: 991.98px) {
  .AllRegionsCarousel .carousel-control-prev {
    width: 5%;
    left: 0;
  }
  .AllRegionsCarousel .carousel-control-next {
    width: 5%;
    right: 0;
  }
}
@media (min-width: 768px) {
  .AllRegionsCarousel {
    width: 100%;
  }
  .AllRegionsCarousel .carousel-control-prev {
    left: -9%;
  }
}
@media (min-width: 768px) and (max-width: 1366px) and (min-width: 1280px) {
  .AllRegionsCarousel .carousel-control-prev {
    left: -3.3%;
    width: 1%;
  }
  .AllRegionsCarousel .carousel-control-prev .carousel-control-prev-icon {
    height: 28px;
  }
}
@media (min-width: 768px) and (max-width: 800px) {
  .AllRegionsCarousel .carousel-control-prev {
    left: -6%;
  }
}
@media (min-width: 768px) {
  .AllRegionsCarousel .carousel-control-next {
    right: -9%;
  }
}
@media (min-width: 768px) and (max-width: 1366px) and (min-width: 1280px) {
  .AllRegionsCarousel .carousel-control-next {
    right: -3.3%;
    width: 1%;
  }
  .AllRegionsCarousel .carousel-control-next .carousel-control-next-icon {
    height: 28px;
  }
}
@media (min-width: 768px) and (max-width: 800px) {
  .AllRegionsCarousel .carousel-control-next {
    right: -6%;
  }
}
.AllRegionsCarousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23868686' x='0px' y='0px'  viewBox='0 0 477.175 477.175' style='enable-background:new 0 0 477.175 477.175;'%3e%3cg%3e %3cpath d='M360.731,229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1,0s-5.3,13.8,0,19.1l215.5,215.5l-215.5,215.5  c-5.3,5.3-5.3,13.8,0,19.1c2.6,2.6,6.1,4,9.5,4c3.4,0,6.9-1.3,9.5-4l225.1-225.1C365.931,242.875,365.931,234.275,360.731,229.075z'/%3e%3c/g%3e%3c/svg%3e");
}
@media (min-width: 768px) {
  .AllRegionsCarousel .carousel-control-next-icon {
    position: absolute;
    top: 23.5em;
  }
}
.AllRegionsCarousel .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23868686' x='0px' y='0px'  viewBox='0 0 477.175 477.175' style='enable-background:new 0 0 477.175 477.175;' xml:space='preserve'%3e%3cg%3e %3cpath d='M145.188,238.575l215.5-215.5c5.3-5.3,5.3-13.8,0-19.1s-13.8-5.3-19.1,0l-225.1,225.1c-5.3,5.3-5.3,13.8,0,19.1l225.1,225  c2.6,2.6,6.1,4,9.5,4s6.9-1.3,9.5-4c5.3-5.3,5.3-13.8,0-19.1L145.188,238.575z'/%3e%3c/g%3e%3c/svg%3e");
}
@media (min-width: 768px) {
  .AllRegionsCarousel .carousel-control-prev-icon {
    position: absolute;
    top: 23.5em;
  }
}

.RegionText {
  color: #656565;
  font-weight: 100;
}

.btn-collapse {
  background: none;
  color: #00bfe9;
  border-color: #00bfe9;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-width: 2px;
  padding: 15px 20px;
  font-weight: 500;
}
.btn-collapse svg {
  width: 16px;
  margin-right: 5px;
  height: 16px;
}
.btn-collapse svg path {
  fill: #00bfe9 !important;
}

.btn-show-more {
  background: none;
  color: #00bfe9;
  border: 2px solid #00bfe9;
  padding: 15px 20px;
  font-weight: 500;
  border-radius: 3px;
}
.btn-show-more svg {
  width: 20px;
  height: 20px;
}
.btn-show-more svg path {
  fill: #00bfe9 !important;
}

.btn-collapse:hover, .btn-show-more:hover {
  text-decoration: none;
  color: #00BFE9;
  box-shadow: -1px 0px 5px 3px rgba(0, 0, 0, 0.13);
}

.DestinationName {
  text-transform: capitalize;
}

.Card {
  background-size: cover;
}
.Card .no-overflow {
  overflow: hidden;
}
.Card.CardFourByFour {
  position: relative;
  line-height: 1.2em;
  overflow: hidden;
  background-color: #00bfe9;
  padding-top: 100%;
}
.Card.CardFourByFour .title {
  position: absolute;
  display: inline-block;
  height: 1em;
  left: 1.2em;
  right: 2em;
  bottom: 1.8em;
  font-size: 1.7em;
  white-space: nowrap;
  color: #efefef;
  letter-spacing: -1px;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 0.9em;
}
.Card.CardTwoByFour {
  position: relative;
  line-height: 1.2em;
  overflow: hidden;
  padding-top: 50%;
  background-color: hotpink;
}
@media screen and (max-width: 360px) {
  .Card.CardTwoByFour {
    padding-top: 70%;
  }
}
.Card.CardTwoByFour .title {
  position: absolute;
  display: inline-block;
  height: 1em;
  left: 1.2em;
  right: 2em;
  bottom: 1.8em;
  font-size: 1.7em;
  white-space: nowrap;
  color: #efefef;
  letter-spacing: -1px;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 0.9em;
}
@media (max-width: 450px) {
  .Card.CardTwoByFour .title {
    bottom: 2.4em;
  }
}
.Card.CardTwoByFour svg path {
  fill: #ffffff !important;
}
.Card.CardTwoByFourCustom {
  position: relative;
  line-height: 1.2em;
  overflow: hidden;
  padding-top: 50%;
  background-color: hotpink;
}
.Card.CardTwoByFourCustom .title {
  position: absolute;
  display: inline-block;
  height: 1em;
  left: 1.2em;
  right: 2em;
  bottom: 2.5em;
  font-size: 1.7em;
  white-space: nowrap;
  color: #efefef;
  letter-spacing: -1px;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 0.9em;
}
.Card.CardTwoByFourCustom svg path {
  fill: #ffffff !important;
}
.Card.CardTwoByFourCustom .deals-count {
  display: block;
  position: absolute;
  left: 2em;
  bottom: 1.5em;
  font-size: 1em;
  padding-left: 1.25em;
  color: #efefef;
}
@media (max-width: 450px) {
  .Card.CardTwoByFourCustom .deals-count {
    width: 87%;
    white-space: nowrap;
    overflow: hidden;
    color: white;
    text-overflow: ellipsis;
  }
}
.Card.CardTwoByFourCustom .deals-count img {
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0.05em;
  left: 0;
}
.Card.CardTwoByFourCustom .deals-count svg {
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0.2em;
  left: 0;
}
.Card.CardTwoByFourCustom .Destinations-count {
  display: block;
  position: absolute;
  left: 2em;
  bottom: 2.9em;
  font-size: 1em;
  padding-left: 1.25em;
  color: #efefef;
}
.Card.CardTwoByFourCustom .Destinations-count img {
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0.05em;
  left: 0;
}
.Card.CardTwoByFourCustom .Destinations-count svg {
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0.2em;
  left: 0;
}
.Card.CardTwoByTwo {
  position: relative;
  line-height: 1.2em;
  overflow: hidden;
  padding-top: 50%;
  background-color: orange;
}
.Card.CardTwoByTwo .title {
  position: absolute;
  display: inline-block;
  height: 1em;
  left: 1.2em;
  right: 2em;
  bottom: 1.8em;
  font-size: 1.7em;
  white-space: nowrap;
  color: #efefef;
  letter-spacing: -1px;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 0.9em;
}
@media (min-width: 768px) {
  .Card.CardFourByTwo {
    height: 460px;
  }
  .Card.CustomCardFourByTwo {
    height: 500px;
  }
}
@media screen and (min-width: 1367px) {
  .Card.CardFourByTwo {
    height: 520px;
  }
  .Card.CustomCardFourByTwo {
    height: 540px;
  }
}
.Card.CardFourByTwo {
  background-color: white;
  position: relative;
  line-height: 1.8em;
  width: 100%;
  overflow: hidden;
  color: #656565;
}
.Card.CardFourByTwo .th-btn-outline {
  margin-right: 1rem;
  margin-bottom: 1.5rem;
}
.Card.CardFourByTwo .th-btn-outline:last-child {
  margin-right: 0;
}
.Card.CardFourByTwo .tag-names {
  display: flex !important;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  left: 0 !important;
  text-overflow: ellipsis;
}
.Card.CardFourByTwo .valid-dates {
  line-height: 1.2em;
  margin-bottom: 10px;
}
.Card.CardFourByTwo img {
  width: 100%;
  height: 250px;
}
.Card.CardFourByTwo svg {
  width: 100%;
  height: 12em;
}
.Card.CardFourByTwo .image-gradient::after {
  display: block;
  position: relative;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, #000 100%);
  margin-top: -80px;
  height: 80px;
  width: 100%;
  content: "";
}
.Card.CardFourByTwo .image-gradient {
  position: relative;
}
.Card.CardFourByTwo .image-gradient .th-pill {
  z-index: 5;
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  margin: 0;
}
.Card.CardFourByTwo .card-content {
  height: 18em;
  position: relative;
  background-color: white;
}
.Card.CardFourByTwo .card-content img {
  width: 1em;
  height: 1em;
}
.Card.CardFourByTwo .card-content svg {
  width: 1em;
  height: 1em;
}
.Card.CardFourByTwo .tag-names {
  display: block;
  position: absolute;
  left: 15px;
  bottom: 1em;
  font-size: 0.9em;
  padding-left: 1.25em;
  text-transform: uppercase;
  color: #efefef;
  z-index: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 94%;
}
.Card.CardFourByTwo .tag-names.shifted {
  width: 60%;
}
.Card.CardFourByTwo .tag-names img {
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0.45em;
  left: 0;
}
.Card.CardFourByTwo .tag-names svg {
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0.45em;
  left: 0;
}
.Card.CardFourByTwo .Night-Destination.nights {
  float: right;
  width: 59%;
}
.Card.CardFourByTwo .Night-Destination.destinations {
  float: left;
  width: 40%;
}
.Card.CardFourByTwo .Night-Destination .destination {
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}
.Card.CardFourByTwo .night-count {
  float: right;
  text-transform: uppercase;
  font-size: 1em;
  padding-top: 15px;
  color: #cc201a;
}
.Card.CardFourByTwo .night-count img {
  width: 1em;
  height: 1em;
}
.Card.CardFourByTwo .night-count svg {
  width: 1em;
  height: 1em;
}
.Card.CardFourByTwo .night-count svg path {
  fill: #cc201a;
}
.Card.CardFourByTwo .destination {
  text-align: left;
  float: left;
  display: block;
  font-size: 1em;
  padding-top: 15px;
  color: #656565;
}
.Card.CardFourByTwo .destination img {
  width: 1em;
  height: 1em;
}
.Card.CardFourByTwo .destination svg {
  width: 1em;
  height: 1em;
}
.Card.CardFourByTwo .star-rating {
  white-space: nowrap;
  height: 30px;
}
.Card.CardFourByTwo .star-rating p {
  margin-bottom: 0px;
  text-align: center;
}
.Card.CardFourByTwo .star-rating p img {
  width: 0.75em;
  height: 0.75em;
}
.Card.CardFourByTwo .star-rating p svg {
  width: 0.75em;
  height: 0.75em;
  margin-left: -2px;
}
.Card.CardFourByTwo .title a, .Card.CardFourByTwo .title p.Title {
  font-size: 1.5em;
  white-space: normal;
  text-align: center;
  letter-spacing: -0.06em;
  line-height: 1.3em;
  font-weight: 600;
  color: inherit;
}
.Card.CardFourByTwo .title p.Title {
  color: #52D1ED;
}
.Card.CardFourByTwo .title p {
  text-align: center;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.Card.CardFourByTwo .valid-dates {
  text-transform: uppercase;
  font-size: 0.9em;
  text-align: center;
}
.Card.CardFourByTwo .price-nights,
.Card.CardFourByTwo .price,
.Card.CardFourByTwo .price-per-person {
  line-height: 1em;
  color: #00bfe9;
  text-align: center;
  text-transform: uppercase;
}
.Card.CardFourByTwo .price {
  font-size: 2.75em;
  font-weight: 600;
}
.Card.CardFourByTwo .enquire {
  width: 6em;
  height: 2em;
  text-decoration: none;
  color: #f59000;
  display: block;
  text-transform: uppercase;
}
.Card.CardFourByTwo .enquire img {
  width: 1em;
  height: 1em;
}
.Card.CardFourByTwo .enquire svg {
  width: 1em;
  height: 1em;
}
.Card.CardOneByFour {
  padding: 0px 15px;
  overflow: hidden;
  min-height: 100px;
  max-width: 100%;
  border-top: 1px solid #E9E9E9;
}
.Card.CardOneByFour.all-destinations > .row .th-pill {
  right: calc(0.5rem + 15px);
}
.Card.CardOneByFour .star-rating {
  font-size: 0;
}
.Card.CardOneByFour .star-rating .th-icon {
  font-size: 0.8rem !important;
}
.Card.CardOneByFour .reference {
  display: block;
  text-decoration: none;
  color: #656565;
  line-height: 1.4;
  font-size: 0.9em;
}
.Card.CardOneByFour .th-btn-outline {
  margin-top: 0.5rem;
  margin-right: 0.875rem;
}
.Card.CardOneByFour .no-overflow {
  position: relative;
}
.Card.CardOneByFour .no-overflow a {
  display: flex;
  height: 100%;
}
.Card.CardOneByFour .no-overflow .th-pill {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  margin: 0;
}
.Card.CardOneByFour img {
  -o-object-fit: cover;
     object-fit: cover;
}
.Card.CardOneByFour svg {
  width: 100%;
}
.Card.CardOneByFour .tag-background {
  top: -31.5em;
  right: -31.5em;
  background-position: 50% 96%;
  background-size: 22px;
}
.Card.CardOneByFour .tag-background .tag-text {
  bottom: 0.45em;
  font-size: 70%;
}
.Card.CardOneByFour .tag-background-mobile {
  top: -31em;
  right: -31em;
  display: block;
  position: absolute;
  width: 40em;
  height: 40em;
  transform: rotate(45deg);
}
.Card.CardOneByFour .tag-background-mobile .tag-text {
  font-size: 65%;
  bottom: 0.75em;
  text-transform: uppercase;
  color: #FFFFFF;
  position: absolute;
  left: -15px;
  right: 0;
  display: block;
  text-align: center;
}
.Card.CardOneByFour .tag-background-mobile svg {
  bottom: 1.75em;
  left: 47%;
  width: 1.4em;
  height: 1.4em;
  position: absolute;
}
.Card.CardOneByFour .tag-background-mobile.featured {
  background-color: #52d1ed;
}
.Card.CardOneByFour .tag-background-mobile.last-minute {
  background-color: #005bab;
}
.Card.CardOneByFour .tag-background-mobile.trending {
  background-color: #005bab;
}
.Card.CardOneByFour .tag-background-mobile.top-sellers {
  background-color: #52d1ed;
}
.Card.CardOneByFour .tag-background-mobile.early-bird {
  background-color: #005bab;
}
.Card.CardOneByFour .tag-background-mobile.what-s-hot {
  background-color: #cc201a;
}
.Card.CardOneByFour .tag-background-mobile.hot-deals {
  background-color: #cc201a;
}
.Card.CardOneByFour .tag-background-mobile.top-seller {
  background-color: #52d1ed;
}
.Card.CardOneByFour .tag-background-mobile.last-minute-deals {
  background-color: #005bab;
}
@media (min-width: 992px) {
  .Card.CardOneByFour .title {
    display: block;
    text-decoration: none;
    color: #656565;
    line-height: 0.9em;
    font-size: 0.91em;
  }
  .Card.CardOneByFour .reference {
    display: block;
    text-decoration: none;
    color: #656565;
    line-height: 1.4;
    font-size: 0.9em;
  }
}
@media (max-width: 1199.98px) {
  .Card.CardOneByFour .title {
    display: block;
    text-decoration: none;
    color: #656565;
    line-height: 0.9em;
    font-size: 0.91em;
  }
  .Card.CardOneByFour .reference {
    display: block;
    text-decoration: none;
    color: #656565;
    line-height: 1.4;
    font-size: 0.9em;
  }
}
@media (max-width: 767.98px) {
  .Card.CardOneByFour .title {
    text-align: center;
  }
  .Card.CardOneByFour .star-rating {
    display: block;
  }
  .Card.CardOneByFour .price {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .Card.CardOneByFour .star-rating {
    white-space: nowrap;
  }
  .Card.CardOneByFour .star-rating img {
    width: 0.8em;
    height: 0.8em;
  }
  .Card.CardOneByFour .star-rating svg {
    width: 0.8em;
    height: 0.8em;
  }
}
@media (max-width: 1199.98px) {
  .Card.CardOneByFour .star-rating {
    text-align: center;
  }
  .Card.CardOneByFour .star-rating svg {
    width: 1em;
  }
}
@media (min-width: 992px) {
  .Card.CardOneByFour .price {
    color: #00bfe9;
    position: relative;
  }
  .Card.CardOneByFour .price .prefix {
    text-transform: uppercase;
    font-size: 0.9em;
    vertical-align: super;
    padding-right: 0.3em;
  }
  .Card.CardOneByFour .price .value {
    font-size: 1.5em;
  }
  .Card.CardOneByFour .price .suffix {
    text-transform: uppercase;
    font-size: 0.8em;
    vertical-align: super;
    font-style: italic;
    padding-left: 0.1em;
  }
}
@media (max-width: 1199.98px) {
  .Card.CardOneByFour .price {
    color: #00bfe9;
    position: relative;
  }
  .Card.CardOneByFour .price .prefix {
    text-transform: uppercase;
    line-height: 1em;
    font-size: 0.9em;
    vertical-align: super;
    padding-right: 0.3em;
  }
  .Card.CardOneByFour .price .value {
    font-size: 1.5em;
  }
  .Card.CardOneByFour .price .suffix {
    text-transform: uppercase;
    font-size: 0.8em;
    vertical-align: super;
    font-style: italic;
    padding-left: 0.1em;
  }
}
@media (min-width: 992px) {
  .Card.CardOneByFour .enquire {
    text-decoration: none;
    color: #f59000;
    display: block;
    padding-left: 1.25em;
    position: relative;
    text-transform: uppercase;
  }
}
@media (min-width: 992px) and (max-width: 1024px) and (min-width: 992px) {
  .Card.CardOneByFour .enquire {
    top: -10px;
    right: -16px;
  }
}
@media (min-width: 992px) {
  .Card.CardOneByFour .enquire span {
    display: block;
    width: 7em;
    text-align: left;
    position: absolute;
    right: 0;
    top: 3.6em;
    padding-left: 1.2em;
  }
  .Card.CardOneByFour .enquire img {
    width: 1em;
    height: 1em;
    position: absolute;
    left: 0;
    top: 0.4em;
  }
  .Card.CardOneByFour .enquire svg {
    width: 1em;
    height: 1em;
    position: absolute;
    left: 0em;
    top: 0.3em;
  }
}
@media (max-width: 1199.98px) {
  .Card.CardOneByFour .enquire {
    text-align: center;
    text-decoration: none;
    color: #f59000;
    display: block;
    padding-left: 1.25em;
    position: relative;
    text-transform: uppercase;
  }
}
@media (max-width: 1199.98px) and (max-width: 1024px) and (min-width: 992px) {
  .Card.CardOneByFour .enquire {
    top: -10px;
    right: -16px;
  }
}
@media (max-width: 1199.98px) {
  .Card.CardOneByFour .enquire img {
    width: 1em;
    height: 1em;
    position: absolute;
    left: 0;
    top: 0.4em;
  }
  .Card.CardOneByFour .enquire svg {
    width: 1em;
    height: 1em;
  }
}
.Card .deals-count {
  display: block;
  position: absolute;
  left: 2em;
  bottom: 1.5em;
  font-size: 1em;
  padding-left: 1.25em;
  color: #efefef;
}
.Card .deals-count img {
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0.05em;
  left: 0;
}
.Card .deals-count svg {
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0.2em;
  left: 0;
}
.Card .card-read-more {
  position: absolute;
  width: 2em;
  height: 3em;
  right: 2em;
  bottom: 2em;
  cursor: pointer;
}
.Card .tag-background {
  display: block;
  position: absolute;
  width: 40em;
  height: 40em; /* IE 9 */ /* Safari prior 9.0 */
  transform: rotate(45deg); /* Standard syntax */
  background-position: 50% 94%;
  background-size: 2em;
  background-repeat: no-repeat;
  background-size: 27px;
}
.Card .tag-background.featured {
  background-color: #52d1ed;
  background-image: url("../../../icons/standard/featured.svg");
}
.Card .tag-background.last-minute {
  background-color: #005bab;
  background-image: url("../../../icons/standard/last-minute.svg");
}
.Card .tag-background.trending {
  background-color: #005bab;
  background-image: url("../../../icons/standard/trending.svg");
}
.Card .tag-background.top-sellers {
  background-color: #52d1ed;
  background-image: url("../../../icons/standard/top-sellers.svg");
}
.Card .tag-background.top-seller {
  background-color: #52d1ed;
  background-image: url("../../../icons/standard/top-seller.svg");
}
.Card .tag-background.early-bird {
  background-color: #005bab;
  background-image: url("../../../icons/standard/early-bird.svg");
}
.Card .tag-background.what-s-hot {
  background-color: #cc201a;
  background-image: url("../../../icons/standard/what-s-hot.svg");
}
.Card .tag-background.hot-deals {
  background-color: #cc201a;
  background-image: url("../../../icons/standard/hot-deals.svg");
}
.Card .tag-background.last-minute-deals {
  background-color: #005bab;
  background-image: url("../../../icons/standard/last-minute-deals.svg");
}
.Card .tag-background.hidden {
  display: none;
}
.Card .tag-background .tag-icon {
  position: absolute;
  text-align: center;
  transform: rotate(-45deg);
}
.Card .tag-background .tag-text {
  text-transform: uppercase;
  color: #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  text-align: center;
}
.Card .tag-background {
  top: -31em;
  right: -31em;
  background-position: 50% 95%;
  background-size: 24px;
}
.Card .tag-background .tag-text {
  font-size: 65%;
  bottom: 0.75em;
}
.Card .tag-background .tag-icon {
  bottom: 1.75em;
  left: 48%;
  width: 1.4em;
  height: 1.4em;
}
@media (min-width: 576px) {
  .Card .tag-background {
    top: -30.5em;
    right: -30.5em;
    background-position: 50% 94%;
    background-size: 27px;
  }
  .Card .tag-background .tag-text {
    font-size: 75%;
    bottom: 1em;
  }
  .Card .tag-background .tag-icon {
    width: 1.6em;
    height: 1.6em;
    bottom: 2.5em;
    left: 48%;
  }
}

.Single-World-Item .CardTwoByFour {
  height: 400px;
  padding-top: 25%;
}

.SingleBannerRowOnCards .CardTwoByFour {
  padding-top: 25%;
}
@media (max-width: 767px) {
  .SingleBannerRowOnCards .CardTwoByFour {
    padding-top: 50%;
  }
}

.HideMe {
  display: none;
}

.ShowMe {
  display: block;
}

.SingleItem .CardTwoByFour {
  padding-top: 25%;
}

.brochure-card {
  margin-top: 20px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.4);
  height: auto !important;
}
.brochure-card .card-content {
  height: auto !important;
}
.brochure-card .card-content .title {
  margin-top: 40px;
}
.brochure-card .card-content .title .Title {
  color: #52D1ED;
}
.brochure-card .card-content a {
  color: #52D1ED;
}
.brochure-card .card-content svg {
  width: 1.5em !important;
  height: 1.5em !important;
}
.brochure-card .card-content svg path {
  fill: #52D1ED !important;
}
.brochure-card .card-content svg polygon {
  fill: #52d1ed;
}
.brochure-card .card-content svg rect {
  fill: #52d1ed;
}
.brochure-card .summery-brochure {
  display: -webkit-box;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.brochure-card .brochure-actions {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
}
.brochure-card .brochure-actions a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
}
.brochure-card .brochure-actions a svg {
  margin-right: 0.25rem;
}
@media screen and (min-width: 1200px) {
  .brochure-card .brochure-actions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.FilterPackages .valid-dates p {
  margin-bottom: 0px;
}

.CustomCardFourByTwo .tag-names {
  padding-bottom: 10px;
  bottom: 0 !important;
}
.CustomCardFourByTwo .tag-names > div {
  flex: 1 1 auto;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.CustomCardFourByTwo .tag-names.shifted {
  width: 60%;
}
.CustomCardFourByTwo .th-btn-outline {
  margin-right: 1rem;
  margin-bottom: 1.5rem;
}
.CustomCardFourByTwo .th-btn-outline:last-child {
  margin-right: 0;
}

.Card.CardFourByTwo .card-content .row {
  background-color: white;
}

.RelatedTrips.blog-categories .Card.CardOneByFour .tag-background {
  right: -40.5em;
}

.GetInTouch {
  padding: 6em;
  background-image: linear-gradient(rgba(0, 130, 170, 0) 50%, rgba(30, 30, 30, 0.7) 100%), url("../../../image/TH_2K_banners_Themes_Holidays-min.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.GetInTouch .caption {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  align-content: center;
}
@media (max-width: 767.98px) {
  .GetInTouch .caption {
    text-align: center;
  }
}
.GetInTouch .buttons {
  display: flex;
  flex-flow: wrap;
  align-content: center;
}
.GetInTouch h1, .GetInTouch h3 {
  color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1em;
  width: 100%;
}
.GetInTouch h1 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 3em;
}
.GetInTouch .btn {
  border-radius: 2px;
  text-transform: uppercase;
  padding: 11px 25px;
  height: 50px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
  margin-top: 1em;
  margin-right: 1em;
  width: 12em;
  min-width: 12em;
}
.GetInTouch .btn.btn-primary {
  background-color: #00bfe9;
  border-color: #00bfe9;
  margin-bottom: 1em;
}
.GetInTouch .btn.btn-secondary {
  background-color: #f59000;
  border-color: #f59000;
}
.GetInTouch .btn img {
  width: 1em;
  height: 1em;
  display: inline-block;
  margin-right: 0.5em;
}
.GetInTouch .buttons {
  text-align: left;
  flex-direction: row;
}
.GetInTouch .btn.btn-primary {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .GetInTouch .buttons {
    text-align: right;
    flex-direction: row-reverse;
  }
}

.WorldTravel .padding-for-bottom-left {
  padding-top: 46%;
  padding-right: 0;
}
.WorldTravel .btn-see-all-deals {
  position: relative;
  border: 2px solid #00BFE8;
  color: #00bfe9;
  text-transform: uppercase;
  padding-left: 2.5em;
}
.WorldTravel .btn-see-all-deals img {
  width: 1em;
  height: 1em;
  display: block;
  position: absolute;
  top: 0.7em;
  left: 1em;
}

.QuickFind {
  position: absolute;
  width: 100%;
  left: 20%;
  bottom: 0;
  height: 3em;
  background-color: #ffffff;
  box-shadow: 0px 3px 3px 1px rgb(239, 239, 239);
  order: 3;
}
.QuickFind .irs--flat {
  padding: 0 1em;
  width: 100%;
}
.QuickFind .irs--flat .irs-bar {
  background-color: #00BFE9;
}
.QuickFind .irs--flat .irs-handle.state_hover > i:first-child {
  background-color: #EEE;
}
.QuickFind .irs--flat .irs-handle > i:first-child {
  width: 1.5em;
  border-radius: 1em;
  background-color: #D3D3D3;
}
.QuickFind .irs--flat .irs-handle:hover > i:first-child {
  background-color: #EEE;
}

/*
.filter-form .btn-toolbar .th-btn-solid {
    margin-top: 2.25rem!important;
}*/
.custom-header {
  text-align: center !important;
  margin-top: 10px !important;
  min-height: 60px !important;
  font-weight: 400 !important;
  letter-spacing: -1px !important;
  font-size: 1em !important;
  text-transform: uppercase !important;
}

.col-12 .SVG-Icon svg {
  width: 30px;
  height: 30px;
}
.col-12 .SVG-Icon img {
  width: 30px !important;
  height: 30px !important;
}

.ThemeBlocks .SVG-Icon path {
  fill: #ffffff !important;
}
.ThemeBlocks .SVG-Icon polygon {
  fill: #ffffff !important;
}
.ThemeBlocks .col-12 .SVG-Icon svg {
  width: 30px;
  height: 30px;
}
.ThemeBlocks .col-12 .SVG-Icon img {
  width: 30px !important;
  height: 30px !important;
}
.ThemeBlocks h4 {
  text-align: center;
  margin-top: 10px;
  min-height: 60px;
  font-weight: 400;
}
.ThemeBlocks p {
  text-align: center;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.ThemeBlocks p a {
  color: #045dac;
  font-weight: bold;
  font-size: 0.8em;
}
.ThemeBlocks p a svg {
  display: inline;
  width: 1rem;
  vertical-align: sub;
}
.ThemeBlocks .btn-see-more {
  position: relative;
  border: 2px solid #00BFE8;
  color: #00bfe9;
  text-transform: uppercase;
  padding: 1em 1em 1em 2.5em;
  font-size: 1em;
  width: 280px;
  min-width: 280px;
}
.ThemeBlocks .btn-see-more svg {
  width: 1.1em;
  height: 1.1em;
  display: block;
  position: absolute;
  top: 1.2em;
  left: 1.5em;
}
.ThemeBlocks .btn-see-more svg path {
  fill: #00BFE8 !important;
}
.ThemeBlocks .btn-see-more:hover {
  text-decoration: none;
  box-shadow: -1px 0px 5px 3px rgba(0, 0, 0, 0.13);
}

.DiscoverCities {
  position: relative;
  line-height: 1em;
}
.DiscoverCities.half-height img {
  height: 117px;
}
.DiscoverCities.half-height .image-gradient::after {
  margin-top: -90px;
  height: 90px;
}
.DiscoverCities .title {
  position: absolute;
  display: inline-block;
  line-height: 1.2em;
  height: 1.2em;
  left: 1.2em;
  right: 2em;
  bottom: 1.4em;
  font-size: 1.7em;
  white-space: nowrap;
  color: #efefef;
  letter-spacing: -1px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.DiscoverCities .deals {
  display: block;
  position: absolute;
  left: 2em;
  bottom: 2em;
  font-size: 1em;
  color: #efefef;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  right: 4.5em;
}
.DiscoverCities .deals svg {
  width: 1em;
  height: 1em;
  top: 0.05em;
  left: 0;
}
.DiscoverCities .deals svg path {
  fill: #ffffff !important;
}
.DiscoverCities .card-read-more {
  position: absolute;
  width: 3em;
  height: 3em;
  right: 1em;
  bottom: 2em;
  cursor: pointer;
}
.DiscoverCities .card-read-more svg {
  width: 3em;
  height: 3em;
}
.DiscoverCities .image-gradient::after {
  display: block;
  position: relative;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, #000 100%);
  margin-top: -80px;
  height: 80px;
  width: 100%;
  content: "";
}

.LightGallery img {
  cursor: pointer;
  width: 100%;
}
.LightGallery .caption {
  display: block;
  position: absolute;
  left: 0em;
  right: 0em;
  bottom: 0em;
  color: white;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 5em 2.5em 1em 1em;
}
.LightGallery .fullscreen-icon {
  width: 1em;
  height: 1em;
  line-height: 1em;
  cursor: pointer;
  margin-left: 15px;
}
.LightGallery .fullscreen-icon svg {
  width: 15px;
  height: 15px;
}

.GoogleMap h1 {
  margin-bottom: 0;
  padding-bottom: 23px;
}
.GoogleMap p {
  text-align: center;
  line-height: 1em;
  margin: 0 0 8px 0;
}
.GoogleMap p.coordinates {
  margin-bottom: 30px;
}
.GoogleMap p svg {
  width: 1em;
  height: 1em;
  padding-bottom: 4px;
}

.lg-backdrop.in {
  opacity: 0.8 !important;
}

.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  border-color: #09C1EA !important;
}

.Experience-Badge svg {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 125px;
  margin-bottom: 20px;
}

.Check-UL {
  list-style: none;
  padding-left: 0px;
}
.Check-UL li:before {
  content: "✔";
  font-size: 12px;
  color: #00bfe9;
  margin-right: 10px;
}

.RequiredField label.left::after {
  content: "*";
  font-size: 20px;
  color: red;
}

.RequiredField label.left {
  font-weight: bold;
  font-size: 14px;
}

.RequiredFieldEmpty label.left {
  font-weight: bold;
  font-size: 14px;
}

.Slider-tick-option ul {
  list-style: none;
}
.Slider-tick-option ul li {
  display: inline;
}
.Slider-tick-option ul .odd label {
  float: left;
}

.custom-switch .custom-control-label::before {
  background: #52d1ed;
}

.custom-control-input:checked ~ .custom-control-label::before {
  background: #52d1ed;
  border-color: #52d1ed;
}

.contains-reference .right {
  position: absolute;
  top: 0;
  right: 0;
  color: #656565;
}

.checkboxcustom input {
  display: none;
}
#PopUpForm_PopUpForm .date label.left {
  min-height: 30px;
  min-width: 100%;
}

.js-validation-confirm {
  margin-top: 2.5rem !important;
}

.CustomCheckbox {
  display: flex !important;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: auto !important;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 12px !important;
  line-height: 1.2 !important;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.CustomCheckbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.CustomCheckbox input:checked ~ .checkmark {
  background-color: #2196f3;
}
.CustomCheckbox input:checked ~ .checkmark:after {
  display: block;
}
.CustomCheckbox_description {
  flex: 1 1 auto;
  order: 2;
  text-transform: uppercase;
}
.CustomCheckbox .checkmark {
  position: relative;
  order: 1;
  display: block;
  margin-right: 1rem;
  flex: 0 0 20px;
  height: 20px;
  width: 20px;
  background-color: #eee;
}
.CustomCheckbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.CustomCheckbox:hover input ~ .checkmark {
  background-color: #ccc;
}

.toggle-form {
  display: none;
  width: 100%;
  max-height: 100%;
  padding: 0 !important;
  box-shadow: none;
}
.toggle-form.active {
  display: block;
}
.toggle-form .btn-toolbar {
  position: sticky !important;
  bottom: 0;
  padding-bottom: 20px;
  background: #fff;
}

.PricingBlock-PromoPage .SpanMedTextBlue {
  font-size: 1em;
  text-transform: uppercase;
  color: #52d1ed;
  font-weight: bold;
}
.PricingBlock-PromoPage .SpanLargeTextBlue {
  font-size: 2.5em;
  text-transform: uppercase;
  color: #52d1ed;
  font-weight: bold;
  line-height: 0.8em;
}
.PricingBlock-PromoPage .SpanSmallTextBlue {
  font-size: 0.9em;
  text-transform: lowercase;
  color: #52d1ed;
}

.ValidText {
  color: #656565;
  margin-bottom: 0;
  text-transform: uppercase;
}
.ValidText svg {
  height: 15px;
  width: 15px;
}

.DepartureRegion {
  color: #656565;
  margin-bottom: 0;
  text-transform: uppercase;
}
.DepartureRegion svg {
  height: 15px;
  width: 15px;
}

.btn-reverse-orange {
  color: #f59000;
}

a.btn.btn-lg.btn-reverse-orange.icon-close.center-block, .btn-group-lg > a.btn.btn-reverse-orange.icon-close.center-block {
  color: #f59000;
  text-transform: uppercase;
  font-size: 1em;
  padding: 30px;
  float: left;
}

input#PopUpForm_PopUpForm_action_PromoDealSignUp {
  text-transform: uppercase;
  font-size: 1em;
  padding: 15px;
  float: right;
}

p.ValidText,
p.DepartureRegion {
  color: #888;
}

.custom-form-control {
  margin-top: 5px;
}

.customcheckbox {
  margin-top: 10px;
  font-size: 12px;
  margin-left: 5px;
}

span.checkmark {
  width: 20px;
  height: 20px;
  border-radius: 3px;
}

/*********************** New Sidebar Styles ***********************/
form#Form_PopUpForm {
  border: 1px solid #ddd;
  padding: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}

label.left {
  color: #7f7f7f !important;
}

.th-promo-product .th-sidebar .row {
  margin: 0;
}

.th-promo-product .th-sidebar .row [class*=" col-"], .th-promo-product .th-sidebar .row [class^=col-] {
  padding: 0 !important;
}
.th-promo-product .th-sidebar .row [class*=" col-"].th-promo-form-padding-end, .th-promo-product .th-sidebar .row [class^=col-].th-promo-form-padding-end {
  padding-inline-end: 0.5rem !important;
}

.th-promo-product .th-sidebar .Check-UL {
  padding-left: 0 !important;
}

.pt-3, .py-3 {
  padding-top: 0.75rem !important;
}

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

svg.svg-satsa {
  max-width: 70px;
}

div#instalmentCalc[id=instalmentCalc] {
  font-size: 0.875rem !important;
  text-transform: uppercase;
  font-weight: 400 !important;
  text-align: right !important;
  padding-top: 2px;
  margin-top: -10px;
}

.sidebar-padding {
  margin-right: 12px;
}

.price {
  margin-top: 10px;
}

button.th-btn-link {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  outline: none !important;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  white-space: nowrap;
  background: #00bfe9;
  padding: 0.75rem;
  border: none !important;
  border-radius: 6px;
  margin-left: 0.4rem;
}

.th-icon {
  padding-right: 2px !important;
}

@media only screen and (min-width: 1210px) {
  .row.tabs-row.HomeTabs.justify-content-center > div > div > form > div > button {
    margin-top: 2.25rem;
  }
}
@media only screen and (max-width: 1209px) and (min-width: 992px) {
  .btn-toolbar > .th-btn-solid {
    padding: 8px;
    font-size: 0.875rem;
  }
  .row.tabs-row.HomeTabs.justify-content-center > div > div > form > div > button {
    margin-top: 2.25rem !important;
  }
}
@media only screen and (max-width: 991px) {
  .btn-toolbar > .th-btn-solid {
    margin: 1rem !important;
    text-align: center;
  }
}
/*********************** Mobile Promo page ***********************/
.mobile-enquire {
  display: none !important;
}

.th-sidebar > div > div > button:nth-of-type(2) {
  background: #f59000 !important;
}

@media only screen and (max-width: 1366px) {
  button.th-btn-link {
    padding: 0.5rem;
  }
}
@media only screen and (min-width: 1210px) {
  .mobile-enquire {
    display: none !important;
  }
  .th-sidebar > div > div.call-to-action {
    text-align: center;
  }
  .th-sidebar > div > div.call-to-action > button {
    padding: 0.625rem;
  }
}
@media only screen and (max-width: 1209px) and (min-width: 768px) {
  .th-promo-header__package-details .group {
    flex: 0 0 40% !important;
  }
  .mobile-enquire {
    display: none !important;
  }
  .th-sidebar > div > div.call-to-action {
    text-align: left;
  }
  .th-sidebar > div > div.call-to-action > button {
    padding: 0.325rem;
  }
  button.th-btn-link {
    font-size: 0.825rem;
  }
  .th-sidebar > div > div.call-to-action > button > i {
    font-size: 0.875rem !important;
  }
  div#instalmentCalc {
    text-align: left !important;
    margin-top: 5px;
  }
}
@media only screen and (max-width: 1209px) and (min-width: 768px) {
  .container, .container-md, .container-sm {
    max-width: 780px;
  }
  .th-layout-sidebar {
    --sidebar-width:50%!important;
  }
  .RequiredFieldEmpty label.left, .RequiredField label.left, .field label, .contains-reference .right {
    font-size: 11px;
  }
  .th-tabs.th-flex.th-flex--row.th-fj--start.th-fa--top > a {
    font-size: 0.875rem !important;
  }
  .th-content .th-meta.th-flex.th-flex--row.th-fj--start.th-fa--center > .th-meta__item .label {
    font-size: 0.8rem !important;
  }
  .th-meta__item {
    margin: 0.25rem !important;
  }
}
@media only screen and (max-width: 767px) {
  button.th-btn-link {
    margin: 0rem 1rem 0rem 0rem;
  }
  .th-promo-product .th-sidebar .row [class*=" col-"].th-promo-form-padding-end, .th-promo-product .th-sidebar .row [class^=col-].th-promo-form-padding-end {
    padding-inline-end: 0rem !important;
  }
  .th-tabs.th-flex.th-flex--row.th-fj--start.th-fa--top > a {
    font-size: 0.875rem !important;
  }
  .mobile-enquire {
    display: inline !important;
  }
  .mobile-enquire > div > a.th-btn-solid.th-btn-solid--orange {
    width: 100%;
  }
  .th-promo-header__package-details .group {
    flex: 0 0 40% !important;
  }
  .th-sidebar > div > div.call-to-action {
    text-align: left;
  }
  .th-sidebar > div > div.call-to-action > button {
    padding: 0.825rem;
  }
  button.th-btn-link {
    font-size: 1rem;
  }
  .th-sidebar > div > div.call-to-action > button > i {
    font-size: 1rem !important;
  }
  .mobile-enquire {
    color: #f59000 !important;
  }
  .toggle-form {
    display: block;
  }
  .th-sidebar > div > div > button:nth-of-type(2) {
    display: none;
  }
  .th-promo-package-banner {
    height: 180px;
    overflow: hidden;
  }
  .th-tabs.th-flex.th-flex--row.th-fj--start.th-fa--top > a {
    font-size: 0.875rem !important;
  }
  .th-content .th-meta.th-flex.th-flex--row.th-fj--start.th-fa--center > .th-meta__item .label {
    font-size: 0.8rem !important;
  }
  .th-meta__item {
    margin: 0.25rem !important;
  }
}
i.th-icon.th-icon--mr.icon-handshake.th-meta__item--primary {
  font-weight: 300;
}

.DestinationBlockWell {
  background: #F8F6F6;
  padding: 15px;
  text-align: center;
  min-height: 120px;
}
.DestinationBlockWell .City {
  min-height: 70px;
}
.DestinationBlockWell a {
  text-decoration: none;
  color: #656565;
}
.DestinationBlockWell svg {
  width: 15px;
  height: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.DestinationBlockWell .Destination {
  text-align: center;
  margin-bottom: 0px;
}
.DestinationBlockWell .Price {
  color: #52d1ed;
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0px;
  font-weight: 600;
}

.ShortInfo {
  text-transform: uppercase;
}
.ShortInfo svg {
  height: 15px;
  width: 15px;
}
.ShortInfo svg path {
  fill: #656565;
}
.ShortInfo a {
  color: #656565;
}
.ShortInfo a {
  color: #656565;
}
.ShortInfo a:hover {
  text-decoration: none;
  color: #656565;
}

.stars svg {
  width: 13px;
  height: 13px;
  margin-top: -25px;
  margin-left: -6px;
}
.stars svg path {
  fill: #52d1ed !important;
}

.custom-form-control.checkbox label {
  font-size: 0.8em;
}

.Blue-Label label {
  color: #09c1ea;
  font-weight: bold;
  font-size: 14px;
}

.sticky {
  position: fixed;
  background-color: white;
  width: 100%;
  z-index: 1029;
  left: 50%;
  transform: translate(-50%, 0);
}

.Blue-Element {
  color: #00BFE9 !important;
}
.Blue-Element a {
  color: #00BFE9 !important;
}
.Blue-Element span {
  color: #00BFE9 !important;
}
.Blue-Element svg path {
  fill: #00BFE9 !important;
}

.ProductInformation h1 {
  font-size: 2.1rem;
}
.CustomCardSticky {
  box-shadow: none !important;
}

@media (min-width: 992px) {
  .my-shadow {
    box-shadow: 0px 21px 8px 0px rgb(255, 255, 255);
  }
}
.image-with-text-Custom {
  position: relative;
  line-height: 1em;
}
.image-with-text-Custom img {
  width: 100%;
  height: 200px;
}
.image-with-text-Custom.half-height img {
  height: 117px;
}
.image-with-text-Custom.half-height .image-gradient::after {
  margin-top: -90px;
  height: 90px;
}
.image-with-text-Custom .title {
  position: absolute;
  display: inline-block;
  line-height: 1.2em;
  left: 1.2em;
  right: 2em;
  bottom: 1em;
  font-size: 1.7em;
  white-space: nowrap;
  color: #efefef;
  letter-spacing: -1px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.image-with-text-Custom .image-gradient::after {
  display: block;
  position: relative;
  background-image: linear-gradient(to bottom, transparent 0, #000 100%);
  margin-top: -80px;
  height: 80px;
  width: 100%;
  content: "";
}
.image-with-text-Custom .deals {
  display: block;
  position: absolute;
  left: 2em;
  bottom: 2em;
  font-size: 1em;
  color: #efefef;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  right: 4.5em;
}
.image-with-text-Custom .deals svg {
  width: 1em;
  height: 1em;
  top: 0.05em;
  left: 0;
}
.image-with-text-Custom .deals svg path {
  fill: #ffffff !important;
}
.image-with-text-Custom .card-read-more {
  position: absolute;
  width: 3em;
  height: 3em;
  right: 1em;
  bottom: 2em;
  cursor: pointer;
}
.image-with-text-Custom .card-read-more svg {
  width: 3em;
  height: 3em;
}

.ValidText {
  text-transform: uppercase;
}

.DepartureRegion {
  text-transform: uppercase;
}

.Themes path {
  fill: #656565 !important;
}

.no-border {
  border: none;
  box-shadow: none;
}

.results .CardFourByTwo {
  box-shadow: 0px -1px 6px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.FilterPackages {
  margin-top: 30px;
}

.results .HideExtra {
  max-height: 1250px;
}

@media (max-width: 992px) {
  .Tabs-Header {
    height: 30px;
  }
  .Tabs-Header .nav-tabs {
    position: absolute;
    left: 0;
    margin-left: -30px;
    margin-right: -30px;
    bottom: 0;
  }
}
.Banner-CampaignName .BannerName {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
}
.Banner-CampaignName .BannerName .CampaignSlider__h1 {
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 4.5em;
  text-transform: uppercase;
}
.Banner-CampaignName .BannerName .CampaignSlider__h2 {
  text-align: center;
  color: white;
  font-weight: lighter;
  font-size: 3.5em;
  text-transform: uppercase;
}

.View-Deals {
  background: none;
  border: 2px solid #52d1ed;
  color: #52d1ed;
  padding: 16px 25px;
  border-radius: 5px;
}
.View-Deals svg {
  width: 18px;
  height: 18px;
}

.View-Deals:hover {
  color: #13C1EA;
  text-decoration: none;
  box-shadow: -1px 0px 5px 3px rgba(0, 0, 0, 0.13);
}

@media (max-width: 1366px) {
  #Form_FilterTripForm label {
    font-size: 13px !important;
  }
  #steps-sliderNavPrice {
    width: 40% !important;
  }
  #steps-slider3 {
    width: 40% !important;
  }
}
@media (max-width: 1366px) {
  #Form_FilterTripForm_PromoPackagePriceMin_Holder .middleColumn {
    padding-top: 4px;
  }
}
@media (max-width: 1200px) {
  #Form_FilterTripForm label {
    min-height: 40px;
  }
  #Form_FilterTripForm #Form_FilterTripForm_action_promoPackageSearch {
    margin-top: 0px;
  }
  #Form_FilterTripForm #CollapseNavExtraFields {
    position: relative;
    top: 0;
  }
}
@media (max-width: 1209px) {
  #Form_FilterTripForm label {
    font-size: 12px !important;
  }
}
#Form_FilterTripForm {
  margin: 0 !important;
}
#Form_FilterTripForm label {
  display: block;
  height: 1.25rem;
  margin-top: 0 !important;
  margin-bottom: 0.5rem !important;
  min-height: 18px;
  white-space: nowrap;
}
#Form_FilterTripForm #steps-slider1,
#Form_FilterTripForm #steps-slider3 {
  width: 120px !important;
  margin-right: 1.1rem;
  margin-left: 0.25rem;
}
@media screen and (min-width: 992px) {
  #Form_FilterTripForm #steps-slider1,
  #Form_FilterTripForm #steps-slider3 {
    width: 80px !important;
    margin-right: 1.1rem;
    margin-left: 0.25rem;
  }
}
#Form_FilterTripForm .middleColumn {
  padding-top: 0 !important;
}
#Form_FilterTripForm .middleColumn input.date {
  padding-right: 2rem;
}
#Form_FilterTripForm + .FilterPackages {
  margin: 0;
}
#Form_FilterTripForm + .FilterPackages .results.HideExtra {
  margin-top: 2rem;
}

.enquire-success {
  padding: 20px;
  background-color: #ebfbd9;
  border-radius: 5px;
  color: #3a883d;
  border: 2px solid #3a883d;
}

/*Mobile Modifications for Header*/
@media (max-width: 1200px) {
  #sticky-nav2 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .CustomPromoTabs {
    padding-left: 30px;
  }
  .CustomPromoTabs .CustomTab {
    font-size: 16px;
    padding-left: 15px;
  }
  .ValidText {
    font-size: 0.9rem;
  }
  .DepartureRegion {
    font-size: 0.9rem;
  }
  .PricingBlock-PromoPage {
    margin-bottom: 0px;
  }
  .PricingBlock-PromoPage .SpanLargeTextBlue {
    font-size: 1.8rem;
  }
  .btn-block {
    width: auto !important;
    margin-left: auto;
  }
}
@media (max-width: 1200px) {
  #Form_FilterTripForm {
    margin-bottom: 60px;
  }
}
.LightBlue-Background img {
  width: 200px;
}

.DontShowMe {
  display: none;
}

.ShowThis {
  display: block !important;
}

.Display-None {
  display: none !important;
}

.LightBlue-Background {
  background: none;
  padding: 0;
  border-radius: 0;
  text-align: center;
}

.LightBlue-Background img {
  max-width: 45%;
  background: #00BFE9;
  padding: 30px;
  border-radius: 50%;
}

.LightBlue-Background svg {
  width: 6.3em;
  height: 6.3em;
  background: #00BFE9;
  padding: 30px;
  border-radius: 50%;
}

.RelatedTrips .Card.CardTwoByFour .title, .DestinationTravel .Card.CardTwoByFour .title, .ThemeTravel .Card.CardTwoByFour .title {
  bottom: 2.4em;
}
.RelatedTrips .Card .card-read-more, .DestinationTravel .Card .card-read-more, .ThemeTravel .Card .card-read-more {
  bottom: 3.4em;
}

@media screen and (max-width: 1440px) {
  .Banner-RegionName > div {
    margin-top: -50px;
  }
}
@media screen and (max-width: 1024px) {
  .Banner-RegionName > div {
    margin-top: -50px;
    font-size: 24px;
  }
  .DestinationPageBanner {
    height: 220px;
  }
}
@media screen and (max-width: 799px) {
  .Banner-RegionName > div {
    margin-top: 0px;
    font-size: 18px;
  }
  .DestinationPageBanner {
    height: 180px;
  }
}
@media only screen and (max-device-width: 799px) {
  .inner > h1 {
    font-size: 24px !important;
    padding-top: 0px;
  }
  .large-icon-with-text.royal-blue.hover-popout-background,
  .hover-popout-background > a > img,
  .hover-popout-background > div.content,
  .image-with-text.hover-popout-background {
    width: 50vw;
    height: 45vw;
  }
  .image-with-text.hover-popout-background {
    overflow: hidden;
  }
  .hover-popout-background > div.content > h4 {
    margin-top: 5vw;
    font-size: 24px;
  }
  .hover-popout-background > div.content > div.intro > p {
    font-size: 13px;
    -webkit-line-clamp: 3;
  }
  .row.justify-content-center.pt-0 > div:nth-of-type(4), .row.justify-content-center.pt-0 > div:nth-of-type(3) {
    display: none !important;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .next-arrow, .prev-arrow {
    height: 3em;
    width: 3em;
    background-size: 3em 3em;
  }
  .WorldTravel.WorldTravelAddition .carousel-item .all-destinations {
    /* Landscape */
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) and (orientation: portrait) {
  .WorldTravel.WorldTravelAddition .carousel-item .all-destinations {
    padding-right: 2em;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) and (orientation: landscape) {
  .WorldTravel.WorldTravelAddition .carousel-item .all-destinations {
    padding-right: 2em;
  }
}
@media (max-width: 991px) and (min-width: 769px) {
  .ThemesLandingPageCSS .tablet-center, .owl-carousel-theme .tablet-center {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 264dpi), only screen and (min-resolution: 2dppx) {
  /* Landscape */
}
@media only screen and (min-device-pixel-ratio: 2) and (orientation: landscape), only screen and (min-resolution: 264dpi) and (orientation: landscape), only screen and (min-resolution: 2dppx) and (orientation: landscape) {
  .ipad-air {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .ipad-air-block {
    display: none !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .PromoPackageSlider .CustomCardPromoPackages .tag-background {
    right: -14em;
  }
  .PromoPackageSlider .CustomCardPromoPackages .tag-background .tag-text {
    display: none !important;
  }
  .PromoPackageSlider .CustomCardPromoPackages .tag-background svg {
    bottom: 0.5em;
    left: 3.6em;
  }
}
@media screen and (max-width: 768px) {
  .center-md-text {
    text-align: center;
  }
  .DestinationPageBanner .Banner-RegionName h1 {
    font-size: 2em;
  }
  .ThemesRow .Card.CardOneByFour .enquire, .WorldTravelPromosContainer .Card.CardOneByFour .enquire, .WorldTravelAddition .Card.CardOneByFour .enquire, .home-mobile-top-offers .Card.CardOneByFour .enquire {
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
    padding: 0px;
  }
  .ThemesRow .all-holidays .Card.CardOneByFour .tag-background-mobile svg {
    left: 55.5%;
  }
  .LightBlue-Background img {
    max-width: 51%;
    padding: 15px;
  }
  .TopOffers-content .Card.CardOneByFour .enquire {
    right: 0;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }
  .RelatedTrips a.title, .RelatedTrips a.price {
    text-align: left !important;
  }
  .RelatedTrips .related-img img {
    min-height: 100% !important;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .RelatedTrips .mobile-enquire {
    position: absolute !important;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
  }
  .carousel-item .home-mobile-top-offers .Card.CardOneByFour .tag-background-mobile {
    right: -30em;
  }
}
@media screen and (max-width: 767px) {
  .WorldTravel.DestinationTravel h1 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .WorldTravel.ThemeTravel h1 {
    padding-left: 16px;
    padding-right: 16px;
  }
  .PageBanner .PageBannerContentRow {
    height: auto;
    top: 50%;
    position: relative;
    transform: translate(0, -50%);
  }
  .carousel-control-prev {
    align-items: flex-start;
    top: -75px;
    margin-left: 20px;
    width: 10% !important;
    left: -10% !important;
  }
  .carousel-control-next {
    align-items: flex-start;
    top: -75px;
    margin-right: 20px;
    width: 10% !important;
    right: -10% !important;
  }
  .CampaignSlider .carousel-control-prev {
    align-items: center;
    top: 0;
    margin-left: 0px;
    width: 15% !important;
    left: 0% !important;
  }
  .CampaignSlider .carousel-control-next {
    align-items: center;
    top: 0;
    margin-right: 0px;
    width: 15% !important;
    right: 0% !important;
  }
  .WorldTravelPromosContainer .carousel-control-prev, .WorldTravelPromosContainer .carousel-control-next {
    top: -7.5em;
  }
  .PageBanner .PageBannerContent h1 {
    color: #ffffff;
    font-weight: 100;
    font-size: 2.5em;
  }
  .PageBanner .PageBannerImage {
    height: 150px;
    background-repeat: no-repeat;
    background-size: initial;
  }
  .Masonry .Card .tag-background .tag-text {
    bottom: -0.1em;
  }
  .WorldTravelPromosContainer .home-mobile-top-offers .Card.CardOneByFour .tag-background-mobile {
    right: -31em;
  }
  #Form_FilterTripForm #CollapseNavExtraFields {
    margin-top: 1.5rem;
  }
  #Form_FilterTripForm label {
    min-height: auto;
  }
  .Card.CardFourByFour .title {
    bottom: 2.4em;
  }
  .Card .deals-count {
    padding-right: 54px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .Trips-Holder fieldset {
    margin: auto;
  }
  .Trips-Holder .btn-toolbar {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .Trips-Holder .filter-form #steps-slider3 {
    width: 42%;
  }
  .Trips-Holder .noUi-horizontal .noUi-handle {
    right: -15px;
  }
  .WorldTravelPromosContainer .Card.CardTwoByFour .title {
    bottom: 2.8em;
  }
  .WorldTravelPromosContainer .Card .card-read-more {
    bottom: 4em;
  }
  .DealsCollection .Card .card-read-more {
    bottom: 2.5em;
  }
  .Card .tag-background {
    top: -32em;
    right: -31.9em;
    background-position: 50.5% 98%;
  }
  .Card .tag-background .tag-text {
    opacity: 0;
    visibility: hidden;
  }
  .Card .card-read-more {
    bottom: 2.5em;
  }
  .dropdown-menu.holiday-dropdown {
    min-width: 0;
  }
  .card-content {
    text-align: center;
  }
  .Front-End {
    padding-top: 7.5em;
  }
  header {
    height: 7.5em;
  }
  header .navbar {
    height: 7.5em;
  }
  .DestinationPageBanner {
    height: 22vh;
  }
  .Banner-CampaignName .BannerName .CampaignSlider__h1 {
    text-align: center;
    color: white;
    font-weight: bold;
    width: 80%;
    margin: auto;
    font-size: 2.5em;
    text-transform: uppercase;
  }
  .RelatedTrips .Card.CardTwoByFour .title, .DestinationTravel .Card.CardTwoByFour .title, .ThemeTravel .Card.CardTwoByFour .title {
    bottom: 2.9em;
  }
  .RelatedTrips .Card .card-read-more, .DestinationTravel .Card .card-read-more, .ThemeTravel .Card .card-read-more {
    bottom: 4.2em;
    right: 2em;
  }
  .blog-categories .prev-arrow {
    background: url("../../../icons/standard/card-read-more.svg");
    height: 3em;
    width: 3em;
    background-size: 3em 3em;
    top: 3em;
    left: 3%;
  }
  .blog-categories .next-arrow {
    background: url("../../../icons/standard/card-read-more.svg");
    height: 3em;
    width: 3em;
    background-size: 3em 3em;
    top: 3em;
    right: 3%;
  }
  .blog-categories .summery-category {
    margin-top: 0.4rem !important;
  }
  .blog-categories .Categories-Banner {
    height: 125px;
  }
  .blog-categories .Categories-Banner .ImageText {
    bottom: 0;
    width: 76%;
    padding: 0px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .blog-categories .Categories-Banner .ImageText .card-read-more {
    bottom: 50%;
    right: 10%;
    top: auto;
    left: auto;
    transform: translate(-50%, 50%);
  }
  .blog-categories .Categories-Banner .ImageText .Title {
    font-size: 32px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .blog-categories .Categories-Banner .ImageText .Title, .blog-categories .Categories-Banner .ImageText .Count {
    text-align: center;
  }
  .center-sm-text {
    text-align: center;
  }
  .LightBlue-Background {
    background: none;
    padding: 0;
    border-radius: 0;
    text-align: center;
  }
  .LightBlue-Background img {
    max-width: 35%;
    background: #00BFE9;
    padding: 15px;
    border-radius: 50%;
  }
  .LightBlue-Background svg {
    width: 3.3em;
    height: 3.3em;
    background: #00BFE9;
    padding: 15px;
    border-radius: 50%;
  }
  .custom-header {
    font-size: 0.7em !important;
    min-height: 26px !important;
  }
  .Card .card-read-more {
    width: 1.5em;
    bottom: 1.5em;
  }
  .home-mobile-top-offers img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home-mobile-top-offers .Card.CardOneByFour .tag-background-mobile {
    top: -34.5em;
    right: -31em;
  }
  .home-mobile-top-offers .Card.CardOneByFour .tag-background-mobile svg {
    bottom: 0.1em;
    left: 54.6%;
  }
  .home-mobile-top-offers .Card.CardOneByFour .tag-background-mobile .tag-text {
    display: none;
  }
  .home-mobile-top-offers .enquire-mobile {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translate(0, -50%);
    color: #F59000;
  }
  .home-mobile-top-offers .enquire-mobile svg {
    width: 1em;
    height: 1em;
  }
  .home-mobile-top-offers .enquire-mobile svg path {
    fill: #F59000 !important;
  }
  .home-mobile-top-offers .title, .home-mobile-top-offers .star-rating, .home-mobile-top-offers .price {
    text-align: left !important;
    padding-right: 10px;
    line-height: 16px !important;
  }
  .home-mobile-top-offers .star-rating {
    display: inline !important;
  }
  .home-mobile-top-offers .star-rating svg {
    width: 0.7em !important;
  }
  .ThreeColumnSliderContainer-Mobile {
    background: #D0D0D0;
    margin: 0px -15px;
  }
  .ThreeColumnSliderContainer-Mobile .ColumnHeader {
    background: white;
  }
  .ThreeColumnSliderContainer-Mobile .carousel-item {
    margin-right: 0;
  }
  .ThreeColumnSliderContainer-Mobile .ThreeColumnSliderWrapper .ThreeColumnSlider .carousel-item {
    padding: 0;
  }
  .ThreeColumnSliderContainer-Mobile .Card.CardFourByTwo .card-content {
    position: relative;
  }
  .ThreeColumnSliderContainer-Mobile .Card.CardFourByTwo {
    box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.45);
  }
  #DestinationCollection .carousel-control-prev {
    width: 14%;
    left: -33px;
  }
  #DestinationCollection .carousel-control-next {
    width: 14%;
    right: -33px;
  }
  .prev-arrow {
    height: 2em;
    width: 2em;
    background: url("../../../icons/standard/card-read-more-grey.svg ");
    background-size: contain !important;
    background-repeat: no-repeat !important;
    position: absolute;
    top: 6em;
    left: -1%;
    transform: rotate(180deg);
  }
  .next-arrow {
    height: 2em;
    width: 2em;
    background: url("../../../icons/standard/card-read-more-grey.svg ");
    background-size: contain !important;
    background-repeat: no-repeat !important;
    position: absolute;
    top: 6em;
    right: -1%;
  }
  .GetInTouch {
    padding: 40px 0px 10px 0px;
  }
  .GetInTouch .btn {
    margin-right: 0;
  }
  .DestinationsMetro .large-icon-with-text {
    padding: 5px 15px;
    height: auto;
  }
  .DestinationsMetro .content {
    padding: 3px 2.1em;
    height: 158px;
  }
  .DestinationsMetro .content h4 {
    font-size: 1.6em;
  }
  .DestinationsMetro .content .read-more {
    position: relative;
    height: auto;
  }
  .DestinationsMetro .image-with-text img {
    height: auto;
  }
  .DestinationsMetro .image-gradient::after {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
  }
  .DestinationsMetro .intro p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .icons-and-logos .next-arrow, .icons-and-logos .prev-arrow {
    top: 1em;
  }
  .icons-and-logos .prev-arrow {
    height: 2em;
    width: 2em;
    background-size: 2em 2em;
    left: 0%;
  }
  .icons-and-logos .next-arrow {
    height: 2em;
    width: 2em;
    background-size: 2em 2em;
    right: 0%;
  }
  .content-tabs {
    justify-content: space-around;
  }
  .Card.CardFourByTwo .card-content {
    height: auto;
  }
  .filter-content .Card .tag-background .tag-text, .owl-carousel-holidays .Card .tag-background .tag-text {
    bottom: -0.5em;
  }
  .all-holidays .Card.CardOneByFour .title, .all-holidays .Card.CardOneByFour .price, .all-holidays .Card.CardOneByFour .star-rating {
    text-align: left;
    padding-right: 10px;
    line-height: 16px;
  }
  .all-holidays .Card.CardOneByFour .star-rating {
    display: inline !important;
  }
  .all-holidays .Card.CardOneByFour .star-rating svg {
    width: 0.7em !important;
  }
  .all-holidays .Card.CardOneByFour .tag-background-mobile {
    top: -34.45em;
    right: -31em;
  }
  .all-holidays .Card.CardOneByFour .tag-background-mobile svg {
    bottom: 0.1em;
    left: 54.5%;
  }
  .all-holidays .Card.CardOneByFour .tag-background-mobile .tag-text {
    display: none;
  }
  .all-holidays img {
    height: 120px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .all-holidays .enquire-mobile {
    position: absolute !important;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
  }
  .ThemesLandingPageCSS .all-holidays .Card.CardOneByFour .tag-background-mobile {
    right: -31em !important;
  }
  .Card.CardTwoByFourCustom .card-read-more {
    bottom: 2.5em;
  }
  #DestinationCollection .carousel-control-prev {
    width: 10%;
    left: -32px;
  }
  #DestinationCollection .carousel-control-next {
    width: 10%;
    right: -32px;
  }
  .WorldTravel.DestinationTravel .Card .card-read-more {
    right: 1em;
  }
  .HomeTabs .Tabs .nav-item {
    background: #fff;
    color: #5ed4ee;
    margin-right: 0px !important;
  }
  .HomeTabs .Tabs a.nav-item {
    border-bottom: 5px solid #ffffff;
    padding: 20px 30px !important;
  }
  .content-tabs {
    justify-content: left !important;
  }
  .HomeTabs .Tabs a.nav-item:hover, .HomeTabs .Tabs a.nav-item.active {
    border-bottom: 5px solid #5ed4ee !important;
  }
  .row.tabs-row.HomeTabs.justify-content-center {
    margin-top: 15px;
  }
}
@media screen and (max-width: 375px) {
  .DestinationsMetro .content {
    height: 158px;
  }
  .Banner-CampaignName .BannerName .CampaignSlider__h1 {
    font-size: 2.2em;
  }
}
@media screen and (max-width: 320px) {
  #DestinationCollection .carousel-control-prev {
    width: 10%;
    left: -32px;
  }
  #DestinationCollection .carousel-control-next {
    width: 10%;
    right: -28px;
  }
  .Banner-CampaignName .BannerName .CampaignSlider__h1 {
    font-size: 2em;
  }
}
table.responsive {
  width: 100%;
  border-collapse: collapse;
}

td.responsive {
  width: 30%;
  border-collapse: collapse;
}

@media only screen and (min-device-width: 1290px) {
  td.responsive > div {
    padding: 35px;
    height: 550px;
  }
}
@media only screen and (max-device-width: 1290px) {
  td.responsive {
    width: 100%;
    border-collapse: collapse;
  }
  table, thead, tbody, th {
    display: block;
  }
  tr.responsive, td.responsive {
    display: block !important;
  }
  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  td.responsive {
    position: relative;
  }
  td.spacer-col {
    display: none;
  }
  td.responsive > img {
    position: relative;
  }
  td.responsive > div {
    padding: 35px;
  }
}
@media only screen and (max-device-width: 500px) {
  .col-12.col-md-8.post-header > .CampaignSlider__h1 {
    font-size: 1.3em;
    margin-bottom: 20px;
    margin-top: -30px;
  }
}
@media only screen and (max-device-width: 800px) {
  .col-12.col-md-8.post-header > .CampaignSlider__h1 {
    font-size: 1.8em;
    margin-bottom: 20px;
    margin-top: -30px;
  }
}
@media only screen and (max-device-width: 500px) {
  .CampaignSlider__h1 {
    font-size: 24px;
    padding-top: 20px;
  }
}
@media only screen and (max-device-width: 1024px) and (min-device-width: 501px) {
  .CampaignSlider__h1 {
    font-size: 30px;
    line-height: 1.2;
  }
}
.BreadCrumbs {
  padding-top: 10px;
  padding-bottom: 10px;
  background: #f8f6f6;
}
@media screen and (min-width: 1200px) and (max-width: 1366px) {
  .BreadCrumbs {
    top: 80px !important;
  }
}
.BreadCrumbs svg.svg-chevron-right {
  padding-bottom: 0.2em;
}
.BreadCrumbs .Home svg {
  height: 20px;
  padding-bottom: 0.2em;
}
.BreadCrumbs path {
  fill: #656565;
}
.BreadCrumbs a {
  text-transform: uppercase;
  color: #656565;
  font-size: 0.8em;
}
.BreadCrumbs .active a {
  color: #00bfe9;
  font-weight: bold;
}

.HomeIcon {
  background: url("../../../icons/standard/home-solid-grey.svg") left no-repeat;
  background-position: 8% 46%;
  background-size: 1.3em 1.3em;
  height: 18px;
  padding: 8px;
}
.HomeIcon svg {
  height: 20px;
  padding-bottom: 0.2em;
}

.AddSecondshade {
  box-shadow: inset 1px -3px 7px -1px rgba(0, 0, 0, 0.1);
}

.out-of-season-message__actions {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
@media screen and (min-width: 992px) {
  .out-of-season-message__actions {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.out-of-season-message__actions .btn {
  flex: 1 1 100%;
  margin-top: 1rem;
  margin-left: 0;
  max-width: none;
}
@media screen and (min-width: 992px) {
  .out-of-season-message__actions .btn {
    flex: 1 1 auto;
    margin-left: 1rem;
    margin-top: 0;
  }
}
.out-of-season-message__actions .btn:first-child {
  margin-top: 0;
}
@media screen and (min-width: 992px) {
  .out-of-season-message__actions .btn:first-child {
    margin-left: 0;
    margin-top: 0;
  }
}

.iubenda-banner-content > p {
  font-family: "Lato", sans-serif;
  line-height: 1.5;
}

.iubenda-cs-cookie-policy-lnk {
  text-decoration: underline;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

#iubenda-cs-banner {
  bottom: 0 !important;
  left: 0 !important;
  position: fixed !important;
  width: 100% !important;
  z-index: 99999998 !important;
}
#iubenda-cs-banner .iubenda-cs-content {
  display: block;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  width: auto;
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  background: #00bfe9;
  color: #ffffff;
}
#iubenda-cs-banner .iubenda-cs-content .iubenda-cs-rationale {
  max-width: 900px;
  position: relative;
  margin: 0 auto;
}
#iubenda-cs-banner .iubenda-cs-content .iubenda-cs-rationale .iubenda-banner-content {
  outline: none;
}
#iubenda-cs-banner .iubenda-cs-content .iubenda-cs-rationale .iubenda-banner-content #iubenda-cs-title {
  font-size: 1.65rem;
}
#iubenda-cs-banner .iubenda-cs-content .iubenda-cs-rationale .iubenda-cs-close-btn {
  margin: 0;
  text-decoration: none;
  font-size: 0.875rem;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: #ffffff !important;
  color: #00bfe9;
}

.mat-icon {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}

@media screen and (max-width: 1366px) {
  body {
    font-size: 0.8rem;
  }
}

.th-btn-outline {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border: 2px solid currentColor;
  border-radius: 4px;
  outline: none !important;
  background-color: transparent;
  color: currentColor;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.14), 0 0 0 0 rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(0, 0, 0, 0.06);
  transition-property: box-shadow;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.th-btn-outline .mat-icon:first-child {
  margin-right: 0.5rem;
}
.th-btn-outline .mat-icon:last-child {
  margin-left: 0.5rem;
}
.th-btn-outline span {
  white-space: nowrap;
}
.th-btn-outline:hover {
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.14), 0 4px 5px 0 rgba(0, 0, 0, 0.08), 0 1px 10px 0 rgba(0, 0, 0, 0.06);
}
.th-btn-outline--sm {
  padding: 0.25rem 0.75rem;
}
.th-btn-outline--light-blue {
  color: #00BFE9;
}
.th-btn-outline--light-blue:hover {
  color: #00BFE9;
}
.th-btn-outline--dark-blue {
  color: #005BAB;
}
.th-btn-outline--dark-blue:hover {
  color: #005BAB;
}
.th-btn-outline--orange {
  color: #F59000;
}
.th-btn-outline--orange:hover {
  color: #F59000;
}
.th-btn-outline--black {
  color: #000000;
}
.th-btn-outline--black:hover {
  color: #000000;
}
.th-btn-outline--white-orange {
  color: #ffffff;
}
.th-btn-outline--white-orange:hover {
  color: #ffffff;
}

.th-btn-solid {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border: none !important;
  border-radius: 6px;
  outline: none !important;
  background-color: #ffffff;
  color: #00bfe9;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.14), 0 0 0 0 rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(0, 0, 0, 0.06);
  transition-property: box-shadow;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.th-btn-solid .mat-icon, .th-btn-solid .th-icon, .th-btn-solid svg {
  line-height: 1rem;
  font-size: 1rem;
  margin-right: 0.2rem;
}
.th-btn-solid .mat-icom, .th-btn-solid svg {
  width: 1rem;
  height: 1rem;
}
.th-btn-solid span {
  white-space: nowrap;
}
.th-btn-solid:hover {
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.14), 0 4px 5px 0 rgba(0, 0, 0, 0.08), 0 1px 10px 0 rgba(0, 0, 0, 0.06);
}
.th-btn-solid--sm {
  padding: 0.25rem 0.75rem;
}
.th-btn-solid--light-blue {
  background-color: #00BFE9 !important;
  color: #ffffff !important;
}
.th-btn-solid--light-blue:hover {
  color: #ffffff !important;
}
.th-btn-solid--dark-blue {
  background-color: #005BAB !important;
  color: #ffffff !important;
}
.th-btn-solid--dark-blue:hover {
  color: #ffffff !important;
}
.th-btn-solid--orange {
  background-color: #F59000 !important;
  color: #ffffff !important;
}
.th-btn-solid--orange:hover {
  color: #ffffff !important;
}
.th-btn-solid--black {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.th-btn-solid--black:hover {
  color: #ffffff !important;
}
.th-btn-solid--white-orange {
  background-color: #ffffff !important;
  color: #F59000 !important;
}
.th-btn-solid--white-orange:hover {
  color: #F59000 !important;
}
.th-btn-solid.has-icon-magnify:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "thompsons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e908";
  display: inline-block;
  margin-right: 0.2rem;
}

.th-btn-transparent {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 6px;
  outline: none !important;
  background-color: #ffffff;
  color: #00bfe9;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.14), 0 0 0 0 rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(0, 0, 0, 0.06);
  transition-property: box-shadow;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.th-btn-transparent .mat-icon, .th-btn-transparent .th-icon, .th-btn-transparent svg {
  line-height: 1rem;
  font-size: 1rem;
  margin-right: 0.375rem;
}
.th-btn-transparent .mat-icom, .th-btn-transparent svg {
  width: 1rem;
  height: 1rem;
}
.th-btn-transparent span {
  white-space: nowrap;
}
.th-btn-transparent:hover {
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.14), 0 4px 5px 0 rgba(0, 0, 0, 0.08), 0 1px 10px 0 rgba(0, 0, 0, 0.06);
}
.th-btn-transparent--light-blue {
  background-color: rgba(0, 191, 233, 0.12);
  color: #00BFE9;
}
.th-btn-transparent--light-blue:hover {
  color: #00BFE9;
}
.th-btn-transparent--dark-blue {
  background-color: rgba(0, 91, 171, 0.12);
  color: #005BAB;
}
.th-btn-transparent--dark-blue:hover {
  color: #005BAB;
}
.th-btn-transparent--orange {
  background-color: rgba(245, 144, 0, 0.12);
  color: #F59000;
}
.th-btn-transparent--orange:hover {
  color: #F59000;
}
.th-btn-transparent--black {
  background-color: rgba(0, 0, 0, 0.12);
  color: #000000;
}
.th-btn-transparent--black:hover {
  color: #000000;
}
.th-btn-transparent--white-orange {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
.th-btn-transparent--white-orange:hover {
  color: #ffffff;
}

.th-btn-outline.th-hidden-label .th-icon,
.th-btn-solid.th-hidden-label .th-icon,
.th-btn-transparent.th-hidden-label .th-icon {
  margin-right: 0;
}
.th-btn-outline.th-hidden-label .label,
.th-btn-solid.th-hidden-label .label,
.th-btn-transparent.th-hidden-label .label {
  display: none;
}
@media screen and (min-width: 575px) {
  .th-btn-outline.th-hidden-label .th-icon,
  .th-btn-solid.th-hidden-label .th-icon,
  .th-btn-transparent.th-hidden-label .th-icon {
    margin-right: 0.2rem;
  }
  .th-btn-outline.th-hidden-label .label,
  .th-btn-solid.th-hidden-label .label,
  .th-btn-transparent.th-hidden-label .label {
    display: block;
  }
}

.btn-group {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
}
.btn-group > * {
  margin-left: 0;
  margin-top: 1rem;
  margin-bottom: 0 !important;
}
.btn-group > *:first-child {
  margin-left: 0;
  margin-top: 0;
}
@media screen and (min-width: 992px) {
  .btn-group {
    flex-direction: row;
  }
  .btn-group > * {
    margin-top: 0;
    margin-left: 1rem;
  }
  .btn-group > *:first-child {
    margin-top: 0;
    margin-left: 0;
  }
}

.ShowMore, .ShowLess, .Show-btn {
  padding: 15px 20px;
  color: #00bfe9;
  border: 2px solid #00bfe9;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 20px;
  display: inline-block;
  text-transform: uppercase;
  min-width: 260px;
}
@media screen and (max-width: 575px) {
  .ShowMore, .ShowLess, .Show-btn {
    max-width: 100%;
    min-width: 100%;
  }
}
.ShowMore svg, .ShowLess svg, .Show-btn svg {
  width: 1.25em;
  height: 1.25em;
  margin-bottom: 3px;
}
.ShowMore svg path, .ShowLess svg path, .Show-btn svg path {
  fill: #00bfe9 !important;
}
.ShowMore:hover, .ShowLess:hover, .Show-btn:hover {
  color: #13C1EA;
  text-decoration: none;
  box-shadow: -1px 0px 5px 3px rgba(0, 0, 0, 0.13);
}

.btn-has-loader {
  background-image: url("../../../icons/standard/loader.svg") !important;
  background-size: 24px 6px;
  background-repeat: no-repeat;
  background-position: -28px 50%;
  padding-left: 1rem;
  transition: all 300ms ease-in-out;
}
.btn-has-loader--clicked {
  background-position: 16px 50%;
  padding-left: 56px;
}

input.hasDatepicker {
  background: url("../../../icons/standard/calendar-medium-grey.svg");
  background-position: 95% center;
  background-repeat: no-repeat;
  background-size: 22px;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid #52d1ed !important;
  background: rgb(174.387434555, 233.5654450262, 246.612565445) !important;
  color: #fff !important;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
  border: 1px solid #52d1ed;
  background: #52d1ed;
  font-weight: normal;
  color: #fff;
}

.ui-datepicker .ui-datepicker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  padding: 0;
  margin: 0;
}
.ui-datepicker .ui-datepicker-header::before {
  display: none;
}
.ui-datepicker .ui-datepicker-header::after {
  display: none;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
  order: 0;
  position: relative;
  top: auto;
  left: auto;
  margin-left: 2px;
  background: url("../../../icons/standard/chevron-left.svg") center no-repeat;
  border: 1px solid transparent;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev .span {
  display: none;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev.ui-datepicker-prev-hover {
  top: auto;
  left: auto;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  order: 2;
  position: relative;
  top: auto;
  right: auto;
  margin-right: 2px;
  background: url("../../../icons/standard/chevron-right.svg") center no-repeat;
  border: 1px solid transparent;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next .span {
  display: none;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next.ui-datepicker-next-hover {
  top: auto;
  right: auto;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next:hover {
  border: 1px solid #c5c5c5;
}
@media only screen and (max-device-width: 1290px) {
  .ui-datepicker table {
    display: table !important;
  }
  .ui-datepicker thead {
    display: table-header-group !important;
  }
  .ui-datepicker thead tr {
    position: static;
    top: auto;
    left: auto;
  }
  .ui-datepicker tbody {
    display: table-row-group !important;
  }
  .ui-datepicker th {
    display: table-cell !important;
  }
}

.cdk-overlay-container {
  position: fixed;
  z-index: 100000 !important;
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cdk-overlay-container .cdk-overlay-pane {
  box-sizing: border-box;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  position: absolute;
  z-index: 1000;
}
.cdk-overlay-container .mat-autocomplete-panel {
  min-width: 112px;
  max-width: 280px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  max-width: none;
  max-height: 256px;
  position: relative;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background: #fff;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}
.cdk-overlay-container .mat-autocomplete-panel .mat-option {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 48px;
  height: 48px;
  padding: 0 16px;
  text-align: left;
  text-decoration: none;
  max-width: 100%;
  position: relative;
  cursor: pointer;
  outline: none;
  display: flex;
  flex-direction: row;
  max-width: 100%;
  box-sizing: border-box;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
  color: rgba(0, 0, 0, 0.87);
}
.cdk-overlay-container .mat-autocomplete-panel .mat-option .mat-option-text {
  display: inline-block;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.validation-message {
  margin: 0.5rem 0 0.5rem 0;
  font-size: 0.875rem;
  line-height: 1.2;
  color: #cc201a;
}

.hint-message {
  margin: 0.5rem 0 0.5rem 0;
  font-size: 0.875rem;
  line-height: 1.2;
  color: #656565;
}

.package-details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}
.package-details li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.package-details li .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}
.package-details li .icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.package-details li .icon svg path {
  fill: #656565 !important;
}
.package-details li .label {
  color: #818181;
  text-transform: uppercase;
  line-height: 1.2;
}

.no-content {
  max-width: 60%;
  margin: 4rem auto 0 auto;
}
.no-content h2 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #656565;
}

.th-layout-sidebar {
  --sidebar-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .th-layout-sidebar {
    --sidebar-width: 33%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
  }
}
@media screen and (min-width: 1366px) {
  .th-layout-sidebar {
    --sidebar-width: 30%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
  }
}
.th-layout-sidebar .th-content {
  flex: 1 1 auto;
  margin-left: 0;
}
.th-layout-sidebar .th-sidebar {
  flex: 0 0 var(--sidebar-width);
  min-width: var(--sidebar-width);
  width: var(--sidebar-width);
  max-width: var(--sidebar-width);
}
@media screen and (min-width: 768px) {
  .th-layout-sidebar--left .th-content {
    margin-left: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .th-layout-sidebar--right .th-content {
    margin-right: 1.5rem;
  }
}

.th-scrolling-tabs__tabs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  overflow: hidden;
  overflow-x: auto;
}
.th-scrolling-tabs__tabs__tab {
  white-space: nowrap;
  padding: 0.75rem 1.5rem !important;
  font-size: 1rem !important;
}
@media screen and (min-width: 575px) {
  .th-scrolling-tabs__tabs__tab {
    padding: 0.75rem 2rem !important;
    font-size: 1.125rem !important;
  }
}

.th-icon {
  font-size: 1.25rem !important;
}
.th-icon--xs {
  font-size: 1rem !important;
}
.th-icon--md {
  font-size: 1.25rem !important;
}
.th-icon--lg {
  font-size: 1.5rem !important;
}
.th-icon--ml {
  margin-left: 0.2rem;
}
.th-icon--mr {
  margin-right: 0.2rem;
}

.th-flex {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.th-flex--row {
  flex-direction: row;
}
.th-flex--column {
  flex-direction: column;
}

.th-fj--start {
  justify-content: flex-start;
}
.th-fj--end {
  justify-content: flex-end;
}
.th-fj--space-between {
  justify-content: space-between;
}

.th-fa--top {
  align-items: flex-start;
}
.th-fa--center {
  align-items: center;
}

.th-price {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 1rem 0;
}
.th-price .label {
  font-size: 0.875rem;
  text-transform: uppercase;
  line-height: 1;
}
.th-price .label .strike {
  text-decoration: line-through;
}
.th-price .price {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.th-price .price .value {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1;
  color: #00bfe9;
}
.th-price .price .super {
  font-size: 0.875rem;
  line-height: 1;
}

.th-pill {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin: 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  background: #f8f6f6;
  color: #656565;
  border-radius: 100px;
}
.th-pill--light-blue {
  background: #00BFE9;
  color: #ffffff;
}
.th-pill--light-blue:hover {
  color: #ffffff;
}
.th-pill--dark-blue {
  background: #005BAB;
  color: #ffffff;
}
.th-pill--dark-blue:hover {
  color: #ffffff;
}
.th-pill--orange {
  background: #F59000;
  color: #ffffff;
}
.th-pill--orange:hover {
  color: #ffffff;
}
.th-pill--black {
  background: #000000;
  color: #ffffff;
}
.th-pill--black:hover {
  color: #ffffff;
}
.th-pill--white-orange {
  background: #ffffff;
  color: #F59000;
}
.th-pill--white-orange:hover {
  color: #F59000;
}
.th-pill--md {
  padding: 0.25rem 1rem;
  font-size: 1.125rem;
}
.th-pill--sm {
  margin: 0 0.75rem;
  padding: 0.25rem 1rem;
  font-size: 1rem;
}

.th-category {
  position: absolute;
  top: -90px;
  right: -90px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 180px;
  height: 180px;
  padding-bottom: 0.5rem;
  transform: rotate(45deg);
}
.th-category__label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--light);
}
.th-category__label .th-icon {
  --icon-size: 1.5rem;
  display: block;
  width: var(--icon-size);
  height: var(--icon-size);
  font-size: var(--icon-size) !important;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.th-category--top-seller {
  background: #52D1ED;
  color: #ffffff;
}
.th-category--featured {
  background: #52D1ED;
  color: #ffffff;
}
.th-category--hot-deals {
  background: #CC201A;
  color: #ffffff;
}
.th-category--early-bird {
  background: #005BAB;
  color: #ffffff;
}
.th-category--last-minute-deals {
  background: #005BAB;
  color: #ffffff;
}
.th-category--trending {
  background: #005BAB;
  color: #ffffff;
}
.th-category--top-destinations {
  background: #52D1ED;
  color: #ffffff;
}
.th-category--black-friday-beach-holiday {
  background: #000000;
  color: #ffffff;
}

.field label {
  display: block;
  height: 30px;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 30px;
}
.DealsCollection .carousel {
  margin-left: 15px;
  margin-right: 15px;
}
.DealsCollection .carousel .carousel-control-prev,
.DealsCollection .carousel .carousel-control-next {
  --container-width: calc(100% + 100px);
  width: calc((100vw - (30px + var(--container-width) - 60px)) / 2) !important;
  max-width: 200px;
  min-width: 45px;
  top: 0;
  margin: 0;
  cursor: pointer;
}
@media screen and (min-width: 576px) {
  .DealsCollection .carousel .carousel-control-prev,
  .DealsCollection .carousel .carousel-control-next {
    --container-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .DealsCollection .carousel .carousel-control-prev,
  .DealsCollection .carousel .carousel-control-next {
    --container-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .DealsCollection .carousel .carousel-control-prev,
  .DealsCollection .carousel .carousel-control-next {
    --container-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .DealsCollection .carousel .carousel-control-prev,
  .DealsCollection .carousel .carousel-control-next {
    --container-width: 1366px;
  }
}
.DealsCollection .carousel .carousel-control-prev {
  left: 0 !important;
  transform: translateX(-100%);
}
.DealsCollection .carousel .carousel-control-prev-icon {
  width: 45px;
  height: 45px;
}
.DealsCollection .carousel .carousel-control-next {
  right: 0 !important;
  transform: translateX(100%);
}
.DealsCollection .carousel .carousel-control-next-icon {
  width: 45px;
  height: 45px;
}

.CampaignSlider .carousel-control-prev,
.CampaignSlider .carousel-control-next {
  --container-width: calc(100vw - 30px);
  width: 60px;
  top: 0;
  margin: 0;
  cursor: pointer;
}
.CampaignSlider .carousel-control-prev {
  left: 0 !important;
  top: 60px;
  bottom: 60px;
}
.CampaignSlider .carousel-control-prev-icon {
  width: 45px;
  height: 45px;
}
.CampaignSlider .carousel-control-next {
  right: 0;
  top: 60px;
  bottom: 60px;
}
.CampaignSlider .carousel-control-next-icon {
  width: 45px;
  height: 45px;
}

@media screen and (max-width: 574px) {
  .WorldTravel,
  .blog-categories {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
  }
}
.WorldTravel .row.pb-15,
.blog-categories .row.pb-15 {
  margin-left: 0;
  margin-right: 0;
}
.WorldTravel h1,
.blog-categories h1 {
  font-size: 2rem;
  font-family: "Lato", sans-serif;
  color: #656565;
}
@media screen and (min-width: 575px) {
  .WorldTravel h1,
  .blog-categories h1 {
    font-size: 2.5rem;
    color: #00bfe9;
  }
}
.WorldTravel .owl-carousel.owl-carousel-category,
.blog-categories .owl-carousel.owl-carousel-category {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (min-width: 575px) {
  .WorldTravel .owl-carousel.owl-carousel-category,
  .blog-categories .owl-carousel.owl-carousel-category {
    width: calc(100% - 120px);
    margin-left: 60px;
    margin-right: 60px;
  }
}
.WorldTravel .owl-carousel .owl-stage-outer,
.blog-categories .owl-carousel .owl-stage-outer {
  z-index: 2;
}
.WorldTravel .owl-carousel .owl-nav,
.blog-categories .owl-carousel .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.WorldTravel .owl-carousel .owl-nav .owl-prev,
.WorldTravel .owl-carousel .owl-nav .owl-next,
.blog-categories .owl-carousel .owl-nav .owl-prev,
.blog-categories .owl-carousel .owl-nav .owl-next {
  --container-width: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100vw - (var(--container-width) - 30px)) / 2) !important;
  max-width: 45px;
  min-width: 45px;
  height: 100%;
  top: 0;
  margin: 0;
  cursor: pointer;
  outline: none;
}
@media screen and (min-width: 576px) {
  .WorldTravel .owl-carousel .owl-nav .owl-prev,
  .WorldTravel .owl-carousel .owl-nav .owl-next,
  .blog-categories .owl-carousel .owl-nav .owl-prev,
  .blog-categories .owl-carousel .owl-nav .owl-next {
    --container-width: 540px;
    max-width: 200px;
  }
}
@media screen and (min-width: 768px) {
  .WorldTravel .owl-carousel .owl-nav .owl-prev,
  .WorldTravel .owl-carousel .owl-nav .owl-next,
  .blog-categories .owl-carousel .owl-nav .owl-prev,
  .blog-categories .owl-carousel .owl-nav .owl-next {
    --container-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .WorldTravel .owl-carousel .owl-nav .owl-prev,
  .WorldTravel .owl-carousel .owl-nav .owl-next,
  .blog-categories .owl-carousel .owl-nav .owl-prev,
  .blog-categories .owl-carousel .owl-nav .owl-next {
    --container-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .WorldTravel .owl-carousel .owl-nav .owl-prev,
  .WorldTravel .owl-carousel .owl-nav .owl-next,
  .blog-categories .owl-carousel .owl-nav .owl-prev,
  .blog-categories .owl-carousel .owl-nav .owl-next {
    --container-width: 1366px;
  }
}
.WorldTravel .owl-carousel .owl-nav .owl-prev .prev-arrow,
.WorldTravel .owl-carousel .owl-nav .owl-prev .next-arrow,
.WorldTravel .owl-carousel .owl-nav .owl-next .prev-arrow,
.WorldTravel .owl-carousel .owl-nav .owl-next .next-arrow,
.blog-categories .owl-carousel .owl-nav .owl-prev .prev-arrow,
.blog-categories .owl-carousel .owl-nav .owl-prev .next-arrow,
.blog-categories .owl-carousel .owl-nav .owl-next .prev-arrow,
.blog-categories .owl-carousel .owl-nav .owl-next .next-arrow {
  position: relative;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 1480px) {
  .WorldTravel .owl-carousel .owl-nav .owl-prev .prev-arrow,
  .WorldTravel .owl-carousel .owl-nav .owl-prev .next-arrow,
  .WorldTravel .owl-carousel .owl-nav .owl-next .prev-arrow,
  .WorldTravel .owl-carousel .owl-nav .owl-next .next-arrow,
  .blog-categories .owl-carousel .owl-nav .owl-prev .prev-arrow,
  .blog-categories .owl-carousel .owl-nav .owl-prev .next-arrow,
  .blog-categories .owl-carousel .owl-nav .owl-next .prev-arrow,
  .blog-categories .owl-carousel .owl-nav .owl-next .next-arrow {
    height: 30px;
    width: 30px;
    background-size: 30px 30px;
  }
}
@media screen and (max-width: 1200px) {
  .WorldTravel .owl-carousel .owl-nav .owl-prev .prev-arrow,
  .WorldTravel .owl-carousel .owl-nav .owl-prev .next-arrow,
  .WorldTravel .owl-carousel .owl-nav .owl-next .prev-arrow,
  .WorldTravel .owl-carousel .owl-nav .owl-next .next-arrow,
  .blog-categories .owl-carousel .owl-nav .owl-prev .prev-arrow,
  .blog-categories .owl-carousel .owl-nav .owl-prev .next-arrow,
  .blog-categories .owl-carousel .owl-nav .owl-next .prev-arrow,
  .blog-categories .owl-carousel .owl-nav .owl-next .next-arrow {
    height: 64px;
    width: 64px;
    background-size: 64px 64px;
  }
}
@media screen and (max-width: 1050px) {
  .WorldTravel .owl-carousel .owl-nav .owl-prev .prev-arrow,
  .WorldTravel .owl-carousel .owl-nav .owl-prev .next-arrow,
  .WorldTravel .owl-carousel .owl-nav .owl-next .prev-arrow,
  .WorldTravel .owl-carousel .owl-nav .owl-next .next-arrow,
  .blog-categories .owl-carousel .owl-nav .owl-prev .prev-arrow,
  .blog-categories .owl-carousel .owl-nav .owl-prev .next-arrow,
  .blog-categories .owl-carousel .owl-nav .owl-next .prev-arrow,
  .blog-categories .owl-carousel .owl-nav .owl-next .next-arrow {
    height: 30px;
    width: 30px;
    background-size: 30px 30px;
  }
}
.WorldTravel .owl-carousel .owl-nav .owl-prev,
.blog-categories .owl-carousel .owl-nav .owl-prev {
  left: 1rem !important;
  transform: translateX(-100%);
}
@media screen and (min-width: 575px) {
  .WorldTravel .owl-carousel .owl-nav .owl-prev,
  .blog-categories .owl-carousel .owl-nav .owl-prev {
    left: 15px !important;
  }
}
.WorldTravel .owl-carousel .owl-nav .owl-next,
.blog-categories .owl-carousel .owl-nav .owl-next {
  right: 1rem !important;
  transform: translateX(100%);
}
@media screen and (min-width: 575px) {
  .WorldTravel .owl-carousel .owl-nav .owl-next,
  .blog-categories .owl-carousel .owl-nav .owl-next {
    right: 15px !important;
  }
}
.WorldTravel .carousel .carousel-inner .carousel-control-prev,
.blog-categories .carousel .carousel-inner .carousel-control-prev {
  left: 1rem !important;
}
.WorldTravel .carousel .carousel-inner .carousel-control-next,
.blog-categories .carousel .carousel-inner .carousel-control-next {
  right: 1rem !important;
}

.WorldTravelPromosContainer .carousel .carousel-control-prev,
.WorldTravelPromosContainer .carousel .carousel-control-next {
  --container-width: calc(100% + 100px);
  width: calc((100vw - var(--container-width) - 40px) / 2) !important;
  max-width: 60px;
  min-width: 45px;
  top: 0;
  margin: 0;
  cursor: pointer;
}
@media screen and (min-width: 576px) {
  .WorldTravelPromosContainer .carousel .carousel-control-prev,
  .WorldTravelPromosContainer .carousel .carousel-control-next {
    --container-width: 526px;
  }
}
@media screen and (min-width: 768px) {
  .WorldTravelPromosContainer .carousel .carousel-control-prev,
  .WorldTravelPromosContainer .carousel .carousel-control-next {
    --container-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .WorldTravelPromosContainer .carousel .carousel-control-prev,
  .WorldTravelPromosContainer .carousel .carousel-control-next {
    --container-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .WorldTravelPromosContainer .carousel .carousel-control-prev,
  .WorldTravelPromosContainer .carousel .carousel-control-next {
    --container-width: 1366px;
  }
}
.WorldTravelPromosContainer .carousel .carousel-control-prev {
  left: 0 !important;
  transform: translateX(-100%);
}
.WorldTravelPromosContainer .carousel .carousel-control-prev-icon {
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 576px) {
  .WorldTravelPromosContainer .carousel .carousel-control-prev {
    left: 1rem !important;
  }
}
.WorldTravelPromosContainer .carousel .carousel-control-next {
  right: 0 !important;
  transform: translateX(100%);
}
.WorldTravelPromosContainer .carousel .carousel-control-next-icon {
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 576px) {
  .WorldTravelPromosContainer .carousel .carousel-control-next {
    right: 1rem !important;
  }
}
.WorldTravelPromosContainer .Card.CardTwoByFour .title {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.631372549);
}

.AllRegionsCarousel {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
@media screen and (min-width: 768px) {
  .AllRegionsCarousel {
    margin-left: 0;
    margin-right: 0;
  }
}
.AllRegionsCarousel .carousel-control-prev,
.AllRegionsCarousel .carousel-control-next {
  --container-width: calc(100% - 60px);
  width: calc((100vw - var(--container-width) - 50px) / 2) !important;
  max-width: 50px;
  min-width: 45px;
  top: 0;
  margin: 0;
  cursor: pointer;
}
@media screen and (min-width: 576px) {
  .AllRegionsCarousel .carousel-control-prev,
  .AllRegionsCarousel .carousel-control-next {
    --container-width: 526px;
    max-width: 200px;
  }
}
@media screen and (min-width: 768px) {
  .AllRegionsCarousel .carousel-control-prev,
  .AllRegionsCarousel .carousel-control-next {
    --container-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .AllRegionsCarousel .carousel-control-prev,
  .AllRegionsCarousel .carousel-control-next {
    --container-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .AllRegionsCarousel .carousel-control-prev,
  .AllRegionsCarousel .carousel-control-next {
    --container-width: 1200px;
  }
}
.AllRegionsCarousel .carousel-control-prev {
  left: 0 !important;
  transform: translateX(-100%);
}
.AllRegionsCarousel .carousel-control-prev-icon {
  width: 45px;
  height: 45px;
}
.AllRegionsCarousel .carousel-control-next {
  right: 0 !important;
  transform: translateX(100%);
}
.AllRegionsCarousel .carousel-control-next-icon {
  width: 45px;
  height: 45px;
}

.ThreeColumnSliderWrapper .carousel-inner .carousel-item .Card.CardFourByTwo img {
  height: auto;
}
@media screen and (max-width: 1600px) and (min-width: 768px) {
  .ThreeColumnSliderWrapper .carousel-inner .carousel-item .row .CustomWidthBeforeXL {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media screen and (max-width: 960px) and (min-width: 768px) {
  .ThreeColumnSliderWrapper .carousel-inner .carousel-item .row .CustomWidthBeforeXL {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ThreeColumnSliderWrapper .carousel-inner .carousel-item .row .CustomWidthBeforeXL:nth-child(3) {
    display: none;
  }
}

chip-search .mat-chip-input {
  height: 27px;
}
chip-search .mat-chip-input.chip-search--loading {
  background-image: url("../../icons/standard/three-dots.svg");
  background-size: 24px 24px;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  padding-left: 32px;
}
chip-search .mat-form-field-label-wrapper {
  display: none;
}

.ProductInformation-Header {
  position: sticky;
  top: 162px;
  z-index: 5;
  background: #fff;
}
@media screen and (max-width: 1366px) {
  .ProductInformation-Header {
    top: calc(6.25rem + 24px);
  }
}
@media screen and (max-width: 1200px) {
  .ProductInformation-Header {
    top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .ProductInformation-Header {
    top: 70px;
  }
}

@media screen and (max-width: 1366px) {
  .ProductInformation h1 {
    font-size: 1.5rem;
  }
}
.ProductInformation h1 .stars svg {
  width: 0.625rem;
  height: 0.625rem;
  margin-left: -4px;
}
@media screen and (max-width: 1366px) {
  .ProductInformation .ShortInfo {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 1366px) {
  .ProductInformation .ShortInfo .col-md-3 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
}
@media screen and (max-width: 990px) {
  .ProductInformation .ShortInfo .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media screen and (max-width: 1366px) {
  .ProductInformation .ShortInfo .col {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 1366px) {
  .ProductInformation .Tabs-Header a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1366px) {
  .ProductInformation .CustomCardPromoPackages {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1366px) {
  .ProductInformation .CustomCardPromoPackages .PricingBlock-PromoPage .SpanLargeTextBlue {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1366px) {
  .ProductInformation .CustomCardPromoPackages .PricingBlock-PromoPage .SpanMedTextBlue,
  .ProductInformation .CustomCardPromoPackages .PricingBlock-PromoPage .SpanSmallTextBlue {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 1366px) {
  .ProductInformation .CustomCardPromoPackages .btn-orange {
    margin-top: 0;
  }
}
@media screen and (max-width: 1366px) {
  .ProductInformation .CustomCardPromoPackages .col-md-12 {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 1366px) {
  .ProductInformation .inclusions h2 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1366px) {
  .ProductInformation .inclusions h3 {
    font-size: 1rem;
  }
}

#sherpa-widget #sherpa-widget-wrap #sherpa-root .widget__header img {
  width: 48px;
}
#sherpa-widget #sherpa-widget-wrap #sherpa-root .widget__body__dropdown .sherpa-dropdown-wrap div,
#sherpa-widget #sherpa-widget-wrap #sherpa-root .widget__body__dropdown .sherpa-dropdown-wrap input {
  font-family: "Lato", sans-serif !important;
  color: #8f9397 !important;
  font-size: 1rem;
}
#sherpa-widget #sherpa-widget-wrap #sherpa-root .widget__body__dropdown .sherpa-dropdown-wrap__current .sherpa-dropdown__current {
  border-color: #dee2e6;
}
#sherpa-widget #sherpa-widget-wrap #sherpa-root .widget__body__dropdown .sherpa-dropdown-wrap__current .sherpa-dropdown__current__left {
  border-color: #dee2e6;
}
#sherpa-widget #sherpa-widget-wrap #sherpa-root .widget__body__dropdown .sherpa-dropdown-wrap__current .sherpa-dropdown__current__center {
  font-family: "Lato", sans-serif !important;
  color: #8f9397 !important;
  font-size: 1rem;
}
#sherpa-widget #sherpa-widget-wrap #sherpa-root .widget__body__dropdown .sherpa-dropdown-wrap__options .sherpa-dropdown-options__wrap .dropdown-options {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
#sherpa-widget #sherpa-widget-wrap #sherpa-root .widget__body .label {
  text-transform: uppercase;
  color: #52d1ed;
  font-weight: 600;
}
#sherpa-widget #sherpa-widget-wrap #sherpa-root .widget__body .sherpa-departure-date-wrapper input {
  color: #8f9397 !important;
  border: 1px solid #dee2e6 !important;
  font-family: "Lato", sans-serif !important;
  font-size: 1rem;
}
#sherpa-widget #sherpa-widget-wrap #sherpa-root .widget__body .sherpa-btn {
  background-color: #52d1ed;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.75rem;
}
#sherpa-widget #sherpa-widget-wrap #sherpa-root .widget__body__results .title {
  color: #52d1ed;
}
#sherpa-widget #sherpa-widget-wrap #sherpa-root .widget__body__results .text {
  color: #656565;
  font-size: 1rem;
}
#sherpa-widget #sherpa-widget-wrap #sherpa-root .widget.sherpa-cullinan {
  font-family: "Lato", sans-serif;
}

.owl-carousel-category {
  width: calc(100% - 120px);
  margin-left: 60px;
  margin-right: 60px;
}
.owl-carousel-category .owl-nav .owl-prev {
  position: absolute;
  top: 125px;
  left: 0;
  transform: translateX(-100%) translateY(-50%);
}
.owl-carousel-category .owl-nav .owl-prev .prev-arrow {
  display: block;
  position: static;
  top: auto;
  left: auto;
  right: auto;
}
.owl-carousel-category .owl-nav .owl-next {
  position: absolute;
  top: 125px;
  right: 0;
  transform: translateX(100%) translateY(-50%);
  width: 50px;
  height: 50px;
}
.owl-carousel-category .owl-nav .owl-next .next-arrow {
  display: block;
  position: static;
  top: auto;
  left: auto;
  right: auto;
}

@media screen and (min-width: 768px) and (max-width: 800px) {
  .footer .footer-links .row .col-md-2 {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    text-align: center;
  }
}

.filter-form--sidebar {
  margin-top: calc(36px + 1.5rem);
}
.filter-form--sidebar .nav-tabs {
  box-shadow: none;
  border: none;
}
.filter-form--sidebar .nav-tabs .nav-item .nav-link {
  box-shadow: none;
  border: none;
  background: none;
  font-size: 1.5rem;
  color: #ffffff;
  padding: 1rem 1.5rem;
  background-color: #00bfe9;
  margin-right: 0.75rem;
}
.filter-form--sidebar .nav-tabs .nav-item .nav-link.active {
  color: #00bfe9;
  background-color: #ffffff;
}
.filter-form--sidebar .nav-tabs .nav-item .nav-link:hover, .filter-form--sidebar .nav-tabs .nav-item .nav-link:focus {
  border-color: transparent;
}
.filter-form--sidebar .tab-content {
  padding: 1.5rem;
  border: none;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.14), 0 4px 5px 0 rgba(0, 0, 0, 0.08), 0 1px 10px 0 rgba(0, 0, 0, 0.06);
}

th-card-grid {
  width: 100%;
}
th-card-grid .grid .th-card__actions button {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.14), 0 0 0 0 rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(0, 0, 0, 0.06);
}
.hero-slider__slide {
  position: relative;
}
.hero-slider__slide__image {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-slider__slide__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-slider__slide__content {
  position: relative;
  z-index: 5;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-slider__slide__content .bordered-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: none;
  padding: 4.5rem 0 4.5rem 0;
  background: rgba(0, 0, 0, 0);
  background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  transition-property: border padding margin background;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (min-width: 768px) {
  .hero-slider__slide__content .bordered-content {
    border: none;
    padding: 4rem 0 calc(5rem + 60px) 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.3);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
.hero-slider__slide__content__h1, .hero-slider__slide__content__h2 {
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.125;
}
.hero-slider__slide__content__h1 {
  font-weight: 600;
  font-size: 2rem;
  font-size: clamp(2rem, 1.4230769231rem + 2.5641025641vw, 4.5rem);
}
@media screen and (min-width: 575px) {
  .hero-slider__slide__content__h1 {
    font-size: 2.5rem;
    font-size: clamp(2rem, 1.4230769231rem + 2.5641025641vw, 4.5rem);
  }
}
@media screen and (min-width: 768px) {
  .hero-slider__slide__content__h1 {
    font-size: 3rem;
    font-size: clamp(2rem, 1.4230769231rem + 2.5641025641vw, 4.5rem);
  }
}
@media screen and (min-width: 1280px) {
  .hero-slider__slide__content__h1 {
    font-size: 3.5rem;
    font-size: clamp(2rem, 1.4230769231rem + 2.5641025641vw, 4.5rem);
  }
}
@media screen and (min-width: 1366px) {
  .hero-slider__slide__content__h1 {
    font-size: 4.5rem;
    font-size: clamp(2rem, 1.4230769231rem + 2.5641025641vw, 4.5rem);
  }
}
.hero-slider__slide__content__h2 {
  font-weight: 300;
  font-size: 1.25em;
  font-size: clamp(1.25rem, 0.7307692308rem + 2.3076923077vw, 3.5rem);
}
@media screen and (min-width: 575px) {
  .hero-slider__slide__content__h2 {
    font-size: 2rem;
    font-size: clamp(1.25rem, 0.7307692308rem + 2.3076923077vw, 3.5rem);
  }
}
@media screen and (min-width: 768px) {
  .hero-slider__slide__content__h2 {
    font-size: 2.5rem;
    font-size: clamp(1.25rem, 0.7307692308rem + 2.3076923077vw, 3.5rem);
  }
}
@media screen and (min-width: 1280px) {
  .hero-slider__slide__content__h2 {
    font-size: 3rem;
    font-size: clamp(1.25rem, 0.7307692308rem + 2.3076923077vw, 3.5rem);
  }
}
@media screen and (min-width: 1366px) {
  .hero-slider__slide__content__h2 {
    font-size: 3.5rem;
    font-size: clamp(1.25rem, 0.7307692308rem + 2.3076923077vw, 3.5rem);
  }
}
.hero-slider__slide__content .th-btn-solid {
  margin-top: 1.5rem;
}
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  z-index: 6;
}

.th-breadcrumbs {
  position: static;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 -15px;
  padding: 1rem 0 0 0;
  background: #f8f6f6;
}
@media screen and (min-width: 575px) {
  .th-breadcrumbs {
    position: sticky;
    top: 80px;
    z-index: 100;
  }
}
@media screen and (min-width: 1367px) {
  .th-breadcrumbs {
    top: 116px;
  }
}
.th-breadcrumbs__crumbs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.th-breadcrumbs__crumbs__crumb {
  font-size: 0.875rem;
  color: #656565;
  text-decoration: none !important;
  text-transform: uppercase;
}
.th-breadcrumbs__crumbs__crumb--chevron {
  margin: 0 0.5rem;
}
.th-breadcrumbs__title {
  margin: 0.75rem 0 1rem 0;
}
.th-breadcrumbs__title h1 {
  margin: 0;
  font-size: 1.5rem;
  color: #00bfe9;
}
@media screen and (min-width: 992px) {
  .th-breadcrumbs__title h1 {
    font-size: 1.875rem;
  }
}

.th-meta {
  margin: 0;
}
@media screen and (min-width: 575px) {
  .th-meta {
    margin: 0.5rem 0;
  }
}
.th-meta__item {
  display: flex;
  align-items: center;
  margin: 0 0.75rem 0.5rem 0;
  max-width: 100%;
  color: #656565;
}
@media screen and (min-width: 575px) {
  .th-meta__item {
    margin: 0.5rem 1.5rem 0.5rem 0;
  }
}
.th-meta__item:last-child {
  margin-right: 0;
}
.th-meta__item .label {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.875rem;
  text-transform: uppercase;
}
.th-meta__item .spacer {
  margin: 0 0.5rem;
}
.th-meta__item .spacer + .th-icon {
  margin-left: 0 !important;
}
.th-meta__item--primary {
  color: #00bfe9;
  font-weight: 600;
}
@media screen and (max-width: 480px) {
  .th-meta .th-meta__item--combined {
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  .th-meta .th-meta__item--combined .label:first-child {
    flex: 0 0 100%;
    color: #00bfe9;
    font-weight: 600;
  }
  .th-meta .th-meta__item--combined .label:first-child + .th-icon {
    margin-left: 0;
  }
}

.th-tabs .th-tab {
  display: block;
  padding: 0.625rem 0.5rem;
  margin-left: 1.5rem;
  border-bottom: 2px solid transparent;
  font-size: 0.875rem;
  text-transform: uppercase;
  text-decoration: none;
  color: #656565;
  transition-property: border-color;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.th-tabs .th-tab .full {
  pointer-events: none;
  display: none;
}
.th-tabs .th-tab .short {
  pointer-events: none;
  display: inline;
}
.th-tabs .th-tab--selected {
  border-color: #00bfe9;
}
.th-tabs .th-tab:first-child {
  margin-left: 0;
}
@media screen and (min-width: 575px) {
  .th-tabs .th-tab {
    font-size: 1.125rem;
  }
  .th-tabs .th-tab .full {
    display: inline;
  }
  .th-tabs .th-tab .short {
    display: none;
  }
}

.th-promo-header {
  z-index: 100;
  margin-left: -15px;
  margin-right: -15px;
  background: #ffffff;
}
.th-promo-header .th-content {
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.th-promo-header .th-sidebar {
  order: 1;
}
.th-promo-header__package-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.th-promo-header__package-details .group {
  flex: 0 0 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.th-promo-header__package-details .th-btn-solid {
  flex: 0 0 100%;
}
@media screen and (min-width: 1200px) {
  .th-promo-header__package-details {
    flex-wrap: nowrap;
  }
  .th-promo-header__package-details .group {
    flex: 1 1 auto;
  }
  .th-promo-header__package-details .th-btn-solid {
    flex: 1 1 auto;
  }
}
@media screen and (min-width: 768px) {
  .th-promo-header .th-content {
    order: 1;
  }
  .th-promo-header .th-sidebar {
    order: 2;
  }
}
@media screen and (min-width: 992px) {
  .th-promo-header {
    position: sticky;
    top: 184px;
  }
}
@media screen and (min-width: 1367px) {
  .th-promo-header {
    position: sticky;
    top: 220px;
  }
}

.th-promo-package-banner {
  position: relative;
  width: 100%;
}
.th-promo-package-banner img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.th-promo-package-banner__content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}
.th-promo-package-banner__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 25%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
}
.th-promo-package-banner__content .container {
  position: relative;
  z-index: 2;
}
.th-promo-package-banner__content .th-meta__item {
  color: #ffffff;
}

.th-promo-product .th-sidebar .row {
  margin: 0;
}
.th-promo-product .th-sidebar .row [class^=col-], .th-promo-product .th-sidebar .row [class*=" col-"] {
  padding: 0 !important;
}
.th-promo-product .th-sidebar .Check-UL {
  padding-left: 0 !important;
}

.pt-3, .py-3 {
  padding-top: 0.75rem !important;
}

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

body {
  position: relative;
}

.BookBlock-Orange a {
  color: #ffffff;
  background: #f59000;
  padding: 15px 10px;
  border-radius: 5px;
}

.EnquireBlock a {
  color: #00bfe9;
}

.DestinationBlock {
  background: #ffffff;
  padding: 15px;
}

.world-travel-container g path.marker {
  fill: #AAA !important;
}
.world-travel-container g path.water-text {
  fill: #AAA !important;
}
.world-travel-container g.selected path.marker {
  fill: #EEE !important;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}
.world-travel-container g.selected .mask {
  fill: rgb(0, 191, 233) !important;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}
.world-travel-container g.selected path.water-text {
  fill: rgb(0, 191, 233) !important;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}
.world-travel-container g path.marker-shadow {
  display: none;
}
.world-travel-container g.selected path.marker-shadow {
  display: block;
}
