@charset "UTF-8";
@import url(https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css);
@import url(https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700;900&family=Sora:wght@200;400;700;900&display=swap); /*!
 * 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: 2;
  animation-iteration-count: 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: 3;
  animation-iteration-count: 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: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
  .animate__animated[class*="Out"] {
    opacity: 0;
  }
}
@-webkit-keyframes bounce {
  0%,
  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: translateZ(0);
    transform: translateZ(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-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
    -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);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  0%,
  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: translateZ(0);
    transform: translateZ(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-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
    -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);
  }
  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 {
  0%,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(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 {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(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: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(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: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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-name: headShake;
  animation-name: headShake;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.animate__swing {
  -webkit-animation-name: swing;
  animation-name: swing;
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  0%,
  11.1%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0%,
  11.1%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes backInDown {
  0% {
    opacity: 0.7;
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes backInDown {
  0% {
    opacity: 0.7;
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    opacity: 0.7;
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes backInLeft {
  0% {
    opacity: 0.7;
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    opacity: 0.7;
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes backInRight {
  0% {
    opacity: 0.7;
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    opacity: 0.7;
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes backInUp {
  0% {
    opacity: 0.7;
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
@-webkit-keyframes backOutDown {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
  }
}
@keyframes backOutDown {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
  }
}
@keyframes backOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
  }
}
@keyframes backOutRight {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
  }
}
@keyframes backOutUp {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
@-webkit-keyframes bounceIn {
  0%,
  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: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%,
  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: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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 {
  0%,
  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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInDown {
  0%,
  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: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0%,
  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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInLeft {
  0%,
  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: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0%,
  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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInRight {
  0%,
  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: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0%,
  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(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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%,
  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(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: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    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 {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
@-webkit-keyframes flip {
  0% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
  }
  40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
  }
  50% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
  }
  80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
  }
  to {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
  }
}
@keyframes flip {
  0% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
  }
  40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
  }
  50% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
  }
  80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
  }
  to {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
  }
}
.animate__animated.animate__flip {
  -webkit-animation-name: flip;
  animation-name: flip;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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 {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
  }
  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
  }
  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes lightSpeedInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
  }
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
  }
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotateIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotateInDownRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotateInUpRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
  }
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
  }
  40%,
  80% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
  }
  40%,
  80% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -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 {
  0% {
    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 {
  0% {
    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;
}
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    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 {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
@keyframes zoomInDown {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
@keyframes zoomInLeft {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
@keyframes zoomInRight {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
@keyframes zoomInUp {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  0% {
    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 {
  0% {
    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% {
    -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);
    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);
  }
  to {
    -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);
    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);
  }
}
@keyframes zoomOutDown {
  40% {
    -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);
    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);
  }
  to {
    -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);
    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);
  }
}
.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% {
    -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);
    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);
  }
  to {
    -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);
    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);
  }
}
@keyframes zoomOutUp {
  40% {
    -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);
    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);
  }
  to {
    -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);
    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);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: hidden;
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: hidden;
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
.animateCss-todo {
  opacity: 0;
}
.animateCss-todo.animateVisible {
  opacity: 1;
}
@keyframes fadInDownShort {
  0% {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
} /*!
 * Bootstrap v4.6.0 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #e40037;
  --orange: #f78d28;
  --yellow: #ffc40c;
  --green: #387d00;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #aaa9aa;
  --gray-dark: #3c3c3c;
  --primary: #ffc40c;
  --secondary: #0075c9;
  --success: #387d00;
  --info: #b0f3ea;
  --warning: #ffc40c;
  --danger: #e40037;
  --light: #f8f9fa;
  --dark: #3c3c3c;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1440px;
  --font-family-sans-serif: "DM Sans", sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
*,
:after,
:before {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 6, 0);
  font-family: sans-serif;
  line-height: 1.15;
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}
body {
  background-color: #fff;
  color: #212529;
  font-family:
    DM Sans,
    sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}
[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-bottom: 0.5rem;
  margin-top: 0;
}
body:not(.single-post) article ol,
body:not(.single-post) article ul,
p {
  margin-bottom: 3rem;
  margin-top: 0;
}
abbr[data-original-title],
abbr[title] {
  border-bottom: 0;
  cursor: help;
  text-decoration: underline;
  text-decoration: underline dotted;
  text-decoration-skip-ink: none;
}
address {
  font-style: normal;
  line-height: inherit;
}
address,
dl,
ol,
ul {
  margin-bottom: 1rem;
}
dl,
ol,
ul {
  margin-top: 0;
}
ol ol,
ol ul,
ul ol,
ul ul {
  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 {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  background-color: transparent;
  color: #0075c9;
}
a:hover {
  color: #00487d;
  text-decoration: none;
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
code,
kbd,
pre,
samp {
  font-family:
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    Liberation Mono,
    Courier New,
    monospace;
  font-size: 1em;
}
pre {
  -ms-overflow-style: scrollbar;
  margin-bottom: 1rem;
  margin-top: 0;
  overflow: auto;
}
figure {
  margin: 0 0 1rem;
}
img {
  border-style: none;
}
img,
svg {
  vertical-align: middle;
}
svg {
  overflow: hidden;
}
table {
  border-collapse: collapse;
}
caption {
  caption-side: bottom;
  color: #aaa9aa;
  padding-bottom: 0.75rem;
  padding-top: 0.75rem;
  text-align: left;
}
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;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[role="button"] {
  cursor: pointer;
}
select {
  word-wrap: normal;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}
legend {
  color: inherit;
  display: block;
  font-size: 1.5rem;
  line-height: inherit;
  margin-bottom: 0.5rem;
  max-width: 100%;
  padding: 0;
  white-space: normal;
  width: 100%;
}
progress {
  vertical-align: baseline;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: none;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
output {
  display: inline-block;
}
summary {
  cursor: pointer;
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Sora, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.h1,
h1 {
  font-size: 4rem;
}
.h2,
h2 {
  font-size: 3.2rem;
}
.h3,
h3 {
  font-size: 2.8rem;
}
.h4,
h4 {
  font-size: 2.4rem;
}
.h5,
h5 {
  font-size: 2rem;
}
.h6,
h6 {
  font-size: 1.6rem;
}
.lead {
  font-size: 2rem;
  font-weight: 300;
}
.display-1 {
  font-size: 6rem;
}
.display-1,
.display-2 {
  font-weight: 300;
  line-height: 1.2;
}
.display-2 {
  font-size: 5.5rem;
}
.display-3 {
  font-size: 4.5rem;
}
.display-3,
.display-4 {
  font-weight: 300;
  line-height: 1.2;
}
.display-4 {
  font-size: 3.5rem;
}
hr {
  border: 0;
  border-top: 1px solid rgba(0, 0, 6, 0.1);
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.small,
small {
  font-size: 80%;
  font-weight: 400;
}
.mark,
mark {
  background-color: #fcf8e3;
  padding: 0.2em;
}
.list-inline,
.list-unstyled {
  list-style: none;
  padding-left: 0;
}
.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
.blockquote {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.blockquote-footer {
  color: #aaa9aa;
  display: block;
  font-size: 80%;
}
.blockquote-footer:before {
  content: "\2014\00A0";
}
.img-fluid,
.img-thumbnail {
  height: auto;
  max-width: 100%;
}
.img-thumbnail {
  background-color: #fff;
  border: 1px solid #dad9d7;
  border-radius: 0.25rem;
  padding: 0.25rem;
}
.figure {
  display: inline-block;
}
.figure-img {
  line-height: 1;
  margin-bottom: 0.5rem;
}
.figure-caption {
  color: #aaa9aa;
  font-size: 90%;
}
code {
  word-wrap: break-word;
  color: #e83e8c;
  font-size: 87.5%;
}
a > code {
  color: inherit;
}
kbd {
  background-color: #212529;
  border-radius: 0.2rem;
  color: #fff;
  font-size: 87.5%;
  padding: 0.2rem 0.4rem;
}
kbd kbd {
  font-size: 100%;
  font-weight: 700;
  padding: 0;
}
pre {
  color: #212529;
  display: block;
  font-size: 87.5%;
}
pre code {
  color: inherit;
  font-size: inherit;
  word-break: normal;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  margin-left: auto;
  margin-right: auto;
  padding-left: 7.5px;
  padding-right: 7.5px;
  width: 100%;
}
@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 1440px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 1440px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1440px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1440px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -7.5px;
  margin-right: -7.5px;
}
.no-gutters {
  margin-left: 0;
  margin-right: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}
.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-auto,
.col-xxl,
.col-xxl-1,
.col-xxl-2,
.col-xxl-3,
.col-xxl-4,
.col-xxl-5,
.col-xxl-6,
.col-xxl-7,
.col-xxl-8,
.col-xxl-9,
.col-xxl-10,
.col-xxl-11,
.col-xxl-12,
.col-xxl-auto {
  padding-left: 7.5px;
  padding-right: 7.5px;
  position: relative;
  width: 100%;
}
.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.33333%;
  max-width: 33.33333%;
}
.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.66667%;
  max-width: 16.66667%;
}
.col-auto {
  flex: 0 0 auto;
  max-width: 100%;
  width: auto;
}
.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}
.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}
.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}
.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}
.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}
.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}
.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.33333%;
}
.offset-2 {
  margin-left: 16.66667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.33333%;
}
.offset-5 {
  margin-left: 41.66667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.33333%;
}
.offset-8 {
  margin-left: 66.66667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.33333%;
}
.offset-11 {
  margin-left: 91.66667%;
}
@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.33333%;
    max-width: 33.33333%;
  }
  .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.66667%;
    max-width: 16.66667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    max-width: 100%;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .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.33333%;
  }
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}
@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.33333%;
    max-width: 33.33333%;
  }
  .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.66667%;
    max-width: 16.66667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    max-width: 100%;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .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.33333%;
  }
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  .offset-md-11 {
    margin-left: 91.66667%;
  }
}
@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.33333%;
    max-width: 33.33333%;
  }
  .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.66667%;
    max-width: 16.66667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    max-width: 100%;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .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.33333%;
  }
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}
@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.33333%;
    max-width: 33.33333%;
  }
  .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.66667%;
    max-width: 16.66667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    max-width: 100%;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .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.33333%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 1440px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    max-width: 100%;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-xxl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-xxl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-xxl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-xxl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxl-first {
    order: -1;
  }
  .order-xxl-last {
    order: 13;
  }
  .order-xxl-0 {
    order: 0;
  }
  .order-xxl-1 {
    order: 1;
  }
  .order-xxl-2 {
    order: 2;
  }
  .order-xxl-3 {
    order: 3;
  }
  .order-xxl-4 {
    order: 4;
  }
  .order-xxl-5 {
    order: 5;
  }
  .order-xxl-6 {
    order: 6;
  }
  .order-xxl-7 {
    order: 7;
  }
  .order-xxl-8 {
    order: 8;
  }
  .order-xxl-9 {
    order: 9;
  }
  .order-xxl-10 {
    order: 10;
  }
  .order-xxl-11 {
    order: 11;
  }
  .order-xxl-12 {
    order: 12;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66667%;
  }
}
.table {
  color: #212529;
  margin-bottom: 1rem;
  width: 100%;
}
.table td,
.table th {
  border-top: 1px solid #53575b;
  padding: 0.75rem;
  vertical-align: top;
}
.table thead th {
  border-bottom: 2px solid #53575b;
  vertical-align: bottom;
}
.table tbody + tbody {
  border-top: 2px solid #53575b;
}
.table-sm td,
.table-sm th {
  padding: 0.3rem;
}
.table-bordered,
.table-bordered td,
.table-bordered th {
  border: 1px solid #53575b;
}
.table-bordered thead td,
.table-bordered thead th {
  border-bottom-width: 2px;
}
.table-borderless tbody + tbody,
.table-borderless td,
.table-borderless th,
.table-borderless thead th {
  border: 0;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 6, 0.05);
}
.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 6, 0.075);
  color: #212529;
}
.table-primary,
.table-primary > td,
.table-primary > th {
  background-color: #feb;
}
.table-primary tbody + tbody,
.table-primary td,
.table-primary th,
.table-primary thead th {
  border-color: #ffe081;
}
.table-hover .table-primary:hover,
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #ffe8a2;
}
.table-secondary,
.table-secondary > td,
.table-secondary > th {
  background-color: #b8d8f0;
}
.table-secondary tbody + tbody,
.table-secondary td,
.table-secondary th,
.table-secondary thead th {
  border-color: #7ab7e3;
}
.table-hover .table-secondary:hover,
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #a3ccec;
}
.table-success,
.table-success > td,
.table-success > th {
  background-color: #c7dbb8;
}
.table-success tbody + tbody,
.table-success td,
.table-success th,
.table-success thead th {
  border-color: #98bb7a;
}
.table-hover .table-success:hover,
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #bad2a7;
}
.table-info,
.table-info > td,
.table-info > th {
  background-color: #e9fcf9;
}
.table-info tbody + tbody,
.table-info td,
.table-info th,
.table-info thead th {
  border-color: #d6f9f4;
}
.table-hover .table-info:hover,
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #d3f9f3;
}
.table-warning,
.table-warning > td,
.table-warning > th {
  background-color: #feb;
}
.table-warning tbody + tbody,
.table-warning td,
.table-warning th,
.table-warning thead th {
  border-color: #ffe081;
}
.table-hover .table-warning:hover,
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a2;
}
.table-danger,
.table-danger > td,
.table-danger > th {
  background-color: #f7b8c7;
}
.table-danger tbody + tbody,
.table-danger td,
.table-danger th,
.table-danger thead th {
  border-color: #f17a97;
}
.table-hover .table-danger:hover,
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f4a1b5;
}
.table-light,
.table-light > td,
.table-light > th {
  background-color: #fdfdfe;
}
.table-light tbody + tbody,
.table-light td,
.table-light th,
.table-light thead th {
  border-color: #fbfcfc;
}
.table-hover .table-light:hover,
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}
.table-dark,
.table-dark > td,
.table-dark > th {
  background-color: #c8c8c8;
}
.table-dark tbody + tbody,
.table-dark td,
.table-dark th,
.table-dark thead th {
  border-color: #9a9a9a;
}
.table-hover .table-dark:hover,
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #bbb;
}
.table-active,
.table-active > td,
.table-active > th {
  background-color: rgba(0, 0, 6, 0.075);
}
.table-hover .table-active:hover,
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}
.table .thead-dark th {
  background-color: #3c3c3c;
  border-color: #4f4f4f;
  color: #fff;
}
.table .thead-light th {
  background-color: #f0f0f0;
  border-color: #53575b;
  color: #53575b;
}
.table-dark {
  background-color: #3c3c3c;
  color: #fff;
}
.table-dark td,
.table-dark th,
.table-dark thead th {
  border-color: #4f4f4f;
}
.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 {
  background-color: rgba(255, 255, 255, 0.075);
  color: #fff;
}
@media (max-width: 575.98px) {
  .table-responsive-sm {
    -webkit-overflow-scrolling: touch;
    display: block;
    overflow-x: auto;
    width: 100%;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    -webkit-overflow-scrolling: touch;
    display: block;
    overflow-x: auto;
    width: 100%;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    -webkit-overflow-scrolling: touch;
    display: block;
    overflow-x: auto;
    width: 100%;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    -webkit-overflow-scrolling: touch;
    display: block;
    overflow-x: auto;
    width: 100%;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1439.98px) {
  .table-responsive-xxl {
    -webkit-overflow-scrolling: touch;
    display: block;
    overflow-x: auto;
    width: 100%;
  }
  .table-responsive-xxl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  -webkit-overflow-scrolling: touch;
  display: block;
  overflow-x: auto;
  width: 100%;
}
.table-responsive > .table-bordered {
  border: 0;
}
.form-control {
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  color: #53575b;
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  height: calc(1.6em + 0.75rem + 2px);
  line-height: 1.6;
  padding: 0.375rem 0.75rem;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #53575b;
}
.form-control:focus {
  background-color: #fff;
  border-color: #ffe38c;
  box-shadow: 0 0 0 0.2rem rgba(255, 196, 12, 0.25);
  color: #53575b;
  outline: 0;
}
.form-control::placeholder {
  color: #aaa9aa;
  opacity: 1;
}
.form-control:disabled,
.form-control[readonly] {
  background-color: #f0f0f0;
  opacity: 1;
}
input[type="date"].form-control,
input[type="datetime-local"].form-control,
input[type="month"].form-control,
input[type="time"].form-control {
  appearance: none;
}
select.form-control:focus::-ms-value {
  background-color: #fff;
  color: #53575b;
}
.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}
.col-form-label {
  font-size: inherit;
  line-height: 1.6;
  margin-bottom: 0;
  padding-bottom: calc(0.375rem + 1px);
  padding-top: calc(0.375rem + 1px);
}
.col-form-label-lg {
  font-size: 2.2rem;
  line-height: 1.5;
  padding-bottom: calc(0.5rem + 1px);
  padding-top: calc(0.5rem + 1px);
}
.col-form-label-sm {
  font-size: 1.4rem;
  line-height: 1.5;
  padding-bottom: calc(0.25rem + 1px);
  padding-top: calc(0.25rem + 1px);
}
.form-control-plaintext {
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
  color: #212529;
  display: block;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 0;
  padding: 0.375rem 0;
  width: 100%;
}
.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
  padding-left: 0;
  padding-right: 0;
}
.form-control-sm {
  border-radius: 0.2rem;
  font-size: 1.4rem;
  height: calc(1.5em + 0.5rem + 2px);
  line-height: 1.5;
  padding: 0.25rem 0.5rem;
}
.form-control-lg {
  border-radius: 0.3rem;
  font-size: 2.2rem;
  height: calc(1.5em + 1rem + 2px);
  line-height: 1.5;
  padding: 0.5rem 1rem;
}
select.form-control[multiple],
select.form-control[size],
textarea.form-control {
  height: auto;
}
.form-group {
  margin-bottom: 1rem;
}
.form-text {
  display: block;
  margin-top: 0.25rem;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.form-row > .col,
.form-row > [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}
.form-check {
  display: block;
  padding-left: 1.25rem;
  position: relative;
}
.form-check-input {
  margin-left: -1.25rem;
  margin-top: 0.3rem;
  position: absolute;
}
.form-check-input:disabled ~ .form-check-label,
.form-check-input[disabled] ~ .form-check-label {
  color: #aaa9aa;
}
.form-check-label {
  margin-bottom: 0;
}
.form-check-inline {
  align-items: center;
  display: inline-flex;
  margin-right: 0.75rem;
  padding-left: 0;
}
.form-check-inline .form-check-input {
  margin-left: 0;
  margin-right: 0.3125rem;
  margin-top: 0;
  position: static;
}
.valid-feedback {
  color: #387d00;
  display: none;
  font-size: 80%;
  margin-top: 0.25rem;
  width: 100%;
}
.valid-tooltip {
  background-color: rgba(56, 125, 0, 0.9);
  border-radius: 0.25rem;
  color: #fff;
  display: none;
  font-size: 1.4rem;
  left: 0;
  line-height: 1.6;
  margin-top: 0.1rem;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  position: absolute;
  top: 100%;
  z-index: 5;
}
.form-row > .col > .valid-tooltip,
.form-row > [class*="col-"] > .valid-tooltip {
  left: 5px;
}
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip,
.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip {
  display: block;
}
.form-control.is-valid,
.was-validated .form-control:valid {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23387D00' d='M2.3 6.73.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-position: right calc(0.4em + 0.1875rem) center;
  background-repeat: no-repeat;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  border-color: #387d00;
  padding-right: calc(1.6em + 0.75rem);
}
.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
  border-color: #387d00;
  box-shadow: 0 0 0 0.2rem rgba(56, 125, 0, 0.25);
}
.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
  padding-right: calc(1.6em + 0.75rem);
}
.custom-select.is-valid,
.was-validated .custom-select:valid {
  background:
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%233C3C3C' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right 0.75rem center/8px
      10px no-repeat,
    #fff
      url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23387D00' d='M2.3 6.73.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.8em + 0.375rem) calc(0.8em + 0.375rem) no-repeat;
  border-color: #387d00;
  padding-right: calc(0.75em + 2.3125rem);
}
.custom-select.is-valid:focus,
.was-validated .custom-select:valid:focus {
  border-color: #387d00;
  box-shadow: 0 0 0 0.2rem rgba(56, 125, 0, 0.25);
}
.form-check-input.is-valid ~ .form-check-label,
.was-validated .form-check-input:valid ~ .form-check-label {
  color: #387d00;
}
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip,
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip {
  display: block;
}
.custom-control-input.is-valid ~ .custom-control-label,
.was-validated .custom-control-input:valid ~ .custom-control-label {
  color: #387d00;
}
.custom-control-input.is-valid ~ .custom-control-label:before,
.was-validated .custom-control-input:valid ~ .custom-control-label:before {
  border-color: #387d00;
}
.custom-control-input.is-valid:checked ~ .custom-control-label:before,
.was-validated .custom-control-input:valid:checked ~ .custom-control-label:before {
  background-color: #4fb000;
  border-color: #4fb000;
}
.custom-control-input.is-valid:focus ~ .custom-control-label:before,
.was-validated .custom-control-input:valid:focus ~ .custom-control-label:before {
  box-shadow: 0 0 0 0.2rem rgba(56, 125, 0, 0.25);
}
.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label:before,
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label:before {
  border-color: #387d00;
}
.custom-file-input.is-valid ~ .custom-file-label,
.was-validated .custom-file-input:valid ~ .custom-file-label {
  border-color: #387d00;
}
.custom-file-input.is-valid:focus ~ .custom-file-label,
.was-validated .custom-file-input:valid:focus ~ .custom-file-label {
  border-color: #387d00;
  box-shadow: 0 0 0 0.2rem rgba(56, 125, 0, 0.25);
}
.invalid-feedback {
  color: #e40037;
  display: none;
  font-size: 80%;
  margin-top: 0.25rem;
  width: 100%;
}
.invalid-tooltip {
  background-color: rgba(228, 0, 55, 0.9);
  border-radius: 0.25rem;
  color: #fff;
  display: none;
  font-size: 1.4rem;
  left: 0;
  line-height: 1.6;
  margin-top: 0.1rem;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  position: absolute;
  top: 100%;
  z-index: 5;
}
.form-row > .col > .invalid-tooltip,
.form-row > [class*="col-"] > .invalid-tooltip {
  left: 5px;
}
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip,
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip {
  display: block;
}
.form-control.is-invalid,
.was-validated .form-control:invalid {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23E40037'%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='%23E40037' stroke='none'/%3E%3C/svg%3E");
  background-position: right calc(0.4em + 0.1875rem) center;
  background-repeat: no-repeat;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  border-color: #e40037;
  padding-right: calc(1.6em + 0.75rem);
}
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
  border-color: #e40037;
  box-shadow: 0 0 0 0.2rem rgba(228, 0, 55, 0.25);
}
.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
  padding-right: calc(1.6em + 0.75rem);
}
.custom-select.is-invalid,
.was-validated .custom-select:invalid {
  background:
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%233C3C3C' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right 0.75rem center/8px
      10px no-repeat,
    #fff
      url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23E40037'%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='%23E40037' stroke='none'/%3E%3C/svg%3E")
      center right 1.75rem / calc(0.8em + 0.375rem) calc(0.8em + 0.375rem) no-repeat;
  border-color: #e40037;
  padding-right: calc(0.75em + 2.3125rem);
}
.custom-select.is-invalid:focus,
.was-validated .custom-select:invalid:focus {
  border-color: #e40037;
  box-shadow: 0 0 0 0.2rem rgba(228, 0, 55, 0.25);
}
.form-check-input.is-invalid ~ .form-check-label,
.was-validated .form-check-input:invalid ~ .form-check-label {
  color: #e40037;
}
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip,
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip {
  display: block;
}
.custom-control-input.is-invalid ~ .custom-control-label,
.was-validated .custom-control-input:invalid ~ .custom-control-label {
  color: #e40037;
}
.custom-control-input.is-invalid ~ .custom-control-label:before,
.was-validated .custom-control-input:invalid ~ .custom-control-label:before {
  border-color: #e40037;
}
.custom-control-input.is-invalid:checked ~ .custom-control-label:before,
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label:before {
  background-color: #ff1850;
  border-color: #ff1850;
}
.custom-control-input.is-invalid:focus ~ .custom-control-label:before,
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label:before {
  box-shadow: 0 0 0 0.2rem rgba(228, 0, 55, 0.25);
}
.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label:before,
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label:before {
  border-color: #e40037;
}
.custom-file-input.is-invalid ~ .custom-file-label,
.was-validated .custom-file-input:invalid ~ .custom-file-label {
  border-color: #e40037;
}
.custom-file-input.is-invalid:focus ~ .custom-file-label,
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label {
  border-color: #e40037;
  box-shadow: 0 0 0 0.2rem rgba(228, 0, 55, 0.25);
}
.form-inline {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    justify-content: center;
  }
  .form-inline .form-group,
  .form-inline label {
    align-items: center;
    display: flex;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    flex: 0 0 auto;
    flex-flow: row wrap;
  }
  .form-inline .form-control {
    display: inline-block;
    vertical-align: middle;
    width: auto;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .custom-select,
  .form-inline .input-group {
    width: auto;
  }
  .form-inline .form-check {
    align-items: center;
    display: flex;
    justify-content: center;
    padding-left: 0;
    width: auto;
  }
  .form-inline .form-check-input {
    flex-shrink: 0;
    margin-left: 0;
    margin-right: 0.25rem;
    margin-top: 0;
    position: relative;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}
.btn {
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 4rem;
  color: #212529;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  padding: 0.375rem 0.75rem;
  text-align: center;
  text-decoration: none;
  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;
  user-select: none;
  vertical-align: middle;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}
.btn.focus,
.btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 196, 12, 0.25);
  outline: 0;
}
.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 {
  background-color: #ffc40c;
  border-color: #ffc40c;
  color: #212529;
}
.btn-primary.focus,
.btn-primary:focus,
.btn-primary:hover {
  background-color: #e5ad00;
  border-color: #d8a400;
  color: #212529;
}
.btn-primary.focus,
.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 172, 16, 0.5);
}
.btn-primary.disabled,
.btn-primary:disabled {
  background-color: #ffc40c;
  border-color: #ffc40c;
  color: #212529;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  background-color: #d8a400;
  border-color: #cb9a00;
  color: #212529;
}
.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(222, 172, 16, 0.5);
}
.btn-secondary {
  background-color: #0075c9;
  border-color: #0075c9;
  color: #fff;
}
.btn-secondary.focus,
.btn-secondary:focus,
.btn-secondary:hover {
  background-color: #005fa3;
  border-color: #005796;
  color: #fff;
}
.btn-secondary.focus,
.btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 138, 209, 0.5);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  background-color: #0075c9;
  border-color: #0075c9;
  color: #fff;
}
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  background-color: #005796;
  border-color: #005089;
  color: #fff;
}
.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(38, 138, 209, 0.5);
}
.btn-success {
  background-color: #387d00;
  border-color: #387d00;
  color: #fff;
}
.btn-success.focus,
.btn-success:focus,
.btn-success:hover {
  background-color: #275700;
  border-color: #214a00;
  color: #fff;
}
.btn-success.focus,
.btn-success:focus {
  box-shadow: 0 0 0 0.2rem rgba(86, 145, 38, 0.5);
}
.btn-success.disabled,
.btn-success:disabled {
  background-color: #387d00;
  border-color: #387d00;
  color: #fff;
}
.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show > .btn-success.dropdown-toggle {
  background-color: #214a00;
  border-color: #1b3d00;
  color: #fff;
}
.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(86, 145, 38, 0.5);
}
.btn-info {
  background-color: #b0f3ea;
  border-color: #b0f3ea;
  color: #212529;
}
.btn-info.focus,
.btn-info:focus,
.btn-info:hover {
  background-color: #8feee1;
  border-color: #84ecde;
  color: #212529;
}
.btn-info.focus,
.btn-info:focus {
  box-shadow: 0 0 0 0.2rem rgba(155, 212, 205, 0.5);
}
.btn-info.disabled,
.btn-info:disabled {
  background-color: #b0f3ea;
  border-color: #b0f3ea;
  color: #212529;
}
.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show > .btn-info.dropdown-toggle {
  background-color: #84ecde;
  border-color: #79ebdb;
  color: #212529;
}
.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(155, 212, 205, 0.5);
}
.btn-warning {
  background-color: #ffc40c;
  border-color: #ffc40c;
  color: #212529;
}
.btn-warning.focus,
.btn-warning:focus,
.btn-warning:hover {
  background-color: #e5ad00;
  border-color: #d8a400;
  color: #212529;
}
.btn-warning.focus,
.btn-warning:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 172, 16, 0.5);
}
.btn-warning.disabled,
.btn-warning:disabled {
  background-color: #ffc40c;
  border-color: #ffc40c;
  color: #212529;
}
.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show > .btn-warning.dropdown-toggle {
  background-color: #d8a400;
  border-color: #cb9a00;
  color: #212529;
}
.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(222, 172, 16, 0.5);
}
.btn-danger {
  background-color: #e40037;
  border-color: #e40037;
  color: #fff;
}
.btn-danger.focus,
.btn-danger:focus,
.btn-danger:hover {
  background-color: #be002e;
  border-color: #b1002b;
  color: #fff;
}
.btn-danger.focus,
.btn-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(232, 38, 85, 0.5);
}
.btn-danger.disabled,
.btn-danger:disabled {
  background-color: #e40037;
  border-color: #e40037;
  color: #fff;
}
.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show > .btn-danger.dropdown-toggle {
  background-color: #b1002b;
  border-color: #a40028;
  color: #fff;
}
.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(232, 38, 85, 0.5);
}
.btn-light {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  color: #212529;
}
.btn-light.focus,
.btn-light:focus,
.btn-light:hover {
  background-color: #e2e6ea;
  border-color: #dae0e5;
  color: #212529;
}
.btn-light.focus,
.btn-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.btn-light.disabled,
.btn-light:disabled {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  color: #212529;
}
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
  background-color: #dae0e5;
  border-color: #d3d9df;
  color: #212529;
}
.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(216, 217, 219, 0.5);
}
.btn-dark {
  background-color: #3c3c3c;
  border-color: #3c3c3c;
  color: #fff;
}
.btn-dark.focus,
.btn-dark:focus,
.btn-dark:hover {
  background-color: #292929;
  border-color: #232323;
  color: #fff;
}
.btn-dark.focus,
.btn-dark:focus {
  box-shadow: 0 0 0 0.2rem rgba(89, 89, 89, 0.5);
}
.btn-dark.disabled,
.btn-dark:disabled {
  background-color: #3c3c3c;
  border-color: #3c3c3c;
  color: #fff;
}
.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show > .btn-dark.dropdown-toggle {
  background-color: #232323;
  border-color: #1c1c1c;
  color: #fff;
}
.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(89, 89, 89, 0.5);
}
.btn-outline-primary {
  border-color: #ffc40c;
  color: #ffc40c;
}
.btn-outline-primary:hover {
  background-color: #ffc40c;
  border-color: #ffc40c;
  color: #212529;
}
.btn-outline-primary.focus,
.btn-outline-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 196, 12, 0.5);
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  background-color: transparent;
  color: #ffc40c;
}
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
  background-color: #ffc40c;
  border-color: #ffc40c;
  color: #212529;
}
.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(255, 196, 12, 0.5);
}
.btn-outline-secondary {
  border-color: #0075c9;
  color: #0075c9;
}
.btn-outline-secondary:hover {
  background-color: #0075c9;
  border-color: #0075c9;
  color: #fff;
}
.btn-outline-secondary.focus,
.btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 117, 201, 0.5);
}
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  background-color: transparent;
  color: #0075c9;
}
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show > .btn-outline-secondary.dropdown-toggle {
  background-color: #0075c9;
  border-color: #0075c9;
  color: #fff;
}
.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(0, 117, 201, 0.5);
}
.btn-outline-success {
  border-color: #387d00;
  color: #387d00;
}
.btn-outline-success:hover {
  background-color: #387d00;
  border-color: #387d00;
  color: #fff;
}
.btn-outline-success.focus,
.btn-outline-success:focus {
  box-shadow: 0 0 0 0.2rem rgba(56, 125, 0, 0.5);
}
.btn-outline-success.disabled,
.btn-outline-success:disabled {
  background-color: transparent;
  color: #387d00;
}
.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show > .btn-outline-success.dropdown-toggle {
  background-color: #387d00;
  border-color: #387d00;
  color: #fff;
}
.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(56, 125, 0, 0.5);
}
.btn-outline-info {
  border-color: #b0f3ea;
  color: #b0f3ea;
}
.btn-outline-info:hover {
  background-color: #b0f3ea;
  border-color: #b0f3ea;
  color: #212529;
}
.btn-outline-info.focus,
.btn-outline-info:focus {
  box-shadow: 0 0 0 0.2rem rgba(176, 243, 234, 0.5);
}
.btn-outline-info.disabled,
.btn-outline-info:disabled {
  background-color: transparent;
  color: #b0f3ea;
}
.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show > .btn-outline-info.dropdown-toggle {
  background-color: #b0f3ea;
  border-color: #b0f3ea;
  color: #212529;
}
.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(176, 243, 234, 0.5);
}
.btn-outline-warning {
  border-color: #ffc40c;
  color: #ffc40c;
}
.btn-outline-warning:hover {
  background-color: #ffc40c;
  border-color: #ffc40c;
  color: #212529;
}
.btn-outline-warning.focus,
.btn-outline-warning:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 196, 12, 0.5);
}
.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  background-color: transparent;
  color: #ffc40c;
}
.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.show > .btn-outline-warning.dropdown-toggle {
  background-color: #ffc40c;
  border-color: #ffc40c;
  color: #212529;
}
.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, 196, 12, 0.5);
}
.btn-outline-danger {
  border-color: #e40037;
  color: #e40037;
}
.btn-outline-danger:hover {
  background-color: #e40037;
  border-color: #e40037;
  color: #fff;
}
.btn-outline-danger.focus,
.btn-outline-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(228, 0, 55, 0.5);
}
.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  background-color: transparent;
  color: #e40037;
}
.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show > .btn-outline-danger.dropdown-toggle {
  background-color: #e40037;
  border-color: #e40037;
  color: #fff;
}
.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(228, 0, 55, 0.5);
}
.btn-outline-light {
  border-color: #f8f9fa;
  color: #f8f9fa;
}
.btn-outline-light:hover {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  color: #212529;
}
.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 {
  background-color: transparent;
  color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show > .btn-outline-light.dropdown-toggle {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  color: #212529;
}
.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 {
  border-color: #3c3c3c;
  color: #3c3c3c;
}
.btn-outline-dark:hover {
  background-color: #3c3c3c;
  border-color: #3c3c3c;
  color: #fff;
}
.btn-outline-dark.focus,
.btn-outline-dark:focus {
  box-shadow: 0 0 0 0.2rem rgba(60, 60, 60, 0.5);
}
.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  background-color: transparent;
  color: #3c3c3c;
}
.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show > .btn-outline-dark.dropdown-toggle {
  background-color: #3c3c3c;
  border-color: #3c3c3c;
  color: #fff;
}
.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(60, 60, 60, 0.5);
}
.btn-link {
  color: #0075c9;
  font-weight: 400;
  text-decoration: underline;
}
.btn-link:hover {
  color: #00487d;
}
.btn-link.focus,
.btn-link:focus,
.btn-link:hover {
  text-decoration: none;
}
.btn-link.disabled,
.btn-link:disabled {
  color: #aaa9aa;
  pointer-events: none;
}
.btn-group-lg > .btn,
.btn-lg {
  border-radius: 0.3rem;
  font-size: 2.2rem;
  line-height: 1.5;
  padding: 0.5rem 1rem;
}
.btn-group-sm > .btn,
.btn-sm {
  border-radius: 0.2rem;
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 0.25rem 0.5rem;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}
input[type="button"].btn-block,
input[type="reset"].btn-block,
input[type="submit"].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 {
  height: 0;
  overflow: hidden;
  position: relative;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.dropdown,
.dropleft,
.dropright,
.dropup {
  position: relative;
}
.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle:after {
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  border-right: 0.3em solid transparent;
  border-top: 0.3em solid;
  content: "";
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
}
.dropdown-toggle:empty:after {
  margin-left: 0;
}
.dropdown-menu {
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 6, 0.15);
  border-radius: 0.25rem;
  color: #212529;
  display: none;
  float: left;
  font-size: 1.6rem;
  left: 0;
  list-style: none;
  margin: 0.125rem 0 0;
  min-width: 10rem;
  padding: 0.5rem 0;
  position: absolute;
  text-align: left;
  top: 100%;
  z-index: 1000;
}
.dropdown-menu-left {
  left: 0;
  right: auto;
}
.dropdown-menu-right {
  left: auto;
  right: 0;
}
@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    left: 0;
    right: auto;
  }
  .dropdown-menu-sm-right {
    left: auto;
    right: 0;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    left: 0;
    right: auto;
  }
  .dropdown-menu-md-right {
    left: auto;
    right: 0;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    left: 0;
    right: auto;
  }
  .dropdown-menu-lg-right {
    left: auto;
    right: 0;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    left: 0;
    right: auto;
  }
  .dropdown-menu-xl-right {
    left: auto;
    right: 0;
  }
}
@media (min-width: 1440px) {
  .dropdown-menu-xxl-left {
    left: 0;
    right: auto;
  }
  .dropdown-menu-xxl-right {
    left: auto;
    right: 0;
  }
}
.dropup .dropdown-menu {
  bottom: 100%;
  margin-bottom: 0.125rem;
  margin-top: 0;
  top: auto;
}
.dropup .dropdown-toggle:after {
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
  border-right: 0.3em solid transparent;
  border-top: 0;
  content: "";
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
}
.dropup .dropdown-toggle:empty:after {
  margin-left: 0;
}
.dropright .dropdown-menu {
  left: 100%;
  margin-left: 0.125rem;
  margin-top: 0;
  right: auto;
  top: 0;
}
.dropright .dropdown-toggle:after {
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
  border-right: 0;
  border-top: 0.3em solid transparent;
  content: "";
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
}
.dropright .dropdown-toggle:empty:after {
  margin-left: 0;
}
.dropright .dropdown-toggle:after {
  vertical-align: 0;
}
.dropleft .dropdown-menu {
  left: auto;
  margin-right: 0.125rem;
  margin-top: 0;
  right: 100%;
  top: 0;
}
.dropleft .dropdown-toggle:after {
  content: "";
  display: inline-block;
  display: none;
  margin-left: 0.255em;
  vertical-align: 0.255em;
}
.dropleft .dropdown-toggle:before {
  border-bottom: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-top: 0.3em solid transparent;
  content: "";
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
}
.dropleft .dropdown-toggle:empty:after {
  margin-left: 0;
}
.dropleft .dropdown-toggle:before {
  vertical-align: 0;
}
.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="top"] {
  bottom: auto;
  right: auto;
}
.dropdown-divider {
  border-top: 1px solid #f0f0f0;
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
}
.dropdown-item {
  background-color: transparent;
  border: 0;
  clear: both;
  color: #212529;
  display: block;
  font-weight: 400;
  padding: 0.25rem 1.5rem;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
}
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: #f0f0f0;
  color: #16181b;
  text-decoration: none;
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: #ffc40c;
  color: #fff;
  text-decoration: none;
}
.dropdown-item.disabled,
.dropdown-item:disabled {
  background-color: transparent;
  color: #adb5bd;
  pointer-events: none;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-header {
  color: #aaa9aa;
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0;
  padding: 0.5rem 1.5rem;
  white-space: nowrap;
}
.dropdown-item-text {
  color: #212529;
  display: block;
  padding: 0.25rem 1.5rem;
}
.btn-group,
.btn-group-vertical {
  display: inline-flex;
  position: relative;
  vertical-align: middle;
}
.btn-group-vertical > .btn,
.btn-group > .btn {
  flex: 1 1 auto;
  position: relative;
}
.btn-group-vertical > .btn.active,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:hover,
.btn-group > .btn.active,
.btn-group > .btn:active,
.btn-group > .btn:focus,
.btn-group > .btn:hover {
  z-index: 1;
}
.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}
.btn-group > .btn-group:not(:first-child),
.btn-group > .btn:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn-group:not(:last-child) > .btn,
.btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn-group:not(:first-child) > .btn,
.btn-group > .btn:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.dropdown-toggle-split {
  padding-left: 0.5625rem;
  padding-right: 0.5625rem;
}
.dropdown-toggle-split:after,
.dropright .dropdown-toggle-split:after,
.dropup .dropdown-toggle-split:after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split:before {
  margin-right: 0;
}
.btn-group-sm > .btn + .dropdown-toggle-split,
.btn-sm + .dropdown-toggle-split {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.btn-group-lg > .btn + .dropdown-toggle-split,
.btn-lg + .dropdown-toggle-split {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.btn-group-vertical {
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn-group:not(:first-child),
.btn-group-vertical > .btn:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.btn-group-vertical > .btn:not(:first-child) {
  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-group > .btn input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .btn input[type="radio"] {
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
  position: absolute;
}
.input-group {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
}
.input-group > .custom-file,
.input-group > .custom-select,
.input-group > .form-control,
.input-group > .form-control-plaintext {
  flex: 1 1 auto;
  margin-bottom: 0;
  min-width: 0;
  position: relative;
  width: 1%;
}
.input-group > .custom-file + .custom-file,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .form-control,
.input-group > .custom-select + .custom-file,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .form-control,
.input-group > .form-control + .custom-file,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .form-control,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .form-control {
  margin-left: -1px;
}
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label,
.input-group > .custom-select:focus,
.input-group > .form-control:focus {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .custom-select:not(:first-child),
.input-group > .form-control:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group > .custom-file {
  align-items: center;
  display: flex;
}
.input-group > .custom-file:not(:first-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label:after,
.input-group.has-validation > .custom-select:nth-last-child(n + 3),
.input-group.has-validation > .form-control:nth-last-child(n + 3),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label:after,
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .form-control:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.input-group-append,
.input-group-prepend {
  display: flex;
}
.input-group-append .btn,
.input-group-prepend .btn {
  position: relative;
  z-index: 2;
}
.input-group-append .btn:focus,
.input-group-prepend .btn:focus {
  z-index: 3;
}
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .input-group-text + .input-group-text,
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .input-group-text + .input-group-text {
  margin-left: -1px;
}
.input-group-prepend {
  margin-right: -1px;
}
.input-group-append {
  margin-left: -1px;
}
.input-group-text {
  align-items: center;
  background-color: #f0f0f0;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  color: #53575b;
  display: flex;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
  padding: 0.375rem 0.75rem;
  text-align: center;
  white-space: nowrap;
}
.input-group-text input[type="checkbox"],
.input-group-text input[type="radio"] {
  margin-top: 0;
}
.input-group-lg > .custom-select,
.input-group-lg > .form-control:not(textarea) {
  height: calc(1.5em + 1rem + 2px);
}
.input-group-lg > .custom-select,
.input-group-lg > .form-control,
.input-group-lg > .input-group-append > .btn,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-prepend > .input-group-text {
  border-radius: 0.3rem;
  font-size: 2.2rem;
  line-height: 1.5;
  padding: 0.5rem 1rem;
}
.input-group-sm > .custom-select,
.input-group-sm > .form-control:not(textarea) {
  height: calc(1.5em + 0.5rem + 2px);
}
.input-group-sm > .custom-select,
.input-group-sm > .form-control,
.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-prepend > .input-group-text {
  border-radius: 0.2rem;
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 0.25rem 0.5rem;
}
.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}
.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: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 > .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),
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .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),
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.custom-control {
  color-adjust: exact;
  display: block;
  min-height: 2.56rem;
  padding-left: 1.5rem;
  position: relative;
  z-index: 1;
}
.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}
.custom-control-input {
  height: 1.78rem;
  left: 0;
  opacity: 0;
  position: absolute;
  width: 1rem;
  z-index: -1;
}
.custom-control-input:checked ~ .custom-control-label:before {
  background-color: #ffc40c;
  border-color: #ffc40c;
  color: #fff;
}
.custom-control-input:focus ~ .custom-control-label:before {
  box-shadow: 0 0 0 0.2rem rgba(255, 196, 12, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label:before {
  border-color: #ffe38c;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label:before {
  background-color: #ffefbf;
  border-color: #ffefbf;
  color: #fff;
}
.custom-control-input:disabled ~ .custom-control-label,
.custom-control-input[disabled] ~ .custom-control-label {
  color: #aaa9aa;
}
.custom-control-input:disabled ~ .custom-control-label:before,
.custom-control-input[disabled] ~ .custom-control-label:before {
  background-color: #f0f0f0;
}
.custom-control-label {
  margin-bottom: 0;
  position: relative;
  vertical-align: top;
}
.custom-control-label:before {
  background-color: #fff;
  border: 1px solid #adb5bd;
  pointer-events: none;
}
.custom-control-label:after,
.custom-control-label:before {
  content: "";
  display: block;
  height: 1rem;
  left: -1.5rem;
  position: absolute;
  top: 0.78rem;
  width: 1rem;
}
.custom-control-label:after {
  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;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23fff' d='m6.564.75-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 {
  background-color: #ffc40c;
  border-color: #ffc40c;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label:before {
  background-color: rgba(255, 196, 12, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label:before {
  background-color: rgba(255, 196, 12, 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;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label:before {
  background-color: rgba(255, 196, 12, 0.5);
}
.custom-switch {
  padding-left: 2.25rem;
}
.custom-switch .custom-control-label:before {
  border-radius: 0.5rem;
  left: -2.25rem;
  pointer-events: all;
  width: 1.75rem;
}
.custom-switch .custom-control-label:after {
  background-color: #adb5bd;
  border-radius: 0.5rem;
  height: calc(1rem - 4px);
  left: calc(-2.25rem + 2px);
  top: calc(0.78rem + 2px);
  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;
  width: calc(1rem - 4px);
}
@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: #fff;
  transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label:before {
  background-color: rgba(255, 196, 12, 0.5);
}
.custom-select {
  appearance: none;
  background: #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%233C3C3C' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right
    0.75rem center/8px 10px no-repeat;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  color: #53575b;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  height: calc(1.6em + 0.75rem + 2px);
  line-height: 1.6;
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  vertical-align: middle;
  width: 100%;
}
.custom-select:focus {
  border-color: #ffe38c;
  box-shadow: 0 0 0 0.2rem rgba(255, 196, 12, 0.25);
  outline: 0;
}
.custom-select:focus::-ms-value {
  background-color: #fff;
  color: #53575b;
}
.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
  background-image: none;
  height: auto;
  padding-right: 0.75rem;
}
.custom-select:disabled {
  background-color: #f0f0f0;
  color: #aaa9aa;
}
.custom-select::-ms-expand {
  display: none;
}
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #53575b;
}
.custom-select-sm {
  font-size: 1.4rem;
  height: calc(1.5em + 0.5rem + 2px);
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-top: 0.25rem;
}
.custom-select-lg {
  font-size: 2.2rem;
  height: calc(1.5em + 1rem + 2px);
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-top: 0.5rem;
}
.custom-file {
  display: inline-block;
  margin-bottom: 0;
}
.custom-file,
.custom-file-input {
  height: calc(1.6em + 0.75rem + 2px);
  position: relative;
  width: 100%;
}
.custom-file-input {
  margin: 0;
  opacity: 0;
  overflow: hidden;
  z-index: 2;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #ffe38c;
  box-shadow: 0 0 0 0.2rem rgba(255, 196, 12, 0.25);
}
.custom-file-input:disabled ~ .custom-file-label,
.custom-file-input[disabled] ~ .custom-file-label {
  background-color: #f0f0f0;
}
.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 {
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  font-weight: 400;
  height: calc(1.6em + 0.75rem + 2px);
  left: 0;
  overflow: hidden;
  z-index: 1;
}
.custom-file-label,
.custom-file-label:after {
  color: #53575b;
  line-height: 1.6;
  padding: 0.375rem 0.75rem;
  position: absolute;
  right: 0;
  top: 0;
}
.custom-file-label:after {
  background-color: #f0f0f0;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
  bottom: 0;
  content: "Browse";
  display: block;
  height: calc(1.6em + 0.75rem);
  z-index: 3;
}
.custom-range {
  appearance: none;
  background-color: transparent;
  height: 1.4rem;
  padding: 0;
  width: 100%;
}
.custom-range:focus {
  outline: 0;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow:
    0 0 0 1px #fff,
    0 0 0 0.2rem rgba(255, 196, 12, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow:
    0 0 0 1px #fff,
    0 0 0 0.2rem rgba(255, 196, 12, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow:
    0 0 0 1px #fff,
    0 0 0 0.2rem rgba(255, 196, 12, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  appearance: none;
  background-color: #ffc40c;
  border: 0;
  border-radius: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  transition:
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  width: 1rem;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #ffefbf;
}
.custom-range::-webkit-slider-runnable-track {
  background-color: #dad9d7;
  border-color: transparent;
  border-radius: 1rem;
  color: transparent;
  cursor: pointer;
  height: 0.5rem;
  width: 100%;
}
.custom-range::-moz-range-thumb {
  appearance: none;
  background-color: #ffc40c;
  border: 0;
  border-radius: 1rem;
  height: 1rem;
  transition:
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  width: 1rem;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: #ffefbf;
}
.custom-range::-moz-range-track {
  background-color: #dad9d7;
  border-color: transparent;
  border-radius: 1rem;
  color: transparent;
  cursor: pointer;
  height: 0.5rem;
  width: 100%;
}
.custom-range::-ms-thumb {
  appearance: none;
  background-color: #ffc40c;
  border: 0;
  border-radius: 1rem;
  height: 1rem;
  margin-left: 0.2rem;
  margin-right: 0.2rem;
  margin-top: 0;
  transition:
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  width: 1rem;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: #ffefbf;
}
.custom-range::-ms-track {
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
  color: transparent;
  cursor: pointer;
  height: 0.5rem;
  width: 100%;
}
.custom-range::-ms-fill-lower,
.custom-range::-ms-fill-upper {
  background-color: #dad9d7;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
}
.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;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link,
.nav-link:focus,
.nav-link:hover {
  text-decoration: none;
}
.nav-link.disabled {
  color: #aaa9aa;
  cursor: default;
  pointer-events: none;
}
.nav-tabs {
  border-bottom: 1px solid #dad9d7;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  margin-bottom: -1px;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: #f0f0f0 #f0f0f0 #dad9d7;
}
.nav-tabs .nav-link.disabled {
  background-color: transparent;
  border-color: transparent;
  color: #aaa9aa;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: #fff;
  border-color: #dad9d7 #dad9d7 #fff;
  color: #53575b;
}
.nav-tabs .dropdown-menu {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: -1px;
}
.nav-pills .nav-link {
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #ffc40c;
  color: #fff;
}
.nav-fill .nav-item,
.nav-fill > .nav-link {
  flex: 1 1 auto;
  text-align: center;
}
.nav-justified .nav-item,
.nav-justified > .nav-link {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.navbar {
  padding: 0.5rem 1rem;
  position: relative;
}
.navbar,
.navbar .container,
.navbar .container-fluid,
.navbar .container-lg,
.navbar .container-md,
.navbar .container-sm,
.navbar .container-xl {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  font-size: 2.2rem;
  line-height: inherit;
  margin-right: 1rem;
  padding-bottom: 0.02rem;
  padding-top: 0.02rem;
  white-space: nowrap;
}
.navbar-brand:focus,
.navbar-brand:hover {
  text-decoration: none;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.navbar-nav .nav-link {
  padding-left: 0;
  padding-right: 0;
}
.navbar-nav .dropdown-menu {
  float: none;
  position: static;
}
.navbar-text {
  display: inline-block;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
.navbar-collapse {
  align-items: center;
  flex-basis: 100%;
  flex-grow: 1;
}
.navbar-toggler {
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 4rem;
  font-size: 2.2rem;
  line-height: 1;
  padding: 0.25rem 0.75rem;
}
.navbar-toggler:focus,
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler-icon {
  background: 50%/100% 100% no-repeat;
  content: "";
  display: inline-block;
  height: 1.5em;
  vertical-align: middle;
  width: 1.5em;
}
.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-lg,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-xl {
    padding-left: 0;
    padding-right: 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-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-sm,
  .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-lg,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-xl {
    padding-left: 0;
    padding-right: 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-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-sm,
  .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-lg,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-xl {
    padding-left: 0;
    padding-right: 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-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-sm,
  .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-lg,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-xl {
    padding-left: 0;
    padding-right: 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-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-sm,
  .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;
  }
}
@media (max-width: 1439.98px) {
  .navbar-expand-xxl > .container,
  .navbar-expand-xxl > .container-fluid,
  .navbar-expand-xxl > .container-lg,
  .navbar-expand-xxl > .container-md,
  .navbar-expand-xxl > .container-sm,
  .navbar-expand-xxl > .container-xl {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1440px) {
  .navbar-expand-xxl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .navbar-expand-xxl > .container,
  .navbar-expand-xxl > .container-fluid,
  .navbar-expand-xxl > .container-lg,
  .navbar-expand-xxl > .container-md,
  .navbar-expand-xxl > .container-sm,
  .navbar-expand-xxl > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-lg,
.navbar-expand > .container-md,
.navbar-expand > .container-sm,
.navbar-expand > .container-xl {
  padding-left: 0;
  padding-right: 0;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-lg,
.navbar-expand > .container-md,
.navbar-expand > .container-sm,
.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,
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
  color: rgba(0, 0, 6, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 6, 0.5);
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: rgba(0, 0, 6, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 6, 0.3);
}
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: rgba(0, 0, 6, 0.9);
}
.navbar-light .navbar-toggler {
  border-color: rgba(0, 0, 6, 0.1);
  color: rgba(0, 0, 6, 0.5);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(0,0,6,0.5)' 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, 6, 0.5);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
  color: rgba(0, 0, 6, 0.9);
}
.navbar-dark .navbar-brand,
.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  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 .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(255,255,255,0.5)' 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,
.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover {
  color: #fff;
}
.card {
  word-wrap: break-word;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 6, 0.125);
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
}
.card > hr {
  margin-left: 0;
  margin-right: 0;
}
.card > .list-group {
  border-bottom: inherit;
  border-top: inherit;
}
.card > .list-group:first-child {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
  border-top-width: 0;
}
.card > .list-group:last-child {
  border-bottom-left-radius: calc(0.25rem - 1px);
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-width: 0;
}
.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;
}
.card-subtitle,
.card-text:last-child {
  margin-bottom: 0;
}
.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}
.card-header {
  background-color: rgba(0, 0, 6, 0.03);
  border-bottom: 1px solid rgba(0, 0, 6, 0.125);
  margin-bottom: 0;
  padding: 0.75rem 1.25rem;
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-footer {
  background-color: rgba(0, 0, 6, 0.03);
  border-top: 1px solid rgba(0, 0, 6, 0.125);
  padding: 0.75rem 1.25rem;
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-header-tabs {
  border-bottom: 0;
  margin-bottom: -0.75rem;
}
.card-header-pills,
.card-header-tabs {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
.card-img-overlay {
  border-radius: calc(0.25rem - 1px);
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  position: absolute;
  right: 0;
  top: 0;
}
.card-img,
.card-img-bottom,
.card-img-top {
  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-left-radius: calc(0.25rem - 1px);
  border-bottom-right-radius: calc(0.25rem - 1px);
}
.card-deck .card {
  margin-bottom: 7.5px;
}
@media (min-width: 576px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .card-deck .card {
    flex: 1 0 0%;
    margin-bottom: 0;
    margin-left: 7.5px;
    margin-right: 7.5px;
  }
}
.card-group > .card {
  margin-bottom: 7.5px;
}
@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 {
    border-left: 0;
    margin-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-header,
  .card-group > .card:not(:last-child) .card-img-top {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-footer,
  .card-group > .card:not(:last-child) .card-img-bottom {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-header,
  .card-group > .card:not(:first-child) .card-img-top {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-footer,
  .card-group > .card:not(:first-child) .card-img-bottom {
    border-bottom-left-radius: 0;
  }
}
.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    column-count: 3;
    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-left-radius: 0;
  border-bottom-right-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 {
  background-color: #f0f0f0;
  border-radius: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item:before {
  color: #aaa9aa;
  content: "/";
  float: left;
  padding-right: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item:hover:before {
  text-decoration: underline;
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #aaa9aa;
}
.pagination {
  border-radius: 0.25rem;
  display: flex;
  list-style: none;
  padding-left: 0;
}
.page-link {
  background-color: #fff;
  border: 1px solid #dad9d7;
  color: #0075c9;
  display: block;
  line-height: 1.25;
  margin-left: -1px;
  padding: 0.5rem 0.75rem;
  position: relative;
  text-decoration: none;
}
.page-link:hover {
  background-color: #f0f0f0;
  border-color: #dad9d7;
  color: #00487d;
  text-decoration: none;
  z-index: 2;
}
.page-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 196, 12, 0.25);
  outline: 0;
  z-index: 3;
}
.page-item:first-child .page-link {
  border-bottom-left-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
  margin-left: 0;
}
.page-item:last-child .page-link {
  border-bottom-right-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.page-item.active .page-link {
  background-color: #ffc40c;
  border-color: #ffc40c;
  color: #fff;
  z-index: 3;
}
.page-item.disabled .page-link {
  background-color: #fff;
  border-color: #dad9d7;
  color: #aaa9aa;
  cursor: auto;
  pointer-events: none;
}
.pagination-lg .page-link {
  font-size: 2.2rem;
  line-height: 1.5;
  padding: 0.75rem 1.5rem;
}
.pagination-lg .page-item:first-child .page-link {
  border-bottom-left-radius: 0.3rem;
  border-top-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-bottom-right-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.pagination-sm .page-link {
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 0.25rem 0.5rem;
}
.pagination-sm .page-item:first-child .page-link {
  border-bottom-left-radius: 0.2rem;
  border-top-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-bottom-right-radius: 0.2rem;
  border-top-right-radius: 0.2rem;
}
.badge {
  border-radius: 0.25rem;
  display: inline-block;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  padding: 0.25em 0.4em;
  text-align: center;
  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;
  vertical-align: baseline;
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}
a.badge:focus,
a.badge:hover {
  text-decoration: none;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.badge-pill {
  border-radius: 10rem;
  padding-left: 0.6em;
  padding-right: 0.6em;
}
.badge-primary {
  background-color: #ffc40c;
  color: #212529;
}
a.badge-primary:focus,
a.badge-primary:hover {
  background-color: #d8a400;
  color: #212529;
}
a.badge-primary.focus,
a.badge-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 196, 12, 0.5);
  outline: 0;
}
.badge-secondary {
  background-color: #0075c9;
  color: #fff;
}
a.badge-secondary:focus,
a.badge-secondary:hover {
  background-color: #005796;
  color: #fff;
}
a.badge-secondary.focus,
a.badge-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 117, 201, 0.5);
  outline: 0;
}
.badge-success {
  background-color: #387d00;
  color: #fff;
}
a.badge-success:focus,
a.badge-success:hover {
  background-color: #214a00;
  color: #fff;
}
a.badge-success.focus,
a.badge-success:focus {
  box-shadow: 0 0 0 0.2rem rgba(56, 125, 0, 0.5);
  outline: 0;
}
.badge-info {
  background-color: #b0f3ea;
  color: #212529;
}
a.badge-info:focus,
a.badge-info:hover {
  background-color: #84ecde;
  color: #212529;
}
a.badge-info.focus,
a.badge-info:focus {
  box-shadow: 0 0 0 0.2rem rgba(176, 243, 234, 0.5);
  outline: 0;
}
.badge-warning {
  background-color: #ffc40c;
  color: #212529;
}
a.badge-warning:focus,
a.badge-warning:hover {
  background-color: #d8a400;
  color: #212529;
}
a.badge-warning.focus,
a.badge-warning:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 196, 12, 0.5);
  outline: 0;
}
.badge-danger {
  background-color: #e40037;
  color: #fff;
}
a.badge-danger:focus,
a.badge-danger:hover {
  background-color: #b1002b;
  color: #fff;
}
a.badge-danger.focus,
a.badge-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(228, 0, 55, 0.5);
  outline: 0;
}
.badge-light {
  background-color: #f8f9fa;
  color: #212529;
}
a.badge-light:focus,
a.badge-light:hover {
  background-color: #dae0e5;
  color: #212529;
}
a.badge-light.focus,
a.badge-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  outline: 0;
}
.badge-dark {
  background-color: #3c3c3c;
  color: #fff;
}
a.badge-dark:focus,
a.badge-dark:hover {
  background-color: #232323;
  color: #fff;
}
a.badge-dark.focus,
a.badge-dark:focus {
  box-shadow: 0 0 0 0.2rem rgba(60, 60, 60, 0.5);
  outline: 0;
}
.jumbotron {
  background-color: #f0f0f0;
  border-radius: 0.3rem;
  margin-bottom: 2rem;
  padding: 2rem 1rem;
}
@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}
.jumbotron-fluid {
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
.alert {
  border: 1px solid transparent;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1.25rem;
  position: relative;
}
.alert-heading {
  color: inherit;
}
.alert-link {
  font-weight: 700;
}
.alert-dismissible {
  padding-right: 4.9rem;
}
.alert-dismissible .close {
  color: inherit;
  padding: 0.75rem 1.25rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.alert-primary {
  background-color: #fff3ce;
  border-color: #feb;
  color: #856609;
}
.alert-primary hr {
  border-top-color: #ffe8a2;
}
.alert-primary .alert-link {
  color: #554106;
}
.alert-secondary {
  background-color: #cce3f4;
  border-color: #b8d8f0;
  color: #003d6b;
}
.alert-secondary hr {
  border-top-color: #a3ccec;
}
.alert-secondary .alert-link {
  color: #002038;
}
.alert-success {
  background-color: #d7e5cc;
  border-color: #c7dbb8;
  color: #1d4103;
}
.alert-success hr {
  border-top-color: #bad2a7;
}
.alert-success .alert-link {
  color: #071001;
}
.alert-info {
  background-color: #effdfb;
  border-color: #e9fcf9;
  color: #5c7e7d;
}
.alert-info hr {
  border-top-color: #d3f9f3;
}
.alert-info .alert-link {
  color: #466160;
}
.alert-warning {
  background-color: #fff3ce;
  border-color: #feb;
  color: #856609;
}
.alert-warning hr {
  border-top-color: #ffe8a2;
}
.alert-warning .alert-link {
  color: #554106;
}
.alert-danger {
  background-color: #faccd7;
  border-color: #f7b8c7;
  color: #77001f;
}
.alert-danger hr {
  border-top-color: #f4a1b5;
}
.alert-danger .alert-link {
  color: #440012;
}
.alert-light {
  background-color: #fefefe;
  border-color: #fdfdfe;
  color: #818185;
}
.alert-light hr {
  border-top-color: #ececf6;
}
.alert-light .alert-link {
  color: #68686b;
}
.alert-dark {
  background-color: #d8d8d8;
  border-color: #c8c8c8;
  color: #1f1f22;
}
.alert-dark hr {
  border-top-color: #bbb;
}
.alert-dark .alert-link {
  color: #070707;
}
@keyframes progress-bar-stripes {
  0% {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  background-color: #f0f0f0;
  border-radius: 0.25rem;
  font-size: 1.2rem;
  height: 1rem;
  line-height: 0;
}
.progress,
.progress-bar {
  display: flex;
  overflow: hidden;
}
.progress-bar {
  background-color: #ffc40c;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: width 0.6s ease;
  white-space: nowrap;
}
@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 0, transparent 50%, rgba(255, 255, 255, 0.15) 0, rgba(255, 255, 255, 0.15) 75%, transparent 0, transparent);
  background-size: 1rem 1rem;
}
.progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}
.media {
  align-items: flex-start;
  display: flex;
}
.media-body {
  flex: 1;
}
.list-group {
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  padding-left: 0;
}
.list-group-item-action {
  color: #53575b;
  text-align: inherit;
  width: 100%;
}
.list-group-item-action:focus,
.list-group-item-action:hover {
  background-color: #f8f9fa;
  color: #53575b;
  text-decoration: none;
  z-index: 1;
}
.list-group-item-action:active {
  background-color: #f0f0f0;
  color: #212529;
}
.list-group-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 6, 0.125);
  display: block;
  padding: 0.75rem 1.25rem;
  position: relative;
  text-decoration: none;
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}
.list-group-item.disabled,
.list-group-item:disabled {
  background-color: #fff;
  color: #aaa9aa;
  pointer-events: none;
}
.list-group-item.active {
  background-color: #ffc40c;
  border-color: #ffc40c;
  color: #fff;
  z-index: 2;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  border-top-width: 1px;
  margin-top: -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-bottom-left-radius: 0;
  border-top-right-radius: 0.25rem;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-left-width: 0;
  border-top-width: 1px;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  border-left-width: 1px;
  margin-left: -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-bottom-left-radius: 0;
    border-top-right-radius: 0.25rem;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-left-width: 0;
    border-top-width: 1px;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    border-left-width: 1px;
    margin-left: -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-bottom-left-radius: 0;
    border-top-right-radius: 0.25rem;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-left-width: 0;
    border-top-width: 1px;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    border-left-width: 1px;
    margin-left: -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-bottom-left-radius: 0;
    border-top-right-radius: 0.25rem;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-left-width: 0;
    border-top-width: 1px;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    border-left-width: 1px;
    margin-left: -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-bottom-left-radius: 0;
    border-top-right-radius: 0.25rem;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-left-width: 0;
    border-top-width: 1px;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    border-left-width: 1px;
    margin-left: -1px;
  }
}
@media (min-width: 1440px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0.25rem;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-left-width: 0;
    border-top-width: 1px;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    border-left-width: 1px;
    margin-left: -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 {
  background-color: #feb;
  color: #856609;
}
.list-group-item-primary.list-group-item-action:focus,
.list-group-item-primary.list-group-item-action:hover {
  background-color: #ffe8a2;
  color: #856609;
}
.list-group-item-primary.list-group-item-action.active {
  background-color: #856609;
  border-color: #856609;
  color: #fff;
}
.list-group-item-secondary {
  background-color: #b8d8f0;
  color: #003d6b;
}
.list-group-item-secondary.list-group-item-action:focus,
.list-group-item-secondary.list-group-item-action:hover {
  background-color: #a3ccec;
  color: #003d6b;
}
.list-group-item-secondary.list-group-item-action.active {
  background-color: #003d6b;
  border-color: #003d6b;
  color: #fff;
}
.list-group-item-success {
  background-color: #c7dbb8;
  color: #1d4103;
}
.list-group-item-success.list-group-item-action:focus,
.list-group-item-success.list-group-item-action:hover {
  background-color: #bad2a7;
  color: #1d4103;
}
.list-group-item-success.list-group-item-action.active {
  background-color: #1d4103;
  border-color: #1d4103;
  color: #fff;
}
.list-group-item-info {
  background-color: #e9fcf9;
  color: #5c7e7d;
}
.list-group-item-info.list-group-item-action:focus,
.list-group-item-info.list-group-item-action:hover {
  background-color: #d3f9f3;
  color: #5c7e7d;
}
.list-group-item-info.list-group-item-action.active {
  background-color: #5c7e7d;
  border-color: #5c7e7d;
  color: #fff;
}
.list-group-item-warning {
  background-color: #feb;
  color: #856609;
}
.list-group-item-warning.list-group-item-action:focus,
.list-group-item-warning.list-group-item-action:hover {
  background-color: #ffe8a2;
  color: #856609;
}
.list-group-item-warning.list-group-item-action.active {
  background-color: #856609;
  border-color: #856609;
  color: #fff;
}
.list-group-item-danger {
  background-color: #f7b8c7;
  color: #77001f;
}
.list-group-item-danger.list-group-item-action:focus,
.list-group-item-danger.list-group-item-action:hover {
  background-color: #f4a1b5;
  color: #77001f;
}
.list-group-item-danger.list-group-item-action.active {
  background-color: #77001f;
  border-color: #77001f;
  color: #fff;
}
.list-group-item-light {
  background-color: #fdfdfe;
  color: #818185;
}
.list-group-item-light.list-group-item-action:focus,
.list-group-item-light.list-group-item-action:hover {
  background-color: #ececf6;
  color: #818185;
}
.list-group-item-light.list-group-item-action.active {
  background-color: #818185;
  border-color: #818185;
  color: #fff;
}
.list-group-item-dark {
  background-color: #c8c8c8;
  color: #1f1f22;
}
.list-group-item-dark.list-group-item-action:focus,
.list-group-item-dark.list-group-item-action:hover {
  background-color: #bbb;
  color: #1f1f22;
}
.list-group-item-dark.list-group-item-action.active {
  background-color: #1f1f22;
  border-color: #1f1f22;
  color: #fff;
}
.close {
  color: #000006;
  float: right;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.5;
  text-shadow: 0 1px 0 #fff;
}
.close:hover {
  color: #000006;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 0.75;
}
button.close {
  background-color: transparent;
  border: 0;
  padding: 0;
}
a.close.disabled {
  pointer-events: none;
}
.toast {
  background-clip: padding-box;
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 6, 0.1);
  flex-basis: 350px;
  font-size: 0.875rem;
  max-width: 350px;
  opacity: 0;
}
.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}
.toast.showing {
  opacity: 1;
}
.toast.show {
  display: block;
  opacity: 1;
}
.toast.hide {
  display: none;
}
.toast-header {
  align-items: center;
  background-clip: padding-box;
  background-color: rgba(255, 255, 255, 0.85);
  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);
  color: #aaa9aa;
  display: flex;
  padding: 0.25rem 0.75rem;
}
.toast-body {
  padding: 0.75rem;
}
.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal {
  display: none;
  height: 100%;
  left: 0;
  outline: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
}
.modal-dialog {
  margin: 0.5rem;
  pointer-events: none;
  position: relative;
  width: auto;
}
.modal.fade .modal-dialog {
  transform: translateY(-50px);
  transition: transform 0.3s ease-out;
}
@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-footer,
.modal-dialog-scrollable .modal-header {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}
.modal-dialog-centered {
  align-items: center;
  display: flex;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered:before {
  content: "";
  display: block;
  height: calc(100vh - 1rem);
  height: min-content;
}
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable:before {
  content: none;
}
.modal-content {
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 6, 0.2);
  border-radius: 0.3rem;
  display: flex;
  flex-direction: column;
  outline: 0;
  pointer-events: auto;
  position: relative;
  width: 100%;
}
.modal-backdrop {
  background-color: #000006;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 1040;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}
.modal-header {
  align-items: flex-start;
  border-bottom: 1px solid #53575b;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}
.modal-header .close {
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
}
.modal-title {
  line-height: 1.6;
  margin-bottom: 0;
}
.modal-body {
  flex: 1 1 auto;
  padding: 1rem;
  position: relative;
}
.modal-footer {
  align-items: center;
  border-bottom-left-radius: calc(0.3rem - 1px);
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-top: 1px solid #53575b;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0.75rem;
}
.modal-footer > * {
  margin: 0.25rem;
}
.modal-scrollbar-measure {
  height: 50px;
  overflow: scroll;
  position: absolute;
  top: -9999px;
  width: 50px;
}
@media (min-width: 576px) {
  .modal-dialog {
    margin: 1.75rem auto;
    max-width: 500px;
  }
  .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: 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 {
  word-wrap: break-word;
  display: block;
  font-family:
    DM Sans,
    sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.6;
  margin: 0;
  opacity: 0;
  position: absolute;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  z-index: 1070;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  display: block;
  height: 0.4rem;
  position: absolute;
  width: 0.8rem;
}
.tooltip .arrow:before {
  border-color: transparent;
  border-style: solid;
  content: "";
  position: absolute;
}
.bs-tooltip-auto[x-placement^="top"],
.bs-tooltip-top {
  padding: 0.4rem 0;
}
.bs-tooltip-auto[x-placement^="top"] .arrow,
.bs-tooltip-top .arrow {
  bottom: 0;
}
.bs-tooltip-auto[x-placement^="top"] .arrow:before,
.bs-tooltip-top .arrow:before {
  border-top-color: #000006;
  border-width: 0.4rem 0.4rem 0;
  top: 0;
}
.bs-tooltip-auto[x-placement^="right"],
.bs-tooltip-right {
  padding: 0 0.4rem;
}
.bs-tooltip-auto[x-placement^="right"] .arrow,
.bs-tooltip-right .arrow {
  height: 0.8rem;
  left: 0;
  width: 0.4rem;
}
.bs-tooltip-auto[x-placement^="right"] .arrow:before,
.bs-tooltip-right .arrow:before {
  border-right-color: #000006;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  right: 0;
}
.bs-tooltip-auto[x-placement^="bottom"],
.bs-tooltip-bottom {
  padding: 0.4rem 0;
}
.bs-tooltip-auto[x-placement^="bottom"] .arrow,
.bs-tooltip-bottom .arrow {
  top: 0;
}
.bs-tooltip-auto[x-placement^="bottom"] .arrow:before,
.bs-tooltip-bottom .arrow:before {
  border-bottom-color: #000006;
  border-width: 0 0.4rem 0.4rem;
  bottom: 0;
}
.bs-tooltip-auto[x-placement^="left"],
.bs-tooltip-left {
  padding: 0 0.4rem;
}
.bs-tooltip-auto[x-placement^="left"] .arrow,
.bs-tooltip-left .arrow {
  height: 0.8rem;
  right: 0;
  width: 0.4rem;
}
.bs-tooltip-auto[x-placement^="left"] .arrow:before,
.bs-tooltip-left .arrow:before {
  border-left-color: #000006;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  left: 0;
}
.tooltip-inner {
  background-color: #000006;
  border-radius: 0.25rem;
  color: #fff;
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  text-align: center;
}
.popover {
  word-wrap: break-word;
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 6, 0.2);
  border-radius: 0.3rem;
  font-family:
    DM Sans,
    sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  left: 0;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.6;
  max-width: 276px;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  top: 0;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  z-index: 1060;
}
.popover,
.popover .arrow {
  display: block;
  position: absolute;
}
.popover .arrow {
  height: 0.5rem;
  margin: 0 0.3rem;
  width: 1rem;
}
.popover .arrow:after,
.popover .arrow:before {
  border-color: transparent;
  border-style: solid;
  content: "";
  display: block;
  position: absolute;
}
.bs-popover-auto[x-placement^="top"],
.bs-popover-top {
  margin-bottom: 0.5rem;
}
.bs-popover-auto[x-placement^="top"] > .arrow,
.bs-popover-top > .arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-auto[x-placement^="top"] > .arrow:before,
.bs-popover-top > .arrow:before {
  border-top-color: rgba(0, 0, 6, 0.25);
  border-width: 0.5rem 0.5rem 0;
  bottom: 0;
}
.bs-popover-auto[x-placement^="top"] > .arrow:after,
.bs-popover-top > .arrow:after {
  border-top-color: #fff;
  border-width: 0.5rem 0.5rem 0;
  bottom: 1px;
}
.bs-popover-auto[x-placement^="right"],
.bs-popover-right {
  margin-left: 0.5rem;
}
.bs-popover-auto[x-placement^="right"] > .arrow,
.bs-popover-right > .arrow {
  height: 1rem;
  left: calc(-0.5rem - 1px);
  margin: 0.3rem 0;
  width: 0.5rem;
}
.bs-popover-auto[x-placement^="right"] > .arrow:before,
.bs-popover-right > .arrow:before {
  border-right-color: rgba(0, 0, 6, 0.25);
  border-width: 0.5rem 0.5rem 0.5rem 0;
  left: 0;
}
.bs-popover-auto[x-placement^="right"] > .arrow:after,
.bs-popover-right > .arrow:after {
  border-right-color: #fff;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  left: 1px;
}
.bs-popover-auto[x-placement^="bottom"],
.bs-popover-bottom {
  margin-top: 0.5rem;
}
.bs-popover-auto[x-placement^="bottom"] > .arrow,
.bs-popover-bottom > .arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-auto[x-placement^="bottom"] > .arrow:before,
.bs-popover-bottom > .arrow:before {
  border-bottom-color: rgba(0, 0, 6, 0.25);
  border-width: 0 0.5rem 0.5rem;
  top: 0;
}
.bs-popover-auto[x-placement^="bottom"] > .arrow:after,
.bs-popover-bottom > .arrow:after {
  border-bottom-color: #fff;
  border-width: 0 0.5rem 0.5rem;
  top: 1px;
}
.bs-popover-auto[x-placement^="bottom"] .popover-header:before,
.bs-popover-bottom .popover-header:before {
  border-bottom: 1px solid #f7f7f7;
  content: "";
  display: block;
  left: 50%;
  margin-left: -0.5rem;
  position: absolute;
  top: 0;
  width: 1rem;
}
.bs-popover-auto[x-placement^="left"],
.bs-popover-left {
  margin-right: 0.5rem;
}
.bs-popover-auto[x-placement^="left"] > .arrow,
.bs-popover-left > .arrow {
  height: 1rem;
  margin: 0.3rem 0;
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
}
.bs-popover-auto[x-placement^="left"] > .arrow:before,
.bs-popover-left > .arrow:before {
  border-left-color: rgba(0, 0, 6, 0.25);
  border-width: 0.5rem 0 0.5rem 0.5rem;
  right: 0;
}
.bs-popover-auto[x-placement^="left"] > .arrow:after,
.bs-popover-left > .arrow:after {
  border-left-color: #fff;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  right: 1px;
}
.popover-header {
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
  font-size: 1.6rem;
  margin-bottom: 0;
  padding: 0.5rem 0.75rem;
}
.popover-header:empty {
  display: none;
}
.popover-body {
  color: #212529;
  padding: 0.5rem 0.75rem;
}
.carousel {
  position: relative;
}
.carousel.pointer-event {
  touch-action: pan-y;
}
.carousel-inner {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.carousel-inner:after {
  clear: both;
  content: "";
  display: block;
}
.carousel-item {
  backface-visibility: hidden;
  display: none;
  float: left;
  margin-right: -100%;
  position: relative;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  display: block;
}
.active.carousel-item-right,
.carousel-item-next:not(.carousel-item-left) {
  transform: translateX(100%);
}
.active.carousel-item-left,
.carousel-item-prev:not(.carousel-item-right) {
  transform: translateX(-100%);
}
.carousel-fade .carousel-item {
  opacity: 0;
  transform: none;
  transition-property: opacity;
}
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right,
.carousel-fade .carousel-item.active {
  opacity: 1;
  z-index: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
  transition: opacity 0s 0.6s;
  z-index: 0;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}
.carousel-control-next,
.carousel-control-prev {
  align-items: center;
  bottom: 0;
  color: #fff;
  display: flex;
  justify-content: center;
  opacity: 0.5;
  position: absolute;
  text-align: center;
  top: 0;
  transition: opacity 0.15s ease;
  width: 15%;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-next,
  .carousel-control-prev {
    transition: none;
  }
}
.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
  color: #fff;
  opacity: 0.9;
  outline: 0;
  text-decoration: none;
}
.carousel-control-prev {
  left: 0;
}
.carousel-control-next {
  right: 0;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  background: 50%/100% 100% no-repeat;
  display: inline-block;
  height: 20px;
  width: 20px;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='m5.25 0-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E");
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='m2.75 0-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E");
}
.carousel-indicators {
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  list-style: none;
  margin-left: 15%;
  margin-right: 15%;
  padding-left: 0;
  position: absolute;
  right: 0;
  z-index: 15;
}
.carousel-indicators li {
  background-clip: padding-box;
  background-color: #fff;
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  box-sizing: content-box;
  cursor: pointer;
  flex: 0 1 auto;
  height: 3px;
  margin-left: 3px;
  margin-right: 3px;
  opacity: 0.5;
  text-indent: -999px;
  transition: opacity 0.6s ease;
  width: 30px;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}
.carousel-caption {
  bottom: 20px;
  color: #fff;
  left: 15%;
  padding-bottom: 20px;
  padding-top: 20px;
  position: absolute;
  right: 15%;
  text-align: center;
  z-index: 10;
}
@keyframes spinner-border {
  to {
    transform: rotate(1turn);
  }
}
.spinner-border {
  animation: spinner-border 0.75s linear infinite;
  border: 0.25em solid;
  border-radius: 50%;
  border-right: 0.25em solid transparent;
  display: inline-block;
  height: 2rem;
  vertical-align: text-bottom;
  width: 2rem;
}
.spinner-border-sm {
  border-width: 0.2em;
  height: 1rem;
  width: 1rem;
}
@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  animation: spinner-grow 0.75s linear infinite;
  background-color: currentColor;
  border-radius: 50%;
  display: inline-block;
  height: 2rem;
  opacity: 0;
  vertical-align: text-bottom;
  width: 2rem;
}
.spinner-grow-sm {
  height: 1rem;
  width: 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: #ffc40c !important;
}
a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
  background-color: #d8a400 !important;
}
.bg-secondary {
  background-color: #0075c9 !important;
}
a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
  background-color: #005796 !important;
}
.bg-success {
  background-color: #387d00 !important;
}
a.bg-success:focus,
a.bg-success:hover,
button.bg-success:focus,
button.bg-success:hover {
  background-color: #214a00 !important;
}
.bg-info {
  background-color: #b0f3ea !important;
}
a.bg-info:focus,
a.bg-info:hover,
button.bg-info:focus,
button.bg-info:hover {
  background-color: #84ecde !important;
}
.bg-warning {
  background-color: #ffc40c !important;
}
a.bg-warning:focus,
a.bg-warning:hover,
button.bg-warning:focus,
button.bg-warning:hover {
  background-color: #d8a400 !important;
}
.bg-danger {
  background-color: #e40037 !important;
}
a.bg-danger:focus,
a.bg-danger:hover,
button.bg-danger:focus,
button.bg-danger:hover {
  background-color: #b1002b !important;
}
.bg-light {
  background-color: #f8f9fa !important;
}
a.bg-light:focus,
a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
  background-color: #dae0e5 !important;
}
.bg-dark {
  background-color: #3c3c3c !important;
}
a.bg-dark:focus,
a.bg-dark:hover,
button.bg-dark:focus,
button.bg-dark:hover {
  background-color: #232323 !important;
}
.bg-white {
  background-color: #fff !important;
}
.bg-transparent {
  background-color: transparent !important;
}
.border {
  border: 1px solid #53575b !important;
}
.border-top {
  border-top: 1px solid #53575b !important;
}
.border-right {
  border-right: 1px solid #53575b !important;
}
.border-bottom {
  border-bottom: 1px solid #53575b !important;
}
.border-left {
  border-left: 1px solid #53575b !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: #ffc40c !important;
}
.border-secondary {
  border-color: #0075c9 !important;
}
.border-success {
  border-color: #387d00 !important;
}
.border-info {
  border-color: #b0f3ea !important;
}
.border-warning {
  border-color: #ffc40c !important;
}
.border-danger {
  border-color: #e40037 !important;
}
.border-light {
  border-color: #f8f9fa !important;
}
.border-dark {
  border-color: #3c3c3c !important;
}
.border-white {
  border-color: #fff !important;
}
.rounded-sm {
  border-radius: 0.2rem !important;
}
.rounded {
  border-radius: 0.25rem !important;
}
.rounded-top {
  border-top-left-radius: 0.25rem !important;
}
.rounded-right,
.rounded-top {
  border-top-right-radius: 0.25rem !important;
}
.rounded-bottom,
.rounded-right {
  border-bottom-right-radius: 0.25rem !important;
}
.rounded-bottom,
.rounded-left {
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-left {
  border-top-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 {
  clear: both;
  content: "";
  display: block;
}
.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 (min-width: 1440px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-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 {
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}
.embed-responsive:before {
  content: "";
  display: block;
}
.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
  border: 0;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.embed-responsive-21by9:before {
  padding-top: 42.85714%;
}
.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;
  }
}
@media (min-width: 1440px) {
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-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;
  }
}
@media (min-width: 1440px) {
  .float-xxl-left {
    float: left !important;
  }
  .float-xxl-right {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
}
.user-select-all {
  user-select: all !important;
}
.user-select-auto {
  user-select: auto !important;
}
.user-select-none {
  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 {
  top: 0;
}
.fixed-bottom,
.fixed-top {
  left: 0;
  position: fixed;
  right: 0;
  z-index: 1030;
}
.fixed-bottom {
  bottom: 0;
}
@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.sr-only {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  overflow: visible;
  position: static;
  white-space: normal;
  width: auto;
}
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 6, 0.075) !important;
}
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 6, 0.15) !important;
}
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 6, 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;
  }
}
@media (min-width: 1440px) {
  .m-xxl-0 {
    margin: 0 !important;
  }
  .mt-xxl-0,
  .my-xxl-0 {
    margin-top: 0 !important;
  }
  .mr-xxl-0,
  .mx-xxl-0 {
    margin-right: 0 !important;
  }
  .mb-xxl-0,
  .my-xxl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xxl-0,
  .mx-xxl-0 {
    margin-left: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .mt-xxl-1,
  .my-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xxl-1,
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xxl-1,
  .my-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xxl-1,
  .mx-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .mt-xxl-2,
  .my-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xxl-2,
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xxl-2,
  .my-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xxl-2,
  .mx-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .mt-xxl-3,
  .my-xxl-3 {
    margin-top: 1rem !important;
  }
  .mr-xxl-3,
  .mx-xxl-3 {
    margin-right: 1rem !important;
  }
  .mb-xxl-3,
  .my-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xxl-3,
  .mx-xxl-3 {
    margin-left: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .mt-xxl-4,
  .my-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xxl-4,
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xxl-4,
  .my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xxl-4,
  .mx-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .mt-xxl-5,
  .my-xxl-5 {
    margin-top: 3rem !important;
  }
  .mr-xxl-5,
  .mx-xxl-5 {
    margin-right: 3rem !important;
  }
  .mb-xxl-5,
  .my-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xxl-5,
  .mx-xxl-5 {
    margin-left: 3rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .pt-xxl-0,
  .py-xxl-0 {
    padding-top: 0 !important;
  }
  .pr-xxl-0,
  .px-xxl-0 {
    padding-right: 0 !important;
  }
  .pb-xxl-0,
  .py-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xxl-0,
  .px-xxl-0 {
    padding-left: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .pt-xxl-1,
  .py-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xxl-1,
  .px-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xxl-1,
  .py-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xxl-1,
  .px-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .pt-xxl-2,
  .py-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xxl-2,
  .px-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xxl-2,
  .py-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xxl-2,
  .px-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .pt-xxl-3,
  .py-xxl-3 {
    padding-top: 1rem !important;
  }
  .pr-xxl-3,
  .px-xxl-3 {
    padding-right: 1rem !important;
  }
  .pb-xxl-3,
  .py-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xxl-3,
  .px-xxl-3 {
    padding-left: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .pt-xxl-4,
  .py-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xxl-4,
  .px-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xxl-4,
  .py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xxl-4,
  .px-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .pt-xxl-5,
  .py-xxl-5 {
    padding-top: 3rem !important;
  }
  .pr-xxl-5,
  .px-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-5,
  .py-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xxl-5,
  .px-xxl-5 {
    padding-left: 3rem !important;
  }
  .m-xxl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xxl-n1,
  .my-xxl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xxl-n1,
  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xxl-n1,
  .my-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xxl-n1,
  .mx-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xxl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xxl-n2,
  .my-xxl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xxl-n2,
  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xxl-n2,
  .my-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xxl-n2,
  .mx-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xxl-n3 {
    margin: -1rem !important;
  }
  .mt-xxl-n3,
  .my-xxl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xxl-n3,
  .mx-xxl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xxl-n3,
  .my-xxl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xxl-n3,
  .mx-xxl-n3 {
    margin-left: -1rem !important;
  }
  .m-xxl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xxl-n4,
  .my-xxl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xxl-n4,
  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xxl-n4,
  .my-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xxl-n4,
  .mx-xxl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xxl-n5 {
    margin: -3rem !important;
  }
  .mt-xxl-n5,
  .my-xxl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xxl-n5,
  .mx-xxl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xxl-n5,
  .my-xxl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xxl-n5,
  .mx-xxl-n5 {
    margin-left: -3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mt-xxl-auto,
  .my-xxl-auto {
    margin-top: auto !important;
  }
  .mr-xxl-auto,
  .mx-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-auto,
  .my-xxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-auto,
  .mx-xxl-auto {
    margin-left: auto !important;
  }
}
.stretched-link:after {
  background-color: transparent;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.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;
  }
}
@media (min-width: 1440px) {
  .text-xxl-left {
    text-align: left !important;
  }
  .text-xxl-right {
    text-align: right !important;
  }
  .text-xxl-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: #fff !important;
}
.text-primary {
  color: #ffc40c !important;
}
a.text-primary:focus,
a.text-primary:hover {
  color: #bf9000 !important;
}
.text-secondary {
  color: #0075c9 !important;
}
a.text-secondary:focus,
a.text-secondary:hover {
  color: #00487d !important;
}
.text-success {
  color: #387d00 !important;
}
a.text-success:focus,
a.text-success:hover {
  color: #163100 !important;
}
.text-info {
  color: #b0f3ea !important;
}
a.text-info:focus,
a.text-info:hover {
  color: #6ee9d8 !important;
}
.text-warning {
  color: #ffc40c !important;
}
a.text-warning:focus,
a.text-warning:hover {
  color: #bf9000 !important;
}
.text-danger {
  color: #e40037 !important;
}
a.text-danger:focus,
a.text-danger:hover {
  color: #980025 !important;
}
.text-light {
  color: #f8f9fa !important;
}
a.text-light:focus,
a.text-light:hover {
  color: #cbd3da !important;
}
.text-dark {
  color: #3c3c3c !important;
}
a.text-dark:focus,
a.text-dark:hover {
  color: #161616 !important;
}
.text-body {
  color: #212529 !important;
}
.text-muted {
  color: #aaa9aa !important;
}
.text-black-50 {
  color: rgba(0, 0, 6, 0.5) !important;
}
.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}
.text-hide {
  background-color: transparent;
  border: 0;
  color: transparent;
  font: 0/0 a;
  text-shadow: none;
}
.text-decoration-none {
  text-decoration: none !important;
}
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}
.text-reset {
  color: inherit !important;
}
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}
@media print {
  *,
  :after,
  :before {
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  blockquote,
  pre {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  img,
  tr {
    page-break-inside: avoid;
  }
  body:not(.single-post) article ol,
  body:not(.single-post) article ul,
  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  .container,
  body {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000006;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered td,
  .table-bordered th {
    border: 1px solid #dad9d7 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark tbody + tbody,
  .table-dark td,
  .table-dark th,
  .table-dark thead th {
    border-color: #53575b;
  }
  .table .thead-dark th {
    border-color: #53575b;
    color: inherit;
  }
}
.datepicker {
  display: none;
}
.datepicker.active {
  display: block;
}
.datepicker-dropdown {
  left: 0;
  padding-top: 4px;
  position: absolute;
  top: 0;
  z-index: 1000;
}
.datepicker-dropdown.datepicker-orient-top {
  padding-bottom: 4px;
  padding-top: 0;
}
.datepicker-picker {
  background-color: #fff;
  border-radius: 0.25rem;
  display: inline-block;
}
.datepicker-dropdown .datepicker-picker {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 6, 0.175);
}
.datepicker-picker span {
  -webkit-touch-callout: none;
  border: 0;
  border-radius: 0.25rem;
  cursor: default;
  display: block;
  flex: 1;
  text-align: center;
  user-select: none;
}
.datepicker-main {
  padding: 2px;
}
.datepicker-footer {
  background-color: #f8f9fa;
  box-shadow: inset 0 1px 1px rgba(0, 0, 6, 0.1);
}
.datepicker-controls,
.datepicker-grid,
.datepicker-view,
.datepicker-view .days-of-week {
  display: flex;
}
.datepicker-grid {
  flex-wrap: wrap;
}
.datepicker-view .days .datepicker-cell,
.datepicker-view .dow {
  flex-basis: 14.28571%;
}
.datepicker-view.datepicker-grid .datepicker-cell {
  flex-basis: 25%;
}
.datepicker-cell,
.datepicker-view .week {
  height: 2.25rem;
  line-height: 2.25rem;
}
.datepicker-title {
  background-color: #f8f9fa;
  box-shadow: inset 0 -1px 1px rgba(0, 0, 6, 0.1);
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  text-align: center;
}
.datepicker-header .datepicker-controls {
  padding: 2px 2px 0;
}
.datepicker-controls .btn {
  background-color: #fff;
  border-color: #f8f9fa;
}
.datepicker-controls .btn:focus,
.datepicker-controls .btn:hover {
  background-color: #e2e6ea;
  border-color: #dae0e5;
  color: #212529;
}
.datepicker-controls .btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.datepicker-controls .btn:disabled {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  color: #212529;
}
.datepicker-controls .btn:not(:disabled):active {
  background-color: #dae0e5;
  border-color: #d3d9df;
  color: #212529;
}
.datepicker-controls .btn:not(:disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.datepicker-header .datepicker-controls .btn {
  border-color: transparent;
  font-weight: 700;
}
.datepicker-footer .datepicker-controls .btn {
  border-radius: 0.2rem;
  font-size: 1.4rem;
  margin: calc(0.375rem - 1px) 0.375rem;
  width: 100%;
}
.datepicker-controls .view-switch {
  flex: auto;
}
.datepicker-controls .next-btn,
.datepicker-controls .prev-btn {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
  width: 2.25rem;
}
.datepicker-controls .next-btn.disabled,
.datepicker-controls .prev-btn.disabled {
  visibility: hidden;
}
.datepicker-view .dow {
  font-size: 1.5rem;
  font-weight: 700;
  height: 2.4rem;
  line-height: 2.4rem;
}
.datepicker-view .week {
  color: #dad9d7;
  font-size: 1.4rem;
  width: 2.25rem;
}
@media (max-width: 22.5rem) {
  .datepicker-view .week {
    width: 1.96875rem;
  }
}
.datepicker-grid {
  width: 15.75rem;
}
@media (max-width: 22.5rem) {
  .calendar-weeks + .days .datepicker-grid {
    width: 13.78125rem;
  }
}
.datepicker-cell:not(.disabled):hover {
  background-color: #f9f9f9;
  cursor: pointer;
}
.datepicker-cell.focused:not(.selected) {
  background-color: #eaeaea;
}
.datepicker-cell.selected,
.datepicker-cell.selected:hover {
  background-color: #ffc40c;
  color: #fff;
  font-weight: 600;
}
.datepicker-cell.disabled {
  color: #adb5bd;
}
.datepicker-cell.next:not(.disabled),
.datepicker-cell.prev:not(.disabled) {
  color: #aaa9aa;
}
.datepicker-cell.next.selected,
.datepicker-cell.prev.selected {
  color: #e6e6e6;
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today) {
  background-color: #f8f9fa;
  border-radius: 0;
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today):not(.disabled):hover {
  background-color: #f1f3f5;
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today).focused {
  background-color: #eaeaea;
}
.datepicker-cell.today:not(.selected) {
  background-color: #20c997;
}
.datepicker-cell.today:not(.selected):not(.disabled) {
  color: #fff;
}
.datepicker-cell.today.focused:not(.selected) {
  background-color: #1ebe8f;
}
.datepicker-cell.range-end:not(.selected),
.datepicker-cell.range-start:not(.selected) {
  background-color: #0075c9;
  color: #fff;
}
.datepicker-cell.range-end.focused:not(.selected),
.datepicker-cell.range-start.focused:not(.selected) {
  background-color: #006ebc;
}
.datepicker-cell.range-start {
  border-radius: 0.25rem 0 0 0.25rem;
}
.datepicker-cell.range-end {
  border-radius: 0 0.25rem 0.25rem 0;
}
.datepicker-cell.range {
  background-color: #f0f0f0;
  border-radius: 0;
}
.datepicker-cell.range:not(.disabled):not(.focused):not(.today):hover {
  background-color: #eaeaea;
}
.datepicker-cell.range.disabled {
  color: #d7d7d7;
}
.datepicker-cell.range.focused {
  background-color: #e3e3e3;
}
.datepicker-view.datepicker-grid .datepicker-cell {
  height: 4.5rem;
  line-height: 4.5rem;
}
.datepicker-input.in-edit {
  border-color: #ffdd72;
}
.datepicker-input.in-edit:active,
.datepicker-input.in-edit:focus {
  box-shadow: 0 0 0.25em 0.25em rgba(255, 221, 114, 0.2);
}
@media (min-width: 992px) {
  .mobile_only {
    display: none;
  }
}
.mobile_flex_only {
  display: flex;
}
@media (min-width: 992px) {
  .mobile_flex_only {
    display: none;
  }
}
.desktop_only {
  display: none;
}
@media (min-width: 992px) {
  .desktop_only {
    display: block;
  }
}
.desktop_inline_only {
  display: none;
}
@media (min-width: 992px) {
  .desktop_inline_only {
    display: inline;
  }
}
.desktop_flex_only {
  display: none;
}
@media (min-width: 992px) {
  .desktop_flex_only {
    display: flex;
  }
}
.none {
  display: none;
}
.pdf_thumb {
  box-shadow: 0 6px 12px 0 #dad9d7;
  display: block;
  margin: 0 auto;
  max-width: 420px;
  width: 100%;
}
@media (min-width: 768px) {
  .pdf_thumb {
    margin: 0 0 0 auto;
  }
}
.toastify.toastify-right {
  max-width: calc(100% - 30px);
}
@media (min-width: 768px) {
  .toastify.toastify-right {
    max-width: calc(50% - 20px);
  }
}
.accordion {
  background: #fff;
  overflow: hidden;
}
.accordion h3 {
  color: #0075c9;
  font-weight: 700;
}
.accordion .accordion_txt {
  display: none;
}
@media (min-width: 992px) {
  .accordion .accordion_txt {
    display: block;
  }
}
.accordion .accordion-column {
  z-index: 1;
}
.accordion .accordion-column .accordian_btn {
  text-align: center;
}
@media (min-width: 992px) {
  .accordion .accordion-column .accordian_btn {
    text-align: left;
  }
}
.accordion .accordion-column .accordion-row img {
  display: none;
}
.accordion .accordion-column .accordion-row .collapse_control {
  align-items: center;
  background-color: #c3ebff;
  border: none;
  color: #333;
  display: flex;
  font-weight: 700;
  justify-content: space-between;
  margin-bottom: 5px;
  padding: 13px 16px;
  position: relative;
  text-decoration: none;
  width: 100%;
}
.accordion .accordion-column .accordion-row .collapse_control:after {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/green-down-arrow_a44709b5.png);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  content: "";
  flex: 0 0 auto;
  height: 20px;
  transition: transform 0.3s;
  width: 20px;
}
.accordion .accordion-column .accordion-row .collapse_control:not(.collapsed):after {
  transform: rotate(-180deg);
}
.accordion .accordion-column .accordion-row .collapse_control_symbol {
  color: #0c4968;
  display: inline-block;
  flex: 0 0 auto;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: left;
  width: 35px;
}
.accordion .accordion-column .accordion-row .collapse_control_title {
  flex: 1 1 auto;
  text-align: left;
}
.accordion .accordion-column .collapse_content {
  padding: 0 16px 13px;
}
.accordion .accordion-column .collapse_content .answerTitle {
  color: #0c4968;
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  width: 35px;
}
.accordion .accordion-image {
  min-height: 600px;
}
.accordion .accordion-image img {
  bottom: -100px;
  position: absolute;
}
.accord_sec {
  position: relative;
  width: 100%;
}
.accord_sec .accord_head {
  margin: 0 16px;
}
.accord_sec .accord_head .accord_control {
  background-color: #c3ebff;
  border: none;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
  max-width: 720px;
  padding: 24px 36px;
  position: relative;
  text-align: left;
  width: 100%;
}
.accord_sec .accord_head .accord_control .accord_control_title {
  color: #0075c9;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: left;
}
.accord_sec .accord_head .accord_control:after {
  background-color: #0075c9;
  border-radius: 999px;
  content: "";
  height: 51px;
  position: absolute;
  right: 36px;
  top: 18px;
  width: 51px;
  z-index: 1;
}
.accord_sec .accord_head .accord_control:before {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23fff" stroke="%23fff"><path fill-rule="evenodd" d="M8 4a.5.5 0 0 1 .5.5v5.793l2.146-2.147a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 1 1 .708-.708L7.5 10.293V4.5A.5.5 0 0 1 8 4z"/></svg>');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 45px;
  position: absolute;
  right: 39px;
  top: 21px;
  transform: rotate(-180deg);
  transition: transform 0.3s ease-in-out;
  width: 45px;
  z-index: 2;
}
.accord_sec .accord_head .accord_control.collapsed:before {
  transform: rotate(0deg);
}
.callout-slanted-2col-txtlinks {
  background-color: #fff;
}
.callout-slanted-2col-txtlinks .callout_container {
  background-color: #fff;
  padding: 4rem 2rem;
}
@media (min-width: 992px) {
  .callout-slanted-2col-txtlinks {
    background-color: #0075c9;
  }
  .callout-slanted-2col-txtlinks .callout_container {
    background-color: #c3ebff;
    clip-path: polygon(10% 0, 100% 0, 1000% 100%, 0 100%);
    margin-left: 5%;
    padding: 60px 60px 60px 12%;
    width: 95%;
  }
}
.callout-slanted-2col-txtlinks .callout-slanted_inner {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  max-width: 1200px;
}
.callout-slanted-2col-txtlinks .callout-slanted_inner .divider {
  align-items: stretch;
  display: flex;
  flex: 0 0 1%;
  flex-wrap: wrap;
  justify-content: center;
}
.callout-slanted-2col-txtlinks .callout-slanted_inner .divider:after {
  background-color: #0075c9;
  border-radius: 999px;
  content: "";
  width: 1px;
}
.callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item {
  align-items: stretch;
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  padding: 16px 0;
}
.callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item .sub_content body:not(.single-post) article ol,
.callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item .sub_content body:not(.single-post) article ul,
.callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item .sub_content p,
body:not(.single-post) article .callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item .sub_content ol,
body:not(.single-post) article .callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item .sub_content ul {
  margin-bottom: 0;
}
.callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item .inner_top {
  min-width: 0;
}
.callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item .inner_top body:not(.single-post) article ol,
.callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item .inner_top body:not(.single-post) article ul,
.callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item .inner_top p,
body:not(.single-post) article .callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item .inner_top ol,
body:not(.single-post) article .callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item .inner_top ul {
  inline-size: min-content;
  min-width: 260px;
}
@media (max-width: 1199.98px) {
  .callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item {
    background-color: #c3ebff;
    border-radius: 16px;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 30px 64px 30px 30px;
  }
  .callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item .inner_top body:not(.single-post) article ol,
  .callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item .inner_top body:not(.single-post) article ul,
  .callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item .inner_top p,
  body:not(.single-post) article .callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item .inner_top ol,
  body:not(.single-post) article .callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item .inner_top ul {
    inline-size: unset;
    min-width: auto;
  }
  .callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item body:not(.single-post) article ol,
  .callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item body:not(.single-post) article ul,
  .callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item p,
  body:not(.single-post) article .callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item ol,
  body:not(.single-post) article .callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item ul {
    margin-bottom: 0;
  }
  .callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item .sub_content {
    display: none;
  }
  .callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item .btn {
    bottom: 0;
    left: 0;
    margin-bottom: 0 !important;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
  }
  .callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item:after {
    background-color: #fff;
    border-radius: 999px;
    content: "";
    height: 40px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    z-index: 1;
  }
  .callout-slanted-2col-txtlinks .callout-slanted_inner .callout-slanted_item:before {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23F78D28" stroke="%23F78D28"><path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/></svg>');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 28px;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    z-index: 2;
  }
}
.callout-slanted-2col-txtlinks .sec_title {
  color: #0c4968;
  font-size: 3.2rem;
  font-size: 3.6rem;
  line-height: 4.2rem;
  line-height: 1.4;
  margin-bottom: 48px;
}
@media (max-width: 991.98px) {
  .callout-slanted-2col-txtlinks .sec_title {
    font-size: 3rem;
  }
}
@media (max-width: 767.98px) {
  .callout-slanted-2col-txtlinks .sec_title {
    display: none;
  }
}
.callout-slanted-2col-txtlinks .sub_title {
  color: #0c4968;
  font-size: 2.6rem;
  line-height: 3.6rem;
  margin-bottom: 4px;
}
@media (max-width: 1199.98px) {
  .callout-slanted-2col-txtlinks .sub_title {
    color: #0075c9;
    font-size: 2.3rem;
    font-weight: 700;
  }
}
.callout-slanted-img-txtblock {
  color: #fff;
}
.callout-slanted-img-txtblock .txtblock-imgblock {
  align-items: flex-end;
  display: none;
  justify-content: flex-start;
  margin-right: 24px;
  padding: 0;
  position: relative;
}
.callout-slanted-img-txtblock .txtblock-imgblock .imgBox {
  margin-top: -34px;
}
.callout-slanted-img-txtblock .txtblock-imgblock:after {
  display: none;
}
@media (min-width: 992px) {
  .callout-slanted-img-txtblock .txtblock-imgblock {
    display: flex;
  }
}
.callout-slanted-img-txtblock .content_basic {
  text-align: center;
}
.callout-slanted-img-txtblock .content_basic .title_area {
  color: #fff;
}
.callout-slanted-img-txtblock .content_basic .title_area .section-title {
  font-weight: 700;
}
.callout-slanted-img-txtblock .content_basic body:not(.single-post) article ol,
.callout-slanted-img-txtblock .content_basic body:not(.single-post) article ul,
.callout-slanted-img-txtblock .content_basic p,
body:not(.single-post) article .callout-slanted-img-txtblock .content_basic ol,
body:not(.single-post) article .callout-slanted-img-txtblock .content_basic ul {
  font-size: 1.8rem;
}
@media (min-width: 992px) {
  .callout-slanted-img-txtblock .content_basic {
    text-align: left;
  }
}
.callout-slanted-img-txtblock .btns {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}
@media (max-width: 991.98px) {
  .callout-slanted-img-txtblock .btns {
    jusify-content: center;
    flex-wrap: wrap;
  }
}
.callout-slanted-img-txtblock .btns .link-item {
  flex: 0 0 auto;
}
@media (max-width: 991.98px) {
  .callout-slanted-img-txtblock .btns .link-item {
    text-align: center;
    width: 100%;
  }
}
.callout-slanted-img-txtblock:before {
  background: #0075c9;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  width: 99%;
}
@media (max-width: 1199.98px) {
  .callout-slanted-img-txtblock:before {
    clip-path: none;
    width: 100%;
  }
}
.callout-slanted-img-txtblock-phone {
  color: #0075c9;
  margin-top: -200px;
  position: relative;
}
.callout-cta.bg-mint h3 {
  color: #0c4968;
}
.callout-cta .btn-row.btn-row-stacked {
  margin-top: 0;
}
.ctaButtonsOnly {
  padding: 3rem 0;
}
.ctaButtonsOnly .btn-row a {
  margin: 0 10px;
}
.cta-full.bg-azure .txtlinks a {
  color: #b0f3ea;
  font-size: 2rem;
}
.cta-full.bg-azure .txtlinks a:hover {
  color: #fff;
}
.cta-full .content_basic {
  text-align: center;
}
.cta-full .content_basic .title_area .section-title {
  color: #0075c9;
  font-size: 3rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .cta-full .content_basic .title_area .section-title {
    font-size: 3.6rem;
  }
}
.cta-full .content_basic .title_area .subtitle {
  font-size: 1.7rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .cta-full .content_basic .title_area .subtitle {
    font-size: 2.4rem;
  }
}
.cta-full .content_basic body:not(.single-post) article ol,
.cta-full .content_basic body:not(.single-post) article ul,
.cta-full .content_basic p,
body:not(.single-post) article .cta-full .content_basic ol,
body:not(.single-post) article .cta-full .content_basic ul {
  font-size: 1.8rem;
}
.cta-full .btn-row {
  margin-top: 48px;
}
.form-full .content_basic {
  text-align: center;
}
.form-full .content_basic .title_area .section-title {
  font-size: 4rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .form-full .content_basic .title_area .section-title {
    font-size: 4.3rem;
  }
}
.form-full .content_basic .title_area .subtitle {
  font-size: 1.8rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .form-full .content_basic .title_area .subtitle {
    font-size: 2.4rem;
  }
}
.form-full .content_basic body:not(.single-post) article ol,
.form-full .content_basic body:not(.single-post) article ul,
.form-full .content_basic p,
body:not(.single-post) article .form-full .content_basic ol,
body:not(.single-post) article .form-full .content_basic ul {
  font-size: 1.8rem;
}
.counter-container {
  position: relative;
}
.counter-container .counter {
  background: #c3ebff;
  padding: 50px 16px;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .counter-container .counter {
    padding: 50px;
  }
}
.counter-container .counter .counter-header {
  margin-bottom: 40px;
}
.counter-container .counter .counter-header h3 {
  color: #0c4968;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 46px;
  text-align: center;
}
@media (min-width: 992px) {
  .counter-container .counter .counter-header h3 {
    font-size: 3.5rem;
    font-weight: 400;
  }
}
.counter-container .counter .counterItem .num {
  color: #004b82;
  font-size: 4.4rem;
  font-size: 5.4rem;
  font-weight: 600;
  line-height: 5.4rem;
}
@media (min-width: 992px) {
  .counter-container .counter .counterItem .num {
    color: #0c4968;
    font-size: 4.6rem;
  }
}
.counter-container .counter .counterItem .label {
  color: #0066b0;
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 992px) {
  .counter-container .counter .counterItem .label {
    color: #0c4968;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .counter-container .counter .counterItem {
    display: block;
    width: 100%;
  }
}
.counter-container:after {
  background: rgba(0, 117, 201, 0.1);
  bottom: 60px;
  content: "";
  height: 82%;
  position: absolute;
  width: 100%;
}
.cta-blocks {
  background: #0075c9;
}
@media (min-width: 992px) {
  .cta-blocks {
    padding-top: 8rem;
  }
}
.cta-blocks .cta-container {
  background: #fff;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  margin: 5rem 0;
  position: relative;
}
.cta-blocks .cta-container .img-holder {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
}
.cta-blocks .cta-container .content {
  padding: 4rem;
}
.cta-blocks .cta-container .content .block-title {
  color: #0c4968;
  font-size: 2.6rem;
  line-height: 3.6rem;
  margin-bottom: 2rem;
}
.cta-blocks .cta-container .content body:not(.single-post) article ol,
.cta-blocks .cta-container .content body:not(.single-post) article ul,
.cta-blocks .cta-container .content p,
body:not(.single-post) article .cta-blocks .cta-container .content ol,
body:not(.single-post) article .cta-blocks .cta-container .content ul {
  color: #53575b;
  font-size: 2.2rem;
  line-height: 3.4rem;
}
.doc-downloads.bg-azure .iconDocument path {
  stroke: #fff;
}
.doc-downloads.bg-azure .iconDownload path {
  stroke: #c3ebff;
}
.doc-downloads .holder {
  border-bottom: 1px solid #dad9d7;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .doc-downloads .holder {
    align-items: center;
    justify-content: space-between;
  }
}
.doc-downloads .holder .dl-details,
.doc-downloads .holder .dl-fileDescription,
.doc-downloads .holder .dl-title {
  width: 100%;
}
@media (min-width: 768px) {
  .doc-downloads .holder .dl-details,
  .doc-downloads .holder .dl-fileDescription,
  .doc-downloads .holder .dl-title {
    flex: 1 1 50%;
  }
}
.doc-downloads .holder .dl-title .filename {
  font-size: 1.6rem;
  font-weight: 700;
}
.doc-downloads .holder .dl-title .filename .iconDocument {
  margin: 0 0.75rem 0.2rem 0;
}
.doc-downloads .holder .dl-title .details {
  margin-top: 0.8rem;
}
.doc-downloads .holder .dl-details {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .doc-downloads .holder .dl-details {
    justify-content: flex-end;
    margin-top: 0;
  }
}
.doc-downloads .holder .dl-details .dl-link {
  align-items: center;
  display: flex;
  margin-right: 1rem;
}
.doc-downloads .holder .dl-details .dl-link a {
  align-items: center;
  display: flex;
  font-weight: 700;
  text-decoration: none;
}
.doc-downloads .holder .dl-details .dl-link a .iconDownload {
  margin: 0 0.5rem 0.2rem 0;
}
.doc-downloads .holder .dl-details .type-size {
  color: #3c3c3c;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.doc-downloads .holder .dl-fileDescription {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .doc-downloads .holder .dl-fileDescription {
    margin-left: 26px;
  }
}
.icon-blocks .block .icon img {
  max-width: 90px;
}
.img-cards .card_wrap {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
@media (min-width: 768px) {
  .img-cards .card_wrap {
    flex-wrap: nowrap;
  }
}
.img-cards .card_wrap .img_card {
  align-items: stretch;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  max-width: 470px;
}
.img-cards .card_wrap .img_card .top_content {
  flex: 0 0 auto;
}
.img-cards .card_wrap .img_card .top_content .img_holder {
  align-items: stretch;
  border-radius: 13px;
  box-shadow: 0 0 34px -11px #dad9d7;
  display: flex;
  justify-content: stretch;
  min-height: 400px;
  overflow: hidden;
}
.img-cards .card_wrap .img_card .top_content .img_holder a.img_link {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  flex: 1 1 auto;
  transition: transform 0.3s ease-in-out;
}
.img-cards .card_wrap .img_card .top_content .img_holder:hover a.img_link {
  transform: scale(1.1);
}
.img-cards .card_wrap .img_card .top_content .card_title {
  font-weight: 700;
  min-height: 48px;
}
.compare_lists .card_center {
  position: relative;
}
.compare_lists .card_center:after {
  border-radius: 999px;
  border-right: 2px solid #ced4da;
  bottom: 0;
  content: "";
  height: 94%;
  position: absolute;
  right: 0;
}
@media (max-width: 767.98px) {
  .compare_lists .card_center:after {
    content: none;
  }
}
.compare_lists .card {
  border: none;
}
.compare_lists .content_holder {
  margin: 0 auto;
  max-width: 575px;
  min-height: 120px;
}
.compare_lists .img-holder img,
.compare_lists .img-holder svg {
  height: 200px;
  width: 200px;
}
.compare_lists .list_sub_title,
.compare_lists .list_title {
  align-items: center;
  color: #0075c9;
  display: flex;
  font-weight: 500;
  justify-content: center;
  min-height: 112px;
}
.compare_lists ul.list_items {
  margin-left: auto;
  margin-right: auto;
  max-width: 480px;
  text-align: left;
}
.compare_lists ul.list_items li {
  align-items: flex-start;
  display: flex;
  font-size: 1.8rem;
  justify-content: flex-start;
  margin-bottom: 16px;
  margin-top: 16px;
}
.compare_lists ul.list_items li .item_bullet {
  flex: 0 0 auto;
  margin-right: 8px;
}
.compare_lists ul.list_items li .item_value {
  flex: 1 1 auto;
}
.compare_lists ul.list_items li .item_note {
  font-size: 1.4rem;
}
.compare_lists ul.list_items li.item_title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 28px;
  margin-top: 28px;
}
.compare_three_price_opt .compare_three_price-top {
  padding-bottom: 24px;
  padding-top: 24px;
}
.compare_three_price_opt.bg-off-white .compare_three_price-top .title_area .section-title {
  color: #0075c9;
}
.compare_three_price_opt .compare_card_wrap {
  align-items: stretch;
  display: flex;
  justify-content: stretch;
  margin-left: -16px;
  margin-right: -16px;
}
.compare_three_price_opt .compare_card_wrap .compare_col {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
  padding: 16px;
}
@media (max-width: 1199.98px) {
  .compare_three_price_opt .compare_card_wrap {
    flex-wrap: wrap;
  }
  .compare_three_price_opt .compare_card_wrap .compare_col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.compare_three_price_opt .compare_card {
  background-color: #fff;
  box-shadow: 33px 38px 64px -11px #dad9d7;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  padding-bottom: 24px;
  padding-top: 16px;
}
.compare_three_price_opt .compare_card .compare_inner_pad {
  padding-left: 32px;
  padding-right: 32px;
}
.compare_three_price_opt .compare_card .compare_title {
  color: #0075c9;
  margin-left: auto;
  margin-right: auto;
  max-width: 420px;
  min-height: 100px;
}
.compare_three_price_opt .compare_card .content_holder {
  font-size: 1.8rem;
}
.compare_three_price_opt .compare_card .content_holder body:not(.single-post) article ol,
.compare_three_price_opt .compare_card .content_holder body:not(.single-post) article ul,
.compare_three_price_opt .compare_card .content_holder p,
body:not(.single-post) article .compare_three_price_opt .compare_card .content_holder ol,
body:not(.single-post) article .compare_three_price_opt .compare_card .content_holder ul {
  margin-bottom: 8px;
}
.compare_three_price_opt .compare_card .compare_price {
  color: #0c4968;
  font-weight: 900;
  margin-bottom: 18px;
}
.compare_three_price_opt .compare_card .list_items {
  margin-bottom: 24px;
}
.compare_three_price_opt .compare_card .list_items li {
  align-items: center;
  border-bottom: 1px solid #c3ebff;
  display: flex;
  justify-content: space-between;
  padding-bottom: 6px;
  padding-top: 6px;
}
.compare_three_price_opt .compare_card .list_items li:last-child {
  border-bottom-width: 0;
}
.compare_three_price_opt .compare_card .list_items li.item_check {
  border-bottom-color: #dad9d7;
}
.compare_three_price_opt .compare_card .list_items .item_label {
  font-size: 1.8rem;
}
.compare_three_price_opt .compare_card .list_items .item_note {
  font-size: 1.4rem;
}
.compare_three_price_opt .compare_card .list_items .item_value {
  font-size: 1.8rem;
}
.compare_three_price_opt .compare_card .compaire_cta {
  padding-bottom: 8px;
  padding-top: 8px;
}
.compare_three_price_opt .compare_card.bg_azure {
  background-color: #0075c9;
  color: #fff;
}
.compare_three_price_opt .compare_card.bg_azure .compare_price,
.compare_three_price_opt .compare_card.bg_azure .compare_title {
  color: #fff;
}
.compare_three_price_opt .compare_card.bg_azure .list_items li {
  border-bottom-color: #418cd4;
}
.compare_three_price_opt .btn-row {
  padding-bottom: 16px;
  padding-top: 32px;
}
.compare_three_price_opt .btn-row .btn_item {
  margin-bottom: 0;
  padding: 12px 24px;
}
.compare_three_price_opt .btn-row .btn_item a.btn {
  margin: 0;
}
.compare_three_price_opt .btn-row .btn_item.__center_border {
  position: relative;
}
.compare_three_price_opt .btn-row .btn_item.__center_border:after {
  border-radius: 999px;
  border-right: 2px solid #ced4da;
  bottom: 0;
  content: "";
  height: 94%;
  position: absolute;
  right: -1px;
}
@media (max-width: 767.98px) {
  .compare_three_price_opt .btn-row .btn_item.__center_border:after {
    content: none;
  }
}
.compare_three_price_opt .btn-row.justify-content-center .btn_item {
  text-align: center;
}
.long_list .sec_intro h3 {
  color: #0075c9;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .long_list .sec_intro h3 {
    font-size: 4rem;
  }
}
.long_list .sec_intro .content_holder {
  font-size: 2rem;
  margin: 0 auto;
  max-width: 900px;
}
.long_list .sec_intro .content_holder body:not(.single-post) article ol:last-child,
.long_list .sec_intro .content_holder body:not(.single-post) article ul:last-child,
.long_list .sec_intro .content_holder p:last-child,
body:not(.single-post) article .long_list .sec_intro .content_holder ol:last-child,
body:not(.single-post) article .long_list .sec_intro .content_holder ul:last-child {
  margin-bottom: 0;
}
.long_list .card_wrap {
  margin-top: 24px;
}
@media (min-width: 992px) {
  .long_list .card_wrap {
    align-items: flex-start;
    display: flex;
    gap: 24px;
    justify-content: center;
  }
}
.long_list .list_box {
  border: none;
}
.long_list .list_box .list_inner {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .long_list .list_box .list_inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.long_list .list_box .content_holder {
  font-size: 2rem;
  margin: 0 auto;
  max-width: 480px;
}
.long_list .list_box .img-holder img,
.long_list .list_box .img-holder svg {
  height: 140px;
  width: 140px;
}
.long_list .list_box .list_title .title {
  color: #0075c9;
  font-size: 3rem;
  font-weight: 700;
}
.long_list .list_box .list_title .title br {
  display: none;
}
@media (min-width: 992px) {
  .long_list .list_box .list_title .title br {
    display: inline;
  }
}
.long_list .list_box .list_sub_title .title {
  font-size: 2.6rem;
}
@media (min-width: 992px) {
  .long_list .list_box .list_sub_title .title {
    font-size: 3rem;
  }
}
.long_list .list_box .list_sub_title,
.long_list .list_box .list_title {
  align-items: center;
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .long_list .list_box .list_sub_title,
  .long_list .list_box .list_title {
    min-height: 112px;
  }
}
.long_list .list_box ul.list_items {
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 480px;
  text-align: left;
}
.long_list .list_box ul.list_items li {
  align-items: flex-start;
  display: flex;
  font-size: 2rem;
  font-weight: 700;
  justify-content: flex-start;
}
.long_list .list_box ul.list_items li .item_bullet {
  flex: 0 0 auto;
  margin-right: 8px;
}
.long_list .list_box ul.list_items li .item_bullet.__inline {
  display: inline;
}
.long_list .list_box ul.list_items li .item_bullet svg {
  height: 28px;
  width: 28px;
}
.long_list .list_box ul.list_items li .item_label br {
  display: none;
}
@media (min-width: 992px) {
  .long_list .list_box ul.list_items li .item_label br {
    display: inline;
  }
}
.long_list .list_box ul.list_items li .item_label .desktop_only {
  display: none;
}
@media (min-width: 992px) {
  .long_list .list_box ul.list_items li .item_label .desktop_only {
    display: inline;
  }
}
.long_list .list_box ul.list_items li .item_value {
  flex: 1 1 auto;
}
.long_list .list_box ul.list_items li .item_note {
  font-size: 1.4rem;
}
.long_list .list_box ul.list_items li.item_title {
  color: #45bead;
  font-size: 2.4rem;
  font-weight: 700;
}
.long_list .btn_wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
  text-align: center;
}
.long_list.__shadows .card_wrap {
  align-items: stretch;
}
.long_list.__shadows .card_wrap .list_box {
  border-radius: 8px;
}
@media (min-width: 992px) {
  .long_list.__shadows .card_wrap .list_box {
    box-shadow: 8px 23px 40px -13px #ced4da;
  }
}
.long_list.__desktop_layout .list_box ul.list_items {
  --gap: 16px;
  max-width: 100%;
}
@media (min-width: 992px) {
  .long_list.__desktop_layout .list_box ul.list_items {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
    justify-content: center;
  }
  .long_list.__desktop_layout .list_box ul.list_items li {
    justify-content: center;
    padding-top: 24px;
    position: relative;
    width: calc(33.33333% - var(--gap));
  }
  .long_list.__desktop_layout .list_box ul.list_items li:before {
    border-top: 2px solid #c3ebff;
    content: "";
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 44%;
  }
  .long_list.__desktop_layout .list_box ul.list_items li:nth-child(-n + 3) {
    padding-top: 0;
  }
  .long_list.__desktop_layout .list_box ul.list_items li:nth-child(-n + 3):before {
    content: none;
  }
  .long_list.__desktop_layout .list_box ul.list_items li .item_value {
    flex: 0 1 auto;
    text-align: center;
  }
}
.long_list.__desktop_layout .list_box ul.list_items li .item_note {
  display: none;
}
@media (min-width: 992px) {
  .long_list.__desktop_layout .list_box ul.list_items li .item_note {
    display: block;
    font-weight: 400;
  }
}
.card_icons .sec_intro h3 {
  color: #0075c9;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .card_icons .sec_intro h3 {
    font-size: 4rem;
  }
}
.card_icons .sec_intro .content_holder {
  font-size: 2rem;
  margin: 0 auto;
  max-width: 900px;
}
.card_icons .sec_intro .content_holder body:not(.single-post) article ol:last-child,
.card_icons .sec_intro .content_holder body:not(.single-post) article ul:last-child,
.card_icons .sec_intro .content_holder p:last-child,
body:not(.single-post) article .card_icons .sec_intro .content_holder ol:last-child,
body:not(.single-post) article .card_icons .sec_intro .content_holder ul:last-child {
  margin-bottom: 0;
}
.card_icons .cards_wrap {
  margin-top: 24px;
}
@media (min-width: 992px) {
  .card_icons .cards_wrap {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    justify-content: center;
  }
}
.card_icons .card_box {
  border: none;
  margin-top: 60px;
}
@media (min-width: 992px) {
  .card_icons .card_box {
    width: calc(33.33333% - 36px);
  }
}
.card_icons .card_box .card_inner {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .card_icons .card_box .card_inner {
    padding-left: 36px;
    padding-right: 36px;
  }
}
.card_icons .card_box .content_holder {
  font-size: 2rem;
  margin: 0 auto;
  max-width: 480px;
}
.card_icons .card_box .img-holder .card_img {
  height: 140px;
  margin-top: -60px;
  width: 140px;
}
.card_icons .card_box .card_title .title {
  color: #0075c9;
  font-size: 3rem;
  font-weight: 700;
}
.card_icons .card_box .card_title .title br {
  display: none;
}
@media (min-width: 992px) {
  .card_icons .card_box .card_title .title br {
    display: inline;
  }
}
.card_icons .btn_wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
  text-align: center;
}
.card_icons.__shadows .cards_wrap {
  align-items: stretch;
}
.card_icons.__shadows .cards_wrap .card_box {
  border-radius: 8px;
}
@media (min-width: 992px) {
  .card_icons.__shadows .cards_wrap .card_box {
    box-shadow: 0 8px 50px -9px #ced4da;
  }
}
.get_estimate .sec_intro {
  margin: 0 auto;
  max-width: 980px;
}
.get_estimate .sec_intro .title {
  color: #0075c9;
  font-size: 4rem;
  font-weight: 700;
}
.get_estimate .sec_intro .content_holder body:not(.single-post) article ol,
.get_estimate .sec_intro .content_holder body:not(.single-post) article ul,
.get_estimate .sec_intro .content_holder p,
body:not(.single-post) article .get_estimate .sec_intro .content_holder ol,
body:not(.single-post) article .get_estimate .sec_intro .content_holder ul {
  font-size: 1.8rem;
}
.pricing_cards .sec_intro .title {
  color: #0075c9;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .pricing_cards .sec_intro .title {
    font-size: 4rem;
  }
}
.pricing_cards .sec_intro .content_holder {
  font-size: 2rem;
  margin: 24px auto 0;
  max-width: 600px;
}
.pricing_cards .sec_intro .content_holder body:not(.single-post) article ol:last-child,
.pricing_cards .sec_intro .content_holder body:not(.single-post) article ul:last-child,
.pricing_cards .sec_intro .content_holder p:last-child,
body:not(.single-post) article .pricing_cards .sec_intro .content_holder ol:last-child,
body:not(.single-post) article .pricing_cards .sec_intro .content_holder ul:last-child {
  margin-bottom: 0;
}
.pricing_cards .note_holder {
  font-size: 1.4rem;
  margin: 24px auto 0;
  max-width: 600px;
  text-align: center;
}
.pricing_cards .note_holder body:not(.single-post) article ol:last-child,
.pricing_cards .note_holder body:not(.single-post) article ul:last-child,
.pricing_cards .note_holder p:last-child,
body:not(.single-post) article .pricing_cards .note_holder ol:last-child,
body:not(.single-post) article .pricing_cards .note_holder ul:last-child {
  margin-bottom: 0;
}
.pricing_cards .glide {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
.pricing_cards.__four .glide {
  max-width: 1400px;
}
.pricing_cards .slider {
  margin-bottom: 24px;
  margin-top: 24px;
}
.pricing_cards .slider .slider_controls {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .pricing_cards .slider .slider_controls {
    display: none;
  }
}
.pricing_cards .slider .slider_controls .in_card_only {
  display: none;
}
.pricing_cards .slider .slider_controls .btn_state {
  background: none;
  background-color: #fff;
  border: 3px solid #0075c9;
  border-radius: 999px;
  color: #3c3c3c;
  font-weight: 700;
  line-height: 0.8;
  max-width: 400px;
  padding: 6px 14px;
  transition:
    background-color 0.3s ease-in-out,
    color 0.3s ease-in-out;
}
.pricing_cards .slider .slider_controls .btn_state.__selected {
  background-color: #0075c9;
  color: #fff;
}
.pricing_cards .slider .slider_controls .btn_state .title {
  display: block;
  font-size: 2rem;
}
.pricing_cards .slider .slider_controls .btn_state .label {
  font-size: 1.4rem;
}
.pricing_cards .slider .slider_controls.__2x2 {
  gap: 12px;
}
.pricing_cards .slider .slider_controls.__2x2 .btn_state {
  width: 48%;
}
@media (min-width: 576px) {
  .pricing_cards .slider .slider_controls.__2x2 {
    gap: 6px;
  }
  .pricing_cards .slider .slider_controls.__2x2 .btn_state {
    width: auto;
  }
}
.pricing_cards .slider .glide__slides {
  align-items: stretch;
  display: flex;
}
.pricing_cards .slider .glide__slide {
  align-items: stretch;
  display: flex;
  flex: 1 1 auto;
  height: auto;
  opacity: 0.4;
  padding: 0 6px;
}
.pricing_cards .slider .glide__slide.glide__slide--active {
  opacity: 1;
}
@media (min-width: 768px) {
  .pricing_cards .slider .glide__slide {
    opacity: 1;
    padding: 0 12px;
  }
}
.pricing_cards .card {
  background-color: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 10px 10px 36px -4px #ced4da;
  flex: 1 1 auto;
  overflow: hidden;
  text-align: center;
}
.pricing_cards .card body:not(.single-post) article ol,
.pricing_cards .card body:not(.single-post) article ul,
.pricing_cards .card p,
body:not(.single-post) article .pricing_cards .card ol,
body:not(.single-post) article .pricing_cards .card ul {
  margin-bottom: 0;
}
.pricing_cards .card .card_head {
  padding: 16px;
}
.pricing_cards .card .card_head .title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0;
}
.pricing_cards .card .card_body {
  padding: 16px;
}
.pricing_cards .card .card_body .label {
  color: #aaa9aa;
  font-size: 1.4rem;
}
.pricing_cards .card .card_body .label.__hosp {
  min-height: 45px;
}
.pricing_cards .card .card_body .price {
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
}
.pricing_cards .card .card_body .price .value {
  color: #0075c9;
  font-size: 6.4rem;
  font-weight: 900;
}
.pricing_cards .card .card_body .price .value .__alt {
  font-size: 4rem;
}
.pricing_cards .card .card_body .price sup {
  color: #0075c9;
  font-size: 60%;
  font-weight: 900;
  position: static;
  vertical-align: super;
}
.pricing_cards .card .card_body .note {
  font-size: 1.4rem;
}
.pricing_cards .card .card_footer {
  padding: 16px;
  position: relative;
}
.pricing_cards .card .card_footer:before {
  border-top: 2px solid #c3ebff;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 80%;
}
.pricing_cards .card .card_footer .btn {
  padding: 6px 12px;
  width: 100%;
}
.pricing_cards .card .card_footer .btn.__altbtn {
  margin-top: 8px;
}
@media (min-width: 576px) {
  .pricing_cards .card .card_footer .btn {
    width: 80%;
  }
}
.pricing_cards .card .text-blue {
  color: #0075c9;
  font-weight: 700;
}
@media (min-width: 992px) {
  .pricing_cards .card_wrap {
    align-items: flex-start;
    display: flex;
    gap: 24px;
    justify-content: center;
  }
}
.pricing_cards .btn_wrap {
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  text-align: center;
}
.pricing_cards .btn_wrap,
.pricing_cards .btn_wrap.__num_2 .item {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .pricing_cards .btn_wrap.__num_2 .item {
    width: 40%;
  }
  .pricing_cards .btn_wrap.__num_2 .item:first-child {
    justify-content: flex-end;
  }
  .pricing_cards .btn_wrap.__num_2 .item:nth-child(2) {
    justify-content: flex-start;
  }
}
.pricing_cards .btn_wrap.__num_3 .item {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .pricing_cards .btn_wrap.__num_3 .item {
    width: 30%;
  }
  .pricing_cards .btn_wrap.__num_3 .item:first-child {
    justify-content: flex-end;
  }
  .pricing_cards .btn_wrap.__num_3 .item:nth-child(2) {
    justify-content: flex-center;
  }
  .pricing_cards .btn_wrap.__num_3 .item:nth-child(3) {
    justify-content: flex-start;
  }
}
.plans_to_quote .container > .inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
}
@media (min-width: 992px) {
  .plans_to_quote .container > .inner {
    flex-wrap: nowrap;
    gap: 120px;
  }
}
.plans_to_quote .item {
  flex: 1 1 auto;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .plans_to_quote .item {
    max-width: calc(50% - 24px);
  }
}
.plans_to_quote .item.cta_sec {
  order: 0;
  text-align: center;
}
@media (min-width: 992px) {
  .plans_to_quote .item.cta_sec {
    order: 2;
    text-align: left;
  }
}
.plans_to_quote .item.cta_sec .sec_title {
  color: #0075c9;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .plans_to_quote .item.cta_sec .sec_title {
    font-size: 4.6rem;
  }
}
.plans_to_quote .item.cta_sec .content_holder {
  font-size: 2rem;
}
.plans_to_quote .item.cta_sec .content_holder body:not(.single-post) article ol:last-child,
.plans_to_quote .item.cta_sec .content_holder body:not(.single-post) article ul:last-child,
.plans_to_quote .item.cta_sec .content_holder p:last-child,
body:not(.single-post) article .plans_to_quote .item.cta_sec .content_holder ol:last-child,
body:not(.single-post) article .plans_to_quote .item.cta_sec .content_holder ul:last-child {
  margin-bottom: 0;
}
.plans_to_quote .item.cta_sec .btn_wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}
@media (min-width: 992px) {
  .plans_to_quote .item.cta_sec .btn_wrap {
    justify-content: flex-start;
  }
}
.plans_to_quote .item.cta_sec .btn_wrap a.btn {
  flex: 0 0 auto;
}
.plans_to_quote .item.cta_sec .btn_wrap .btn_txt {
  color: #3c3c3c;
}
.plans_to_quote .item.item_list {
  align-self: center;
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .plans_to_quote .item.item_list {
    justify-content: flex-end;
  }
}
.plans_to_quote .item.item_list .card_wrap {
  background-color: #fff;
  border: none;
  border-radius: 16px;
}
@media (min-width: 576px) {
  .plans_to_quote .item.item_list .card_wrap {
    box-shadow: 20px 20px 50px -22px #ced4da;
    padding: 24px 32px 32px 24px;
  }
}
@media (min-width: 768px) {
  .plans_to_quote .item.item_list .card_wrap {
    padding-right: 48px;
  }
}
.plans_to_quote .item.item_list .card_wrap .title {
  color: #45bead;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.plans_to_quote .item.item_list .card_wrap .title:last-child {
  margin-bottom: 0;
  margin-top: 16px;
}
.plans_to_quote .item.item_list .card_wrap .card_list {
  margin-bottom: 16px;
}
.plans_to_quote .item.item_list .card_wrap .card_list .sub_title {
  color: #0075c9;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.plans_to_quote .item.item_list .card_wrap .card_list ul {
  margin-left: 12px;
}
.plans_to_quote .item.item_list .card_wrap .card_list ul li {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: flex-start;
}
.no_break {
  text-wrap: nowrap;
}
.fancy_underline {
  position: relative;
}
.fancy_underline:after {
  animation-delay: 0.5s;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-name: growWidth;
  animation-timing-function: ease-in-out;
  background-color: #f78d28;
  border-radius: 999px;
  bottom: -2px;
  content: "";
  display: block;
  height: 5px;
  left: 50%;
  max-width: 100%;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}
.fancy_underline.__match_color:after {
  background-color: currentColor;
}
.group_bs_section .title_wrap {
  text-align: center;
}
.group_bs_section .title_wrap .sec_title {
  color: #0075c9;
  font-size: 4rem;
  font-weight: 700;
}
.group_bs_section .benny_items {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  justify-content: center;
  margin: 48px auto 0;
}
.group_bs_section .benny_items .benny_box {
  flex: 0 0 auto;
  max-width: 270px;
  width: 100%;
}
@media (min-width: 992px) {
  .group_bs_section .benny_items .benny_box {
    width: calc(26% - 64px);
  }
}
.group_bs_section .benny_items .benny_box .thumb_box {
  align-items: stretch;
  aspect-ratio: 400/517;
  border: 1px solid #aaa9aa;
  border-radius: 4px;
  display: flex;
  height: auto;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
.group_bs_section .benny_items .benny_box .thumb_box .thumb_img {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  flex: 1 1 auto;
  transition: transform 0.3s ease-in-out;
  width: 100%;
}
.group_bs_section .benny_items .benny_box .thumb_box .thumb_img:hover {
  transform: scale(1.1);
}
.group_bs_section .benny_items .benny_box .btn_wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .jumplinks ul.links {
    padding-left: 5rem;
  }
  .jumplinks ul.links li a {
    text-decoration: none;
  }
}
.member-care-steps h3 {
  color: #0c4968;
  font-weight: 700;
  margin: 0 auto 2rem;
}
@media (min-width: 992px) {
  .member-care-steps h3 {
    font-size: 4rem;
    font-weight: 400;
  }
}
.member-care-steps.__off_white {
  background-color: #fff;
}
@media (min-width: 992px) {
  .member-care-steps.__off_white {
    background-color: #f8f9fa;
  }
}
.member-care-steps.__home_padding {
  padding-bottom: 48px;
  padding-top: 48px;
}
@media (min-width: 992px) {
  .member-care-steps.__home_padding {
    padding-top: 88px;
  }
}
.member-care-steps .member_steps_content {
  display: none;
}
.member-care-steps .member_steps_content body:not(.single-post) article ol,
.member-care-steps .member_steps_content body:not(.single-post) article ul,
.member-care-steps .member_steps_content p,
body:not(.single-post) article .member-care-steps .member_steps_content ol,
body:not(.single-post) article .member-care-steps .member_steps_content ul {
  margin: 0 auto;
  max-width: 75rem;
}
@media (min-width: 992px) {
  .member-care-steps .member_steps_content {
    display: block;
  }
}
.member-care-steps .member_steps_items {
  margin-bottom: 30px;
  margin-top: 55px;
}
@media (min-width: 992px) {
  .member-care-steps .member_steps_items {
    margin-bottom: 50px;
  }
}
.member-care-steps .care-step-box {
  color: #53575b;
  height: 100%;
  padding: 16px 16px 16px 84px;
  position: relative;
}
.member-care-steps .care-step-box .step-circle {
  align-items: center;
  aspect-ratio: 1/1;
  background: #ffc40c;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  height: 60px;
  justify-content: center;
  left: 30px;
  line-height: 22px;
  margin-left: -30px;
  padding: 0 2px 4px;
  position: absolute;
  top: 10px;
  width: 60px;
}
.member-care-steps .care-step-box .step-circle:before {
  content: "Step";
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.member-care-steps .care-step-box .step-circle .step-number {
  color: #0c4968;
  font-size: 34px;
  font-weight: 700;
}
.member-care-steps .care-step-box .member_steps_desktop_txt {
  display: none;
}
@media (min-width: 992px) {
  .member-care-steps .care-step-box .member_steps_desktop_txt {
    display: block;
  }
}
.member-care-steps .care-step-box .member_steps_moible_txt {
  font-size: 1.8rem;
}
@media (min-width: 992px) {
  .member-care-steps .care-step-box .member_steps_moible_txt {
    display: none;
  }
}
.member-care-steps .care-step-box h5 {
  color: #0075c9;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: left;
}
.member-care-steps .care-step-box ul {
  color: #53575b;
  margin-top: 10px;
}
.member-care-steps .care-step-box ul li {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/green-checkmark_e0ca554e.png);
  background-repeat: no-repeat;
  background-size: 20px;
  color: #53575b;
  list-style: none;
  margin: 0;
  padding: 0 0 20px 40px;
}
@media (min-width: 992px) {
  .member-care-steps .care-step-box {
    background-color: #fff;
    box-shadow: 5px 5px 0 rgba(0, 117, 201, 0.3);
    padding: 40px;
  }
  .member-care-steps .care-step-box .step-circle {
    aspect-ratio: 1/1;
    height: 60px;
    left: 50%;
    line-height: 22px;
    margin-left: -30px;
    padding: 0 2px 4px;
    top: -35px;
    width: 60px;
  }
  .member-care-steps .care-step-box h5 {
    font-size: 2.6rem;
    line-height: 3.6rem;
    min-height: 72px;
    text-align: center;
  }
  .member-care-steps .care-step-box body:not(.single-post) article ol,
  .member-care-steps .care-step-box body:not(.single-post) article ul,
  .member-care-steps .care-step-box p,
  body:not(.single-post) article .member-care-steps .care-step-box ol,
  body:not(.single-post) article .member-care-steps .care-step-box ul {
    font-size: 2rem;
    font-weight: 600;
    line-height: 3.2rem;
  }
}
.member-care-steps.__alt .__heading {
  justify-content: center;
  line-height: 1.6;
  padding-bottom: 48px;
  padding-top: 48px;
}
.member-care-steps.__alt .__heading .col {
  max-width: 880px;
}
.member-care-steps.__alt .__heading h2 {
  margin-bottom: 32px;
  margin-top: 0;
}
.member-care-steps.__alt .__heading h3 {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 32px;
}
.member-care-steps.__alt .__heading h4 {
  font-weight: 700;
  margin-bottom: 32px;
}
.member-care-steps.__alt .care-step-box {
  border-radius: 12px;
  box-shadow: none;
  padding: 0;
}
.member-care-steps.__alt .care-step-box .care_step_inner {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  overflow: hidden;
}
.member-care-steps.__alt .care-step-box h5 {
  color: #3c3c3c;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
.member-care-steps.__alt .care-step-box .care-step-box_content {
  padding: 4rem 3rem;
}
.three-cta-layout .sec_title {
  color: #0075c9;
  font-weight: 400;
  margin-bottom: 24px;
  text-align: center;
}
.three-cta-layout .three-cta {
  align-items: stretch;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-bottom: 36px;
  padding-top: 36px;
  text-align: center;
}
.three-cta-layout .three-cta .cta-item {
  flex: 1 1 auto;
  max-width: 280px;
  min-width: 250px;
  width: 100%;
}
.three-cta-layout .three-cta .cta-item .inner {
  margin: 0 auto;
  max-width: 280px;
}
.three-cta-layout .three-cta .cta-item .item_title {
  color: #0075c9;
  font-size: 2rem;
  font-weight: 700;
}
.three-cta-layout .three-cta .cta-item a.btn {
  width: 250px;
}
.three-cta-layout .three-cta .divider {
  background-color: #c3ebff;
  border-radius: 999px;
  width: 2px;
}
@media (max-width: 991.98px) {
  .three-cta-layout .three-cta {
    flex-wrap: wrap;
    gap: 64px;
    justify-content: center;
  }
  .three-cta-layout .three-cta .cta-item {
    max-width: 100%;
  }
  .three-cta-layout .three-cta .cta-item .item_title {
    margin-bottom: 8px;
  }
  .three-cta-layout .three-cta .divider {
    display: none;
  }
}
.three-cta-layout.bg-mint {
  background-color: rgba(176, 243, 234, 0.2);
}
.three-cta-layout.bg-sky {
  background-color: #ddf4ff;
}
.three-cta-layout.bg-sky .divider {
  background-color: #ced4da;
}
@media (max-width: 991px) {
  body .member-care-steps .care-step-box {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .txtblock-img-offset-arrow-app .fullwidth {
    padding-bottom: 3rem !important;
  }
}
@media (max-width: 479px) {
  body .member-care-steps .care-step-box {
    max-width: 100%;
  }
}
.content_this_plus_this .__heading {
  justify-content: center;
  line-height: 1.6;
  padding-bottom: 48px;
  padding-top: 48px;
}
.content_this_plus_this .__heading .col {
  max-width: 880px;
}
.content_this_plus_this .__heading h2 {
  margin-bottom: 32px;
  margin-top: 0;
}
.content_this_plus_this .__heading h3 {
  font-size: 2rem;
  margin-bottom: 32px;
}
.content_this_plus_this .__heading h4 {
  font-weight: 700;
  margin-bottom: 32px;
}
.content_this_plus_this .__heading body:not(.single-post) article ol,
.content_this_plus_this .__heading body:not(.single-post) article ul,
.content_this_plus_this .__heading p,
body:not(.single-post) article .content_this_plus_this .__heading ol,
body:not(.single-post) article .content_this_plus_this .__heading ul {
  font-size: 2rem;
  margin: 0 auto 5.5rem;
  max-width: 880px;
}
.content_this_plus_this .__plus_boxs {
  justify-content: center;
}
.content_this_plus_this .__plus_boxs .plus_sign {
  align-items: center;
  display: flex;
  justify-content: center;
  padding-bottom: 48px;
  padding-top: 48px;
}
.content_this_plus_this .__plus_boxs .plus_sign svg {
  stroke: #0075c9;
  stroke-width: 2px;
  color: #0075c9;
  height: 37px;
  width: 37px;
}
.content_this_plus_this .plus_box {
  background-color: #fff;
  box-shadow: 10px 10px 0 rgba(0, 117, 201, 0.5);
  height: 100%;
  padding: 4rem;
}
.content_this_plus_this .plus_box h5 {
  color: #0075c9;
  font-weight: 700;
}
.content_this_plus_this .plus_box body:not(.single-post) article ol,
.content_this_plus_this .plus_box body:not(.single-post) article ul,
.content_this_plus_this .plus_box h2,
.content_this_plus_this .plus_box h3,
.content_this_plus_this .plus_box h4,
.content_this_plus_this .plus_box p,
body:not(.single-post) article .content_this_plus_this .plus_box ol,
body:not(.single-post) article .content_this_plus_this .plus_box ul {
  color: #212529;
}
.content_this_plus_this .plus_box body:not(.single-post) article ol,
.content_this_plus_this .plus_box body:not(.single-post) article ul,
.content_this_plus_this .plus_box p,
body:not(.single-post) article .content_this_plus_this .plus_box ol,
body:not(.single-post) article .content_this_plus_this .plus_box ul {
  font-size: 1.6rem;
  font-weight: 400;
}
.content_this_plus_this .plus_box ul {
  margin-top: 10px;
}
.content_this_plus_this .plus_box ul li {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/green-checkmark_e0ca554e.png);
  background-repeat: no-repeat;
  background-size: 20px;
  list-style: none;
  margin: 0;
  padding: 0 0 20px 40px;
}
.content_this_plus_this .plus_box ul li body:not(.single-post) article ol:last-child,
.content_this_plus_this .plus_box ul li body:not(.single-post) article ul:last-child,
.content_this_plus_this .plus_box ul li p:last-child,
body:not(.single-post) article .content_this_plus_this .plus_box ul li ol:last-child,
body:not(.single-post) article .content_this_plus_this .plus_box ul li ul:last-child {
  margin-bottom: 0;
}
.callout_bar_full {
  padding-bottom: 16px;
  padding-top: 16px;
  position: relative;
}
.callout_bar_full .title {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 0;
  position: relative;
  z-index: 10;
}
.callout_bar_full .content {
  font-weight: 700;
  margin-top: 18px;
  position: relative;
  z-index: 10;
}
.callout_bar_full .content body:not(.single-post) article ol:last-child,
.callout_bar_full .content body:not(.single-post) article ul:last-child,
.callout_bar_full .content p:last-child,
body:not(.single-post) article .callout_bar_full .content ol:last-child,
body:not(.single-post) article .callout_bar_full .content ul:last-child {
  margin-bottom: 0;
}
.callout_bar_full:before {
  animation: fadeInRight;
  animation-delay: 0.4s;
  animation-duration: 3s;
  background-color: rgba(250, 250, 250, 0.3);
  clip-path: polygon(94% 0, 100% 0, 100% 100%, 86% 100%);
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media (min-width: 992px) {
  .callout_bar_full:before {
    clip-path: polygon(90% 0, 100% 0, 100% 100%, 88% 100%);
    content: "";
  }
}
.callout_bar_full.sm_banner .title {
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  .callout_bar_full.sm_banner .title {
    font-size: 2.4rem;
  }
}
@media (min-width: 992px) {
  .callout_bar_full.sm_banner .title {
    font-size: 2.4rem;
  }
}
.multi-col-content .content h2 {
  font-size: 3.4rem;
}
.multi-col-content .content h3 {
  font-size: 3.2rem;
}
.multi-col-content .content h4 {
  font-size: 2.4rem;
}
.multi-col-content.bg-off-white h2,
.multi-col-content.bg-off-white h3,
.multi-col-content.bg-off-white h4,
.multi-col-content.bg-white h2,
.multi-col-content.bg-white h3,
.multi-col-content.bg-white h4 {
  color: #0c4968;
}
.multi-col-content.multi_col_fancy .row {
  align-items: center;
}
.multi-col-content.multi_col_fancy h2,
.multi-col-content.multi_col_fancy h3,
.multi-col-content.multi_col_fancy h4 {
  color: #0075c9;
  font-weight: 700;
}
.multi-col-content.multi_col_fancy .content.text-left {
  margin: 0 auto;
  text-align: center !important;
}
.multi-col-content.multi_col_fancy .content.text-left .btn-row {
  justify-content: center;
}
@media (min-width: 768px) {
  .multi-col-content.multi_col_fancy .content.text-left {
    margin: 0;
    text-align: left !important;
  }
  .multi-col-content.multi_col_fancy .content.text-left .btn-row {
    justify-content: flex-start;
  }
}
.multi-col-content.sm_col_1 .column_num_1 .content {
  max-width: 400px;
}
.blog_cat_section {
  margin-bottom: 80px;
  margin-top: 40px;
}
.blog_cat_section .post_cat_heading {
  align-items: flex-end;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 8px;
}
.blog_cat_section .post_cat_heading .post_cat_title {
  flex: 0 0 auto;
  font-size: 3.5rem;
  margin-bottom: 0;
}
.blog_cat_section .post_cat_heading .post_cat_link {
  flex: 0 0 auto;
}
.blog_cat_section .post_cat_heading .post_cat_link .btn_post_cat {
  padding-right: 20px;
  position: relative;
  text-align: left;
  text-decoration: none;
}
.blog_cat_section .post_cat_heading .post_cat_link .btn_post_cat:after {
  content: "»";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-48%);
}
@media (max-width: 991.98px) {
  .blog_cat_section .post_cat_heading {
    display: block;
  }
  .blog_cat_section .post_cat_heading .post_cat_title {
    font-size: 3rem;
  }
}
.blog_cat_section .post_card {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.blog_cat_section .post_card .post_thumb {
  background-color: #f8f9fa;
  border-radius: 8px;
  display: block;
  margin-bottom: 16px;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
}
.blog_cat_section .post_card .post_thumb div {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.3s ease-in-out;
}
.blog_cat_section .post_card .post_thumb:hover div {
  transform: scale(1.07);
}
.blog_cat_section .post_card .post_meta ul {
  margin-bottom: 0;
}
.blog_cat_section .post_card .post_title,
.blog_cat_section .post_card .post_title a {
  color: #212529;
  display: inline;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s;
}
.blog_cat_section .post_card .post_title:hover,
.blog_cat_section .post_card .post_title a:hover {
  color: #0075c9;
  text-decoration: underline;
}
.blog_cat_section .post_card .post_date {
  color: #aaa9aa;
}
.blog_cat_section .post_card .post_excerpt {
  display: inline;
  font-size: 1.6rem;
  margin-top: 16px;
}
.blog_cat_section .post_card .post_excerpt body:not(.single-post) article ol,
.blog_cat_section .post_card .post_excerpt body:not(.single-post) article ul,
.blog_cat_section .post_card .post_excerpt p,
body:not(.single-post) article .blog_cat_section .post_card .post_excerpt ol,
body:not(.single-post) article .blog_cat_section .post_card .post_excerpt ul {
  display: inline;
  margin: 0;
}
.blog_cat_section .post_cat_items {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: -12px;
}
.blog_cat_section .post_cat_items .post_cat_item {
  align-items: stretch;
  display: flex;
  flex: 0 0 auto;
  padding: 12px;
  width: 33.3333%;
}
@media (max-width: 991.98px) {
  .blog_cat_section .post_cat_items .post_cat_item {
    width: 100%;
  }
}
.blog_cat_section .post_cat_items .post_cat_item.__main {
  padding: 8px 16px;
  width: 70%;
}
@media (max-width: 991.98px) {
  .blog_cat_section .post_cat_items .post_cat_item.__main {
    width: 100%;
  }
}
.blog_cat_section .post_cat_items .post_cat_item.__main .post_card {
  justify-content: flex-start;
}
.blog_cat_section .post_cat_items .post_cat_item.__main .post_card .post_title,
.blog_cat_section .post_cat_items .post_cat_item.__main .post_card .post_title a {
  font-size: 2rem;
}
.blog_cat_section .post_cat_items .post_cat_item.__main .post_card .post_excerpt {
  font-size: 2rem;
  line-height: 1.8;
}
.blog_cat_section .post_cat_items .post_cat_item.__mini {
  width: 100%;
}
.blog_cat_section .post_cat_items .post_cat_item.__mini .post_card {
  justify-content: flex-start;
}
.blog_cat_section .post_cat_items .post_cat_item.__mini .post_card .post_title,
.blog_cat_section .post_cat_items .post_cat_item.__mini .post_card .post_title a {
  font-size: 2rem;
}
@media (max-width: 991.98px) {
  .blog_cat_section .post_cat_items .post_cat_item.__mini {
    width: 60%;
  }
}
@media (max-width: 767.98px) {
  .blog_cat_section .post_cat_items .post_cat_item.__mini {
    max-width: 500px;
    width: 100%;
  }
}
.blog_cat_section .post_cat_items .post_featured_mini {
  align-items: stretch;
  background-color: #f0f0f0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 8px;
  padding: 8px;
  width: 30%;
}
.blog_cat_section .post_cat_items .post_featured_mini .post_featured_mini_title {
  padding: 8px 8px 0;
}
.blog_cat_section .post_cat_items .post_featured_mini .post_featured_mini_title h3 {
  font-size: 2rem;
}
@media (max-width: 991.98px) {
  .blog_cat_section .post_cat_items .post_featured_mini {
    width: 100%;
  }
}
.blog_cat_section .post_cat_items.__featured {
  margin: -8px -16px;
}
@media (max-width: 991.98px) {
  .blog_cat_section .post_cat_items.__regular .post_cat_item {
    margin: 0 auto;
    max-width: 600px;
  }
}
.cat_nav_sec {
  margin-bottom: 40px;
  margin-top: 40px;
}
.cat_nav_sec .cat_nav_sec_inner {
  align-items: center;
  display: flex;
  justify-content: stretch;
}
.cat_nav_sec .cat_nav_sec_inner .dropdown_nav {
  flex: 0 0 auto;
  min-width: 300px;
}
@media (max-width: 767.98px) {
  .cat_nav_sec .cat_nav_sec_inner .dropdown_nav {
    min-width: 100%;
  }
}
.cat_nav_sec .cat_nav_sec_inner hr {
  flex: 1 1 auto;
  margin-left: 16px;
}
.cat_top {
  opacity: 0;
  position: relative;
  top: -120px;
  visibility: hidden;
  width: 100%;
  z-index: -10;
}
.post-details .dateSidebar {
  border-left: 2px solid #0075c9;
  font-size: 1.5rem;
  font-weight: 700;
}
.post-details .dateSidebar .sidebarMarker {
  background-color: #ffc40c;
  border-radius: 50%;
  height: 22px;
  left: -12px;
  position: absolute;
  width: 22px;
}
@media (max-width: 991.98px) {
  .post-details .dateSidebar .sidebarMarker {
    display: none;
  }
  .post-details .dateSidebar {
    border-left: none;
  }
}
.post-details .post-thumb {
  margin-bottom: 3rem;
}
.post-details .post-thumb .thumb {
  background-position: 0 0;
  background-size: cover;
  height: 300px;
  width: 100%;
}
.post-details .post-details .title {
  font-size: 2.6rem;
  line-height: 3.6rem;
}
.post-details .post-details .title a {
  font-weight: 300;
  text-decoration: none;
}
.post-details .post-details .date {
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.post-details .post-details .cat-links * {
  color: #212529;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.post-details .post-details .cat-links a {
  text-decoration: none;
}
.dropdown_nav {
  max-width: 300px;
  position: relative;
}
.dropdown_nav .dropdown_nav_selected {
  align-items: center;
  background-color: transparent;
  border: 2px solid #ced4da;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 4px 8px;
  position: relative;
  text-align: left;
  width: 100%;
  z-index: 2;
}
.dropdown_nav .dropdown_nav_selected span {
  flex: 1 1 auto;
  width: 100%;
}
.dropdown_nav .dropdown_nav_selected:after {
  color: #ced4da;
  content: "❬";
  display: block;
  flex: 0 0 auto;
  padding-bottom: 1px;
  padding-right: 4px;
}
.dropdown_nav .dropdown_items {
  background-color: #fff;
  border: 2px solid #ced4da;
  border-radius: 12px;
  left: 0;
  margin-top: 4px;
  opacity: 0;
  padding: 8px;
  position: absolute;
  top: 38px;
  transform: translateY(-10%);
  transition:
    opacity 0.2s,
    transform 0.3s;
  z-index: -10;
}
.dropdown_nav .dropdown_items a {
  text-decoration: none;
}
.dropdown_nav .dropdown_items.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
}
.post-share-block {
  padding: 5rem 0;
}
.post-share-block span {
  color: #0075c9;
  display: inline-block;
  font-weight: 700;
  margin-right: 2.5rem;
}
.post-share-block a {
  display: inline-block;
  height: 20px;
  margin: 0 1rem;
  position: relative;
  width: 20px;
}
.post-share-block a.fb-icon:after {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/facebook-viridian_0edf553c.png);
}
.post-share-block a.fb-icon:after,
.post-share-block a.tw-icon:after {
  background-repeat: no-repeat;
  background-size: 20px;
  content: "";
  height: 20px;
  left: 1px;
  position: absolute;
  top: 0;
  width: 20px;
}
.post-share-block a.tw-icon:after {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/twitter-viridian_e2dfd2ac.png);
}
.post-share-block a.li-icon:after {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/linkedin-viridian_7f70f535.png);
  background-repeat: no-repeat;
  background-size: 20px;
  content: "";
  height: 20px;
  left: 1px;
  position: absolute;
  top: 0;
  width: 20px;
}
.providerBios .person .details .title span {
  font-size: 1.4rem;
}
.recent-posts-by-cat.bg-azure .post-details {
  color: #fff;
}
.recent-posts-by-cat.bg-azure .post-details a {
  color: #c3ebff;
}
.recent-posts-by-cat h3 {
  color: #0c4968;
  font-weight: 400;
}
.success_stories .container .row {
  gap: 8px;
  justify-content: space-between;
}
.success_stories .container .row .col-lg-4 {
  background-color: #f0f8ff;
  display: flex;
  flex: 0 0 49%;
  height: 300px;
  margin-bottom: 50px;
  max-width: 50%;
}
.success_stories .container .row .col-lg-4 .story_img {
  flex: 1;
}
.success_stories .container .row .col-lg-4 .story_top_title_row .ss-img {
  height: auto;
  width: 300px;
}
.success_stories .container .row .col-lg-4 .story_details {
  flex: 1;
  text-align: right;
}
.success_stories .container .row .col-lg-4 .story_details .title-excerpt {
  margin-top: 25px;
  padding: 10%;
}
.success_stories .container .row .col-lg-4 .story_details .title-excerpt button {
  background-color: orange;
  border: none;
  border-radius: 25px;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  margin: 2px 1px;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  width: 155px;
}
.success_stories .container .row .video-blocks .container .row .col-lg-6 {
  flex: 0 0 49%;
}
.success_stories .story_sec_title_row {
  border-bottom: 2px solid #a9a9a9;
  margin-bottom: 2rem;
  text-align: left;
}
.success_stories .story_sec_title_row .story_sec_title {
  font-size: 2.9rem;
  font-weight: 700;
}
.success_stories .story_top_title_row .story_top_title {
  color: #f78d28;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0;
}
.success_stories .story_thumb {
  margin-bottom: 1rem;
}
.success_stories .story_details .story_title {
  color: #0075c9;
  font-size: 2rem;
  font-weight: 700;
}
.success_stories .story_details .story_title a {
  text-decoration: none;
  transition: color 0.3s;
}
.success_stories .story_details .story_terms {
  margin-bottom: 0;
}
.success_stories .story_details .story_terms li {
  display: inline;
}
.success_stories .story_details .story_terms.__industry {
  font-weight: 700;
  text-transform: uppercase;
}
.success_stories.bg-sky a {
  color: #0075c9;
}
.success-stories-layout .title_sec {
  color: #0075c9;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
}
.success-stories-layout .case_studies {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.success-stories-layout .case_studies .case_study {
  align-items: flex-start;
  border-bottom: 2px solid #d3d3d3;
  display: flex;
  gap: 48px;
  justify-content: center;
  padding: 48px;
}
.success-stories-layout .case_studies .case_study:last-child {
  border-bottom: none;
}
.success-stories-layout .case_studies .case_study .case_study-video {
  flex: 1 1 auto;
  width: 50%;
}
.success-stories-layout .case_studies .case_study .case_study-details {
  flex: 1 1 auto;
  font-size: 1.8rem;
  width: 50%;
}
.success-stories-layout .case_studies .case_study .case_study-details .case_label,
.success-stories-layout .case_studies .case_study .case_study-details .case_name {
  color: #0075c9;
}
.success-stories-layout .case_studies .case_study .case_study-details .case_name,
.success-stories-layout .case_studies .case_study .case_study-details .case_title {
  font-weight: 700;
}
.success-stories-layout .case_studies .case_study .case_study-details body:not(.single-post) article ol,
.success-stories-layout .case_studies .case_study .case_study-details body:not(.single-post) article ul,
.success-stories-layout .case_studies .case_study .case_study-details p,
body:not(.single-post) article .success-stories-layout .case_studies .case_study .case_study-details ol,
body:not(.single-post) article .success-stories-layout .case_studies .case_study .case_study-details ul {
  font-size: 0.85em;
  margin-top: 16px;
  width: 80%;
}
@media (max-width: 991.98px) {
  .success-stories-layout .case_studies .case_study {
    flex-wrap: wrap;
  }
  .success-stories-layout .case_studies .case_study .case_study-details,
  .success-stories-layout .case_studies .case_study .case_study-video {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .success-stories-layout .case_studies .case_study {
    padding: 48px 0;
  }
}
.video_grid {
  background-color: #f0eeee;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video_grid .title_sec {
  font-size: 4rem;
  margin-bottom: 48px;
  text-align: center;
}
.video_grid .title_sec,
.video_grid h3 {
  color: #0075c9;
  font-weight: 700;
}
.video_grid body:not(.single-post) article ol,
.video_grid body:not(.single-post) article ul,
.video_grid p,
body:not(.single-post) article .video_grid ol,
body:not(.single-post) article .video_grid ul {
  font-size: 1.8rem;
}
.video_grid .video_grid-videos {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  justify-content: center;
}
.video_grid .video_grid-videos .video_grid-video {
  align-items: stretch;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 48px;
  justify-content: space-between;
  padding-bottom: 2%;
  width: calc(50% - 100px);
}
.video_grid .video_grid-videos .video_grid-video .title_group {
  max-width: 540px;
}
.video_grid .video_grid-videos .video_grid-video .title_group body:not(.single-post) article ol,
.video_grid .video_grid-videos .video_grid-video .title_group body:not(.single-post) article ul,
.video_grid .video_grid-videos .video_grid-video .title_group p,
body:not(.single-post) article .video_grid .video_grid-videos .video_grid-video .title_group ol,
body:not(.single-post) article .video_grid .video_grid-videos .video_grid-video .title_group ul {
  margin-bottom: 0;
}
.video_grid .video_grid-videos .video_grid-video .video_group {
  flex: 0 0 auto;
}
#three-cta-success {
  background-color: #fff;
  padding: 3%;
}
#three-cta-success h1 {
  font-size: 3.25rem;
}
#three-cta-success body:not(.single-post) article ol,
#three-cta-success body:not(.single-post) article ul,
#three-cta-success p,
body:not(.single-post) article #three-cta-success ol,
body:not(.single-post) article #three-cta-success ul {
  font-size: 18px;
}
.providerBios,
.teamBios {
  --bio-height: auto;
  margin: 4rem 0;
  position: relative;
}
.providerBios .person,
.teamBios .person {
  margin-bottom: 20px;
  padding-bottom: 0;
  transition: padding 0.3s ease-in-out;
  transition-delay: 0.3s;
}
.providerBios .person:nth-child(odd) .personsBio,
.teamBios .person:nth-child(odd) .personsBio {
  margin-left: 0;
}
.providerBios .person:nth-child(2n + 2) .personsBio,
.teamBios .person:nth-child(2n + 2) .personsBio {
  margin-left: -100%;
}
.providerBios .person .details .name,
.teamBios .person .details .name {
  color: #0075c9;
  font-size: 2.2rem;
  font-weight: 400;
}
.providerBios .person .details .title,
.teamBios .person .details .title {
  font-weight: 400;
  line-height: 26px;
}
.providerBios .person .ctaText .readBioBtn,
.teamBios .person .ctaText .readBioBtn {
  font-size: 1.6rem;
  font-weight: 700;
}
.providerBios .person .ctaText .readBioBtn:after,
.teamBios .person .ctaText .readBioBtn:after {
  top: 5px;
}
.providerBios .personsBio,
.teamBios .personsBio {
  background-color: #c3ebff;
  bottom: 0;
  opacity: 0;
  padding: 7rem 4rem 4rem;
  position: absolute;
  visibility: hidden;
  width: 195%;
}
.providerBios .personsBio .closeBtn,
.teamBios .personsBio .closeBtn {
  cursor: pointer;
  position: absolute;
  right: 3rem;
  top: 2rem;
}
.providerBios .person.showBio,
.teamBios .person.showBio {
  padding-bottom: calc(var(--bio-height) + 1rem);
  transition-delay: 0s;
}
.providerBios .person.showBio .personsBio,
.teamBios .person.showBio .personsBio {
  opacity: 1;
  transition: opacity 0.3s ease-in-out 0.3s;
  visibility: visible;
  z-index: 2;
}
@media (min-width: 768px) {
  .providerBios .personsBio,
  .teamBios .personsBio {
    padding: 6rem 9rem;
    width: 295%;
  }
  .providerBios .person:nth-child(3n + 1) .personsBio,
  .teamBios .person:nth-child(3n + 1) .personsBio {
    margin-left: 0;
  }
  .providerBios .person:nth-child(3n + 2) .personsBio,
  .teamBios .person:nth-child(3n + 2) .personsBio {
    margin-left: -100%;
  }
  .providerBios .person:nth-child(3n + 3) .personsBio,
  .teamBios .person:nth-child(3n + 3) .personsBio {
    margin-left: -200%;
  }
}
@media (min-width: 992px) {
  .providerBios .personsBio,
  .teamBios .personsBio {
    padding: 6rem 16rem;
    width: 395%;
  }
  .providerBios .person:nth-child(4n + 1) .personsBio,
  .teamBios .person:nth-child(4n + 1) .personsBio {
    margin-left: 0;
  }
  .providerBios .person:nth-child(4n + 2) .personsBio,
  .teamBios .person:nth-child(4n + 2) .personsBio {
    margin-left: -100%;
  }
  .providerBios .person:nth-child(4n + 3) .personsBio,
  .teamBios .person:nth-child(4n + 3) .personsBio {
    margin-left: -200%;
  }
  .providerBios .person:nth-child(4n + 4) .personsBio,
  .teamBios .person:nth-child(4n + 4) .personsBio {
    margin-left: -300%;
  }
}
.testimonials {
  background: #b0f3ea;
  overflow: hidden;
  padding: 6rem 0;
  text-align: center;
}
.testimonials h2,
.testimonials h3 {
  color: #0c4968;
  font-size: 4rem;
  font-weight: 700;
  line-height: 46px;
}
.testimonials .testimonials_subheader {
  display: block;
}
@media (min-width: 768px) {
  .testimonials .testimonials_subheader {
    display: block;
  }
}
.testimonials .googleReviews {
  font-weight: 700;
}
.testimonials .googleReviews .ratingNum {
  margin-right: 1rem;
}
.testimonials .googleReviews .fullStar {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/star-filled_a0ef5fda.png);
  display: inline-block;
  height: 20px;
  width: 20px;
}
.testimonials .googleReviews .halfStar {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/star-half_ae6b7c4d.png);
  display: inline-block;
  height: 20px;
  width: 20px;
}
.testimonials .googleReviews .emptyStar {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/star-empty_e36f1115.png);
  display: inline-block;
  height: 20px;
  width: 20px;
}
.testimonials .googleReviews .reviewsNum {
  margin-left: 1rem;
}
.testimonials .googleReviews .googleReviewLogo {
  margin: 0 5px;
  max-height: 28px;
}
.testimonials .glide__track {
  margin-bottom: 16px;
  margin-top: 16px;
}
.testimonials .glide__slide {
  background: #fff;
  margin: 0;
  padding: 18px 16px;
  transition: 0.4s;
}
@media (min-width: 576px) {
  .testimonials .glide__slide {
    margin: 0 10px;
    padding: 60px 70px;
  }
}
.testimonials .glide__slide--active {
  position: relative;
  z-index: 5;
}
.testimonials .glide__slide--active:before {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/testimonial-quotes_07a2a65f.png);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 30px;
  left: -38px;
  position: absolute;
  top: 16px;
  width: 50px;
}
@media (min-width: 992px) {
  .testimonials .glide__slide--active:before {
    height: 48px;
    left: -44px;
    width: 75px;
  }
}
.testimonials .glide__slide--active:after {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/testimonial-quotes_07a2a65f.png);
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 16px;
  content: "";
  height: 30px;
  position: absolute;
  right: -38px;
  width: 50px;
}
@media (min-width: 992px) {
  .testimonials .glide__slide--active:after {
    height: 48px;
    right: -44px;
    width: 75px;
  }
}
.testimonials .glide__slide:not(.glide__slide--active) {
  filter: blur(4px);
  opacity: 0.5;
  transform: scale(0.9);
}
@media (min-width: 992px) {
  .testimonials .glide__slide:not(.glide__slide--active) {
    transform: scale(0.8);
  }
}
.testimonials .glide__slide .sourceImg {
  max-width: 25px;
}
.testimonials:before {
  background: #fff;
  content: "";
  height: 100%;
  left: -50%;
  opacity: 0.3;
  position: absolute;
  top: 0;
  transform: skewX(30deg);
  width: 100%;
}
.testimonials .g_rating {
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.testimonials .g_rating .google_logo {
  flex: 0 0 auto;
  height: 30px;
  width: 30px;
}
.testimonials .g_rating .stars {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 4px;
  justify-content: center;
}
.testimonials .g_rating .stars svg {
  color: #ffc40c;
  display: block;
  height: 24px;
  width: 24px;
}
.testimonials .g_rating .stars .star_underlay {
  position: relative;
  z-index: 1;
}
.testimonials .g_rating .stars .star_underlay svg.fore_star {
  position: relative;
  z-index: 5;
}
.testimonials .g_rating .stars .star_underlay svg.bg_star {
  color: #fff;
  left: 0;
  position: absolute;
  top: 0;
  transform: rotateY(180deg);
  z-index: 1;
}
.testimonials .g_rating .message {
  flex: 0 0 100%;
  font-size: 2.2rem;
  margin-bottom: 0;
  padding-top: 12px;
}
@media (min-width: 576px) {
  .testimonials .g_rating .message {
    flex: 0 0 auto;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.txtblock-img-offset-arrow-app.bg-off-white h2,
.txtblock-img-offset-arrow-app.bg-off-white h3,
.txtblock-img-offset-arrow-app.bg-white h2,
.txtblock-img-offset-arrow-app.bg-white h3 {
  color: #0075c9;
}
.txtblock-img-offset-arrow-app .txtblock-imgblock {
  padding-left: 7%;
}
.txtblock-img-offset-arrow-app .txtblock-imgblock:after {
  top: 12%;
}
.txtblock-img-offset-arrow-app .txtblock_content {
  text-align: center;
}
.txtblock-img-offset-arrow-app .txtblock_content .txtblock_mobile_img img {
  border-bottom: 1px solid #fff;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .txtblock-img-offset-arrow-app .txtblock_content .txtblock_mobile_img {
    display: none;
  }
}
.txtblock-img-offset-arrow-app .txtblock_content .title_area {
  margin-bottom: 36px;
}
@media (min-width: 992px) {
  .txtblock-img-offset-arrow-app .txtblock_content .title_area {
    margin-bottom: 0;
  }
}
.txtblock-img-offset-arrow-app .txtblock_content article > :not(.title_area) {
  display: none;
}
@media (min-width: 992px) {
  .txtblock-img-offset-arrow-app .txtblock_content article > :not(.title_area) {
    display: block;
  }
}
.txtblock-img-offset-arrow-app .txtblock_content .txtblock_cta_block .btn-row {
  justify-content: center;
}
@media (min-width: 992px) {
  .txtblock-img-offset-arrow-app .txtblock_content .txtblock_cta_block .btn-row {
    justify-content: flex-start;
  }
  .txtblock-img-offset-arrow-app .txtblock_content {
    text-align: left;
  }
}
.txtblock-img-arrow-offset .section-title {
  color: #c3ebff;
}
.txtblock-img-arrow-offset.bg-off-white .section-title,
.txtblock-img-arrow-offset.bg-sky .section-title,
.txtblock-img-arrow-offset.bg-white .section-title {
  color: #0075c9;
}
.txtblock-img-arrow-offset .txtblock-imgblock {
  padding-left: 0;
}
.txtblock-img-arrow-offset .txtblock-imgblock img {
  margin-left: 137px;
  max-height: 450px;
}
.txtblock-img-arrow-offset .txtblock-imgblock:after {
  bottom: 0;
  height: 88%;
  left: 0;
  top: auto;
  width: 1000px;
}
.txtblock-img-arrow-offset .txtblock-imgblock.reversed:after {
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
  left: auto;
  right: 0;
}
.txtblock-img-arrow-offset .txtblock-imgblock.reversed img {
  margin-left: 0;
  margin-right: 241px;
}
.txtblock-img-arrow-offset .title_area {
  display: flex;
  flex-wrap: wrap;
}
.txtblock-img-arrow-offset article.content_basic {
  display: flex;
  flex-wrap: wrap;
  padding-left: 48px;
}
@media (max-width: 991.98px) {
  .txtblock-img-arrow-offset article.content_basic {
    padding-left: 0;
  }
}
.txtblock-img-arrow-offset article.content_basic .title_area {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .txtblock-img-arrow-offset article.content_basic .title_area {
    flex-wrap: nowrap;
  }
}
.txtblock-img-arrow-offset article.content_basic .title_area h2,
.txtblock-img-arrow-offset article.content_basic .title_area h3,
.txtblock-img-arrow-offset article.content_basic .title_area h4,
.txtblock-img-arrow-offset article.content_basic .title_area h5,
.txtblock-img-arrow-offset article.content_basic .title_area h6,
.txtblock-img-arrow-offset article.content_basic .title_area p,
.txtblock-img-arrow-offset body:not(.single-post) article.content_basic .title_area ol,
.txtblock-img-arrow-offset body:not(.single-post) article.content_basic .title_area ul,
body:not(.single-post) .txtblock-img-arrow-offset article.content_basic .title_area ol,
body:not(.single-post) .txtblock-img-arrow-offset article.content_basic .title_area ul {
  margin-bottom: 0;
}
.txtblock-img-arrow-offset article.content_basic h2,
.txtblock-img-arrow-offset article.content_basic h3 {
  flex: 0 1 auto;
  order: 2;
  width: 100%;
}
.txtblock-img-arrow-offset article.content_basic h5 {
  background-color: #35c0ce;
  border-radius: 47px;
  color: #fff;
  font-family:
    DM Sans,
    sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  min-height: 47px;
  min-width: 47px;
  order: 1;
  padding: 9px 1px 0 0;
  text-align: center;
}
.txtblock-img-arrow-offset article.content_basic p,
.txtblock-img-arrow-offset body:not(.single-post) article.content_basic ol,
.txtblock-img-arrow-offset body:not(.single-post) article.content_basic ul,
body:not(.single-post) .txtblock-img-arrow-offset article.content_basic ol,
body:not(.single-post) .txtblock-img-arrow-offset article.content_basic ul {
  font-size: 1.8rem;
}
.txtblock-img-arrow-offset article.content_basic p,
.txtblock-img-arrow-offset article.content_basic ul,
.txtblock-img-arrow-offset body:not(.single-post) article.content_basic ol,
.txtblock-img-arrow-offset body:not(.single-post) article.content_basic ul,
body:not(.single-post) .txtblock-img-arrow-offset article.content_basic ol,
body:not(.single-post) .txtblock-img-arrow-offset article.content_basic ul {
  order: 3;
  width: 100%;
}
.txtblock-img-arrow-offset article.content_basic ul li {
  margin-bottom: 1rem;
}
.txtblock-img-arrow-offset .flex-row-reverse article.content_basic {
  padding-left: 0;
  padding-right: 48px;
}
@media (max-width: 991.98px) {
  .txtblock-img-arrow-offset .flex-row-reverse article.content_basic {
    padding-right: 0;
  }
}
.txtblock-img .content_basic .title_area .section-title {
  color: #0075c9;
  font-size: 4.2rem;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .txtblock-img .content_basic .title_area .section-title {
    font-size: 3.6rem;
  }
}
.txtblock-img .content_basic body:not(.single-post) article ol,
.txtblock-img .content_basic body:not(.single-post) article ul,
.txtblock-img .content_basic p,
body:not(.single-post) article .txtblock-img .content_basic ol,
body:not(.single-post) article .txtblock-img .content_basic ul {
  font-size: 1.8rem;
}
.txtblock-img .right-col {
  padding: 60px 16px !important;
  text-align: center;
}
.txtblock-img .right-col .content_basic {
  text-align: center;
}
.txtblock-img .right-col .content_basic .title_area {
  margin-bottom: 0;
}
.txtblock-img .right-col .content_basic .title_area .section-title {
  font-weight: 700;
}
.txtblock-img .right-col .content_basic body:not(.single-post) article ol,
.txtblock-img .right-col .content_basic body:not(.single-post) article ul,
.txtblock-img .right-col .content_basic p,
body:not(.single-post) article .txtblock-img .right-col .content_basic ol,
body:not(.single-post) article .txtblock-img .right-col .content_basic ul {
  font-size: 1.8rem;
}
@media (min-width: 992px) {
  .txtblock-img .right-col {
    padding: 30px !important;
    text-align: left;
  }
  .txtblock-img .right-col .title_area .section-title {
    font-weight: 400;
  }
}
.txtblock-img .right-col .btn-row {
  justify-content: center;
}
.txtblock-img .right-col .btn-row .btn {
  margin-right: 0;
}
.txtblock-img.limit_img_400 img {
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
}
.txtblock-img.limit_img_500 img {
  margin: 0 auto;
  max-width: 500px;
  width: 100%;
}
.txtblock-img.limit_img_560 img {
  margin: 0 auto;
  max-width: 560px;
  width: 100%;
}
.txtblock-img.limit_img_600 img {
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
}
.txtblock-img.limit_img_720 img {
  margin: 0 auto;
  max-width: 720px;
  width: 100%;
}
@media (min-width: 992px) {
  .txtblock-img.img_pt_lg img {
    padding-top: 48px;
  }
}
.txtblock-img.img_pt_lg .align-items-center {
  align-items: flex-end !important;
}
.txtblock-img.img_pt_lg .right-col {
  align-self: center;
}
.txtblock-img .title_area {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.txtblock-img .title_area h2,
.txtblock-img .title_area h3,
.txtblock-img .title_area h4,
.txtblock-img .title_area h5,
.txtblock-img .title_area h6 {
  flex: 1 1 auto;
  margin-bottom: 0.5rem;
}
.txtblock-img.img_mobile_behind {
  position: relative;
}
.txtblock-img.img_mobile_behind .col,
.txtblock-img.img_mobile_behind .col-1,
.txtblock-img.img_mobile_behind .col-2,
.txtblock-img.img_mobile_behind .col-3,
.txtblock-img.img_mobile_behind .col-4,
.txtblock-img.img_mobile_behind .col-5,
.txtblock-img.img_mobile_behind .col-6,
.txtblock-img.img_mobile_behind .col-7,
.txtblock-img.img_mobile_behind .col-8,
.txtblock-img.img_mobile_behind .col-9,
.txtblock-img.img_mobile_behind .col-10,
.txtblock-img.img_mobile_behind .col-11,
.txtblock-img.img_mobile_behind .col-12,
.txtblock-img.img_mobile_behind .col-auto,
.txtblock-img.img_mobile_behind .col-lg,
.txtblock-img.img_mobile_behind .col-lg-1,
.txtblock-img.img_mobile_behind .col-lg-2,
.txtblock-img.img_mobile_behind .col-lg-3,
.txtblock-img.img_mobile_behind .col-lg-4,
.txtblock-img.img_mobile_behind .col-lg-5,
.txtblock-img.img_mobile_behind .col-lg-6,
.txtblock-img.img_mobile_behind .col-lg-7,
.txtblock-img.img_mobile_behind .col-lg-8,
.txtblock-img.img_mobile_behind .col-lg-9,
.txtblock-img.img_mobile_behind .col-lg-10,
.txtblock-img.img_mobile_behind .col-lg-11,
.txtblock-img.img_mobile_behind .col-lg-12,
.txtblock-img.img_mobile_behind .col-lg-auto,
.txtblock-img.img_mobile_behind .col-md,
.txtblock-img.img_mobile_behind .col-md-1,
.txtblock-img.img_mobile_behind .col-md-2,
.txtblock-img.img_mobile_behind .col-md-3,
.txtblock-img.img_mobile_behind .col-md-4,
.txtblock-img.img_mobile_behind .col-md-5,
.txtblock-img.img_mobile_behind .col-md-6,
.txtblock-img.img_mobile_behind .col-md-7,
.txtblock-img.img_mobile_behind .col-md-8,
.txtblock-img.img_mobile_behind .col-md-9,
.txtblock-img.img_mobile_behind .col-md-10,
.txtblock-img.img_mobile_behind .col-md-11,
.txtblock-img.img_mobile_behind .col-md-12,
.txtblock-img.img_mobile_behind .col-md-auto,
.txtblock-img.img_mobile_behind .col-sm,
.txtblock-img.img_mobile_behind .col-sm-1,
.txtblock-img.img_mobile_behind .col-sm-2,
.txtblock-img.img_mobile_behind .col-sm-3,
.txtblock-img.img_mobile_behind .col-sm-4,
.txtblock-img.img_mobile_behind .col-sm-5,
.txtblock-img.img_mobile_behind .col-sm-6,
.txtblock-img.img_mobile_behind .col-sm-7,
.txtblock-img.img_mobile_behind .col-sm-8,
.txtblock-img.img_mobile_behind .col-sm-9,
.txtblock-img.img_mobile_behind .col-sm-10,
.txtblock-img.img_mobile_behind .col-sm-11,
.txtblock-img.img_mobile_behind .col-sm-12,
.txtblock-img.img_mobile_behind .col-sm-auto,
.txtblock-img.img_mobile_behind .col-xl,
.txtblock-img.img_mobile_behind .col-xl-1,
.txtblock-img.img_mobile_behind .col-xl-2,
.txtblock-img.img_mobile_behind .col-xl-3,
.txtblock-img.img_mobile_behind .col-xl-4,
.txtblock-img.img_mobile_behind .col-xl-5,
.txtblock-img.img_mobile_behind .col-xl-6,
.txtblock-img.img_mobile_behind .col-xl-7,
.txtblock-img.img_mobile_behind .col-xl-8,
.txtblock-img.img_mobile_behind .col-xl-9,
.txtblock-img.img_mobile_behind .col-xl-10,
.txtblock-img.img_mobile_behind .col-xl-11,
.txtblock-img.img_mobile_behind .col-xl-12,
.txtblock-img.img_mobile_behind .col-xl-auto,
.txtblock-img.img_mobile_behind .col-xxl,
.txtblock-img.img_mobile_behind .col-xxl-1,
.txtblock-img.img_mobile_behind .col-xxl-2,
.txtblock-img.img_mobile_behind .col-xxl-3,
.txtblock-img.img_mobile_behind .col-xxl-4,
.txtblock-img.img_mobile_behind .col-xxl-5,
.txtblock-img.img_mobile_behind .col-xxl-6,
.txtblock-img.img_mobile_behind .col-xxl-7,
.txtblock-img.img_mobile_behind .col-xxl-8,
.txtblock-img.img_mobile_behind .col-xxl-9,
.txtblock-img.img_mobile_behind .col-xxl-10,
.txtblock-img.img_mobile_behind .col-xxl-11,
.txtblock-img.img_mobile_behind .col-xxl-12,
.txtblock-img.img_mobile_behind .col-xxl-auto {
  padding-left: 0;
  padding-right: 0;
  position: static;
}
.txtblock-img.img_mobile_behind .right-col {
  position: relative;
  z-index: 2;
}
.txtblock-img.img_mobile_behind .left-col {
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .txtblock-img.img_mobile_behind .left-col {
    align-items: stretch;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }
  .txtblock-img.img_mobile_behind .left-col img {
    flex: 1 1 auto;
    object-fit: cover;
    object-position: center bottom;
    opacity: 0.3;
  }
}
.home .txtblock-img .__home {
  background-color: #fff;
}
.txtblock-icon-multi-col .intro {
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .txtblock-icon-multi-col .intro {
    margin-bottom: 4rem;
  }
}
.txtblock-icon-multi-col .intro body:not(.single-post) article ol,
.txtblock-icon-multi-col .intro body:not(.single-post) article ul,
.txtblock-icon-multi-col .intro ol,
.txtblock-icon-multi-col .intro p,
.txtblock-icon-multi-col .intro ul,
body:not(.single-post) article .txtblock-icon-multi-col .intro ol,
body:not(.single-post) article .txtblock-icon-multi-col .intro ul {
  color: #000006;
  font-size: 2rem;
  line-height: 3.2rem;
}
.txtblock-icon-multi-col .intro > :last-child {
  margin-bottom: 0;
}
.txtblock-icon-multi-col .col-block h2 {
  font-size: 3rem;
  line-height: 1;
}
.txtblock-icon-multi-col .col-block h3 {
  font-size: 2.7rem;
  line-height: 1.2;
}
.txtblock-icon-multi-col .col-block h4 {
  font-size: 2rem;
  line-height: 1.6;
}
.txtblock-icon-multi-col .col-block:not(:last-of-type) {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .txtblock-icon-multi-col .col-block:nth-last-child(2) {
    margin-bottom: 0;
  }
}
.txtblock-icon-multi-col .col-block .block-title {
  color: #0c4968;
  margin-bottom: 1rem;
}
.txtblock-icon-multi-col .col-block .icon:before {
  color: #45bead;
  content: "\f26a";
  font-family: bootstrap-icons;
  font-size: 2.4rem;
  left: 1rem;
  position: absolute;
  top: -0.4rem;
}
.txtblock-icon-multi-col .col-block .txtblock {
  padding-left: 4rem;
}
.txtblock-icon-multi-col .col-block .txtblock body:not(.single-post) article ol,
.txtblock-icon-multi-col .col-block .txtblock body:not(.single-post) article ul,
.txtblock-icon-multi-col .col-block .txtblock p,
body:not(.single-post) article .txtblock-icon-multi-col .col-block .txtblock ol,
body:not(.single-post) article .txtblock-icon-multi-col .col-block .txtblock ul {
  color: #0c4968;
}
.txtblock-icon-multi-col-links .intro {
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .txtblock-icon-multi-col-links .intro {
    margin-bottom: 4rem;
  }
}
.txtblock-icon-multi-col-links .intro body:not(.single-post) article ol,
.txtblock-icon-multi-col-links .intro body:not(.single-post) article ul,
.txtblock-icon-multi-col-links .intro ol,
.txtblock-icon-multi-col-links .intro p,
.txtblock-icon-multi-col-links .intro ul,
body:not(.single-post) article .txtblock-icon-multi-col-links .intro ol,
body:not(.single-post) article .txtblock-icon-multi-col-links .intro ul {
  color: #000006;
  font-size: 2rem;
  line-height: 3.2rem;
}
.txtblock-icon-multi-col-links .intro > :last-child {
  margin-bottom: 0;
}
.txtblock-icon-multi-col-links .col-block h2 {
  font-size: 3rem;
  line-height: 1;
}
.txtblock-icon-multi-col-links .col-block h3 {
  font-size: 2.7rem;
  line-height: 1.2;
}
.txtblock-icon-multi-col-links .col-block h4 {
  font-size: 2rem;
  line-height: 1.6;
}
.txtblock-icon-multi-col-links .col-block:not(:last-of-type) {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .txtblock-icon-multi-col-links .col-block:nth-last-child(2) {
    margin-bottom: 0;
  }
}
.txtblock-icon-multi-col-links .col-block .block-title {
  color: #0c4968;
  margin-bottom: 1rem;
}
.txtblock-icon-multi-col-links .col-block .icon:before {
  background-color: #45bead;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' class='bi bi-link-45deg'%3E%3Cpath d='M4.715 6.542 3.343 7.914a3 3 0 1 0 4.243 4.243l1.828-1.829A3 3 0 0 0 8.586 5.5L8 6.086a1.002 1.002 0 0 0-.154.199 2 2 0 0 1 .861 3.337L6.88 11.45a2 2 0 1 1-2.83-2.83l.793-.792a4.018 4.018 0 0 1-.128-1.287z'/%3E%3Cpath d='M6.586 4.672A3 3 0 0 0 7.414 9.5l.775-.776a2 2 0 0 1-.896-3.346L9.12 3.55a2 2 0 1 1 2.83 2.83l-.793.792c.112.42.155.855.128 1.287l1.372-1.372a3 3 0 1 0-4.243-4.243L6.586 4.672z'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 2rem 2rem;
  border-radius: 50%;
  content: "";
  height: 24px;
  left: 1rem;
  position: absolute;
  top: 0.3rem;
  width: 24px;
}
.txtblock-icon-multi-col-links .col-block .txtblock {
  padding-left: 4rem;
}
.txtblock-icon-multi-col-links .col-block .txtblock body:not(.single-post) article ol,
.txtblock-icon-multi-col-links .col-block .txtblock body:not(.single-post) article ul,
.txtblock-icon-multi-col-links .col-block .txtblock p,
body:not(.single-post) article .txtblock-icon-multi-col-links .col-block .txtblock ol,
body:not(.single-post) article .txtblock-icon-multi-col-links .col-block .txtblock ul {
  color: #0c4968;
}
.text-block-with-links h2,
.text-block-with-links h3,
.text-block-with-links h4 {
  color: #0075c9;
}
.video-contained .container .title-info {
  padding-bottom: 3%;
}
.video-contained .container .title-info h2 {
  color: #0075c9;
  font-size: 3.25rem;
  font-weight: 500;
  padding-bottom: 0.8%;
}
.video-contained .container .title-info h4 {
  font-size: 2rem;
}
.video-contained .content_basic .title_area {
  margin-bottom: 28px;
}
.video-contained .content_basic .title_area .section-title {
  font-weight: 500;
}
.video-contained .content_basic .title_area .section-title h2 {
  font-size: 1.5em;
}
@media (min-width: 992px) {
  .video-contained .content_basic .title_area .section-title {
    font-size: 4rem;
  }
}
.video-contained .content_basic .title_area .subtitle {
  font-size: 1.8rem;
  line-height: 1.6;
}
@media (min-width: 992px) {
  .video-contained .content_basic .title_area .subtitle {
    font-size: 2rem;
  }
}
.video-contained .content_basic body:not(.single-post) article ol,
.video-contained .content_basic body:not(.single-post) article ul,
.video-contained .content_basic p,
body:not(.single-post) article .video-contained .content_basic ol,
body:not(.single-post) article .video-contained .content_basic ul {
  font-size: 1.8rem;
}
.video-contained .embed-responsive-16by9 {
  box-shadow: 6px 6px 0 #0075c9;
}
.video-contained .btn_wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}
.video-contained.__center .content {
  text-align: center;
}
.video-contained.__center .cta_content {
  display: none;
}
.video-contained.__side-by-side .content {
  text-align: center;
}
@media (min-width: 768px) {
  .video-contained.__side-by-side .content {
    text-align: left;
  }
}
.video-contained.__side-by-side .cta_content {
  display: none;
}
@media (min-width: 768px) {
  .video-contained.__side-by-side .cta_content {
    display: block;
  }
  .video-contained.__side-by-side .cta_content .btn_wrap {
    justify-content: flex-start;
  }
}
.video-contained.__side-by-side .cta_bottom {
  display: block;
}
@media (min-width: 768px) {
  .video-contained.__side-by-side .cta_bottom {
    display: none;
  }
}
.yt-video {
  position: relative;
}
.yt-video.ended:after {
  background-image: url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjgiIGhlaWdodD0iMTI4IiB2aWV3Qm94PSIwIDAgNTEwIDUxMCI+PHBhdGggZD0iTTI1NSAxMDJWMEwxMjcuNSAxMjcuNSAyNTUgMjU1VjE1M2M4NC4xNSAwIDE1MyA2OC44NSAxNTMgMTUzcy02OC44NSAxNTMtMTUzIDE1My0xNTMtNjguODUtMTUzLTE1M0g1MWMwIDExMi4yIDkxLjggMjA0IDIwNCAyMDRzMjA0LTkxLjggMjA0LTIwNC05MS44LTIwNC0yMDQtMjA0eiIgZmlsbD0iI0ZGRiIvPjwvc3ZnPg==);
  background-size: 64px 64px;
  bottom: 0;
  top: 0;
}
.yt-video.ended:after,
.yt-video.paused:after {
  background-color: #0075c9;
  background-position: 50%;
  background-repeat: no-repeat;
  content: "";
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
}
.yt-video.paused:after {
  background-image: url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEiIHdpZHRoPSIxNzA2LjY2NyIgaGVpZ2h0PSIxNzA2LjY2NyIgdmlld0JveD0iMCAwIDEyODAgMTI4MCI+PHBhdGggZD0iTTE1Ny42MzUgMi45ODRMMTI2MC45NzkgNjQwIDE1Ny42MzUgMTI3Ny4wMTZ6IiBmaWxsPSIjZmZmIi8+PC9zdmc+);
  background-size: 40px 40px;
  bottom: 50px;
  top: 70px;
  transition: background-color 0.3s;
}
.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
  top: 2px;
}
.blogIndexHeader {
  color: #fff;
  font-size: 2.3rem;
}
.blogIndexHeader:before {
  animation: fadeInRight;
  animation-duration: 3s;
  background: #448cd2;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}
@media (min-width: 992px) {
  .blogIndexHeader:before {
    clip-path: polygon(57% 0, 100% 0, 100% 100%, 44% 100%);
  }
}
.blogIndexHeader:after {
  background: #0075c9;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -4;
}
.blogIndexHeader .inner-header {
  display: flex;
  min-height: 340px;
}
.blogIndexHeader .inner-header h1 {
  color: #fff;
  font-size: 6rem;
  line-height: 5.4rem;
}
@media (min-width: 768px) {
  .blogIndexHeader .inner-header h1 {
    font-size: 4.4rem;
    line-height: 5.4rem;
  }
}
.blogIndexHeader .inner-header body:not(.single-post) article ol,
.blogIndexHeader .inner-header body:not(.single-post) article ul,
.blogIndexHeader .inner-header p,
body:not(.single-post) article .blogIndexHeader .inner-header ol,
body:not(.single-post) article .blogIndexHeader .inner-header ul {
  color: #fff;
}
@media (max-width: 1199.98px) {
  .blogIndexHeader .inner-header {
    min-height: auto;
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
}
@media (max-width: 991.98px) {
  .blogIndexHeader {
    padding-top: 3.6rem;
  }
}
.categoryHeader {
  color: #fff;
}
.categoryHeader:before {
  animation: fadeInRight;
  animation-duration: 3s;
  background: #448cd2;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}
@media (min-width: 992px) {
  .categoryHeader:before {
    clip-path: polygon(57% 0, 100% 0, 100% 100%, 44% 100%);
  }
}
.categoryHeader:after {
  background: #0075c9;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -4;
}
.categoryHeader .inner-header {
  display: flex;
  min-height: 340px;
}
.categoryHeader .inner-header h1 {
  color: #fff;
  font-size: 3.2rem;
}
@media (max-width: 1199.98px) {
  .categoryHeader .inner-header {
    min-height: auto;
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
}
@keyframes animatedHomeHeaderBackground {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
header.header-homepage .inner-header {
  color: #fff !important;
  display: flex;
  min-height: 600px;
  padding-bottom: 25px;
  padding-top: 25px;
  position: relative;
  text-align: center;
}
header.header-homepage .inner-header .header_content {
  width: 100%;
}
header.header-homepage .inner-header h1 {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  header.header-homepage .inner-header h1 {
    font-size: 3.2rem;
  }
}
@media (min-width: 992px) {
  header.header-homepage .inner-header h1 {
    font-size: 5.2rem;
  }
}
body:not(.single-post) article header.header-homepage .inner-header ol,
body:not(.single-post) article header.header-homepage .inner-header ul,
header.header-homepage .inner-header body:not(.single-post) article ol,
header.header-homepage .inner-header body:not(.single-post) article ul,
header.header-homepage .inner-header p {
  font-size: 1.8rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  body:not(.single-post) article header.header-homepage .inner-header ol,
  body:not(.single-post) article header.header-homepage .inner-header ul,
  header.header-homepage .inner-header body:not(.single-post) article ol,
  header.header-homepage .inner-header body:not(.single-post) article ul,
  header.header-homepage .inner-header p {
    font-size: 2.2rem;
    font-size: 2.6rem;
    line-height: 3.4rem;
  }
}
header.header-homepage .inner-header a:not(.btn) {
  color: #b0f3ea;
  font-size: 2.4rem;
  line-height: 1.8;
  position: relative;
}
header.header-homepage .inner-header a:not(.btn):hover {
  color: #84ecde;
}
header.header-homepage .inner-header .hero_img {
  animation: animatedHomeHeaderBackground 1s linear forwards;
  animation-delay: 0.7s;
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  left: 0;
  margin-top: 380px;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media (min-width: 300px) {
  header.header-homepage .inner-header .hero_img {
    margin-top: 360px;
  }
}
@media (min-width: 370px) {
  header.header-homepage .inner-header .hero_img {
    margin-top: 260px;
  }
}
@media (min-width: 992px) {
  header.header-homepage .inner-header .hero_img {
    background-position: 100% 100%;
    background-size: contain;
    margin-top: 24px;
  }
  header.header-homepage .inner-header {
    align-items: center;
    min-height: 610px;
    padding-bottom: 30px;
    padding-top: 30px;
    text-align: left;
  }
  header.header-homepage .inner-header .header_content {
    width: 50%;
  }
}
header.header-homepage.bg-img:before {
  animation: fadeInRight;
  animation-duration: 1.5s;
  background: #35c0ce;
  content: "";
  height: 1210px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}
@media (min-width: 992px) {
  header.header-homepage.bg-img:before {
    clip-path: polygon(61% 0, 100% 0, 100% 100%, 32% 100%);
  }
}
@media (max-width: 991.98px) {
  header.header-homepage.bg-img:before {
    display: none;
  }
}
header.header-homepage.bg-img:after {
  background: #0075c9;
  content: "";
  height: 1210px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -4;
}
header.header-solid-image-1 {
  background: none no-repeat 90% bottom/524px;
  color: #fff;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  header.header-solid-image-1 {
    background-image: none !important;
  }
}
header.header-solid-image-1.bg-img:after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -4;
}
header.header-solid-image-1.bg-azure:before,
header.header-solid-image-1.bg-ink:before,
header.header-solid-image-1.bg-sky:before {
  background-color: rgba(255, 255, 255, 0.15);
}
header.header-solid-image-1.bg-azure:after {
  background-color: #0075c9;
}
header.header-solid-image-1.bg-ink:after {
  background-color: #0c4968;
}
header.header-solid-image-1.bg-sky:after {
  background-color: #c3ebff;
}
header.header-solid-image-1 .inner-header {
  display: flex;
  min-height: 480px;
}
header.header-solid-image-1 .inner-header .solidHeaderImgContainer {
  background-position: 50%;
  background-size: cover;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  z-index: -3;
}
@media (max-width: 991.98px) {
  header.header-solid-image-1 .inner-header .solidHeaderImgContainer {
    display: none;
  }
}
header.header-solid-image-1 .inner-header h1 {
  font-size: 3.2rem;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  header.header-solid-image-1 .inner-header h1 {
    font-size: 4.4rem;
    line-height: 5.4rem;
  }
}
header.header-solid-image-1 .inner-header h2 {
  font-size: 1.7rem;
  line-height: 2.4rem;
}
@media (min-width: 768px) {
  header.header-solid-image-1 .inner-header h2 {
    font-size: 2.6rem;
    line-height: 3.6rem;
  }
}
body:not(.single-post) article header.header-solid-image-1 .inner-header ol,
body:not(.single-post) article header.header-solid-image-1 .inner-header ul,
header.header-solid-image-1 .inner-header body:not(.single-post) article ol,
header.header-solid-image-1 .inner-header body:not(.single-post) article ul,
header.header-solid-image-1 .inner-header p {
  font-size: 2.2rem;
  line-height: 3.4rem;
}
header.header-solid-image-1 .inner-header a {
  color: #b0f3ea;
}
header.header-solid-image-1 .inner-header a:hover {
  color: #84ecde;
}
@media (max-width: 1199.98px) {
  header.header-solid-image-1 .inner-header {
    min-height: auto;
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
}
header.header-primary {
  background-clip: border-box;
  background-color: transparent;
  background-image: none;
  background-origin: padding-box;
  background-position-x: 90%;
  background-position-y: 100%;
  background-repeat: no-repeat;
  background-size: 548px;
  color: #fff;
  overflow: hidden;
  position: relative;
}
header.header-primary .hero_img {
  animation: animatedHomeHeaderBackground 1s linear forwards;
  animation-delay: 0.7s;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  left: 0;
  margin-top: 140px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media (min-width: 992px) {
  header.header-primary .hero_img {
    background-position: 100% 100%;
    margin-top: 0;
  }
}
@media (max-width: 1199.98px) {
  header.header-primary {
    background-position-x: center;
  }
}
header.header-primary.bg-img .bg-img {
  animation: fadeInUp;
  animation-duration: 5s;
}
header.header-primary.bg-img:before {
  animation: fadeInRight;
  animation-duration: 3s;
  background: #448cd2;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}
@media (min-width: 992px) {
  header.header-primary.bg-img:before {
    clip-path: polygon(57% 0, 100% 0, 100% 100%, 44% 100%);
  }
}
@media (max-width: 991.98px) {
  header.header-primary.bg-img:before {
    height: auto;
  }
}
header.header-primary.bg-img:after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -4;
}
@media (max-width: 991.98px) {
  header.header-primary.bg-img:after {
    height: 1000px;
  }
}
header.header-primary.bg-azure:before,
header.header-primary.bg-ink:before,
header.header-primary.bg-sky:before {
  background-color: rgba(255, 255, 255, 0.15);
}
header.header-primary.bg-azure:after {
  background-color: #0075c9;
}
header.header-primary.bg-ink:after {
  background-color: #0c4968;
}
header.header-primary.bg-sky:after {
  background-color: #c3ebff;
}
header.header-primary.hero_left {
  background-position: 80% 100%;
}
header.header-primary.hero_lg {
  background-size: 625px;
}
header.header-primary .inner-header {
  align-items: stretch;
  display: flex;
  justify-content: flex-start;
  min-height: 480px;
  position: relative;
}
@media (min-width: 992px) {
  header.header-primary .inner-header {
    align-items: center;
  }
}
header.header-primary .inner-header .header_content {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 12px;
  padding-top: 0;
  text-align: center;
  width: 100%;
}
@media (min-width: 992px) {
  header.header-primary .inner-header .header_content {
    display: block;
    flex: 0 0 48%;
    padding-bottom: 48px;
    padding-top: 48px;
    text-align: left;
    width: 48%;
  }
}
header.header-primary .inner-header .header_content h1 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 768px) {
  header.header-primary .inner-header .header_content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
  }
}
@media (min-width: 992px) {
  header.header-primary .inner-header .header_content h1 {
    font-size: 4.2rem;
  }
}
header.header-primary .inner-header .header_content h2 {
  display: none;
  font-size: 2.2rem;
  line-height: 3.4rem;
  margin-top: 20px;
}
@media (min-width: 992px) {
  header.header-primary .inner-header .header_content h2 {
    display: block;
  }
}
header.header-primary .inner-header .header_content .btn-row {
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
}
@media (min-width: 992px) {
  header.header-primary .inner-header .header_content .btn-row {
    justify-content: flex-start;
  }
}
@media (max-width: 1199.98px) {
  header.header-primary .inner-header {
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
  header.download-app .hero_img {
    display: none;
  }
}
@media (min-width: 992px) {
  header.header-primary.__no_hero_img .inner-header .header_content {
    display: block;
    flex: 0 0 70%;
    width: 70%;
  }
  header.header-primary.__no_hero_img .inner-header .header_content h1 {
    font-size: 4.6rem;
  }
  header.header-primary.__no_hero_img .inner-header .header_content h2 {
    font-size: 2.6rem;
  }
}
header.header-primary.__no_hero_img .inner-header .hero_img {
  display: none;
}
@media (min-width: 992px) {
  header.header-primary.__no_hero_img.bg-img:before {
    clip-path: polygon(88% 0, 100% 0, 100% 100%, 70% 100%);
  }
}
header .btn_text_override {
  border: none;
  border-radius: 0;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 0;
}
header .btn_text_override,
header .btn_text_override:hover {
  background-color: transparent;
}
.sticky_ctas {
  background-color: #fff;
  border-top: 3px solid #f78d28;
  bottom: 0;
  left: 0;
  max-width: 100vw;
  padding: 16px 8px;
  position: fixed;
  right: 0;
  transform: translateY(120%);
  transition: transform 0.3s ease-in-out;
  width: 100%;
  z-index: 3;
}
.sticky_ctas.active {
  transform: translateY(0);
}
.sticky_ctas .btn_wrap {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .sticky_ctas .btn_wrap {
    gap: 48px;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .sticky_ctas .btn_wrap {
    gap: 120px;
    justify-content: center;
  }
}
.sticky_ctas .btn_wrap .btn {
  flex: 1 1 47%;
  padding: 8px 0;
}
@media (min-width: 576px) {
  .sticky_ctas .btn_wrap .btn {
    flex: 0 0 auto;
    padding: 8px 32px;
  }
  .sticky_ctas {
    display: none;
  }
  .sticky_ctas.__desktop {
    display: block;
  }
}
.single-post-header {
  color: #fff;
  margin-bottom: 4rem;
}
.single-post-header:before {
  animation: fadeInRight;
  animation-duration: 3s;
  background: #448cd2;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}
@media (min-width: 992px) {
  .single-post-header:before {
    clip-path: polygon(57% 0, 100% 0, 100% 100%, 44% 100%);
  }
}
.single-post-header:after {
  background: #0075c9;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -4;
}
.single-post-header .inner-header {
  display: flex;
  min-height: 480px;
}
.single-post-header .inner-header h1 {
  color: #fff;
  font-size: 3.2rem;
}
@media (min-width: 768px) {
  .single-post-header .inner-header h1 {
    font-size: 4.4rem;
    line-height: 5.4rem;
  }
}
.single-post-header .inner-header body:not(.single-post) article ol,
.single-post-header .inner-header body:not(.single-post) article ul,
.single-post-header .inner-header p,
body:not(.single-post) article .single-post-header .inner-header ol,
body:not(.single-post) article .single-post-header .inner-header ul {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .single-post-header .inner-header body:not(.single-post) article ol,
  .single-post-header .inner-header body:not(.single-post) article ul,
  .single-post-header .inner-header p,
  body:not(.single-post) article .single-post-header .inner-header ol,
  body:not(.single-post) article .single-post-header .inner-header ul {
    font-size: 2.2rem;
    line-height: 3.4rem;
  }
}
@media (max-width: 1199.98px) {
  .single-post-header .inner-header {
    min-height: auto;
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
}
.single-post-header .postDetails .cat-links,
.single-post-header .postDetails .date {
  display: inline-block;
}
.single-post-header .postDetails .cat-links li {
  display: inline;
}
.single-post-header .postDetails .cat-links li a {
  color: #fff;
  text-decoration: none;
}
header.header-secondary {
  background-image: none;
  background-origin: padding-box;
  background-position-x: 80%;
  background-position-y: 100%;
  background-repeat: no-repeat;
  background-size: 530px;
  color: #fff;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  header.header-secondary {
    background-image: none !important;
  }
}
header.header-secondary.bg-img .bg-img {
  animation: fadeInUp;
  animation-duration: 5s;
}
header.header-secondary.bg-img:before {
  animation: fadeInRight;
  animation-duration: 3s;
  background: #448cd2;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}
@media (min-width: 992px) {
  header.header-secondary.bg-img:before {
    clip-path: polygon(57% 0, 100% 0, 100% 100%, 44% 100%);
  }
}
@media (max-width: 991.98px) {
  header.header-secondary.bg-img:before {
    height: auto;
  }
}
header.header-secondary.bg-img:after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -4;
}
header.header-secondary.bg-azure:before,
header.header-secondary.bg-ink:before,
header.header-secondary.bg-sky:before {
  background-color: rgba(255, 255, 255, 0.15);
}
header.header-secondary.bg-azure:after {
  background-color: #0075c9;
}
header.header-secondary.bg-ink:after {
  background-color: #0c4968;
}
header.header-secondary.bg-sky:after {
  background-color: #c3ebff;
}
header.header-secondary .inner-header {
  display: flex;
  min-height: 480px;
}
header.header-secondary .inner-header h1 {
  font-size: 3.2rem;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  header.header-secondary .inner-header h1 {
    font-size: 4.4rem;
    line-height: 5.4rem;
  }
}
header.header-secondary .inner-header h2 {
  font-size: 1.7rem;
  line-height: 2.4rem;
}
@media (min-width: 768px) {
  header.header-secondary .inner-header h2 {
    font-size: 2.6rem;
    line-height: 3.6rem;
  }
}
body:not(.single-post) article header.header-secondary .inner-header ol.sub_title,
body:not(.single-post) article header.header-secondary .inner-header ul.sub_title,
header.header-secondary .inner-header body:not(.single-post) article ol.sub_title,
header.header-secondary .inner-header body:not(.single-post) article ul.sub_title,
header.header-secondary .inner-header p.sub_title {
  font-size: 1.6rem;
  line-height: 1.6;
  max-width: 480px;
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (min-width: 768px) {
  body:not(.single-post) article header.header-secondary .inner-header ol.sub_title,
  body:not(.single-post) article header.header-secondary .inner-header ul.sub_title,
  header.header-secondary .inner-header body:not(.single-post) article ol.sub_title,
  header.header-secondary .inner-header body:not(.single-post) article ul.sub_title,
  header.header-secondary .inner-header p.sub_title {
    font-size: 2.2rem;
    line-height: 3.4rem;
  }
}
header.header-secondary .inner-header a {
  color: #b0f3ea;
}
header.header-secondary .inner-header a:hover {
  color: #84ecde;
}
@media (max-width: 1199.98px) {
  header.header-secondary .inner-header {
    min-height: auto;
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
}
header.header-tertiary {
  background: none no-repeat 90% 80%/524px;
  color: #fff;
}
header.header-tertiary:before {
  animation: fadeInRight;
  animation-duration: 3s;
  background: #448cd2;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}
@media (min-width: 992px) {
  header.header-tertiary:before {
    clip-path: polygon(57% 0, 100% 0, 100% 100%, 44% 100%);
  }
}
@media (max-width: 991.98px) {
  header.header-tertiary:before {
    height: auto;
  }
}
header.header-tertiary:after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -4;
}
header.header-tertiary.bg-azure:before,
header.header-tertiary.bg-ink:before,
header.header-tertiary.bg-sky:before {
  background-color: rgba(255, 255, 255, 0.15);
}
header.header-tertiary.bg-azure:after {
  background-color: #0075c9;
}
header.header-tertiary.bg-ink:after {
  background-color: #0c4968;
}
header.header-tertiary.bg-sky:after {
  background-color: #c3ebff;
}
header.header-tertiary .inner-header {
  display: flex;
  min-height: 480px;
}
header.header-tertiary .inner-header h1 {
  font-size: 3.2rem;
  font-weight: 400;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  header.header-tertiary .inner-header h1 {
    font-size: 4.4rem;
    line-height: 5.4rem;
  }
}
header.header-tertiary .inner-header h2 {
  font-family:
    DM Sans,
    sans-serif;
  font-size: 1.7rem;
  line-height: 2.4rem;
  margin-bottom: 0;
  margin-top: 2px;
}
@media (min-width: 768px) {
  header.header-tertiary .inner-header h2 {
    font-size: 2.6rem;
    line-height: 3.6rem;
  }
}
body:not(.single-post) article header.header-tertiary .inner-header ol,
body:not(.single-post) article header.header-tertiary .inner-header ul,
header.header-tertiary .inner-header body:not(.single-post) article ol,
header.header-tertiary .inner-header body:not(.single-post) article ul,
header.header-tertiary .inner-header p {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  body:not(.single-post) article header.header-tertiary .inner-header ol,
  body:not(.single-post) article header.header-tertiary .inner-header ul,
  header.header-tertiary .inner-header body:not(.single-post) article ol,
  header.header-tertiary .inner-header body:not(.single-post) article ul,
  header.header-tertiary .inner-header p {
    font-size: 2.2rem;
    line-height: 3.4rem;
  }
}
header.header-tertiary .inner-header a {
  color: #b0f3ea;
}
header.header-tertiary .inner-header a:hover {
  color: #84ecde;
}
@media (max-width: 1199.98px) {
  header.header-tertiary .inner-header {
    min-height: auto;
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
  header.header-tertiary {
    background-image: none !important;
  }
}
@media (max-width: 991.98px) {
  header.header-tertiary {
    height: auto;
    overflow: hidden;
    padding: 4rem 0 3rem;
  }
}
.broker-enrollment-component.enrollment_sec {
  padding-bottom: 20px;
}
.broker-enrollment-component .top_content {
  margin-bottom: 48px;
  padding-bottom: 48px;
  position: relative;
}
.broker-enrollment-component .top_content:after {
  border-bottom: 3px solid #c3ebff;
  border-radius: 999px;
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 80%;
}
@media (min-width: 992px) {
  .broker-enrollment-component .top_content {
    margin-bottom: 0 !important;
  }
  .broker-enrollment-component .top_content:after {
    content: none;
  }
}
.broker-enrollment-component .quote_intro h4 {
  font-weight: 700;
}
.broker-enrollment-component .quote_intro body:not(.single-post) article ol,
.broker-enrollment-component .quote_intro body:not(.single-post) article ul,
.broker-enrollment-component .quote_intro p,
body:not(.single-post) article .broker-enrollment-component .quote_intro ol,
body:not(.single-post) article .broker-enrollment-component .quote_intro ul {
  font-size: 1.8rem;
}
.broker-enrollment-component form {
  padding: 0 8px;
}
.broker-enrollment-component form h4,
.broker-enrollment-component form h5 {
  color: #0075c9;
}
.broker-enrollment-component form input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
  border: 1px solid #000006;
  color: #000006;
  font-size: 1.6rem;
  padding: 2.4rem 1.3rem;
}
.broker-enrollment-component form label:not([class="form-check-label"]) {
  font-weight: 700;
}
.broker-enrollment-component form label.visuallyHidden {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.broker-enrollment-component form label.required:after {
  color: red;
  content: " *";
}
.broker-enrollment-component form input:focus:invalid,
.broker-enrollment-component form select:focus:invalid {
  border-color: red !important;
}
.broker-enrollment-component form input.checked:invalid,
.broker-enrollment-component form select.checked:invalid {
  border-color: red !important;
}
.broker-enrollment-component form .input-group-append .input-group-text,
.broker-enrollment-component form .input-group-prepend .input-group-text {
  background-color: #448cd2;
  color: #fff;
  width: 212px;
}
.broker-enrollment-component .broker_desktop {
  background-color: #c3ebff;
  padding: 80px 0;
}
.broker-enrollment-component .calcBox {
  background-color: #fff;
  box-shadow: 4px 4px 0 #0075c9;
  margin: 0 auto;
  max-width: 1200px;
  padding: 4rem;
}
@media (max-width: 991.98px) {
  .broker-enrollment-component .calcBox {
    padding: 3rem 4rem;
  }
}
.broker-enrollment-component .calcBox .main_price {
  font-size: 3rem;
  font-weight: 700;
}
.broker-enrollment-component .calcBox .rightCol h5 {
  font-size: 2.6rem;
}
.broker-enrollment-component .calcBox .leftCol .price-row .calc-prices {
  font-size: 2rem;
}
.broker-enrollment-component .calcBox .try-us {
  font-size: 3.2rem;
}
.ind_fam_enroll .tobacco_q {
  margin: 24px auto 0;
  max-width: 600px;
  text-align: center;
}
.ind_fam_enroll .tobacco_q label.check_box {
  padding-left: 0;
}
.ind_fam_enroll .tobacco_q label.check_box .label {
  font-weight: 700;
}
.ind_fam_enroll .tobacco_q label.check_box .checkmark {
  display: inline-block;
  left: auto;
  margin-right: 3px;
  position: relative;
  top: 6px;
  transform: none;
}
.ind_fam_enroll.enrollment_sec .price_bloc ul.price_list li {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .ind_fam_enroll.enrollment_sec .price_bloc ul.price_list li {
    display: block;
  }
}
.ind_fam_enroll.enrollment_sec .price_bloc ul.price_list li .value {
  display: inline-block;
  line-height: 1;
}
.ind_fam_enroll.enrollment_sec .price_bloc ul.price_list li label.check_box {
  margin: 0 auto;
  max-width: 130px;
}
.ind_fam_enroll.enrollment_sec .price_bloc ul.price_list li:first-child {
  margin-bottom: 0;
}
.ind_fam_enroll.enrollment_sec .price_bloc ul.price_list li:first-child label.check_box {
  max-width: 210px;
}
.ind_fam_enroll.enrollment_sec .price_bloc ul.price_list li:first-child .super {
  font-size: 1.6em;
  vertical-align: top;
}
.ind_fam_enroll.enrollment_sec .price_bloc ul.price_list li:first-child .value .price {
  font-size: 8rem;
}
.ind_fam_enroll.enrollment_sec .price_bloc ul.price_list li:last-child {
  margin-bottom: 0;
}
.ind_fam_enroll.enrollment_sec .divider {
  max-width: 80%;
}
@media (min-width: 768px) {
  .ind_fam_enroll.enrollment_sec .divider {
    max-width: 40%;
  }
}
.ind_fam_enroll .bus-pricing-component {
  margin-bottom: -64px;
  margin-top: 40px;
  padding: 48px 60px;
}
.ind_fam_enroll .bus-pricing-component .calcBox {
  margin-top: 0;
}
.ind_fam_enroll .bus-pricing-component .calcBox label.check_box {
  padding-left: 32px;
}
.ind_fam_enroll .bus-pricing-component .enroll_now_box {
  padding-top: 38px;
}
.ind_fam_enroll .bus-pricing-component .enroll_now_box .enroll_now_btn {
  margin-top: 0;
  padding-top: 38px;
}
.ind_fam_enroll.enrollment_sec_four_plans .bus-pricing-component .calcBox {
  max-width: none;
}
.ind_fam_enroll.enrollment_sec_four_plans .bus-pricing-component .bus_pricing_table td h4,
.ind_fam_enroll.enrollment_sec_four_plans .bus-pricing-component .bus_pricing_table th h3 {
  font-size: 1.4rem;
}
.bus-pricing-component {
  background-color: #c3ebff;
  padding: 6rem 0;
}
.bus-pricing-component .bus_plan_chooser {
  display: none;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
.bus-pricing-component .bus_plan_chooser > h3 {
  font-size: 2rem;
}
.bus-pricing-component .bus_plan_chooser .switch_field {
  width: 100%;
}
.bus-pricing-component .bus_plan_chooser .switch_field input:checked + .switch_field_slider {
  background-color: #4fb5ff;
}
.bus-pricing-component .bus_plan_chooser .switch_field_label {
  font-size: 1.4rem;
  font-weight: 700;
}
.bus-pricing-component .bus_plan_chooser .switch_field_slider {
  background-color: #0075c9;
}
@media (max-width: 991.98px) {
  .bus-pricing-component .bus_plan_chooser {
    display: block;
  }
}
.bus-pricing-component .calcBox {
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  max-width: 1200px;
  padding: 32px 60px;
}
@media (max-width: 991.98px) {
  .bus-pricing-component .calcBox {
    padding: 24px 40px;
  }
}
@media (max-width: 767.98px) {
  .bus-pricing-component .calcBox {
    padding: 24px 16px;
  }
}
.bus-pricing-component .bus_pricing_phcs {
  color: #000006;
  font-weight: 400;
}
.bus-pricing-component .bus_pricing_phcs img {
  max-height: 18px;
  vertical-align: baseline;
}
.bus-pricing-component .bus_pricing_table {
  border: 0 solid transparent;
  width: 100%;
}
.bus-pricing-component .bus_pricing_table th {
  vertical-align: bottom;
}
.bus-pricing-component .bus_pricing_table th:nth-child(n + 2) {
  text-align: center;
}
.bus-pricing-component .bus_pricing_table th h3 {
  font-size: 2rem;
  font-weight: 700;
}
.bus-pricing-component .bus_pricing_table thead tr {
  border-bottom: none;
  border-top: none;
}
.bus-pricing-component .bus_pricing_table th .bus_pricing_header {
  border-bottom: 12px solid #212529;
}
.bus-pricing-component .bus_pricing_table th .bus_pricing_header.bus_planinfo {
  border-color: #212529;
  margin-right: 6px;
}
.bus-pricing-component .bus_pricing_table th .bus_pricing_header.bus_header_edch {
  border-color: #0075c9;
  color: #0075c9;
  margin: 0 6px;
}
.bus-pricing-component .bus_pricing_table th .bus_pricing_header.bus_header_edc {
  border-color: #4fb5ff;
  color: #0075c9;
  margin-left: 6px;
}
.bus-pricing-component .bus_pricing_table td h3 {
  font-size: 2.2rem;
  font-weight: 700;
}
.bus-pricing-component .bus_pricing_table td h4,
.bus-pricing-component .bus_pricing_table td h5 {
  font-size: 1.8rem;
  font-weight: 700;
}
.bus-pricing-component .bus_pricing_table td body:not(.single-post) article ol,
.bus-pricing-component .bus_pricing_table td body:not(.single-post) article ul,
.bus-pricing-component .bus_pricing_table td p,
body:not(.single-post) article .bus-pricing-component .bus_pricing_table td ol,
body:not(.single-post) article .bus-pricing-component .bus_pricing_table td ul {
  margin-bottom: 0;
}
.bus-pricing-component .bus_pricing_table td:nth-child(n + 2) {
  text-align: center;
}
.bus-pricing-component .bus_pricing_table tr {
  border-bottom: 1px solid #ced4da;
  border-top: 1px solid #ced4da;
  height: 36px;
}
.bus-pricing-component .bus_pricing_table tr.bus_pricing_row {
  background-color: rgba(176, 243, 234, 0.2);
  border-bottom: none;
  border-top: none;
  height: 34px;
}
.bus-pricing-component .bus_pricing_table tr.bus_pricing_row_first {
  height: 38px;
}
.bus-pricing-component .bus_pricing_table tr.bus_pricing_cta_row {
  border-bottom: none;
  border-top: none;
}
.bus-pricing-component .bus_pricing_table tr.bus_pricing_cta_row .bus_pricing_cta {
  padding-top: 12px;
}
.bus-pricing-component .bus_pricing_table tr.bus_pricing_cta_row .bus_pricing_cta .plan_title {
  align-items: center;
  display: flex;
  justify-content: center;
  line-height: 1.2;
  min-height: 52px;
}
.bus-pricing-component .bus_pricing_table td.bus_table_span_bg {
  background-clip: padding-box;
  background-color: #f8f9fa;
}
.bus-pricing-component .bus_pricing_table td .bus_pricing_cell {
  padding: 16px 0;
}
.bus-pricing-component .bus_pricing_table td .bus_pricing_cell .bus_cell_label {
  display: none;
}
.bus-pricing-component .bus_pricing_table td .bus_pricing_cell.bus_cell_sm {
  padding: 8px 0;
}
.bus-pricing-component .bus_pricing_table td .bus_pricing_cell.bus_cell_price {
  padding: 0;
}
.bus-pricing-component .bus_pricing_table td .bus_pricing_cell.bus_cell_price label.check_box {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100px;
  text-align: left;
  width: 100%;
}
.bus-pricing-component .bus_pricing_table td .bus_pricing_cell a .arrow_right_icon {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.1s ease-in-out;
  vertical-align: middle;
  width: 16px;
}
.bus-pricing-component .bus_pricing_table td .bus_pricing_cell a:hover .arrow_right_icon {
  transform: translateX(6px);
}
.bus-pricing-component .bus_pricing_table td .bus_pricing_cell .benefitSummaryBtn {
  font-size: 2rem;
}
.bus-pricing-component .bus_pricing_table td .bus_pricing_cell .co_pays {
  font-size: 1.3rem;
  white-space: nowrap;
}
.bus-pricing-component .bus_pricing_table td:first-child .bus_pricing_cell {
  padding-right: 16px;
}
.bus-pricing-component .bus_pricing_table .bus_mobile_only {
  display: none;
}
.bus-pricing-component .bus_pricing_table td,
.bus-pricing-component .bus_pricing_table th {
  animation-duration: 1.2s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}
@media (max-width: 991.98px) {
  .bus-pricing-component .bus_pricing_table.bus_show_1st td:nth-child(3),
  .bus-pricing-component .bus_pricing_table.bus_show_1st th:nth-child(3),
  .bus-pricing-component .bus_pricing_table.bus_show_2nd td:nth-child(2),
  .bus-pricing-component .bus_pricing_table.bus_show_2nd th:nth-child(2),
  .bus-pricing-component .bus_pricing_table td:first-child,
  .bus-pricing-component .bus_pricing_table th:first-child {
    display: none;
  }
  .bus-pricing-component .bus_pricing_table td .bus_pricing_cell {
    margin: 0 auto;
    max-width: 340px;
  }
  .bus-pricing-component .bus_pricing_table td .bus_pricing_cell h3,
  .bus-pricing-component .bus_pricing_table td .bus_pricing_cell h4,
  .bus-pricing-component .bus_pricing_table td .bus_pricing_cell h5 {
    font-size: 1.6rem;
  }
  .bus-pricing-component .bus_pricing_table td .bus_pricing_cell body:not(.single-post) article ol,
  .bus-pricing-component .bus_pricing_table td .bus_pricing_cell body:not(.single-post) article ul,
  .bus-pricing-component .bus_pricing_table td .bus_pricing_cell p,
  body:not(.single-post) article .bus-pricing-component .bus_pricing_table td .bus_pricing_cell ol,
  body:not(.single-post) article .bus-pricing-component .bus_pricing_table td .bus_pricing_cell ul {
    font-size: 1.4rem;
  }
  .bus-pricing-component .bus_pricing_table td .bus_pricing_cell .bus_cell_label {
    display: block;
  }
  .bus-pricing-component .bus_pricing_table td .bus_pricing_cell.bus_cell_price h4 {
    font-size: 1.8rem;
  }
  .bus-pricing-component .bus_pricing_table td .bus_pricing_cell.bus_cell_price body:not(.single-post) article ol,
  .bus-pricing-component .bus_pricing_table td .bus_pricing_cell.bus_cell_price body:not(.single-post) article ul,
  .bus-pricing-component .bus_pricing_table td .bus_pricing_cell.bus_cell_price p,
  body:not(.single-post) article .bus-pricing-component .bus_pricing_table td .bus_pricing_cell.bus_cell_price ol,
  body:not(.single-post) article .bus-pricing-component .bus_pricing_table td .bus_pricing_cell.bus_cell_price ul {
    font-size: 1.6rem;
  }
  .bus-pricing-component .bus_pricing_table tr.bus_pricing_row:first-child .bus_cell_price {
    padding-top: 8px;
  }
  .bus-pricing-component .bus_pricing_table tr.bus_pricing_row:last-child .bus_cell_price {
    padding-bottom: 8px;
  }
  .bus-pricing-component .bus_pricing_table .bus_mobile_only {
    display: inherit;
  }
  .bus-pricing-component .bus_pricing_table td:nth-child(n + 2) {
    display: block;
    text-align: center;
    width: 100%;
  }
  .bus-pricing-component .bus_pricing_table .bus_hide_mobile {
    display: none;
  }
}
.bus-pricing-component .bus_pricing_table .bullets {
  list-style-type: disc;
  margin-left: 16px;
}
.bus-pricing-component .bus_pricing_table .bullets li {
  list-style-type: disc;
}
.bus-pricing-component .bus_pricing_table .bus_cell_label .bullets {
  display: inline-block;
  text-align: left;
}
.bus-pricing-component .btn_space {
  margin-top: 48px;
}
.bus-pricing-component .bus_emp_title {
  color: #0c4968;
}
.bus-pricing-component .bus_emp_wrap .bus_emp_body {
  margin-bottom: 0;
}
.bus-pricing-component .bus_emp_wrap .bus_emp_control {
  margin-top: 24px;
}
.bus-pricing-component .bus_emp_wrap .bus_emp_footer {
  margin-top: 8px;
}
.bus-pricing-component .bus_managedby {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 767.98px) {
  .bus-pricing-component .bus_managedby {
    justify-content: center;
  }
}
.table_no_media {
  border: 0 solid transparent;
  width: 100%;
}
.table_no_media th {
  vertical-align: bottom;
}
.table_no_media th:nth-child(n + 2) {
  text-align: center;
}
.table_no_media th h3 {
  font-size: 2rem;
  font-weight: 700;
}
.table_no_media thead tr {
  border-bottom: none;
  border-top: none;
}
.table_no_media th .bus_pricing_header {
  border-bottom: 12px solid #212529;
}
.table_no_media th .bus_pricing_header.bus_planinfo {
  border-color: #212529;
  margin-right: 6px;
}
.table_no_media th .bus_pricing_header.bus_header_edch {
  border-color: #0075c9;
  color: #0075c9;
  margin: 0 6px;
}
.table_no_media th .bus_pricing_header.bus_header_edc {
  border-color: #4fb5ff;
  color: #0075c9;
  margin-left: 6px;
}
.table_no_media td h3 {
  font-size: 2.2rem;
  font-weight: 700;
}
.table_no_media td h4,
.table_no_media td h5 {
  font-size: 1.8rem;
  font-weight: 700;
}
.table_no_media td body:not(.single-post) article ol,
.table_no_media td body:not(.single-post) article ul,
.table_no_media td p,
body:not(.single-post) article .table_no_media td ol,
body:not(.single-post) article .table_no_media td ul {
  margin-bottom: 0;
}
.table_no_media td:nth-child(n + 2) {
  text-align: center;
}
.table_no_media tr {
  border-bottom: 1px solid #ced4da;
  border-top: 1px solid #ced4da;
  height: 36px;
}
.table_no_media tr.bus_pricing_row {
  background-color: rgba(176, 243, 234, 0.2);
  border-bottom: none;
  border-top: none;
  height: 34px;
}
.table_no_media tr.bus_pricing_row_first {
  height: 38px;
}
.table_no_media td.bus_table_span_bg {
  background-clip: padding-box;
  background-color: #f8f9fa;
}
.table_no_media td .bus_pricing_cell {
  padding: 16px 0;
}
.table_no_media td .bus_pricing_cell .bus_cell_label {
  display: none;
}
.table_no_media td .bus_pricing_cell.bus_cell_sm {
  padding: 8px 0;
}
.table_no_media td .bus_pricing_cell.bus_cell_price {
  padding: 0;
}
.table_no_media td .bus_pricing_cell.bus_cell_price label.check_box {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100px;
  text-align: left;
  width: 100%;
}
.table_no_media td .bus_pricing_cell a .arrow_right_icon {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.1s ease-in-out;
  vertical-align: middle;
  width: 16px;
}
.table_no_media td .bus_pricing_cell a:hover .arrow_right_icon {
  transform: translateX(6px);
}
.table_no_media td .bus_pricing_cell .co_pays {
  font-size: 1.3rem;
  white-space: nowrap;
}
.table_no_media td:first-child .bus_pricing_cell {
  padding-right: 16px;
}
.table_no_media .bus_mobile_only {
  display: none;
}
.table_no_media td,
.table_no_media th {
  animation-duration: 1.2s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}
.table_no_media .bullets {
  list-style-type: disc;
  margin-left: 16px;
}
.table_no_media .bullets li {
  list-style-type: disc;
}
.table_no_media .bus_cell_label .bullets {
  display: inline-block;
  text-align: left;
}
.disclaimer_sec {
  color: #53575b;
  margin-left: auto;
  margin-right: auto;
  max-width: 880px;
  padding: 32px;
}
.disclaimer_sec ul li {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.disclaimer_sec .disclaimer_key {
  align-self: flex-start;
  flex: 0 0 auto;
  font-weight: 700;
  margin-right: 8px;
  width: 8px;
}
.disclaimer_sec .disclaimer_value {
  flex: 1 1 auto;
  font-size: 1.4rem;
}
.plan_banner {
  color: #53575b;
  margin-bottom: 24px;
}
.plan_banner h3,
.plan_banner h4 {
  font-weight: 700;
}
.plan_banner h4 {
  font-size: 2rem;
}
.plan_banner .newpath_logo {
  width: 120px;
}
@media (max-width: 991.98px) {
  .plan_banner {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .plan_banner h3 {
    font-size: 2.2rem;
  }
  .plan_banner h4 {
    font-size: 1.6rem;
  }
}
.check_icon {
  display: block;
  height: 26px;
  margin: 12px auto;
  width: 26px;
}
.super_script {
  cursor: pointer;
  display: inline-block;
  font-size: 0.7em;
  font-weight: 700;
  padding: 2px;
  vertical-align: super;
}
.super_script.extra {
  font-size: 0.8em;
}
.super_dollar {
  display: inline;
  font-size: 0.7em;
  vertical-align: super;
}
.blue_text {
  color: #0075c9;
}
.nowrap {
  white-space: nowrap;
}
body.body-less-20 .summary-more-20,
body.body-more-20 .summary-less-20 {
  display: none;
}
.notice_banner {
  background-color: #35c0ce;
  border-radius: 8px;
  color: #fff;
  min-width: 200px;
  padding: 16px;
}
.flex_top {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
  margin-left: -24px;
  margin-right: -24px;
}
@media (min-width: 768px) {
  .flex_top {
    justify-content: flex-start;
  }
}
@media (max-width: 767.98px) {
  .flex_top {
    margin-left: 0;
    margin-right: 0;
  }
}
.flex_top .item {
  flex: 0 0 auto;
  max-width: 100%;
  padding: 24px;
}
@media (max-width: 767.98px) {
  .flex_top .item {
    padding: 24px 0;
  }
}
.biz_enroll.enrollment_sec .enroll_now_btn a.btn {
  max-width: none;
}
.biz_enroll.enrollment_sec .btn_space {
  margin-top: 36px;
}
.biz_enroll .bus-pricing-component {
  margin-bottom: -64px;
  margin-top: 40px;
  padding: 48px 60px;
}
.enroll_modal_title {
  color: #0c4968;
  margin: 0 auto 16px;
  max-width: 720px;
}
.enroll_modal_text {
  margin: 16px auto;
  max-width: 500px;
}
.enroll_modal_btn_wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 auto;
}
.enroll_modal_btn_wrap .enroll_modal_btn {
  flex: 0 0 auto;
  margin-top: 16px;
}
@media (max-width: 767.98px) {
  .enroll_modal_btn_wrap {
    max-width: 140px;
  }
}
.enroll_now_box {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  padding: 24px 16px 0;
}
.enroll_now_box .enroll_now_planname {
  text-align: center;
}
.enroll_now_box .enroll_now_price {
  color: #0075c9;
  font-size: 6rem;
  font-weight: 700;
  text-align: center;
}
.enroll_now_box .enroll_now_price .price_unit {
  font-size: 1.6rem;
  font-weight: 400;
}
.enroll_now_box .enroll_now_checkbox {
  align-items: center;
  display: flex;
  justify-content: center;
}
.enroll_now_box .enroll_now_checkbox label.check_box {
  flex: 0 0 auto;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .enroll_now_box .enroll_now_checkbox label.check_box {
    max-width: 260px;
  }
}
.enroll_now_box .enroll_now_btn {
  padding: 16px 0;
  text-align: center;
}
.enroll_now_box .enroll_now_btn a {
  max-width: 380px;
  width: 100%;
}
.enroll_now_box .enroll_now_bottom {
  font-size: 1.8rem;
  text-align: center;
}
.enroll_now_box .enroll_now_note {
  font-size: 1.4rem;
}
.enrollment-block.canada-enrollment-component form .date-range,
.enrollment-block.canada-enrollment-component form .selectItems {
  margin-top: 3rem;
}
.enrollment-block.canada-enrollment-component form input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
  border: 1px solid #000006;
  color: #000006;
  font-size: 1.6rem;
  padding: 2.4rem 1.3rem;
}
.enrollment-block.canada-enrollment-component form label {
  font-weight: 700;
}
.enrollment-block.canada-enrollment-component .totalDaysBlock {
  text-align: right;
}
@media (max-width: 991.98px) {
  .enrollment-block.canada-enrollment-component .addDatesBlock,
  .enrollment-block.canada-enrollment-component .totalDaysBlock {
    text-align: center;
  }
}
.enrollment-block.canada-enrollment-component .totalDaysBlock #totalDays {
  color: #00725d;
  font-size: 2rem;
  font-weight: 700;
}
.enrollment-block.canada-enrollment-component .addedDateList .removableDateRange {
  background-color: rgba(176, 243, 234, 0.2);
  border: 1px solid #ccc;
  padding: 8px 24px;
}
.enrollment-block.canada-enrollment-component .addedDateList .removableDateRange .rangeRemove {
  padding: 2px 11px;
}
.enrollment-block.canada-enrollment-component .errorAlert {
  color: #e40037;
  display: none;
  text-align: center;
}
.enrollment_sec {
  padding-bottom: 64px;
  padding-top: 64px;
}
.enrollment_sec .top_content {
  margin-bottom: 48px;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  text-align: center;
}
.enrollment_sec .top_content .title {
  color: #0075c9;
  font-size: 2.6rem;
  font-weight: 700;
}
@media (min-width: 992px) {
  .enrollment_sec .top_content .title {
    font-size: 3.4rem;
  }
}
.enrollment_sec .top_content .sub_title {
  font-size: 1.8rem;
}
@media (min-width: 992px) {
  .enrollment_sec .top_content .sub_title {
    font-size: 2rem;
  }
}
.enrollment_sec .top_content .content {
  display: none;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .enrollment_sec .top_content .content {
    display: block;
  }
}
.enrollment_sec .select_note {
  font-size: 1.4rem;
  margin: 24px auto 0;
  max-width: 290px;
  text-align: center;
}
@media (min-width: 768px) {
  .enrollment_sec .select_note {
    max-width: none;
  }
}
.enrollment_sec .command_center {
  text-align: center;
}
.enrollment_sec .select_controls {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .enrollment_sec .select_controls {
    flex-wrap: nowrap;
  }
}
.enrollment_sec .select_controls .controller {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .enrollment_sec .select_controls .controller {
    width: auto;
  }
}
.enrollment_sec .select_controls .controller .btn_state {
  background: none;
  background-color: #fff;
  border: 3px solid #0075c9;
  border-radius: 999px;
  color: #3c3c3c;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 400px;
  min-height: 58px;
  padding: 0 16px;
  transition: background-color 0.3s ease-in-out;
  width: 100%;
}
.enrollment_sec .select_controls .controller .btn_state.__selected {
  background-color: #c3ebff;
}
.enrollment_sec .select_controls .controller .btn_state.__short {
  max-width: 200px;
  width: 100%;
}
.enrollment_sec .select_controls .controller .btn_state.__wide {
  max-width: 290px;
  width: 100%;
}
@media (min-width: 768px) {
  .enrollment_sec .select_controls .controller .btn_state.__short {
    max-width: 200px;
    width: auto;
  }
  .enrollment_sec .select_controls .controller .btn_state.__wide {
    max-width: 280px;
    width: auto;
  }
}
.enrollment_sec .select_controls .controller .btn_state.__bottom {
  padding-bottom: 4px;
}
.enrollment_sec .select_controls .controller body:not(.single-post) article ol,
.enrollment_sec .select_controls .controller body:not(.single-post) article ul,
.enrollment_sec .select_controls .controller p,
body:not(.single-post) article .enrollment_sec .select_controls .controller ol,
body:not(.single-post) article .enrollment_sec .select_controls .controller ul {
  font-size: 1.3rem;
  margin: 12px auto 0;
  max-width: 230px;
  text-align: center;
}
.enrollment_sec .select_controls.__alt_mint .controller .btn_state {
  border-color: #3c3c3c;
}
.enrollment_sec .select_controls.__alt_mint .controller .btn_state.__selected {
  background-color: #b0f3ea;
}
.enrollment_sec .price_container {
  margin-top: 48px;
}
.enrollment_sec .price_container .edc_hosp_plan,
.enrollment_sec .price_container .edc_plan {
  animation-duration: 1.2s;
  animation-fill-mode: both;
  animation-name: fadeIn;
  display: none;
}
.enrollment_sec .price_container.__show_edc .edc_plan {
  display: block;
}
.enrollment_sec .price_container.__show_edc .edc_hosp_plan,
.enrollment_sec .price_container.__show_edc_hosp .edc_plan {
  display: none;
}
.enrollment_sec .price_container.__show_edc_hosp .edc_hosp_plan {
  display: block;
}
.enrollment_sec .price_bloc {
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .enrollment_sec .price_bloc {
    margin-bottom: 0;
  }
}
.enrollment_sec .price_bloc .plan_name {
  font-size: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .enrollment_sec .price_bloc .plan_name {
    font-size: 3.4rem;
  }
}
.enrollment_sec .price_bloc .plan_base_price {
  font-size: 2.2rem;
  margin-bottom: 48px;
  margin-top: 24px;
  text-align: center;
}
.enrollment_sec .price_bloc .plan_base_price .price {
  color: #0075c9;
  font-size: 4rem;
  font-weight: 700;
}
.enrollment_sec .price_bloc .plan_base_price .sign {
  vertical-align: super;
}
.enrollment_sec .price_bloc .plan_base_price .main_price {
  font-family: DM Sans;
  font-size: 8rem;
}
.enrollment_sec .price_bloc .plan_base_price .unit {
  display: block;
}
@media (min-width: 768px) {
  .enrollment_sec .price_bloc .plan_base_price .unit {
    display: inline;
  }
}
.enrollment_sec .price_bloc ul.price_list {
  list-style: none;
  margin: 36px auto 0;
  max-width: 500px;
}
.enrollment_sec .price_bloc ul.price_list li {
  align-items: center;
  display: block;
  justify-content: space-between;
  text-align: center;
}
@media (min-width: 768px) {
  .enrollment_sec .price_bloc ul.price_list li {
    display: flex;
  }
}
.enrollment_sec .price_bloc ul.price_list li .label,
.enrollment_sec .price_bloc ul.price_list li .value {
  display: block;
  font-size: 2.2rem;
}
.enrollment_sec .price_bloc ul.price_list li .value .super {
  color: #0075c9;
  font-size: 0.7em;
  vertical-align: super;
}
.enrollment_sec .price_bloc ul.price_list li .value .price {
  color: #0075c9;
  font-size: 2.6rem;
  font-weight: 700;
}
.enrollment_sec .price_bloc ul.price_list li .value .unit {
  font-size: 2.8rem;
}
.enrollment_sec .enroll_now_btn {
  margin-top: 36px;
  text-align: center;
}
.enrollment_sec .enroll_now_btn body:not(.single-post) article ol,
.enrollment_sec .enroll_now_btn body:not(.single-post) article ul,
.enrollment_sec .enroll_now_btn p,
body:not(.single-post) article .enrollment_sec .enroll_now_btn ol,
body:not(.single-post) article .enrollment_sec .enroll_now_btn ul {
  font-size: 1.8rem;
  margin: 0 auto 12px;
  max-width: 300px;
}
@media (min-width: 576px) {
  .enrollment_sec .enroll_now_btn body:not(.single-post) article ol,
  .enrollment_sec .enroll_now_btn body:not(.single-post) article ul,
  .enrollment_sec .enroll_now_btn p,
  body:not(.single-post) article .enrollment_sec .enroll_now_btn ol,
  body:not(.single-post) article .enrollment_sec .enroll_now_btn ul {
    max-width: none;
  }
}
.enrollment_sec .enroll_now_btn a.btn {
  font-size: 2rem;
  max-width: 230px;
}
.enrollment_sec .enroll_now_btn_note {
  margin-bottom: 38px;
  text-align: center;
}
.enrollment_sec .enroll_now_btn_note a {
  color: inherit;
  font-weight: 400;
}
.enrollment_sec .divider {
  margin: 0 auto 24px;
  max-width: 80%;
  padding-bottom: 24px;
  position: relative;
  top: 1px;
}
.enrollment_sec .divider:after {
  border-bottom: 3px solid #0075c9;
  border-radius: 999px;
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}
.enrollment_sec .benefit_bloc {
  margin: 48px auto 24px;
  max-width: 720px;
}
.enrollment_sec .benefit_bloc .title {
  color: #0075c9;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.enrollment_sec .benefit_bloc .sub_title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.enrollment_sec .benefit_bloc .sub_title small {
  font-weight: 700;
}
.enrollment_sec .benefit_bloc .sub_sub_title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
}
.enrollment_sec .benefit_bloc .sub_note {
  font-size: 1.6rem;
  margin-bottom: 0;
}
.enrollment_sec .benefit_bloc .benefit_sec {
  margin-top: 24px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 24px;
  position: relative;
}
@media (min-width: 992px) {
  .enrollment_sec .benefit_bloc .benefit_sec {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.enrollment_sec .benefit_bloc .benefit_sec:after {
  border-bottom: 3px solid #0075c9;
  border-radius: 999px;
  content: "";
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
}
.enrollment_sec .benefit_bloc ul {
  margin-bottom: 18px;
}
.enrollment_sec .benefit_bloc ul li {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
}
.enrollment_sec .benefit_bloc ul li .item_bullet {
  margin-right: 4px;
}
@media (min-width: 992px) {
  .enrollment_sec .benefit_bloc ul li .item_bullet {
    margin-right: 12px;
  }
}
.enrollment_sec .benefit_bloc ul li .item_value {
  font-size: 1.8rem;
}
.enrollment_sec .benefit_bloc .benefit_links {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-around;
  margin: 36px auto 0;
  max-width: 364px;
}
.enrollment_sec .benefit_bloc .benefit_links a {
  flex: 1 1 auto;
}
.enrollment-block {
  background-color: #c3ebff;
  padding: 6rem 0;
}
.enrollment-block .topContent {
  text-align: center;
}
.enrollment-block .price {
  font-size: 6rem;
}
.enrollment-block form label.required:after {
  color: red;
  content: " *";
}
.enrollment-block form input:focus:invalid,
.enrollment-block form select:focus:invalid {
  border-color: red !important;
}
.enrollment-block form input.checked:invalid,
.enrollment-block form select.checked:invalid {
  border-color: red !important;
}
.enrollment-block .leftCol {
  border-right: 1px solid #f0f0f0;
  line-height: 1.8;
  padding-right: 4rem;
}
.enrollment-block .leftCol h4,
.enrollment-block .leftCol h5 {
  color: #0075c9;
}
@media (max-width: 991.98px) {
  .enrollment-block .leftCol {
    border-right: none;
    margin-bottom: 3rem;
    padding-right: 0;
  }
}
.enrollment-block .rightCol {
  padding-left: 4rem;
}
.enrollment-block .rightCol h5 {
  color: #0075c9;
}
.enrollment-block .rightCol body:not(.single-post) article ol,
.enrollment-block .rightCol body:not(.single-post) article ul,
.enrollment-block .rightCol p,
body:not(.single-post) article .enrollment-block .rightCol ol,
body:not(.single-post) article .enrollment-block .rightCol ul {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .enrollment-block .rightCol {
    padding-left: 0;
  }
}
.enrollment-block .waitLoader {
  display: none;
  text-align: center;
}
.enrollment-block .waitLoader .loader {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/loading-lines_da7aead2.gif);
  background-repeat: no-repeat;
  display: inline-block;
  height: 64px;
  width: 64px;
}
a.phcs {
  color: #212529;
  font-weight: 400;
}
a.phcs > img {
  float: right;
  max-height: 24px;
}
@media (max-width: 1268px) {
  a.phcs > img {
    display: block;
    float: none;
    margin-bottom: 1rem;
  }
}
.getQuoteTool {
  margin: 4rem 0;
}
.getQuoteTool .initialPricingContainer .initialPricingBox {
  border: none;
  font-family: Sora, sans-serif;
  margin-bottom: 3rem;
}
.getQuoteTool .initialPricingContainer .initialPricingBox .initialPrice,
.getQuoteTool .initialPricingContainer .initialPricingBox .priceText {
  color: #0075c9;
  font-size: 3rem;
  font-weight: 400;
  line-height: 4rem;
}
.getQuoteTool .initialPricingContainer .initialPricingBox .initialPrice {
  font-weight: 700;
}
.getQuoteTool #get_quote_btn {
  margin: 2rem 0 1rem;
}
.getQuoteTool .contributionForm .contributionLevelText {
  font-size: 2rem;
  margin: 0 0 15px;
}
.getQuoteTool .contributionForm .input-group-append .input-group-text,
.getQuoteTool .contributionForm .input-group-prepend .input-group-text {
  background-color: #448cd2;
  color: #fff;
  width: 212px;
}
.team_list_sec .title {
  color: #0c4968;
  text-align: center;
}
.team_list_sec .team_list_wrap {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 48px auto 0;
  max-width: 1260px;
}
.team_list_sec .team_list_wrap.__center {
  justify-content: center;
}
.team_list_sec .team_list_wrap .member {
  min-width: 200px;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .team_list_sec .team_list_wrap .member {
    width: 30%;
  }
}
.team_list_sec .team_list_wrap .member .img_space {
  background-color: #f0f0f0;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 999px;
  height: 140px;
  margin: 0 auto;
  width: 140px;
}
.team_list_sec .team_list_wrap .member .mem_name {
  color: #0c4968;
  font-size: 2.4rem;
  margin-top: 18px;
}
.team_list_sec .team_list_wrap .member .mem_title {
  color: #53575b;
  font-size: 1.6rem;
  margin-top: 0;
}
.team_list_sec .team_list_wrap .member .mem_link {
  margin-bottom: 0;
  margin-top: 0;
  word-break: break-all;
}
.quick_links_sec {
  background-color: #3bbdca;
  color: #fff;
  padding: 48px 0;
  text-align: center;
}
.quick_links_sec .small-width {
  color: #ffffffb8;
  font-size: 1.8rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 880px;
  padding-top: 1.6rem;
}
.quick_links_sec h2 {
  font-size: 3.2rem;
  font-weight: 700;
}
.quick_links_sec .cards {
  align-items: stretch;
  color: #0075c9;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0 auto;
  max-width: 880px;
  text-align: left;
}
.quick_links_sec .cards .acm-card {
  align-items: flex-start;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 12px;
  text-decoration: none;
  width: 425px;
}
.quick_links_sec .cards .acm-card .text-section {
  flex: 1 1 auto;
}
.quick_links_sec .cards .acm-card .icon-container {
  align-items: center;
  align-self: center;
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-end;
}
.quick_links_sec .cards .acm-card .icon-container .icon {
  align-items: center;
  background-color: #3bbdca;
  border-radius: 999px;
  display: flex;
  height: 28px;
  justify-content: center;
  min-width: 28px;
  transition: transform 0.3s ease-in-out;
}
.quick_links_sec .cards .acm-card .icon-container .icon .icon-text {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}
.quick_links_sec .cards .acm-card .icon-container .icon .icon-text svg {
  display: block;
}
.quick_links_sec .cards .acm-card:hover {
  text-decoration: none;
}
.quick_links_sec .cards .acm-card:hover .icon-container .icon {
  transform: translateX(6px);
}
.quick_links_sec .cards .acm-card h3 {
  font-size: 15px;
  font-weight: 700;
}
.quick_links_sec .cards .acm-card body:not(.single-post) article ol,
.quick_links_sec .cards .acm-card body:not(.single-post) article ul,
.quick_links_sec .cards .acm-card p,
body:not(.single-post) article .quick_links_sec .cards .acm-card ol,
body:not(.single-post) article .quick_links_sec .cards .acm-card ul {
  color: rgba(0, 0, 0, 0.636);
  font-size: 12px;
  margin-bottom: -1%;
}
@media (max-width: 767.98px) {
  .quick_links_sec .cards .acm-card {
    width: 100%;
  }
}
.text_img_halo {
  background-color: #ecedef;
  overflow: hidden;
}
.text_img_halo .inner_container {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: flex-start;
  margin: 0 auto;
}
.text_img_halo .inner_container .img_txt_column {
  width: 100%;
}
@media (min-width: 992px) {
  .text_img_halo .inner_container {
    flex-wrap: nowrap;
  }
  .text_img_halo .inner_container .img_txt_column {
    width: calc(60% - 48px);
  }
  .text_img_halo .inner_container .img_txt_column.img_side {
    width: calc(40% - 48px);
  }
}
.text_img_halo .inner_container .img_side {
  align-items: flex-end;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.text_img_halo .inner_container .img_side .inner_col {
  flex: 0 0 auto;
  position: relative;
  width: 100%;
}
.text_img_halo .inner_container .img_side .inner_col:after {
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 9999px;
  content: "";
  height: auto;
  left: 50%;
  position: absolute;
  top: 10%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}
@media (min-width: 576px) {
  .text_img_halo .inner_container .img_side .inner_col:after {
    width: 530px;
  }
}
.text_img_halo .inner_container .img_side .inner_col img {
  display: block;
  margin: 0 auto;
  max-width: 500px;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media (min-width: 992px) {
  .text_img_halo .inner_container .img_side {
    padding-top: 48px;
  }
}
.text_img_halo .inner_container .txt_side {
  align-items: center;
  display: flex;
  justify-content: center;
  padding-top: 48px;
  position: relative;
  text-align: center;
  z-index: 2;
}
@media (min-width: 992px) {
  .text_img_halo .inner_container .txt_side {
    padding-bottom: 48px;
    padding-right: 48px;
    text-align: left;
  }
}
.text_img_halo .inner_container .txt_side .inner_col {
  flex: 0 0 auto;
  width: 100%;
}
.text_img_halo .inner_container .txt_side .title_area {
  position: relative;
}
.text_img_halo .inner_container .txt_side .title_area .title {
  color: #0075c9;
  font-weight: 700;
}
.text_img_halo .inner_container .txt_side .sec_desc {
  font-size: 1.8rem;
  margin-top: 24px;
}
.text_img_halo .inner_container .txt_side .btn_wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
@media (min-width: 992px) {
  .text_img_halo .inner_container .txt_side .btn_wrap {
    justify-content: flex-start;
  }
}
.text_img_halo .inner_container .txt_side .btn_wrap a.btn {
  flex: 0 0 auto;
}
@media (min-width: 992px) {
  .text_img_halo .inner_container.__flipped .img_side {
    order: 1;
  }
  .text_img_halo .inner_container.__flipped .txt_side {
    order: 2;
    padding-left: 48px;
  }
}
.address_container {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: -16px;
  padding-bottom: 16px;
}
.address_container .address_box {
  flex: 0 0 auto;
  padding: 16px;
}
.address_container .address_box body:not(.single-post) article ol,
.address_container .address_box body:not(.single-post) article ul,
.address_container .address_box p,
body:not(.single-post) article .address_container .address_box ol,
body:not(.single-post) article .address_container .address_box ul {
  margin-bottom: 0;
}
.address_container .address_box .address_label {
  font-size: 2rem;
  font-weight: 700;
}
#wpadminbar {
  background: rgba(0, 0, 0, 0.6);
}
.alert-bar {
  background-color: rgba(228, 0, 55, 0.1);
  bottom: 0;
  position: fixed;
  transition: bottom 0.5s;
  width: 100%;
  z-index: 50;
}
.alert-bar.hide {
  bottom: -180px;
}
.alert-bar .holder {
  padding: 1rem 3.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .alert-bar .holder {
    padding: 1rem 6rem;
  }
}
.alert-bar body:not(.single-post) article ol,
.alert-bar body:not(.single-post) article ul,
.alert-bar p,
body:not(.single-post) article .alert-bar ol,
body:not(.single-post) article .alert-bar ul {
  margin-bottom: 0;
}
.alert-bar body:not(.single-post) article ol a,
.alert-bar body:not(.single-post) article ul a,
.alert-bar p a,
body:not(.single-post) article .alert-bar ol a,
body:not(.single-post) article .alert-bar ul a {
  text-decoration: underline;
}
.alert-bar .close {
  align-items: center;
  display: flex;
  justify-content: center;
  position: absolute;
  right: 1rem;
  top: 1.5rem;
}
.alert-bar .close,
.alert-bar body:not(.single-post) article ol,
.alert-bar body:not(.single-post) article ol a,
.alert-bar body:not(.single-post) article ul,
.alert-bar body:not(.single-post) article ul a,
.alert-bar p,
.alert-bar p a,
body:not(.single-post) article .alert-bar ol,
body:not(.single-post) article .alert-bar ol a,
body:not(.single-post) article .alert-bar ul,
body:not(.single-post) article .alert-bar ul a {
  color: #e40037;
}
.alert-bar .close:hover,
.alert-bar .close:not(:disabled):not(.disabled):focus,
.alert-bar .close:not(:disabled):not(.disabled):hover,
.alert-bar body:not(.single-post) article ol a:hover,
.alert-bar body:not(.single-post) article ul a:hover,
.alert-bar p a:hover,
body:not(.single-post) article .alert-bar ol a:hover,
body:not(.single-post) article .alert-bar ul a:hover {
  color: #b1002b;
  opacity: 1;
}
body.single-post article ul {
  margin-bottom: 3rem;
  padding-inline-start: 40px;
}
body.single-post article ul li {
  list-style-type: disc;
}
body.single-post article ol {
  margin-bottom: 3rem;
  padding-inline-start: 40px;
}
body.single-post article ol li {
  list-style: decimal;
}
body:not(.single-post) article h1,
body:not(.single-post) article h2,
body:not(.single-post) article h3,
body:not(.single-post) article h4,
body:not(.single-post) article h5,
body:not(.single-post) article h6,
body:not(.single-post) article ol,
body:not(.single-post) article p,
body:not(.single-post) article ul {
  margin-bottom: 1.92rem;
}
body:not(.single-post) article ul {
  padding-left: 2rem;
}
body:not(.single-post) article ul li {
  list-style-type: disc;
}
body:not(.single-post) article ol {
  counter-reset: my-awesome-counter;
  list-style: none;
  margin-top: 1.5rem;
  padding: 0;
}
body:not(.single-post) article ol li {
  counter-increment: my-awesome-counter;
  display: flex;
  font-weight: 700;
  padding-left: 6.3rem;
  position: relative;
}
@media (min-width: 768px) {
  body:not(.single-post) article ol li {
    padding-left: 9rem;
  }
}
body:not(.single-post) article ol li:not(:last-of-type) {
  margin-bottom: 3rem;
  min-height: 6.5rem;
}
@media (min-width: 768px) {
  body:not(.single-post) article ol li:not(:last-of-type) {
    margin-bottom: 4rem;
  }
}
body:not(.single-post) article ol li:before {
  align-items: center;
  background: #c3ebff;
  border-radius: 50%;
  color: #0c4968;
  content: counter(my-awesome-counter);
  display: flex;
  font-size: 3rem;
  height: 4.5rem;
  justify-content: center;
  left: 0;
  line-height: 5rem;
  margin: 0 2rem 2rem 0;
  position: absolute;
  text-align: center;
  top: -0.8rem;
  width: 4.5rem;
}
@media (min-width: 768px) {
  body:not(.single-post) article ol li:before {
    font-size: 4rem;
    height: 6.5rem;
    top: 0;
    width: 6.5rem;
  }
}
body:not(.single-post) article ol ol li:before {
  background: #de51ff;
}
body:not(.single-post) article ol ol li:before ol li:before {
  background: #ee9eff;
}
.article-offset-top {
  margin-top: 2.8rem;
}
@media (min-width: 992px) {
  .article-offset-top {
    margin-top: 0;
  }
}
.article-offset-btm {
  margin-bottom: 2.8rem;
}
@media (min-width: 992px) {
  .article-offset-btm {
    margin-bottom: 0;
  }
}
.article-offset-btm-sm {
  margin-bottom: 1.6rem;
}
@media (min-width: 992px) {
  .article-offset-btm-sm {
    margin-bottom: 0;
  }
}
.btn-big-yellow,
.btn-ghost,
.btn-ghost-w-arrow,
.btn-need-care,
.btn-primary,
.btn-secondary,
.btn-secondary-header,
.btn-sub-blue {
  border: none;
  border-radius: 2em;
  font-family: Sora, sans-serif;
  font-size: 1.4rem;
  line-height: 2.4rem;
  overflow: hidden;
  padding: 8px 32px;
  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;
}
.btn-big-yellow.focus,
.btn-big-yellow:focus,
.btn-ghost-w-arrow.focus,
.btn-ghost-w-arrow:focus,
.btn-ghost.focus,
.btn-ghost:focus,
.btn-need-care.focus,
.btn-need-care:focus,
.btn-primary.focus,
.btn-primary:focus,
.btn-secondary-header.focus,
.btn-secondary-header:focus,
.btn-secondary.focus,
.btn-secondary:focus,
.btn-sub-blue.focus,
.btn-sub-blue:focus {
  box-shadow: none;
}
.btn-big-yellow:disabled,
.btn-ghost-w-arrow:disabled,
.btn-ghost:disabled,
.btn-need-care:disabled,
.btn-primary:disabled,
.btn-secondary-header:disabled,
.btn-secondary:disabled,
.btn-sub-blue:disabled {
  cursor: not-allowed;
}
.btn-big-yellow.__lg,
.btn-ghost-w-arrow.__lg,
.btn-ghost.__lg,
.btn-need-care.__lg,
.btn-primary.__lg,
.btn-secondary-header.__lg,
.btn-secondary.__lg,
.btn-sub-blue.__lg {
  font-size: 2rem;
  padding: 16px 48px;
}
.btn-big-yellow.__fixed_md,
.btn-big-yellow.__fixed_md_mobile,
.btn-ghost-w-arrow.__fixed_md,
.btn-ghost-w-arrow.__fixed_md_mobile,
.btn-ghost.__fixed_md,
.btn-ghost.__fixed_md_mobile,
.btn-need-care.__fixed_md,
.btn-need-care.__fixed_md_mobile,
.btn-primary.__fixed_md,
.btn-primary.__fixed_md_mobile,
.btn-secondary-header.__fixed_md,
.btn-secondary-header.__fixed_md_mobile,
.btn-secondary.__fixed_md,
.btn-secondary.__fixed_md_mobile,
.btn-sub-blue.__fixed_md,
.btn-sub-blue.__fixed_md_mobile {
  width: 250px;
}
@media (min-width: 768px) {
  .btn-big-yellow.__fixed_md_mobile,
  .btn-ghost-w-arrow.__fixed_md_mobile,
  .btn-ghost.__fixed_md_mobile,
  .btn-need-care.__fixed_md_mobile,
  .btn-primary.__fixed_md_mobile,
  .btn-secondary-header.__fixed_md_mobile,
  .btn-secondary.__fixed_md_mobile,
  .btn-sub-blue.__fixed_md_mobile {
    width: auto;
  }
}
.btn-primary {
  background-color: #f78d28;
  border: 3px solid #f78d28;
  color: #fff !important;
  font-size: 1.6rem;
  font-weight: 700;
}
.btn-primary:focus,
.btn-primary:hover {
  background-color: #e47308;
  border-color: #e47308;
}
.btn-sub-blue {
  background-color: #c3ebff;
  border: 3px solid #c3ebff;
  color: #2175c9 !important;
  font-size: 1.6rem;
  font-weight: 700;
}
.btn-sub-blue:focus,
.btn-sub-blue:hover {
  background-color: #aae3ff;
  border-color: #aae3ff;
}
.btn-big-yellow,
.btn-need-care {
  background-color: #ffc40c;
  border: 2px solid #ffc40c;
}
.btn-big-yellow {
  font-size: 2rem;
  font-weight: 700;
  padding: 1.3rem 6rem;
}
.btn-big-yellow:hover {
  background-color: #ffd03f;
}
.btn-secondary-header {
  border: 2px solid #212529;
  color: #212529 !important;
}
.btn-ghost,
.btn-secondary-header {
  background-color: #fff;
  font-weight: 700;
}
.btn-ghost {
  border: 3px solid #f78d28;
  color: #f78d28 !important;
  font-size: 1.6rem;
  padding: 8px 32px;
}
.btn-ghost:hover {
  background-color: #fff;
  color: #3c3c3c !important;
}
.btn-white {
  background-color: #fff;
  border: 2px solid #3c3c3c;
  font-weight: 700;
  padding: 8px 20px;
}
.btn-white:focus {
  box-shadow: none !important;
  outline: 2px solid rgba(90, 90, 90, 0.5) !important;
}
.btn-mint {
  background-color: #b0f3ea;
  border: 2px solid #3c3c3c;
  font-weight: 700;
  padding: 8px 20px;
}
.btn-mint:focus {
  box-shadow: none !important;
  outline: 2px solid rgba(90, 90, 90, 0.5) !important;
}
.btn-ghost-w-arrow {
  border-radius: 0;
  font-family:
    DM Sans,
    sans-serif;
  padding-left: 0;
  position: relative;
  text-align: left;
  text-decoration: underline;
}
.btn-ghost-w-arrow.azure {
  color: #0075c9;
  font-size: 2rem;
}
.btn-ghost-w-arrow.azure:after {
  content: "»";
  height: 16px;
  padding-left: 10px;
  text-decoration: none;
}
.btn-ghost-w-arrow.mint {
  color: #b0f3ea;
  font-size: 2rem;
}
.btn-ghost-w-arrow.mint:after {
  content: "»";
  height: 16px;
  position: absolute;
  right: 4px;
}
.btn-ghost-w-arrow.viridian {
  color: #00725d;
  font-size: 2rem;
}
.btn-ghost-w-arrow.viridian:after,
.btn-ghost-w-arrow:after {
  content: "»";
  height: 16px;
  position: absolute;
  right: 4px;
}
.btn-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.btn-row .btn {
  margin-right: 1rem;
}
.btn-row.btn-row-stacked {
  margin-top: 3rem;
}
.btn-row.btn-row-stacked > div {
  width: 100%;
}
@media (min-width: 992px) {
  .btn-row.btn-row-stacked > div {
    text-align: center;
  }
  .btn-row.btn-row-stacked > div:not(:last-of-type) {
    margin-right: 0;
    text-align: center;
  }
}
.btn-row.btn-row-stacked > div:last-of-type {
  margin-bottom: 0;
}
.btn-row.btn-row-inline.justify-content-center > div {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
@media (min-width: 992px) {
  .btn-row.btn-row-inline.justify-content-start > div {
    margin-bottom: 0;
  }
}
.btn-row.btn-row-inline.justify-content-start > div:not(:last-of-type) {
  margin-right: 2.5rem;
}
.btn-row > div {
  margin-bottom: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .btn-row > div {
    width: auto;
  }
}
.btn_space {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.btn_space.center_inline {
  justify-content: center;
}
.btn_space.center_stack {
  flex-direction: column;
  justify-content: center;
}
.btn_txt {
  border: none;
  color: #0075c9;
  display: inline;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  text-decoration: underline;
}
.btn_txt,
.btn_txt:hover {
  background-color: transparent;
}
.btn_txt:hover {
  color: #00487d;
  text-decoration: none;
}
.container {
  padding-left: 1.4rem;
  padding-right: 1.4rem;
}
@media (min-width: 576px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
html {
  scroll-behavior: smooth;
}
body {
  text-wrap: balance;
  overflow-x: hidden;
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
section {
  position: relative;
  width: 100%;
}
a {
  text-decoration: underline;
}
a.anchor {
  height: 0;
  position: absolute;
  top: -40px;
  width: 0;
  z-index: -100;
}
@media (min-width: 992px) {
  a.anchor {
    top: -120px;
  }
}
blockquote {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/quote_f2c4b33f.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 3.4rem;
  padding-left: 5rem;
}
blockquote body:not(.single-post) article ol,
blockquote body:not(.single-post) article ul,
blockquote p,
body:not(.single-post) article blockquote ol,
body:not(.single-post) article blockquote ul {
  color: #0c4968;
  font-size: 1.7rem;
  line-height: 2.4rem;
}
.card {
  background-color: #fff;
}
.close {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.6rem;
  opacity: 1;
  text-shadow: none;
}
.close:hover {
  cursor: pointer;
}
.close span {
  text-decoration: underline;
}
.container.col-blocks {
  margin-bottom: -5rem;
}
.container.col-blocks .block {
  margin-bottom: 5rem;
}
.container.col-blocks .block body:not(.single-post) article ol:last-of-type,
.container.col-blocks .block body:not(.single-post) article ul:last-of-type,
.container.col-blocks .block p:last-of-type,
body:not(.single-post) article .container.col-blocks .block ol:last-of-type,
body:not(.single-post) article .container.col-blocks .block ul:last-of-type {
  margin-bottom: 0;
}
.pagination-next-prev {
  justify-content: center;
  margin-bottom: 6rem;
  text-align: center;
}
.slick-slider {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -khtml-user-select: none;
}
.slick-list,
.slick-slider {
  display: block;
  position: relative;
}
.slick-list {
  margin: 0;
  overflow: hidden;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}
.slick-track {
  display: block;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 0;
}
.slick-track:after,
.slick-track:before {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  border: 1px solid transparent;
  display: block;
  height: auto;
}
.slick-arrow.slick-hidden {
  display: none;
}
form .form-control {
  background-color: #fff;
  border: 1px solid #000006;
  color: #000006;
  font-family:
    DM Sans,
    sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  height: 4.9rem;
  position: relative;
  text-align: left;
  width: 100%;
}
form .form-radio .form-radio-label {
  cursor: pointer;
  margin-left: 23px;
  position: relative;
}
form .form-radio .form-radio-label .radioBtn {
  border: 1px solid #000;
  border-radius: 50%;
  display: inline-block;
  height: 18px;
  left: -23px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
}
form .form-radio .form-radio-label .radioBtn:after {
  background-color: #45bead;
  border-radius: 999px;
  content: "";
  display: block;
  height: 8px;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  width: 8px;
}
form .form-radio .form-radio-input:checked + .form-radio-label .radioBtn:after {
  opacity: 1;
}
form .form-radio .form-radio-input {
  display: none;
}
form .form-radio.alt .form-radio-label .radioBtn {
  background-color: #fff;
  border-color: #fff;
  height: 16px;
  width: 16px;
}
form .form-check {
  padding-left: 0;
}
form .form-check .form-check-label {
  cursor: pointer;
  margin-left: 10px;
  position: relative;
}
form .form-check .form-check-label .checkbox {
  border: 1px solid #000;
  border-radius: 12%;
  display: inline-block;
  height: 1.7rem;
  left: -23px;
  position: absolute;
  top: 5px;
  width: 1.7rem;
}
form .form-check .form-check-label .checkbox:after {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/checked_9bdc79a0.jpg);
  background-repeat: no-repeat;
  background-size: 1.7rem;
  content: "";
  height: 1.7rem;
  left: -1px;
  opacity: 0;
  position: absolute;
  top: -1px;
  transition: opacity 0.4s;
  width: 1.7rem;
}
form .form-check .form-check-input:checked + .form-check-label .checkbox:after {
  opacity: 1;
}
form .form-check .form-check-input {
  display: none;
}
.datepicker {
  z-index: 2000;
}
.datepicker.datepicker-dropdown .datepicker-grid {
  width: 24rem;
}
.datepicker.datepicker-dropdown .datepicker-grid .datepicker-cell,
.datepicker.datepicker-dropdown .datepicker-grid .datepicker-view .week {
  height: 3rem;
  line-height: 3rem;
}
.switch_field {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  position: relative;
}
.switch_field input {
  appearance: none;
  display: none;
}
.switch_field input:checked + .switch_field_slider {
  background-color: #35c0ce;
}
.switch_field input:checked + .switch_field_slider:before {
  transform: translateX(26px);
}
.switch_field_slider {
  background-color: #ced4da;
  border-radius: 9999px;
  cursor: pointer;
  display: block;
  height: 34px;
  position: relative;
  transition: 0.4s;
  width: 60px;
}
.switch_field_slider:before {
  background-color: #fff;
  border-radius: 9999px;
  bottom: 4px;
  content: "";
  height: 26px;
  left: 4px;
  position: absolute;
  transition: 0.4s;
  width: 26px;
}
.switch_field_slider_wrap {
  flex: 0 0 auto;
  height: 34px;
  width: 60px;
}
.switch_field_label {
  flex: 1 1 auto;
  font-size: 1.6rem;
  padding: 8px;
  width: calc(50% - 60px);
}
.switch_field_label.left_right_labels {
  width: calc(50% - 30px);
}
.check_box {
  cursor: pointer;
  display: block;
  padding-left: 24px;
  position: relative;
  user-select: none;
}
.check_box input {
  appearance: none;
  height: 0;
  opacity: 0;
  position: absolute;
  width: 0;
}
.check_box input ~ .checkmark,
.check_box input ~ .radiomark {
  background-color: #fff;
}
.check_box input:checked ~ .checkmark,
.check_box input:checked ~ .radiomark:after {
  background-color: #0075c9;
}
.check_box input:disabled {
  cursor: not-allowed;
}
.check_box input:disabled ~ * {
  cursor: not-allowed;
  opacity: 0.6;
}
.check_box .checkmark {
  background-color: #fff;
  border: 2px solid #212529;
  border-radius: 4px;
  height: 24px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s;
  width: 24px;
}
.check_box .checkmark:after {
  border-color: #fff;
  border-style: solid;
  border-width: 0 3px 3px 0;
  content: "";
  height: 16px;
  left: 6px;
  position: absolute;
  top: 0;
  transform: rotate(45deg);
  width: 8px;
}
.check_box .radiomark {
  background-color: #fff;
  border: 2px solid #0075c9;
  border-radius: 999px;
  height: 24px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
}
.check_box .radiomark:after {
  background-color: transparent;
  border-radius: 999px;
  content: "";
  height: 14px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s;
  width: 14px;
}
.gform_wrapper {
  width: 100%;
}
.gform_wrapper .gform_fields {
  display: flex !important;
  flex-wrap: wrap !important;
}
.gform_wrapper .gform_fields .gfield {
  width: 100%;
}
.gform_wrapper .gform_fields .gfield.width-half {
  width: 49%;
}
@media (max-width: 991.98px) {
  .gform_wrapper .gform_fields .gfield.width-half {
    width: 100%;
  }
}
.gform_wrapper .gform_fields .gfield label {
  color: #fff;
}
.gform_wrapper .gform_fields .gfield input {
  width: 100% !important;
}
.gform_wrapper .gform_fields .gfield .gchoice input {
  display: inline;
  max-width: none !important;
  position: relative;
  top: 5px;
  vertical-align: top;
  width: auto !important;
}
@media (min-width: 768px) {
  .gform_wrapper .gfield_checkbox {
    column-count: auto;
  }
}
.gform_wrapper .gfield_checkbox label,
.gform_wrapper .gfield_radio label {
  margin-left: 1rem;
}
.gform_wrapper .ginput_container_select {
  background-color: #fff;
  border: 1px solid #000006;
  color: #000006;
  font-family:
    DM Sans,
    sans-serif;
  font-style: normal;
  font-weight: 400;
  height: 4.9rem;
  position: relative;
  text-align: left;
  width: 100%;
}
.gform_wrapper .ginput_container_select:after {
  border: 7px solid transparent;
  border-top-color: #000006;
  content: "";
  height: 0;
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 0;
}
.gform_wrapper .ginput_container_select .gfield_select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 1px solid #fff !important;
  border-radius: 0;
  height: 4.4rem;
  padding: 0.4rem 0 0 0.6rem !important;
  width: 100% !important;
}
.gform_wrapper .gform_footer {
  justify-content: flex-end;
  text-align: center;
}
.gform_wrapper input[type="submit"] {
  background-color: #f78d28;
  border: 1px solid #f78d28;
  border-radius: 2em;
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700 !important;
  line-height: 1.5;
  padding: 8px 32px;
  text-align: center;
  user-select: none;
  vertical-align: middle;
}
.gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
  padding: 0.4rem !important;
}
.gform_wrapper .gfield_required {
  color: #fff !important;
}
.gform_wrapper .validation_message {
  color: #e40037 !important;
}
.gform_wrapper .gfield_error input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.gform_wrapper .gform_wrapper .gfield_error textarea {
  border: 1px solid #e40037 !important;
}
.gform_wrapper div.validation_error {
  border-bottom: 2px solid #fff !important;
  border-top: 2px solid #fff !important;
  color: #fff !important;
  font-weight: 300;
}
.gform_wrapper .gfield.gfield_error,
.gform_wrapper .gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background-color: transparent !important;
  border-bottom: none !important;
  border-top: none !important;
  margin-bottom: 6px !important;
}
.gform_wrapper .field_description_below .gfield_description {
  padding-top: 0.8rem;
}
.gform_wrapper .gform_ajax_spinner {
  display: none !important;
}
.gform_wrapper .gfield_error .gfield_label,
.gform_wrapper .gfield_error div.ginput_complex.ginput_container label,
.gform_wrapper .gfield_error ul.gfield_checkbox,
.gform_wrapper .gfield_error ul.gfield_radio {
  color: #e40037 !important;
}
.bg-white .gform_wrapper .gform_fields label {
  color: #000006;
}
.footer {
  background: #0c4968;
  color: #fff;
  font-weight: 400;
  padding: 40px 0;
  position: relative;
  z-index: 3;
}
.footer .menu-item a {
  color: #fff;
  display: block;
  padding: 10px 0;
  text-decoration: none;
}
.footer .contactRight a.phoneLink {
  color: #b0f3ea;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}
.footer .contactRight a.phoneLink:hover {
  color: #fff;
}
.footer .copyright {
  color: #b0f3ea;
  display: block;
  font-size: 1.4rem;
  margin-top: 5.5rem;
}
.footer .copyright a {
  color: #b0f3ea;
  font-weight: 400;
  text-decoration: none;
}
.footer .copyright a:hover {
  color: #fff;
}
@media (min-width: 768px) {
  .footer {
    padding: 60px 0;
  }
}
img {
  height: auto;
  max-width: 100%;
}
.bg-img {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-img.contain {
  background-size: contain;
}
.bg-img.pos-top-center {
  background-position: top;
}
.bg-img.pos-top-left {
  background-position: 0 0;
}
.bg-img.pos-btm-center {
  background-position: bottom;
}
.bg-img.pos-btm-left {
  background-position: 0 100%;
}
.bg-img.pos-center-right {
  background-position: 100%;
}
.bg-img.pos-top-right {
  background-position: 100% 0;
}
.bg-img.pos-btm-right {
  background-position: 100% 100%;
}
.bg-img.fullscreen {
  min-height: 100vh;
  width: 100%;
}
.bg-img.zoom-hover {
  background-position: 50%;
  transition: all 3s ease;
  -moz-transition: all 3s ease;
  -ms-transition: all 3s ease;
  -webkit-transition: all 3s ease;
  -o-transition: all 3s ease;
}
.bg-img.zoom-hover:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand')";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.5,M12=0,M21=0,M22=1.5,SizingMethod="auto expand");
  transform: scale(1.25);
  -moz-transform: scale(1.25);
  -webkit-transform: scale(1.25);
  -o-transform: scale(1.25);
  -ms-transform: scale(1.25);
}
.bg-overlay {
  height: 100%;
  position: absolute;
  width: 100%;
}
.bg-overlay-dark {
  background-image: linear-gradient(90deg, rgba(33, 37, 41, 0.5), rgba(33, 37, 41, 0.5));
}
.bg-overlay-dark:hover {
  background-image: linear-gradient(90deg, rgba(33, 37, 41, 0.65), rgba(33, 37, 41, 0.65));
}
.bg-overlay-light,
.bg-overlay-light:hover {
  background-image: linear-gradient(90deg, rgba(170, 169, 170, 0.65), rgba(170, 169, 170, 0.65));
}
.bg-overlay-light-dark {
  background-image: linear-gradient(90deg, rgba(170, 169, 170, 0.5), rgba(33, 37, 41, 0.5));
}
.bg-overlay-light-dark:hover {
  background-image: linear-gradient(90deg, rgba(170, 169, 170, 0.65), rgba(33, 37, 41, 0.65));
}
.bg-overlay-dark-light {
  background-image: linear-gradient(90deg, rgba(33, 37, 41, 0.5), rgba(170, 169, 170, 0.5));
}
.bg-overlay-dark-light:hover {
  background-image: linear-gradient(90deg, rgba(33, 37, 41, 0.65), rgba(170, 169, 170, 0.65));
}
.alignright {
  float: right;
  margin: 0 3rem 3rem 0;
}
.alignleft {
  float: left;
  margin: 0 3rem 3rem 0;
}
.aligncenter {
  display: block;
  margin: 0 auto;
}
.caption {
  background-color: rgba(218, 217, 215, 0.5);
  padding: 1.5rem 3rem;
  width: 100%;
}
.caption * {
  color: #fff;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.caption body:not(.single-post) article ol,
.caption body:not(.single-post) article ul,
.caption p,
body:not(.single-post) article .caption ol,
body:not(.single-post) article .caption ul {
  margin-bottom: 0;
}
header[role="banner"] {
  color: #212529;
  position: relative;
}
header[role="banner"] li.menu-item .sub-menu {
  background: #fff;
  min-width: 170px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 60px;
  transition: 0.2s;
}
header[role="banner"] li.menu-item:hover .sub-menu {
  opacity: 1;
  pointer-events: all;
  top: 66px;
}
header[role="banner"] .above-menu {
  font-size: 1.6rem;
  font-weight: 700;
}
header[role="banner"] .above-menu a {
  color: #212529;
}
@media (max-width: 991.98px) {
  header[role="banner"] .above-menu {
    text-align: center;
  }
}
header[role="banner"] .menu-block {
  animation: fadeInLeft;
  animation-duration: 2s;
  position: relative;
}
header[role="banner"] .menu-block:before {
  background: #fff;
  clip-path: polygon(0 0, 91% 0, 88.5% 100%, 0 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (max-width: 1199.98px) {
  header[role="banner"] .menu-block:before {
    clip-path: none;
  }
}
header[role="banner"] .menu-block .custom-logo-link {
  width: 100%;
}
header[role="banner"] .menu-block .custom-logo-link img {
  height: auto;
  margin: 20px 0;
  width: 100%;
}
header[role="banner"] .menu-block #main_menu .menu ul {
  display: flex;
  justify-content: space-between;
}
header[role="banner"] .menu-block #main_menu .menu a {
  color: #000;
  display: block;
  padding: 18px;
}
@media (max-width: 991.98px) {
  header[role="banner"] .menu-block {
    clip-path: none;
  }
}
header[role="banner"] .headerButtons {
  text-align: left;
}
header[role="banner"] .headerButtons .btn-primary,
header[role="banner"] .headerButtons .btn-secondary-header {
  display: inline-block;
  font-size: 1.4rem;
  margin: 15px 4px 0 0 !important;
  padding: 2px 16px;
  text-decoration: none;
}
@media (min-width: 768px) {
  #mega-menu-wrap-main {
    position: relative;
    z-index: 1;
  }
  #mega-menu-wrap-main #mega-menu-main {
    display: flex;
    justify-content: space-evenly;
  }
  #mega-menu-wrap-main #mega-menu-main body:not(.single-post) article ol,
  #mega-menu-wrap-main #mega-menu-main body:not(.single-post) article ul,
  #mega-menu-wrap-main #mega-menu-main p,
  body:not(.single-post) article #mega-menu-wrap-main #mega-menu-main ol,
  body:not(.single-post) article #mega-menu-wrap-main #mega-menu-main ul {
    color: #000006;
  }
  #mega-menu-wrap-main #mega-menu-main > li.mega-menu-item {
    margin: 0 6px 0 0;
  }
  #mega-menu-wrap-main #mega-menu-main > li.mega-menu-megamenu > ul.mega-sub-menu {
    background-color: #c3ebff;
    clip-path: polygon(0 0, 99.8% 0, 85.5% 100%, 0 100%);
    position: fixed;
    width: 88.66%;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  #mega-menu-wrap-main #mega-menu-main > li.mega-menu-megamenu > ul.mega-sub-menu {
    clip-path: none;
    width: 100%;
  }
}
@media (min-width: 768px) {
  #mega-menu-wrap-main #mega-menu-main li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row li.mega-menu-column:first-child {
    width: 50% !important;
  }
  #mega-menu-wrap-main #mega-menu-main li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row li.mega-menu-column:first-child > ul.mega-sub-menu > li.mega-menu-item {
    border-right: 1px solid #666;
    font-size: 16px;
    margin: 50px 100px 50px 200px;
    padding-right: 80px;
    width: auto;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  #mega-menu-wrap-main #mega-menu-main li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row li.mega-menu-column:first-child > ul.mega-sub-menu > li.mega-menu-item {
    margin: 50px 40px 50px 100px;
  }
}
@media (min-width: 768px) {
  #mega-menu-wrap-main #mega-menu-main li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row li.mega-menu-column:nth-child(2) {
    margin-top: 70px;
    width: 35% !important;
  }
  #mega-menu-wrap-main #mega-menu-main li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row li.mega-menu-column:nth-child(2) a:active,
  #mega-menu-wrap-main #mega-menu-main li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row li.mega-menu-column:nth-child(2) a:link,
  #mega-menu-wrap-main #mega-menu-main li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row li.mega-menu-column:nth-child(2) a:visited {
    font-weight: 700;
    text-decoration: none;
  }
  #mega-menu-wrap-main #mega-menu-main li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row li.mega-menu-column:nth-child(2) a:hover {
    color: #0c4968;
    text-decoration: underline;
  }
}
#mega-menu-wrap-main #mega-menu-main li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
  display: none;
}
.textwidget.custom-html-widget .cta {
  display: block;
  padding: 5px;
}
@media (max-width: 991.98px) {
  #mega-menu-wrap-main .mega-menu-toggle .mega-toggle-blocks-right {
    margin-top: 21px;
  }
  .mobileTopBanner {
    background-color: #35c0ce !important;
    padding: 0 !important;
  }
  .mobileTopBanner a {
    color: #000 !important;
    font-size: 1.4rem !important;
    height: 40px !important;
    line-height: 40px !important;
    text-align: left !important;
  }
  #mega-menu-wrap-main #mega-menu-main li.mega-menu-item {
    padding: 5px 15px;
  }
  #mega-menu-wrap-main #mega-menu-main li.mega-menu-megamenu > ul.mega-sub-menu {
    background-color: transparent;
    padding-bottom: 0;
    padding-top: 0;
  }
  #mega-menu-wrap-main #mega-menu-main li.mega-menu-megamenu > ul.mega-sub-menu .btn-ghost-w-arrow {
    color: #fff !important;
    padding: 0 0 16px;
    text-decoration: none;
  }
  #mega-menu-wrap-main #mega-menu-main li.mega-menu-megamenu > ul.mega-sub-menu .btn-ghost-w-arrow:after {
    display: none;
  }
  #mega-menu-wrap-main #mega-menu-main > li.mega-menu-item:not(:first-child) > a.mega-menu-link {
    display: inline-block;
    height: auto;
    text-align: left !important;
  }
  #mega-menu-wrap-main #mega-menu-main > li.mega-menu-item:not(:first-child) > a.mega-menu-link:hover {
    color: #35c0ce;
  }
  #mega-menu-wrap-main #mega-menu-main > li.mega-menu-item:not(:first-child) > a.mega-menu-link:hover:before {
    background-image: url(/wp-content/themes/redirect-health/theme-assets/images/turquoise-arrow_1409a84a.png);
    background-repeat: no-repeat;
    background-size: 15px;
    content: "";
    height: 15px;
    position: absolute;
    right: -21px;
    top: 19px;
    width: 15px;
  }
  #mega-menu-wrap-main #mega-menu-main > li.mega-menu-item:not(:first-child).mobile-menu-exit > a.mega-menu-link {
    display: block;
  }
  #mega-menu-wrap-main #mega-menu-main > li.mega-menu-item:not(:first-child).mobile-menu-exit > a.mega-menu-link:hover {
    color: #fff;
  }
  #mega-menu-wrap-main #mega-menu-main > li.mega-menu-item:not(:first-child).mobile-menu-exit > a.mega-menu-link:hover:before {
    background-image: none;
  }
  #mega-menu-wrap-main #mega-menu-main > li.mega-menu-item:not(:first-child).mobile-menu-exit .mega-sub-menu {
    display: none;
  }
  #mega-menu-wrap-main #mega-menu-main > li.mega-menu-item:not(:first-child).mobileNeedCare > a.mega-menu-link {
    background-color: #ffc40c;
    border: 2px solid #ffc40c;
    border-radius: 2em;
    color: #000006;
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 8px 20px;
  }
  #mega-menu-wrap-main #mega-menu-main > li.mega-menu-item:not(:first-child).mobileNeedCare > a.mega-menu-link:hover {
    background-color: #35c0ce;
    border-color: #35c0ce;
  }
  #mega-menu-wrap-main #mega-menu-main > li.mega-menu-item:not(:first-child).mobileNeedCare > a.mega-menu-link:hover:before {
    background-image: none;
  }
  #mega-menu-wrap-main #mega-menu-main > li.mega-menu-item:not(:first-child).mobileMedCenter > a.mega-menu-link {
    border: 2px solid #ffc40c;
    border-radius: 2em;
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 8px 20px;
  }
  #mega-menu-wrap-main #mega-menu-main > li.mega-menu-item:not(:first-child).mobileMedCenter > a.mega-menu-link:hover:before {
    background-image: none;
  }
}
.Modal {
  align-items: center;
  animation-duration: 0.6s;
  animation-fill-mode: both;
  animation-name: fadeIn;
  background-color: rgba(11, 13, 15, 0.9);
  bottom: 0;
  display: none;
  justify-content: center;
  left: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.Modal.__show {
  display: block;
}
@media (min-width: 575px) {
  .Modal.__show {
    display: flex;
  }
}
.Modal .inner {
  align-items: stretch;
  animation-delay: 0.3s;
  animation-duration: 0.6s;
  animation-fill-mode: both;
  animation-name: fadInDownShort;
  background-color: #fff;
  border: none;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  font-weight: 400;
  gap: 24px;
  justify-content: center;
  margin: 36px 0;
  max-width: 880px;
  padding: 24px;
  position: relative;
}
@media (min-width: 575px) {
  .Modal .inner {
    flex-wrap: nowrap;
  }
}
.Modal .inner .close_modal {
  background-color: transparent;
  border: none;
  border-radius: 999px;
  color: #fff;
  display: block;
  font-family: arial;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  padding: 6px;
  position: absolute;
  right: 2px;
  top: -36px;
}
@media (min-width: 575px) {
  .Modal .inner .middle {
    border-radius: 999px;
    border-right: 2px solid #f0f0f0;
    margin: 24px 0;
  }
}
.Modal .inner .inner_cols {
  align-items: flex-start;
  display: flex;
  flex: 1 1 50%;
  flex-direction: column;
  justify-content: stretch;
}
@media (min-width: 575px) {
  .Modal .inner .inner_cols {
    flex: 1 1 100%;
  }
}
.Modal .inner .inner_cols .title_box {
  flex: 0 0 auto;
  margin-bottom: 14px;
  text-align: center;
  width: 100%;
}
.Modal .inner .inner_cols body:not(.single-post) article ol,
.Modal .inner .inner_cols body:not(.single-post) article ul,
.Modal .inner .inner_cols p,
body:not(.single-post) article .Modal .inner .inner_cols ol,
body:not(.single-post) article .Modal .inner .inner_cols ul {
  margin: 0;
}
.Modal .inner .inner_cols body:not(.single-post) article ol.title,
.Modal .inner .inner_cols body:not(.single-post) article ul.title,
.Modal .inner .inner_cols p.title,
body:not(.single-post) article .Modal .inner .inner_cols ol.title,
body:not(.single-post) article .Modal .inner .inner_cols ul.title {
  color: #0075c9;
  font-size: 28px;
  font-weight: 700;
}
.Modal .inner .inner_cols ul {
  flex: 0 0 auto;
  list-style: none;
  width: 100%;
}
.Modal .inner .inner_cols ul li {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.Modal .inner .inner_cols ul li .icon {
  margin-right: 8px;
}
.Modal .inner .inner_cols ul li .icon svg {
  height: 20px;
  width: 20px;
}
.Modal .inner .inner_cols .btn_box {
  align-items: flex-end;
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  margin-top: 18px;
  width: 100%;
}
.margin-sm {
  margin-bottom: 0;
  margin-top: 0;
}
.margin-sm:not(:last-child) {
  margin-bottom: 2.2rem;
}
.margin-md {
  margin-bottom: 0;
  margin-top: 0;
}
.margin-md:not(:last-child) {
  margin-bottom: 4.2rem;
}
.margin-lg {
  margin-bottom: 0;
  margin-top: 0;
}
.margin-lg:not(:last-child) {
  margin-bottom: 6.1rem;
}
.margin-xl {
  margin-bottom: 0;
  margin-top: 0;
}
.margin-xl:not(:last-child) {
  margin-bottom: 7rem;
}
.padding-sm {
  padding: 2.5rem;
}
.padding-md {
  padding: 4.5rem;
}
.hero-lg,
.hero-md,
.hero-xl {
  padding-bottom: 4.5rem;
  padding-top: 4.5rem;
}
@media (min-width: 768px) {
  .hero-md {
    padding-bottom: 4.5rem;
    padding-top: 4.5rem;
  }
  .hero-lg {
    padding-bottom: 6.4rem;
    padding-top: 6.4rem;
  }
  .hero-xl {
    padding-bottom: 7.5rem;
    padding-top: 7.5rem;
  }
}
.section-md {
  padding: 32px;
}
.section-lg {
  padding: 60px;
}
.section-xl {
  padding: 80px;
}
.section-py-sm {
  padding-bottom: 24px;
  padding-top: 24px;
}
.section-py-md {
  padding-bottom: 32px;
  padding-top: 32px;
}
.section-py-lg {
  padding-bottom: 60px;
  padding-top: 60px;
}
.section-py-xl {
  padding-bottom: 80px;
  padding-top: 80px;
}
@media (max-width: 991.98px) {
  .section-py-lg,
  .section-py-xl {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
.section-px-sm {
  padding-left: 24px;
  padding-right: 24px;
}
.section-px-md {
  padding-left: 32px;
  padding-right: 32px;
}
.section-px-lg {
  padding-left: 60px;
  padding-right: 60px;
}
.section-px-xl {
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 991.98px) {
  .section-px-lg,
  .section-px-xl {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.glide .glide__slides,
.glide .glide__track {
  overflow: visible;
}
.glide-controls .slider__arrow--next,
.glide-controls .slider__arrow--prev {
  background-color: transparent;
  border: 2px solid #000006;
  border-radius: 50%;
  height: 50px;
  margin: 0 3px;
  padding: 6px 12px;
  position: relative;
  width: 50px;
}
.glide-controls .slider__arrow--prev:before {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/black-left-arrow_5958b336.png);
  left: 12px;
}
.glide-controls .slider__arrow--next:before,
.glide-controls .slider__arrow--prev:before {
  background-repeat: no-repeat;
  background-size: 20px;
  content: "";
  height: 20px;
  position: absolute;
  top: 15px;
  width: 20px;
}
.glide-controls .slider__arrow--next:before {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/black-right-arrow_d3f7db5e.png);
  right: 12px;
}
body {
  color: #53575b;
}
.bg-azure body:not(.single-post) article ol,
.bg-azure body:not(.single-post) article ul,
.bg-azure h1,
.bg-azure h2,
.bg-azure h3,
.bg-azure h4,
.bg-azure h5,
.bg-azure h6,
.bg-azure ol,
.bg-azure p,
.bg-azure ul,
.bg-ink body:not(.single-post) article ol,
.bg-ink body:not(.single-post) article ul,
.bg-ink h1,
.bg-ink h2,
.bg-ink h3,
.bg-ink h4,
.bg-ink h5,
.bg-ink h6,
.bg-ink ol,
.bg-ink p,
.bg-ink ul,
.bg-viridian body:not(.single-post) article ol,
.bg-viridian body:not(.single-post) article ul,
.bg-viridian h1,
.bg-viridian h2,
.bg-viridian h3,
.bg-viridian h4,
.bg-viridian h5,
.bg-viridian h6,
.bg-viridian ol,
.bg-viridian p,
.bg-viridian ul,
body:not(.single-post) article .bg-azure ol,
body:not(.single-post) article .bg-azure ul,
body:not(.single-post) article .bg-ink ol,
body:not(.single-post) article .bg-ink ul,
body:not(.single-post) article .bg-viridian ol,
body:not(.single-post) article .bg-viridian ul {
  color: #fff;
}
.bg-azure body:not(.single-post) article ol a,
.bg-azure body:not(.single-post) article ul a,
.bg-azure h1 a,
.bg-azure h2 a,
.bg-azure h3 a,
.bg-azure h4 a,
.bg-azure h5 a,
.bg-azure h6 a,
.bg-azure ol a,
.bg-azure p a,
.bg-azure ul a,
.bg-ink body:not(.single-post) article ol a,
.bg-ink body:not(.single-post) article ul a,
.bg-ink h1 a,
.bg-ink h2 a,
.bg-ink h3 a,
.bg-ink h4 a,
.bg-ink h5 a,
.bg-ink h6 a,
.bg-ink ol a,
.bg-ink p a,
.bg-ink ul a,
.bg-viridian body:not(.single-post) article ol a,
.bg-viridian body:not(.single-post) article ul a,
.bg-viridian h1 a,
.bg-viridian h2 a,
.bg-viridian h3 a,
.bg-viridian h4 a,
.bg-viridian h5 a,
.bg-viridian h6 a,
.bg-viridian ol a,
.bg-viridian p a,
.bg-viridian ul a,
body:not(.single-post) article .bg-azure ol a,
body:not(.single-post) article .bg-azure ul a,
body:not(.single-post) article .bg-ink ol a,
body:not(.single-post) article .bg-ink ul a,
body:not(.single-post) article .bg-viridian ol a,
body:not(.single-post) article .bg-viridian ul a {
  color: #c3ebff;
}
.bg-azure body:not(.single-post) article ol a:hover,
.bg-azure body:not(.single-post) article ul a:hover,
.bg-azure h1 a:hover,
.bg-azure h2 a:hover,
.bg-azure h3 a:hover,
.bg-azure h4 a:hover,
.bg-azure h5 a:hover,
.bg-azure h6 a:hover,
.bg-azure ol a:hover,
.bg-azure p a:hover,
.bg-azure ul a:hover,
.bg-ink body:not(.single-post) article ol a:hover,
.bg-ink body:not(.single-post) article ul a:hover,
.bg-ink h1 a:hover,
.bg-ink h2 a:hover,
.bg-ink h3 a:hover,
.bg-ink h4 a:hover,
.bg-ink h5 a:hover,
.bg-ink h6 a:hover,
.bg-ink ol a:hover,
.bg-ink p a:hover,
.bg-ink ul a:hover,
.bg-viridian body:not(.single-post) article ol a:hover,
.bg-viridian body:not(.single-post) article ul a:hover,
.bg-viridian h1 a:hover,
.bg-viridian h2 a:hover,
.bg-viridian h3 a:hover,
.bg-viridian h4 a:hover,
.bg-viridian h5 a:hover,
.bg-viridian h6 a:hover,
.bg-viridian ol a:hover,
.bg-viridian p a:hover,
.bg-viridian ul a:hover,
body:not(.single-post) article .bg-azure ol a:hover,
body:not(.single-post) article .bg-azure ul a:hover,
body:not(.single-post) article .bg-ink ol a:hover,
body:not(.single-post) article .bg-ink ul a:hover,
body:not(.single-post) article .bg-viridian ol a:hover,
body:not(.single-post) article .bg-viridian ul a:hover {
  color: #90daff;
}
.bg-sky {
  background-color: #c3ebff;
}
.bg-sky body:not(.single-post) article ol,
.bg-sky body:not(.single-post) article ul,
.bg-sky h1,
.bg-sky h2,
.bg-sky h3,
.bg-sky h4,
.bg-sky h5,
.bg-sky h6,
.bg-sky ol,
.bg-sky p,
.bg-sky ul,
body:not(.single-post) article .bg-sky ol,
body:not(.single-post) article .bg-sky ul {
  color: #53575b;
}
.bg-sky body:not(.single-post) article ol a,
.bg-sky body:not(.single-post) article ul a,
.bg-sky h1 a,
.bg-sky h2 a,
.bg-sky h3 a,
.bg-sky h4 a,
.bg-sky h5 a,
.bg-sky h6 a,
.bg-sky ol a,
.bg-sky p a,
.bg-sky ul a,
body:not(.single-post) article .bg-sky ol a,
body:not(.single-post) article .bg-sky ul a {
  color: #0c4968;
}
.bg-sky body:not(.single-post) article ol a:hover,
.bg-sky body:not(.single-post) article ul a:hover,
.bg-sky h1 a:hover,
.bg-sky h2 a:hover,
.bg-sky h3 a:hover,
.bg-sky h4 a:hover,
.bg-sky h5 a:hover,
.bg-sky h6 a:hover,
.bg-sky ol a:hover,
.bg-sky p a:hover,
.bg-sky ul a:hover,
body:not(.single-post) article .bg-sky ol a:hover,
body:not(.single-post) article .bg-sky ul a:hover {
  color: #07293a;
}
.bg-azure {
  background-color: #0075c9;
}
.bg-ink {
  background-color: #0c4968;
}
.bg-mint {
  background-color: #b0f3ea;
}
.bg-white {
  background-color: #fff;
}
.bg-off-white {
  background-color: #f8f9fa;
}
.bg-blue-green {
  background-color: #3bbdca;
}
.bg-blue-green body:not(.single-post) article ol,
.bg-blue-green body:not(.single-post) article ol a,
.bg-blue-green body:not(.single-post) article ul,
.bg-blue-green body:not(.single-post) article ul a,
.bg-blue-green h1,
.bg-blue-green h1 a,
.bg-blue-green h2,
.bg-blue-green h2 a,
.bg-blue-green h3,
.bg-blue-green h3 a,
.bg-blue-green h4,
.bg-blue-green h4 a,
.bg-blue-green h5,
.bg-blue-green h5 a,
.bg-blue-green h6,
.bg-blue-green h6 a,
.bg-blue-green ol,
.bg-blue-green ol a,
.bg-blue-green p,
.bg-blue-green p a,
.bg-blue-green ul,
.bg-blue-green ul a,
body:not(.single-post) article .bg-blue-green ol,
body:not(.single-post) article .bg-blue-green ol a,
body:not(.single-post) article .bg-blue-green ul,
body:not(.single-post) article .bg-blue-green ul a {
  color: #fff;
}
.bg-blue-green body:not(.single-post) article ol a:hover,
.bg-blue-green body:not(.single-post) article ul a:hover,
.bg-blue-green h1 a:hover,
.bg-blue-green h2 a:hover,
.bg-blue-green h3 a:hover,
.bg-blue-green h4 a:hover,
.bg-blue-green h5 a:hover,
.bg-blue-green h6 a:hover,
.bg-blue-green ol a:hover,
.bg-blue-green p a:hover,
.bg-blue-green ul a:hover,
body:not(.single-post) article .bg-blue-green ol a:hover,
body:not(.single-post) article .bg-blue-green ul a:hover {
  color: #212529;
}
.bg-orange {
  background-color: #f78d28;
}
.bg-orange body:not(.single-post) article ol,
.bg-orange body:not(.single-post) article ol a,
.bg-orange body:not(.single-post) article ul,
.bg-orange body:not(.single-post) article ul a,
.bg-orange h1,
.bg-orange h1 a,
.bg-orange h2,
.bg-orange h2 a,
.bg-orange h3,
.bg-orange h3 a,
.bg-orange h4,
.bg-orange h4 a,
.bg-orange h5,
.bg-orange h5 a,
.bg-orange h6,
.bg-orange h6 a,
.bg-orange ol,
.bg-orange ol a,
.bg-orange p,
.bg-orange p a,
.bg-orange ul,
.bg-orange ul a,
body:not(.single-post) article .bg-orange ol,
body:not(.single-post) article .bg-orange ol a,
body:not(.single-post) article .bg-orange ul,
body:not(.single-post) article .bg-orange ul a {
  color: #fff;
}
.bg-orange body:not(.single-post) article ol a:hover,
.bg-orange body:not(.single-post) article ul a:hover,
.bg-orange h1 a:hover,
.bg-orange h2 a:hover,
.bg-orange h3 a:hover,
.bg-orange h4 a:hover,
.bg-orange h5 a:hover,
.bg-orange h6 a:hover,
.bg-orange ol a:hover,
.bg-orange p a:hover,
.bg-orange ul a:hover,
body:not(.single-post) article .bg-orange ol a:hover,
body:not(.single-post) article .bg-orange ul a:hover {
  color: #212529;
}
@media (max-width: 1199.98px) {
  .bg-gradient-dark {
    background-color: #3c3c3c;
  }
}
.bg-gradient-dark.bg-gradient-horizontal {
  background: linear-gradient(180deg, rgba(60, 60, 60, 0.9) 31.84%, rgba(60, 60, 60, 0.891) 37.04%, rgba(60, 60, 60, 0.783) 47.95%, rgba(60, 60, 60, 0) 74.93%);
}
@media (min-width: 992px) {
  .bg-gradient-dark.bg-gradient-vertical {
    background: linear-gradient(90.78deg, rgba(60, 60, 60, 0.9) 31.84%, rgba(60, 60, 60, 0.891) 37.04%, rgba(60, 60, 60, 0.783) 47.95%, rgba(60, 60, 60, 0) 74.93%);
  }
}
.bg-gradient-dark body:not(.single-post) article ol,
.bg-gradient-dark body:not(.single-post) article ol a,
.bg-gradient-dark body:not(.single-post) article ul,
.bg-gradient-dark body:not(.single-post) article ul a,
.bg-gradient-dark h1,
.bg-gradient-dark h2,
.bg-gradient-dark h3,
.bg-gradient-dark h4,
.bg-gradient-dark p,
.bg-gradient-dark p a,
body:not(.single-post) article .bg-gradient-dark ol,
body:not(.single-post) article .bg-gradient-dark ol a,
body:not(.single-post) article .bg-gradient-dark ul,
body:not(.single-post) article .bg-gradient-dark ul a {
  color: #fff;
}
@media (max-width: 1199.98px) {
  .bg-gradient-light {
    background-color: #fff;
  }
}
.bg-gradient-light.bg-gradient-horizontal {
  background: linear-gradient(180deg, #fff 31.84%, rgba(255, 255, 255, 0.99) 39.96%, rgba(255, 255, 255, 0.87) 48.4%, rgba(255, 255, 255, 0) 57.43%);
}
@media (min-width: 992px) {
  .bg-gradient-light.bg-gradient-vertical {
    background: linear-gradient(90.78deg, #fff 31.84%, rgba(255, 255, 255, 0.99) 39.96%, rgba(255, 255, 255, 0.87) 48.4%, rgba(255, 255, 255, 0) 57.43%);
  }
}
.bg-gradient-light body:not(.single-post) article ol,
.bg-gradient-light body:not(.single-post) article ol a,
.bg-gradient-light body:not(.single-post) article ul,
.bg-gradient-light body:not(.single-post) article ul a,
.bg-gradient-light h1,
.bg-gradient-light h2,
.bg-gradient-light h3,
.bg-gradient-light h4,
.bg-gradient-light p,
.bg-gradient-light p a,
body:not(.single-post) article .bg-gradient-light ol,
body:not(.single-post) article .bg-gradient-light ol a,
body:not(.single-post) article .bg-gradient-light ul,
body:not(.single-post) article .bg-gradient-light ul a {
  color: #53575b;
}
.social-links a {
  display: inline-block;
  margin: 0 18px 0 0;
}
.social-links a .icon {
  background-repeat: no-repeat;
  background-size: 21px;
  display: block;
  height: 21px;
  width: 21px;
}
.social-links a .icon.youtube.white {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/youtube-white_a2177809.png);
}
.social-links a .icon.youtube.viridian {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/youtube-viridian_d68d34de.png);
}
.social-links a .icon.twitter.white {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/twitter-white_4dd74acd.png);
}
.social-links a .icon.twitter.viridian {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/twitter-viridian_e2dfd2ac.png);
}
.social-links a .icon.instagram.white {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/instagram-white_bfd647e8.png);
}
.social-links a .icon.instagram.viridian {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/instagram-viridian_beed460f.png);
}
.social-links a .icon.facebook.white {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/facebook-white_aec51832.png);
}
.social-links a .icon.facebook.viridian {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/facebook-viridian_0edf553c.png);
}
.social-links a .icon.linkedin.white {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/linkedin-white_11f41214.png);
}
.social-links a .icon.linkedin.viridian {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/linkedin-viridian_7f70f535.png);
}
.affilate_list a {
  color: #fff;
  text-decoration: none;
}
.affilate_list a:hover {
  color: #fff;
  text-decoration: underline;
}
html {
  font-size: 62.5%;
}
ol,
ul {
  padding: 0;
}
ol li,
ul li {
  list-style-type: none;
}
body:not(.single-post) article ol a,
body:not(.single-post) article ul a,
ol a,
p a,
ul a {
  text-decoration: underline;
}
a {
  font-weight: 700;
}
.heading-jumbo {
  font-size: 7rem;
  line-height: 8rem;
}
.heading-xl {
  font-size: 6rem;
  line-height: 7.2rem;
}
.heading-lg {
  font-size: 4.4rem;
  line-height: 5.4rem;
}
.heading-md {
  font-size: 3.2rem;
  line-height: 4.2rem;
}
.heading-sm {
  font-size: 2.6rem;
  line-height: 3.6rem;
}
.heading-xs {
  font-size: 1.7rem;
  line-height: 2.4rem;
}
.heading-xxs {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.font-reg {
  font-size: 1.6rem;
  line-height: 1.6;
}
.font-lg {
  font-size: 2.2rem;
  line-height: 3.4rem;
}
.font-md {
  font-size: 2rem;
  line-height: 3.2rem;
}
.font-sm {
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.micro-lg {
  font-size: 1.8rem;
  line-height: 3rem;
}
.micro-sm,
.micro-xs {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.micro-xxs {
  font-size: 1.3rem;
}
.glide {
  box-sizing: border-box;
  position: relative;
  width: 100%;
}
.glide * {
  box-sizing: inherit;
}
.glide__slides,
.glide__track {
  overflow: hidden;
}
.glide__slides {
  backface-visibility: hidden;
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  touch-action: pan-Y;
  transform-style: preserve-3d;
  white-space: nowrap;
  width: 100%;
  will-change: transform;
}
.glide__slide,
.glide__slides--dragging {
  user-select: none;
}
.glide__slide {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
  height: 100%;
  white-space: normal;
  width: 100%;
}
.glide__slide a {
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows,
.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide--rtl {
  direction: rtl;
}
.blogIndexFeaturedPost {
  margin-bottom: 6rem;
}
@media (max-width: 991.98px) {
  .blogIndexFeaturedPost .imageColumn .featuredThumb {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .blogIndexFeaturedPost .imageColumn {
    padding-right: 25px;
  }
  .blogIndexFeaturedPost .detailsColumn {
    padding-left: 25px;
  }
}
.blogIndexFeaturedPost h2 a {
  font-weight: 400;
}
.blogIndexFeaturedPost .postDetails {
  margin-bottom: 3rem;
}
.blogIndexFeaturedPost .postDetails .cat-links,
.blogIndexFeaturedPost .postDetails .date {
  display: inline-block;
}
.blogIndexFeaturedPost .postDetails .cat-links li {
  display: inline;
}
.blogIndexFeaturedPost .postDetails .cat-links li a {
  color: #212529;
  text-decoration: none;
}
.blogIndexFeaturedPost .postLink {
  color: #00725d;
  display: inline-block;
  position: relative;
}
.blogIndexFeaturedPost .postLink:after {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/green-right-arrow_7f8cdbfb.png);
  background-repeat: no-repeat;
  background-size: 12px;
  content: "";
  height: 12px;
  position: absolute;
  right: -24px;
  top: 10px;
  width: 12px;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  0% {
    background-position: 80% -300%;
  }
  to {
    background-position: 80% 100%;
  }
}
.home .callout-slanted-img-txtblock {
  background-color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.home .callout-slanted-img-txtblock .imgBox {
  margin-top: 0;
  padding-top: 24px;
}
@media (max-width: 991.98px) {
  .home .callout-slanted-img-txtblock {
    margin-top: 0;
  }
}
.home .txtblock-img-offset-arrow-app .txtblock-imgblock {
  margin-bottom: -50px;
}
.home .txtblock-img.__home {
  background-color: #0075c9;
  color: #fff;
}
@media (min-width: 992px) {
  .home .txtblock-img.__home {
    background-color: #f8f9fa;
    color: #53575b;
  }
}
.home .counter-container:after {
  background-color: #f8f9fa;
  bottom: 0;
  content: none;
  height: 100%;
}
.home .counter-container .counter {
  clip-path: polygon(92% 0, 97% 50%, 92% 100%, 0 100%, 0 0);
}
@media (max-width: 1199.98px) {
  .home .counter-container .counter {
    clip-path: none;
  }
}
.home .testimonials {
  padding: 5rem 0;
}
.z-index-1 {
  z-index: 1;
}
.txtblock-imgblock {
  padding-left: 20%;
  position: relative;
}
.txtblock-imgblock:after {
  background: #35c0ce;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 15% 100%, 0 47%);
  content: "";
  height: 88%;
  left: 0;
  position: absolute;
  top: 26px;
  width: 100%;
  width: 1000px;
}
.txtblock-imgblock img {
  position: relative;
  z-index: 1;
}
.txtblock-imgblock .txtblock-img-left {
  color: #fff;
  margin-top: -200px;
  padding-right: 15% !important;
  position: relative;
}
.txtblock-imgblock .txtblock-img-left:after,
.txtblock-imgblock .txtblock-img-left:before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.txtblock-imgblock .txtblock-img-left:after {
  background: #0c4968;
  z-index: -1;
}
.txtblock-imgblock .txtblock-img-left:before {
  background: #0075c9;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
  width: 95%;
}
@media (max-width: 991.98px) {
  .txtblock-imgblock .txtblock-img-left:before {
    clip-path: none;
    width: 100%;
  }
}
.txtblock-imgblock .txtblock-img-left .txtblock-imgblock {
  margin: -50px 0 0;
  padding: 0;
}
.txtblock-imgblock .txtblock-img-left .txtblock-imgblock:after {
  display: none;
}
.txtblock-imgblock .txtblock-img-full {
  background: #fff;
}
.txtblock-imgblock .light-text {
  font-weight: 300;
}
.txtblock-imgblock .color-mint {
  color: #b0f3ea;
}
.txtblock-imgblock .footer-bottom {
  margin-top: 60px;
}
.txtblock-imgblock .text-block-secondary:not(.flex-row-reverse) .txtblock-imgblock:after {
  left: auto;
  right: 0;
  transform: rotateY(180deg);
}
.txtblock-imgblock .text-block-secondary:not(.flex-row-reverse) .txtblock-imgblock {
  padding: 0 20% 0 0;
}
.txtblock-imgblock .simple-img-block h3 {
  font-size: 36px;
  margin: 0;
}
.txtblock-imgblock .simple-img-block h4 {
  font-size: 21px;
  font-weight: 700;
}
.need-care-header {
  color: #fff;
}
.need-care-header .inner-header {
  display: flex;
  min-height: 600px;
}
.need-care-header .inner-header h1,
.need-care-header .inner-header h3 {
  color: #fff;
  padding-bottom: 3.5rem;
}
.need-care-header .inner-header a {
  margin: 0 1.5rem;
}
@media (max-width: 767.98px) {
  .need-care-header .inner-header a {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 1199.98px) {
  .need-care-header .inner-header {
    min-height: auto;
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
}
.need-care-header:after {
  background: #0075c9;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -4;
}
@media (max-width: 767.98px) {
  .need-care-header {
    padding: 6rem 0;
  }
}
.img-text-section {
  background-color: #edeaea;
  overflow: hidden;
  padding-left: 48px;
  padding-right: 48px;
}
.img-text-section .inner_container {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1440px;
}
.img-text-section .inner_container .img_txt_column {
  width: calc(50% - 24px);
}
.img-text-section .inner_container .img_txt_column.img_side {
  align-self: flex-end;
}
.img-text-section .img_side {
  align-items: flex-end;
  display: flex;
  justify-content: center;
  padding-top: 48px;
  position: relative;
  z-index: 1;
}
.img-text-section .img_side:after {
  background-color: rgba(255, 255, 255, 0.426);
  border-radius: 9999px;
  content: "";
  height: 580px;
  left: 50%;
  position: absolute;
  top: 100px;
  transform: translateX(-50%);
  width: 580px;
  z-index: 1;
}
.img-text-section .img_side img {
  position: relative;
  z-index: 2;
}
.img-text-section .txt_side {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 32px 24px;
  position: relative;
  z-index: 2;
}
.img-text-section .txt_side .img_txt_inner {
  flex: 0 0 auto;
  max-width: 500px;
  width: 100%;
}
.img-text-section .txt_side .title_area {
  position: relative;
}
.img-text-section .txt_side .title_area .title {
  color: #0075c9;
  font-weight: 500;
}
.img-text-section .txt_side .title_area .number_icon {
  align-items: center;
  background-color: #3bbdca;
  border-radius: 9999px;
  display: flex;
  height: 48px;
  justify-content: center;
  left: -56px;
  margin-bottom: 0;
  position: absolute;
  top: -5px;
  width: 48px;
}
.img-text-section .txt_side .title_area .number_icon span {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}
.img-text-section .txt_side .sec_desc {
  font-size: 2rem;
  max-width: 440px;
}
.img-text-section .txt_side .sec_desc:last-child {
  margin: 0;
}
.img-text-section .txt_side .text-checkboxes {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.6rem;
  gap: 24px;
  margin-left: 10px;
}
.img-text-section .txt_side .text-checkboxes ul {
  flex: 0 0 auto;
  margin-bottom: 0;
}
.img-text-section .txt_side .text-checkboxes ul li {
  align-items: center;
  display: flex;
  gap: 4px;
  justify-content: flex-start;
}
.img-text-section .txt_side .care-cta-btn {
  margin-top: 32px;
}
.img-text-section .txt_side .care-cta-btn .help-text {
  color: #575c5f;
  font-size: 1.2rem;
  margin-bottom: 0;
  padding-left: 20px;
  padding-top: 8px;
}
@media (max-width: 991.98px) {
  .img-text-section {
    padding-left: 0;
    padding-right: 0;
  }
  .img-text-section .inner_container {
    flex-wrap: wrap;
  }
  .img-text-section .inner_container .img_txt_column {
    width: 100%;
  }
  .img-text-section .inner_container .img_txt_column.img_side {
    align-self: flex-end;
    display: none;
    overflow: hidden;
  }
  .img-text-section .inner_container .img_txt_column.txt_side {
    padding-left: 55px;
  }
  .img-text-section .inner_container .img_txt_column.txt_side .title_area .number_icon {
    height: 40px;
    left: -46px;
    top: 0;
    width: 40px;
  }
  .img-text-section .inner_container .img_txt_column.txt_side .text-checkboxes {
    display: block;
  }
}
.access-care-module {
  background-color: #3bbdca;
  color: #fff;
  padding: 48px 0;
  text-align: center;
}
.access-care-module .small-width {
  color: #ffffffb8;
  font-size: 1.8rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 880px;
  padding-top: 1.6rem;
}
.access-care-module h2 {
  font-size: 3.2rem;
  font-weight: 700;
}
.access-care-module .cards {
  align-items: stretch;
  color: #0075c9;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0 auto;
  max-width: 880px;
  text-align: left;
}
.access-care-module .cards .acm-card {
  align-items: flex-start;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 12px;
  text-decoration: none;
  width: 425px;
}
.access-care-module .cards .acm-card .text-section {
  flex: 1 1 auto;
}
.access-care-module .cards .acm-card .icon-container {
  align-items: center;
  align-self: center;
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-end;
}
.access-care-module .cards .acm-card .icon-container .icon {
  align-items: center;
  background-color: #3bbdca;
  border-radius: 999px;
  display: flex;
  height: 28px;
  justify-content: center;
  min-width: 28px;
  transition: transform 0.3s ease-in-out;
}
.access-care-module .cards .acm-card .icon-container .icon .icon-text {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}
.access-care-module .cards .acm-card .icon-container .icon .icon-text svg {
  display: block;
}
.access-care-module .cards .acm-card:hover {
  text-decoration: none;
}
.access-care-module .cards .acm-card:hover .icon-container .icon {
  transform: translateX(6px);
}
.access-care-module .cards .acm-card h3 {
  font-size: 15px;
  font-weight: 700;
}
.access-care-module .cards .acm-card body:not(.single-post) article ol,
.access-care-module .cards .acm-card body:not(.single-post) article ul,
.access-care-module .cards .acm-card p,
body:not(.single-post) article .access-care-module .cards .acm-card ol,
body:not(.single-post) article .access-care-module .cards .acm-card ul {
  color: rgba(0, 0, 0, 0.636);
  font-size: 12px;
  margin-bottom: -1%;
}
@media (max-width: 767.98px) {
  .access-care-module .cards .acm-card {
    width: 100%;
  }
}
.page.search-posts .searchForm {
  background-color: #eef7fc;
  margin-bottom: 5rem;
}
.page.search-posts .searchForm label {
  font-size: 3rem;
}
.page.search-posts .searchForm input[type="text"] {
  border: none;
  box-shadow: 5px 5px 0 rgba(0, 117, 201, 0.3);
  margin-right: 2rem;
  width: 80%;
}
.page.search-posts .searchForm .searchSubmit {
  background-color: transparent;
  border: 2px solid #000006;
  border-radius: 50%;
  height: 50px;
  padding: 6px 12px;
  position: relative;
  width: 50px;
}
.page.search-posts .searchForm .searchSubmit:before {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/black-right-arrow_d3f7db5e.png);
  background-repeat: no-repeat;
  background-size: 20px;
  content: "";
  height: 20px;
  left: 12px;
  position: absolute;
  top: 15px;
  width: 20px;
}
.page.search-posts .searchResultContext h3 {
  color: #0c4968;
}
.page.search-posts .latestSearch .searchPostItem.hiddenItem {
  display: none;
}
.page.search-posts .latestSearch .loadingPosts {
  background-image: url(/wp-content/themes/redirect-health/theme-assets/images/loading-lines_da7aead2.gif);
  background-position-x: center;
  background-repeat: no-repeat;
  background-size: 50px;
}
.yourhealth_page {
  margin: 0 auto;
  max-width: 3000px;
}
.yourhealth_page header.yourhealth_header {
  align-items: flex-end;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  min-height: 70vh;
  padding-bottom: 120px;
  position: relative;
}
.yourhealth_page header.yourhealth_header:after {
  background: linear-gradient(0deg, #000 38%, transparent);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.8;
  position: absolute;
  right: 0;
  top: 0;
  transition:
    background 0.3s,
    opacity 0.3s;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .yourhealth_page header.yourhealth_header:after {
    background-color: #212529;
    background: linear-gradient(0deg, #000 55%, transparent);
    opacity: 0.8;
  }
}
.yourhealth_page header.yourhealth_header .inner {
  color: #fff;
  padding-top: 248px;
  position: relative;
  text-align: center;
  z-index: 5;
}
.yourhealth_page header.yourhealth_header .inner .yourhealth_flags {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}
.yourhealth_page header.yourhealth_header .inner .yourhealth_flags .yourhealth_flag {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 80px;
  width: 80px;
}
.yourhealth_page header.yourhealth_header .inner .title {
  font-weight: 700;
  margin: 0;
}
@media (max-width: 767.98px) {
  .yourhealth_page header.yourhealth_header .inner .title {
    font-size: 2.4rem;
  }
}
.yourhealth_page header.yourhealth_header .inner .subtitle {
  color: #4fb5ff;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 767.98px) {
  .yourhealth_page header.yourhealth_header .inner .subtitle {
    font-size: 1.8rem;
  }
}
.yourhealth_page header.yourhealth_header .inner .rdh_logo {
  margin: 32px auto;
  max-width: 300px;
}
.yourhealth_page .yourhealth_cta_blocks {
  margin-bottom: -85px;
  position: relative;
  top: -85px;
  z-index: 2;
}
.yourhealth_page .yourhealth_cta_blocks .inner {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.yourhealth_page .yourhealth_cta_blocks .inner .yourhealth_cta_block {
  align-items: stretch;
  color: #fff;
  display: flex;
  justify-content: center;
}
.yourhealth_page .yourhealth_cta_blocks .inner .yourhealth_cta_block.bg_azure {
  background-color: #0075c9;
}
.yourhealth_page .yourhealth_cta_blocks .inner .yourhealth_cta_block.bg_azure_light {
  background-color: #4fb5ff;
}
.yourhealth_page .yourhealth_cta_blocks .inner .yourhealth_cta_block .block_img {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 1 1 auto;
  min-height: 160px;
  min-width: 160px;
}
.yourhealth_page .yourhealth_cta_blocks .inner .yourhealth_cta_block .block_content {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  padding: 24px;
  text-align: center;
}
.yourhealth_page .yourhealth_cta_blocks .inner .yourhealth_cta_block .block_content .title_area,
.yourhealth_page .yourhealth_cta_blocks .inner .yourhealth_cta_block .block_content a:last-child {
  flex: 0 0 auto;
}
.yourhealth_page .yourhealth_cta_blocks .inner .yourhealth_cta_block .block_content .label {
  font-size: 1.8rem;
  margin-bottom: 2px;
}
.yourhealth_page .yourhealth_cta_blocks .inner .yourhealth_cta_block .block_content h3 {
  font-size: 2.4rem;
}
@media (max-width: 767.98px) {
  .yourhealth_page .yourhealth_cta_blocks .inner .yourhealth_cta_block {
    width: 100%;
  }
  .yourhealth_page .yourhealth_cta_blocks .inner .yourhealth_cta_block .block_img {
    display: none;
  }
}

/*!
 * Toastify js 1.12.0
 * https://github.com/apvarun/toastify-js
 * @license MIT licensed
 *
 * Copyright (C) 2018 Varun A P
 */
.toastify {
  background: -webkit-linear-gradient(315deg, #73a5ff, #5477f5);
  background: linear-gradient(135deg, #73a5ff, #5477f5);
  border-radius: 2px;
  box-shadow:
    0 3px 6px -1px rgba(0, 0, 0, 0.12),
    0 10px 36px -4px rgba(77, 96, 232, 0.3);
  color: #fff;
  cursor: pointer;
  display: inline-block;
  max-width: calc(50% - 20px);
  opacity: 0;
  padding: 12px 20px;
  position: fixed;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 2147483647;
}
.toastify.on {
  opacity: 1;
}
.toast-close {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  opacity: 0.4;
  padding: 0 5px;
}
.toastify-right {
  right: 15px;
}
.toastify-left {
  left: 15px;
}
.toastify-top {
  top: -150px;
}
.toastify-bottom {
  bottom: -150px;
}
.toastify-rounded {
  border-radius: 25px;
}
.toastify-avatar {
  border-radius: 2px;
  height: 1.5em;
  margin: -7px 5px;
  width: 1.5em;
}
.toastify-center {
  left: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: fit-content;
  max-width: -moz-fit-content;
  right: 0;
}
@media only screen and (max-width: 360px) {
  .toastify-left,
  .toastify-right {
    left: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: fit-content;
    right: 0;
  }
}
