.dp-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
  }
  
  
  .dp {
    position: relative;
    background: #FFF;
    box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.25);
    line-height: 1.4;
    border-radius: 4px;
    max-height: 400px;
    z-index: 1000;
    padding-top: 6px;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
  }
  
  .dp:before {
    content: ' ';
    height: 6px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #3B99FC;
    background: linear-gradient(-90deg, #3B99FC 0%, #8AEFC8 100%);
  }
  
  .dp-permanent .dp {
    padding-top: 0;
    border: 1px solid #EEE;
    box-shadow: none;
  }
  
  .dp-permanent .dp:before {
    display: none;
  }
  
  .dp-cal {
    min-height: 300px;
  }
  
  .dp-below {
    position: absolute;
    font-size: 0.8em;
    width: 400px;
    max-width: 100vw;
  }
  
  .dp-permanent {
    position: relative;
    font-size: 0.8em;
    width: 400px;
    max-width: 100vw;
  }
  
  .dp-permanent .dp{
    z-index: 0;
  }
  
  .dp-modal .dp {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 600px;
    width: calc(100% - 4em);
    transform: translate(-50%, -50%);
    -webkit-animation: slide-up 0.3s forwards;
            animation: slide-up 0.3s forwards;
  }
  
  .dp-months {
    padding: 24px;
  }
  
  .dp-years {
    box-sizing: border-box;
    max-height: 400px;
    padding: 8px 0;
    overflow: auto !important; /* HACK for Chrome on Android */
  }
  
  .dp-cal-month,
  .dp-cal-year,
  .dp-day,
  .dp-month,
  .dp-year {
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    position: relative;
    color: #3B404D;
    border-radius: 2px;
    border: 0;
    background: transparent;
  }
  
  .dp-cal-header {
    position: relative;
    text-align: center;
    padding-bottom: 16px;
    background: #f5f5f5;
  }
  
  .dp-next,
  .dp-prev {
    position: absolute;
    width: 30px;
    height: 30px;
    overflow: hidden;
    top: 14px;
    color: #777;
    border-radius: 2px;
    border: 0;
    background: transparent;
  }
  
  .dp-next:focus,
  .dp-prev:focus,
  .dp-next:hover,
  .dp-prev:hover {
    outline: none;
    color: inherit;
  }
  
  .dp-prev {
    left: 24px;
  }
  
  .dp-next {
    right: 24px;
  }
  
  .dp-prev:before,
  .dp-next:before {
    content: '';
    border: 2px solid;
    width: 10px;
    height: 10px;
    display: inline-block;
    transform: rotate(-45deg);
    transition: border-color 0.2s;
    margin: 9px 0 40px 4px;
  }
  
  .dp-prev:before {
    border-right: 0;
    border-bottom: 0;
  }
  
  .dp-next:before {
    border-left: 0;
    border-top: 0;
    margin-left: 0;
    margin-right: 4px;
  }
  
  .dp-cal-month,
  .dp-cal-year {
    display: inline-block;
    font-size: 1.4em;
    padding: 16px 8px 8px;
    outline: none;
  }
  
  .dp-cal-footer {
    text-align: center;
    background: #f5f5f5;
  }
  
  .dp-day-today:after {
    content: '';
    height: 0;
    width: 0;
    border: 7px solid #227BD7;
    border-bottom-color: transparent;
    border-left-color: transparent;
    position: absolute;
    top: 0;
    right: 0;
  }
  
  .dp-close,
  .dp-clear,
  .dp-today {
    box-sizing: border-box;
    display: inline-block;
    width: 33%;
    padding: 8px;
    text-decoration: none;
    color: inherit;
    border: 0;
    background: transparent;
  }
  
  .dp-permanent .dp-close,
  .dp-permanent .dp-clear {
    display: none;
  }
  
  .dp-close:active,
  .dp-clear:active,
  .dp-today:active,
  .dp-next:active,
  .dp-prev:active,
  .dp-cal-month:active,
  .dp-cal-year:active {
    background: #75BCFC;
    color: white;
  }
  
  @media screen and (min-device-width: 1200px) {
    .dp-close:hover,
    .dp-close:focus,
    .dp-clear:hover,
    .dp-clear:focus,
    .dp-today:hover,
    .dp-today:focus,
    .dp-next:hover,
    .dp-next:focus,
    .dp-prev:hover,
    .dp-prev:focus,
    .dp-cal-month:focus,
    .dp-cal-month:hover,
    .dp-cal-year:hover,
    .dp-cal-year:focus {
      background: #75BCFC;
      color: white;
    }
  }
  
  .dp-col-header,
  .dp-day {
    width: 14.28571429%;
    display: inline-block;
    padding: 8px;
    text-align: center;
  }
  
  .dp-col-header {
    color: #AAA;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 0.8em;
    padding: 8px 0;
  }
  
  .dp-month {
    width: 33%;
    display: inline-block;
    padding: 8px;
  }
  
  .dp-year {
    display: block;
    padding: 8px 40px;
    width: 100%;
  }
  
  .dp-edge-day {
    color: #AAA;
  }
  
  .dp-day:hover,
  .dp-month:hover,
  .dp-year:hover,
  .dp-current:focus,
  .dp-current,
  .dp-day:focus,
  .dp-month:focus,
  .dp-year:focus {
    outline: none;
    background: #75BCFC;
    color: white;
  }
  
  .dp-selected:hover,
  .dp-selected:focus,
  .dp-selected {
    background: #3B99FC;
    color: #FFF;
  }
  
  .dp-day-disabled {
    background: transparent;
    color: #DDD;
  }
  
  .dp-day-disabled:focus,
  .dp-day-disabled:hover {
    background: #DDD;
  }
  
  .dp-focuser {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
  }
  
  /* Responsive overrides */
  @media (max-width: 480px), (max-height: 480px) {
    .dp-modal .dp {
      font-size: 0.9em;
      width: auto;
      width: 100%;
    }
  
    .dp-day-of-week,
    .dp-day {
      padding: 8px;
    }
    .light /*eli*/
    {
      padding-left: 20px!important;
      padding-right: 20px!important;
     
    }
  }
  
  @-webkit-keyframes slide-up {
    0% {
      transform: translate(-50%, 100%);
    }
    100% {
      transform: translate(-50%, -50%);
    }
  }
  
  @keyframes slide-up {
    0% {
      transform: translate(-50%, 100%);
    }
    100% {
      transform: translate(-50%, -50%);
    }
  }
  .dr-cals {
    display: flex;
    justify-content: space-between;
    background: white;
    box-shadow: 8px 8px 32px -16px rgba(0, 0, 0, 0.5);
    padding-top: 6px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
  }
  
  .dr-cals:before {
    content: ' ';
    height: 6px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #3B99FC;
    background: linear-gradient(-90deg, #3B99FC 0%, #8AEFC8 100%);
  }
  
  .dr-cals .dp-edge-day {
    visibility: hidden;
  }
  
  .dr-cals .dp-cal-footer {
    display: none;
  }
  
  .dr-cals .dp {
    border: 0;
  }
  
  .dr-cals .dp-permanent {
    max-width: 300px;
  }
  
  .dr-cals .dp-selected:focus,
  .dr-cals .dp-selected,
  .dr-cals .dp-current:focus,
  .dr-cals .dp-current {
    background: transparent;
    color: inherit;
    border-radius: 0;
  }
  
  .dr-cals .dp-day-disabled,
  .dr-cals .dp-day-disabled:focus {
    color: #DDD;
  }
  
  .dr-cal-end .dp {
    border-left: 8px solid #F5F5F5;
  }
  
  .dr-cal-start .dp-next,
  .dr-cal-end .dp-prev {
    visibility: hidden;
  }
  
  .dr-cals .dp-current:hover,
  .dr-cals .dr-in-range:hover,
  .dr-cals .dr-in-range:focus,
  .dr-cals .dr-in-range {
    background: #75BCFC;
    color: white;
    border-radius: 0;
  }
  
  .dr-cals .dr-selected:hover,
  .dr-cals .dr-selected:focus,
  .dr-cals .dr-selected {
    background: #3B99FC;
    color: white;
    border-radius: 0;
  }
  
  @media (max-width: 616px), (max-height: 480px) {
    .dr-cal-end {
      display: none;
    }
  
    .dr-cal-start .dp-next {
      visibility: visible;
    }
  }
  
  /*!
   * Bootstrap Utilities v5.0.2 (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)
   */
  .clearfix::after {
    display: block;
    clear: both;
    content: "";
  }
  
  .link-primary {
    color: #00467F;
  }
  .link-primary:hover, .link-primary:focus {
    color: #003866;
  }
  
  .link-secondary {
    color: #EA5E00;
  }
  .link-secondary:hover, .link-secondary:focus {
    color: #ee7e33;
  }
  
  .link-gray {
    color: #424242;
  }
  .link-gray:hover, .link-gray:focus {
    color: #353535;
  }
  
  .link-black {
    color: #333333;
  }
  .link-black:hover, .link-black:focus {
    color: #292929;
  }
  
  .link-gray-3 {
    color: #949494;
  }
  .link-gray-3:hover, .link-gray-3:focus {
    color: darkgray;
  }
  
  .link-white {
    color: #fff;
  }
  .link-white:hover, .link-white:focus {
    color: white;
  }
  
  .link-subtitle {
    color: #ECBA58;
  }
  .link-subtitle:hover, .link-subtitle:focus {
    color: #f0c879;
  }
  
  .link-dark {
    color: #002644;
  }
  .link-dark:hover, .link-dark:focus {
    color: #001e36;
  }
  
  .link-ocean {
    color: #0059A2;
  }
  .link-ocean:hover, .link-ocean:focus {
    color: #004782;
  }
  
  .link-medium-gray {
    color: #656565;
  }
  .link-medium-gray:hover, .link-medium-gray:focus {
    color: #515151;
  }
  
  .link-strong-mandarin {
    color: #C95100;
  }
  .link-strong-mandarin:hover, .link-strong-mandarin:focus {
    color: #a14100;
  }
  
  .link-low-blue {
    color: #E5F4FF;
  }
  .link-low-blue:hover, .link-low-blue:focus {
    color: #eaf6ff;
  }
  
  .link-ygold {
    color: #f3c05b;
  }
  .link-ygold:hover, .link-ygold:focus {
    color: #f5cd7c;
  }
  
  .link-lime {
    color: #23AF31;
  }
  .link-lime:hover, .link-lime:focus {
    color: #4fbf5a;
  }
  
  .ratio {
    position: relative;
    width: 100%;
  }
  .ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: "";
  }
  .ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .ratio-1x1 {
    --bs-aspect-ratio: 100%;
  }
  
  .ratio-4x3 {
    --bs-aspect-ratio: calc(3 / 4 * 100%);
  }
  
  .ratio-16x9 {
    --bs-aspect-ratio: calc(9 / 16 * 100%);
  }
  
  .ratio-21x9 {
    --bs-aspect-ratio: calc(9 / 21 * 100%);
  }
  
  .fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
  }
  
  .fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
  }
  
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  
  @media (min-width: 600px) {
    .sticky-sm-top {
      position: sticky;
      top: 0;
      z-index: 1020;
    }
  }
  @media (min-width: 834px) {
    .sticky-md-top {
      position: sticky;
      top: 0;
      z-index: 1020;
    }
  }
  @media (min-width: 1366px) {
    .sticky-lg-top {
      position: sticky;
      top: 0;
      z-index: 1020;
    }
  }
  .visually-hidden,
  .visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
  
  .stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
  }
  
  .text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .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;
  }
  
  .float-start {
    float: left !important;
  }
  
  .float-end {
    float: right !important;
  }
  
  .float-none {
    float: none !important;
  }
  
  .overflow-auto {
    overflow: auto !important;
  }
  
  .overflow-hidden {
    overflow: hidden !important;
  }
  
  .overflow-visible {
    overflow: visible !important;
  }
  
  .overflow-scroll {
    overflow: scroll !important;
  }
  
  .d-inline {
    display: inline !important;
  }
  
  .d-inline-block {
    display: inline-block !important;
  }
  
  .d-block {
    display: block !important;
  }
  
  .d-grid {
    display: grid !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;
  }
  
  .d-none {
    display: none !important;
  }
  
  .shadow {
    box-shadow: 0 0.5rem 1rem rgba(51, 51, 51, 0.15) !important;
  }
  
  .shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(51, 51, 51, 0.075) !important;
  }
  
  .shadow-lg {
    box-shadow: 0 1rem 3rem rgba(51, 51, 51, 0.175) !important;
  }
  
  .shadow-none {
    box-shadow: none !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;
  }
  
  .top-0 {
    top: 0 !important;
  }
  
  .top-50 {
    top: 50% !important;
  }
  
  .top-100 {
    top: 100% !important;
  }
  
  .bottom-0 {
    bottom: 0 !important;
  }
  
  .bottom-50 {
    bottom: 50% !important;
  }
  
  .bottom-100 {
    bottom: 100% !important;
  }
  
  .start-0 {
    left: 0 !important;
  }
  
  .start-50 {
    left: 50% !important;
  }
  
  .start-100 {
    left: 100% !important;
  }
  
  .end-0 {
    right: 0 !important;
  }
  
  .end-50 {
    right: 50% !important;
  }
  
  .end-100 {
    right: 100% !important;
  }
  
  .translate-middle {
    transform: translate(-50%, -50%) !important;
  }
  
  .translate-middle-x {
    transform: translateX(-50%) !important;
  }
  
  .translate-middle-y {
    transform: translateY(-50%) !important;
  }
  
  .border {
    border: 1px solid #dee2e6 !important;
  }
  
  .border-0 {
    border: 0 !important;
  }
  
  .border-top {
    border-top: 1px solid #dee2e6 !important;
  }
  
  .border-top-0 {
    border-top: 0 !important;
  }
  
  .border-end {
    border-right: 1px solid #dee2e6 !important;
  }
  
  .border-end-0 {
    border-right: 0 !important;
  }
  
  .border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
  }
  
  .border-bottom-0 {
    border-bottom: 0 !important;
  }
  
  .border-start {
    border-left: 1px solid #dee2e6 !important;
  }
  
  .border-start-0 {
    border-left: 0 !important;
  }
  
  .border-primary {
    border-color: #00467F !important;
  }
  
  .border-secondary {
    border-color: #EA5E00 !important;
  }
  
  .border-gray {
    border-color: #424242 !important;
  }
  
  .border-black {
    border-color: #333333 !important;
  }
  
  .border-gray-3 {
    border-color: #949494 !important;
  }
  
  .border-white {
    border-color: #fff !important;
  }
  
  .border-subtitle {
    border-color: #ECBA58 !important;
  }
  
  .border-dark {
    border-color: #002644 !important;
  }
  
  .border-ocean {
    border-color: #0059A2 !important;
  }
  
  .border-medium-gray {
    border-color: #656565 !important;
  }
  
  .border-strong-mandarin {
    border-color: #C95100 !important;
  }
  
  .border-low-blue {
    border-color: #E5F4FF !important;
  }
  
  .border-ygold {
    border-color: #f3c05b !important;
  }
  
  .border-lime {
    border-color: #23AF31 !important;
  }
  
  .border-1 {
    border-width: 1px !important;
  }
  
  .border-2 {
    border-width: 2px !important;
  }
  
  .border-3 {
    border-width: 3px !important;
  }
  
  .border-4 {
    border-width: 4px !important;
  }
  
  .border-5 {
    border-width: 5px !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;
  }
  
  .mw-100 {
    max-width: 100% !important;
  }
  
  .vw-100 {
    width: 100vw !important;
  }
  
  .min-vw-100 {
    min-width: 100vw !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;
  }
  
  .mh-100 {
    max-height: 100% !important;
  }
  
  .vh-100 {
    height: 100vh !important;
  }
  
  .min-vh-100 {
    min-height: 100vh !important;
  }
  
  .flex-fill {
    flex: 1 1 auto !important;
  }
  
  .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-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;
  }
  
  .flex-wrap {
    flex-wrap: wrap !important;
  }
  
  .flex-nowrap {
    flex-wrap: nowrap !important;
  }
  
  .flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  
  .gap-0 {
    gap: 0 !important;
  }
  
  .gap-1 {
    gap: 8px !important;
  }
  
  .gap-2 {
    gap: 16px !important;
  }
  
  .gap-3 {
    gap: 24px !important;
  }
  
  .gap-4 {
    gap: 32px !important;
  }
  
  .gap-5 {
    gap: 40px !important;
  }
  
  .gap-6 {
    gap: 48px !important;
  }
  
  .gap-8 {
    gap: 64px !important;
  }
  
  .gap-9 {
    gap: 72px !important;
  }
  
  .gap-10 {
    gap: 80px !important;
  }
  
  .gap-14 {
    gap: 112px !important;
  }
  
  .gap-25 {
    gap: 200px !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;
  }
  
  .justify-content-evenly {
    justify-content: space-evenly !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;
  }
  
  .order-first {
    order: -1 !important;
  }
  
  .order-0 {
    order: 0 !important;
  }
  
  .order-1 {
    order: 1 !important;
  }
  
  .order-2 {
    order: 2 !important;
  }
  
  .order-3 {
    order: 3 !important;
  }
  
  .order-4 {
    order: 4 !important;
  }
  
  .order-5 {
    order: 5 !important;
  }
  
  .order-last {
    order: 6 !important;
  }
  
  .m-0 {
    margin: 0 !important;
  }
  
  .m-1 {
    margin: 8px !important;
  }
  
  .m-2 {
    margin: 16px !important;
  }
  
  .m-3 {
    margin: 24px !important;
  }
  
  .m-4 {
    margin: 32px !important;
  }
  
  .m-5 {
    margin: 40px !important;
  }
  
  .m-6 {
    margin: 48px !important;
  }
  
  .m-8 {
    margin: 64px !important;
  }
  
  .m-9 {
    margin: 72px !important;
  }
  
  .m-10 {
    margin: 80px !important;
  }
  
  .m-14 {
    margin: 112px !important;
  }
  
  .m-25 {
    margin: 200px !important;
  }
  
  .m-auto {
    margin: auto !important;
  }
  
  .mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  
  .mx-1 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }
  
  .mx-2 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }
  
  .mx-3 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }
  
  .mx-4 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }
  
  .mx-5 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  
  .mx-6 {
    margin-right: 48px !important;
    margin-left: 48px !important;
  }
  
  .mx-8 {
    margin-right: 64px !important;
    margin-left: 64px !important;
  }
  
  .mx-9 {
    margin-right: 72px !important;
    margin-left: 72px !important;
  }
  
  .mx-10 {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }
  
  .mx-14 {
    margin-right: 112px !important;
    margin-left: 112px !important;
  }
  
  .mx-25 {
    margin-right: 200px !important;
    margin-left: 200px !important;
  }
  
  .mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  
  .my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  
  .my-1 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  
  .my-2 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  
  .my-3 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  
  .my-4 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  
  .my-5 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  
  .my-6 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  
  .my-8 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  
  .my-9 {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }
  
  .my-10 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  
  .my-14 {
    margin-top: 112px !important;
    margin-bottom: 112px !important;
  }
  
  .my-25 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }
  
  .my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  
  .mt-0 {
    margin-top: 0 !important;
  }
  
  .mt-1 {
    margin-top: 8px !important;
  }
  
  .mt-2 {
    margin-top: 16px !important;
  }
  
  .mt-3 {
    margin-top: 24px !important;
  }
  
  .mt-4 {
    margin-top: 32px !important;
  }
  
  .mt-5 {
    margin-top: 40px !important;
  }
  
  .mt-6 {
    margin-top: 48px !important;
  }
  
  .mt-8 {
    margin-top: 64px !important;
  }
  
  .mt-9 {
    margin-top: 72px !important;
  }
  
  .mt-10 {
    margin-top: 80px !important;
  }
  
  .mt-14 {
    margin-top: 112px !important;
  }
  
  .mt-25 {
    margin-top: 200px !important;
  }
  
  .mt-auto {
    margin-top: auto !important;
  }
  
  .me-0 {
    margin-right: 0 !important;
  }
  
  .me-1 {
    margin-right: 8px !important;
  }
  
  .me-2 {
    margin-right: 16px !important;
  }
  
  .me-3 {
    margin-right: 24px !important;
  }
  
  .me-4 {
    margin-right: 32px !important;
  }
  
  .me-5 {
    margin-right: 40px !important;
  }
  
  .me-6 {
    margin-right: 48px !important;
  }
  
  .me-8 {
    margin-right: 64px !important;
  }
  
  .me-9 {
    margin-right: 72px !important;
  }
  
  .me-10 {
    margin-right: 80px !important;
  }
  
  .me-14 {
    margin-right: 112px !important;
  }
  
  .me-25 {
    margin-right: 200px !important;
  }
  
  .me-auto {
    margin-right: auto !important;
  }
  
  .mb-0 {
    margin-bottom: 0 !important;
  }
  
  .mb-1 {
    margin-bottom: 8px !important;
  }
  
  .mb-2 {
    margin-bottom: 16px !important;
  }
  
  .mb-3 {
    margin-bottom: 24px !important;
  }
  
  .mb-4 {
    margin-bottom: 32px !important;
  }
  
  .mb-5 {
    margin-bottom: 40px !important;
  }
  
  .mb-6 {
    margin-bottom: 48px !important;
  }
  
  .mb-8 {
    margin-bottom: 64px !important;
  }
  
  .mb-9 {
    margin-bottom: 72px !important;
  }
  
  .mb-10 {
    margin-bottom: 80px !important;
  }
  
  .mb-14 {
    margin-bottom: 112px !important;
  }
  
  .mb-25 {
    margin-bottom: 200px !important;
  }
  
  .mb-auto {
    margin-bottom: auto !important;
  }
  
  .ms-0 {
    margin-left: 0 !important;
  }
  
  .ms-1 {
    margin-left: 8px !important;
  }
  
  .ms-2 {
    margin-left: 16px !important;
  }
  
  .ms-3 {
    margin-left: 24px !important;
  }
  
  .ms-4 {
    margin-left: 32px !important;
  }
  
  .ms-5 {
    margin-left: 40px !important;
  }
  
  .ms-6 {
    margin-left: 48px !important;
  }
  
  .ms-8 {
    margin-left: 64px !important;
  }
  
  .ms-9 {
    margin-left: 72px !important;
  }
  
  .ms-10 {
    margin-left: 80px !important;
  }
  
  .ms-14 {
    margin-left: 112px !important;
  }
  
  .ms-25 {
    margin-left: 200px !important;
  }
  
  .ms-auto {
    margin-left: auto !important;
  }
  
  .p-0 {
    padding: 0 !important;
  }
  
  .p-1 {
    padding: 8px !important;
  }
  
  .p-2 {
    padding: 16px !important;
  }
  
  .p-3 {
    padding: 24px !important;
  }
  
  .p-4 {
    padding: 32px !important;
  }
  
  .p-5 {
    padding: 40px !important;
  }
  
  .p-6 {
    padding: 48px !important;
  }
  
  .p-8 {
    padding: 64px !important;
  }
  
  .p-9 {
    padding: 72px !important;
  }
  
  .p-10 {
    padding: 80px !important;
  }
  
  .p-14 {
    padding: 112px !important;
  }
  
  .p-25 {
    padding: 200px !important;
  }
  
  .px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  
  .px-1 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  
  .px-2 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
  
  .px-3 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  
  .px-4 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }
  
  .px-5 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  
  .px-6 {
    padding-right: 48px !important;
    padding-left: 48px !important;
  }
  
  .px-8 {
    padding-right: 64px !important;
    padding-left: 64px !important;
  }
  
  .px-9 {
    padding-right: 72px !important;
    padding-left: 72px !important;
  }
  
  .px-10 {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
  
  .px-14 {
    padding-right: 112px !important;
    padding-left: 112px !important;
  }
  
  .px-25 {
    padding-right: 200px !important;
    padding-left: 200px !important;
  }
  
  .py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  
  .py-1 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  
  .py-2 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  
  .py-3 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  
  .py-4 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  
  .py-5 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  
  .py-6 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  
  .py-8 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  
  .py-9 {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  
  .py-10 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  
  .py-14 {
    padding-top: 112px !important;
    padding-bottom: 112px !important;
  }
  
  .py-25 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }
  
  .pt-0 {
    padding-top: 0 !important;
  }
  
  .pt-1 {
    padding-top: 8px !important;
  }
  
  .pt-2 {
    padding-top: 16px !important;
  }
  
  .pt-3 {
    padding-top: 24px !important;
  }
  
  .pt-4 {
    padding-top: 32px !important;
  }
  
  .pt-5 {
    padding-top: 40px !important;
  }
  
  .pt-6 {
    padding-top: 48px !important;
  }
  
  .pt-8 {
    padding-top: 64px !important;
  }
  
  .pt-9 {
    padding-top: 72px !important;
  }
  
  .pt-10 {
    padding-top: 80px !important;
  }
  
  .pt-14 {
    padding-top: 112px !important;
  }
  
  .pt-25 {
    padding-top: 200px !important;
  }
  
  .pe-0 {
    padding-right: 0 !important;
  }
  
  .pe-1 {
    padding-right: 8px !important;
  }
  
  .pe-2 {
    padding-right: 16px !important;
  }
  
  .pe-3 {
    padding-right: 24px !important;
  }
  
  .pe-4 {
    padding-right: 32px !important;
  }
  
  .pe-5 {
    padding-right: 40px !important;
  }
  
  .pe-6 {
    padding-right: 48px !important;
  }
  
  .pe-8 {
    padding-right: 64px !important;
  }
  
  .pe-9 {
    padding-right: 72px !important;
  }
  
  .pe-10 {
    padding-right: 80px !important;
  }
  
  .pe-14 {
    padding-right: 112px !important;
  }
  
  .pe-25 {
    padding-right: 200px !important;
  }
  
  .pb-0 {
    padding-bottom: 0 !important;
  }
  
  .pb-1 {
    padding-bottom: 8px !important;
  }
  
  .pb-2 {
    padding-bottom: 16px !important;
  }
  
  .pb-3 {
    padding-bottom: 24px !important;
  }
  
  .pb-4 {
    padding-bottom: 32px !important;
  }
  
  .pb-5 {
    padding-bottom: 40px !important;
  }
  
  .pb-6 {
    padding-bottom: 48px !important;
  }
  
  .pb-8 {
    padding-bottom: 64px !important;
  }
  
  .pb-9 {
    padding-bottom: 72px !important;
  }
  
  .pb-10 {
    padding-bottom: 80px !important;
  }
  
  .pb-14 {
    padding-bottom: 112px !important;
  }
  
  .pb-25 {
    padding-bottom: 200px !important;
  }
  
  .ps-0 {
    padding-left: 0 !important;
  }
  
  .ps-1 {
    padding-left: 8px !important;
  }
  
  .ps-2 {
    padding-left: 16px !important;
  }
  
  .ps-3 {
    padding-left: 24px !important;
  }
  
  .ps-4 {
    padding-left: 32px !important;
  }
  
  .ps-5 {
    padding-left: 40px !important;
  }
  
  .ps-6 {
    padding-left: 48px !important;
  }
  
  .ps-8 {
    padding-left: 64px !important;
  }
  
  .ps-9 {
    padding-left: 72px !important;
  }
  
  .ps-10 {
    padding-left: 80px !important;
  }
  
  .ps-14 {
    padding-left: 112px !important;
  }
  
  .ps-25 {
    padding-left: 200px !important;
  }
  
  .font-monospace {
    font-family: var(--bs-font-monospace) !important;
  }
  
  .fs-1 {
    font-size: calc(1.375rem + 1.5vw) !important;
  }
  
  .fs-2 {
    font-size: calc(1.325rem + 0.9vw) !important;
  }
  
  .fs-3 {
    font-size: calc(1.3rem + 0.6vw) !important;
  }
  
  .fs-4 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }
  
  .fs-5 {
    font-size: 1.25rem !important;
  }
  
  .fs-6 {
    font-size: 1rem !important;
  }
  
  .fst-italic {
    font-style: italic !important;
  }
  
  .fst-normal {
    font-style: normal !important;
  }
  
  .fw-light {
    font-weight: 300 !important;
  }
  
  .fw-lighter {
    font-weight: lighter !important;
  }
  
  .fw-normal {
    font-weight: 400 !important;
  }
  
  .fw-bold {
    font-weight: 700 !important;
  }
  
  .fw-bolder {
    font-weight: bolder !important;
  }
  
  .lh-1 {
    line-height: 1 !important;
  }
  
  .lh-sm {
    line-height: 1.25 !important;
  }
  
  .lh-base {
    line-height: 1.5 !important;
  }
  
  .lh-lg {
    line-height: 2 !important;
  }
  
  .text-start {
    text-align: left !important;
  }
  
  .text-end {
    text-align: right !important;
  }
  
  .text-center {
    text-align: center !important;
  }
  
  .text-decoration-none {
    text-decoration: none !important;
  }
  
  .text-decoration-underline {
    text-decoration: underline !important;
  }
  
  .text-decoration-line-through {
    text-decoration: line-through !important;
  }
  
  .text-lowercase {
    text-transform: lowercase !important;
  }
  
  .text-uppercase {
    text-transform: uppercase !important;
  }
  
  .text-capitalize {
    text-transform: capitalize !important;
  }
  
  .text-wrap {
    white-space: normal !important;
  }
  
  .text-nowrap {
    white-space: nowrap !important;
  }
  
  /* rtl:begin:remove */
  .text-break {
    word-wrap: break-word !important;
    word-break: break-word !important;
  }
  
  /* rtl:end:remove */
  .text-primary {
    color: #00467F !important;
  }
  
  .text-secondary {
    color: #EA5E00 !important;
  }
  
  .text-gray {
    color: #424242 !important;
  }
  
  .text-black {
    color: #333333 !important;
  }
  
  .text-gray-3 {
    color: #949494 !important;
  }
  
  .text-white {
    color: #fff !important;
  }
  
  .text-subtitle {
    color: #ECBA58 !important;
  }
  
  .text-dark {
    color: #002644 !important;
  }
  
  .text-ocean {
    color: #0059A2 !important;
  }
  
  .text-medium-gray {
    color: #656565 !important;
  }
  
  .text-strong-mandarin {
    color: #C95100 !important;
  }
  
  .text-low-blue {
    color: #E5F4FF !important;
  }
  
  .text-ygold {
    color: #f3c05b !important;
  }
  
  .text-lime {
    color: #23AF31 !important;
  }
  
  .text-body {
    color: #424242 !important;
  }
  
  .text-muted {
    color: #6c757d !important;
  }
  
  .text-black-50 {
    color: rgba(51, 51, 51, 0.5) !important;
  }
  
  .text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  
  .text-reset {
    color: inherit !important;
  }
  
  .bg-primary {
    background-color: #00467F !important;
  }
  
  .bg-secondary {
    background-color: #EA5E00 !important;
  }
  
  .bg-gray {
    background-color: #424242 !important;
  }
  
  .bg-black {
    background-color: #333333 !important;
  }
  
  .bg-gray-3 {
    background-color: #949494 !important;
  }
  
  .bg-white {
    background-color: #fff !important;
  }
  
  .bg-subtitle {
    background-color: #ECBA58 !important;
  }
  
  .bg-dark {
    background-color: #002644 !important;
  }
  
  .bg-ocean {
    background-color: #0059A2 !important;
  }
  
  .bg-medium-gray {
    background-color: #656565 !important;
  }
  
  .bg-strong-mandarin {
    background-color: #C95100 !important;
  }
  
  .bg-low-blue {
    background-color: #E5F4FF !important;
  }
  
  .bg-ygold {
    background-color: #f3c05b !important;
  }
  
  .bg-lime {
    background-color: #23AF31 !important;
  }
  
  .bg-body {
    background-color: #fff !important;
  }
  
  .bg-transparent {
    background-color: transparent !important;
  }
  
  .bg-gradient {
    background-image: var(--bs-gradient) !important;
  }
  
  .user-select-all {
    -webkit-user-select: all !important;
       -moz-user-select: all !important;
            user-select: all !important;
  }
  
  .user-select-auto {
    -webkit-user-select: auto !important;
       -moz-user-select: auto !important;
        -ms-user-select: auto !important;
            user-select: auto !important;
  }
  
  .user-select-none {
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
        -ms-user-select: none !important;
            user-select: none !important;
  }
  
  .pe-none {
    pointer-events: none !important;
  }
  
  .pe-auto {
    pointer-events: auto !important;
  }
  
  .rounded {
    border-radius: 0.25rem !important;
  }
  
  .rounded-0 {
    border-radius: 0 !important;
  }
  
  .rounded-1 {
    border-radius: 0.2rem !important;
  }
  
  .rounded-2 {
    border-radius: 0.25rem !important;
  }
  
  .rounded-3 {
    border-radius: 0.3rem !important;
  }
  
  .rounded-circle {
    border-radius: 50% !important;
  }
  
  .rounded-pill {
    border-radius: 50rem !important;
  }
  
  .rounded-top {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }
  
  .rounded-end {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }
  
  .rounded-bottom {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }
  
  .rounded-start {
    border-bottom-left-radius: 0.25rem !important;
    border-top-left-radius: 0.25rem !important;
  }
  
  .visible {
    visibility: visible !important;
  }
  
  .invisible {
    visibility: hidden !important;
  }
  
  @media (min-width: 600px) {
    .float-sm-start {
      float: left !important;
    }
  
    .float-sm-end {
      float: right !important;
    }
  
    .float-sm-none {
      float: none !important;
    }
  
    .d-sm-inline {
      display: inline !important;
    }
  
    .d-sm-inline-block {
      display: inline-block !important;
    }
  
    .d-sm-block {
      display: block !important;
    }
  
    .d-sm-grid {
      display: grid !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;
    }
  
    .d-sm-none {
      display: none !important;
    }
  
    .flex-sm-fill {
      flex: 1 1 auto !important;
    }
  
    .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-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;
    }
  
    .flex-sm-wrap {
      flex-wrap: wrap !important;
    }
  
    .flex-sm-nowrap {
      flex-wrap: nowrap !important;
    }
  
    .flex-sm-wrap-reverse {
      flex-wrap: wrap-reverse !important;
    }
  
    .gap-sm-0 {
      gap: 0 !important;
    }
  
    .gap-sm-1 {
      gap: 8px !important;
    }
  
    .gap-sm-2 {
      gap: 16px !important;
    }
  
    .gap-sm-3 {
      gap: 24px !important;
    }
  
    .gap-sm-4 {
      gap: 32px !important;
    }
  
    .gap-sm-5 {
      gap: 40px !important;
    }
  
    .gap-sm-6 {
      gap: 48px !important;
    }
  
    .gap-sm-8 {
      gap: 64px !important;
    }
  
    .gap-sm-9 {
      gap: 72px !important;
    }
  
    .gap-sm-10 {
      gap: 80px !important;
    }
  
    .gap-sm-14 {
      gap: 112px !important;
    }
  
    .gap-sm-25 {
      gap: 200px !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;
    }
  
    .justify-content-sm-evenly {
      justify-content: space-evenly !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;
    }
  
    .order-sm-first {
      order: -1 !important;
    }
  
    .order-sm-0 {
      order: 0 !important;
    }
  
    .order-sm-1 {
      order: 1 !important;
    }
  
    .order-sm-2 {
      order: 2 !important;
    }
  
    .order-sm-3 {
      order: 3 !important;
    }
  
    .order-sm-4 {
      order: 4 !important;
    }
  
    .order-sm-5 {
      order: 5 !important;
    }
  
    .order-sm-last {
      order: 6 !important;
    }
  
    .m-sm-0 {
      margin: 0 !important;
    }
  
    .m-sm-1 {
      margin: 8px !important;
    }
  
    .m-sm-2 {
      margin: 16px !important;
    }
  
    .m-sm-3 {
      margin: 24px !important;
    }
  
    .m-sm-4 {
      margin: 32px !important;
    }
  
    .m-sm-5 {
      margin: 40px !important;
    }
  
    .m-sm-6 {
      margin: 48px !important;
    }
  
    .m-sm-8 {
      margin: 64px !important;
    }
  
    .m-sm-9 {
      margin: 72px !important;
    }
  
    .m-sm-10 {
      margin: 80px !important;
    }
  
    .m-sm-14 {
      margin: 112px !important;
    }
  
    .m-sm-25 {
      margin: 200px !important;
    }
  
    .m-sm-auto {
      margin: auto !important;
    }
  
    .mx-sm-0 {
      margin-right: 0 !important;
      margin-left: 0 !important;
    }
  
    .mx-sm-1 {
      margin-right: 8px !important;
      margin-left: 8px !important;
    }
  
    .mx-sm-2 {
      margin-right: 16px !important;
      margin-left: 16px !important;
    }
  
    .mx-sm-3 {
      margin-right: 24px !important;
      margin-left: 24px !important;
    }
  
    .mx-sm-4 {
      margin-right: 32px !important;
      margin-left: 32px !important;
    }
  
    .mx-sm-5 {
      margin-right: 40px !important;
      margin-left: 40px !important;
    }
  
    .mx-sm-6 {
      margin-right: 48px !important;
      margin-left: 48px !important;
    }
  
    .mx-sm-8 {
      margin-right: 64px !important;
      margin-left: 64px !important;
    }
  
    .mx-sm-9 {
      margin-right: 72px !important;
      margin-left: 72px !important;
    }
  
    .mx-sm-10 {
      margin-right: 80px !important;
      margin-left: 80px !important;
    }
  
    .mx-sm-14 {
      margin-right: 112px !important;
      margin-left: 112px !important;
    }
  
    .mx-sm-25 {
      margin-right: 200px !important;
      margin-left: 200px !important;
    }
  
    .mx-sm-auto {
      margin-right: auto !important;
      margin-left: auto !important;
    }
  
    .my-sm-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important;
    }
  
    .my-sm-1 {
      margin-top: 8px !important;
      margin-bottom: 8px !important;
    }
  
    .my-sm-2 {
      margin-top: 16px !important;
      margin-bottom: 16px !important;
    }
  
    .my-sm-3 {
      margin-top: 24px !important;
      margin-bottom: 24px !important;
    }
  
    .my-sm-4 {
      margin-top: 32px !important;
      margin-bottom: 32px !important;
    }
  
    .my-sm-5 {
      margin-top: 40px !important;
      margin-bottom: 40px !important;
    }
  
    .my-sm-6 {
      margin-top: 48px !important;
      margin-bottom: 48px !important;
    }
  
    .my-sm-8 {
      margin-top: 64px !important;
      margin-bottom: 64px !important;
    }
  
    .my-sm-9 {
      margin-top: 72px !important;
      margin-bottom: 72px !important;
    }
  
    .my-sm-10 {
      margin-top: 80px !important;
      margin-bottom: 80px !important;
    }
  
    .my-sm-14 {
      margin-top: 112px !important;
      margin-bottom: 112px !important;
    }
  
    .my-sm-25 {
      margin-top: 200px !important;
      margin-bottom: 200px !important;
    }
  
    .my-sm-auto {
      margin-top: auto !important;
      margin-bottom: auto !important;
    }
  
    .mt-sm-0 {
      margin-top: 0 !important;
    }
  
    .mt-sm-1 {
      margin-top: 8px !important;
    }
  
    .mt-sm-2 {
      margin-top: 16px !important;
    }
  
    .mt-sm-3 {
      margin-top: 24px !important;
    }
  
    .mt-sm-4 {
      margin-top: 32px !important;
    }
  
    .mt-sm-5 {
      margin-top: 40px !important;
    }
  
    .mt-sm-6 {
      margin-top: 48px !important;
    }
  
    .mt-sm-8 {
      margin-top: 64px !important;
    }
  
    .mt-sm-9 {
      margin-top: 72px !important;
    }
  
    .mt-sm-10 {
      margin-top: 80px !important;
    }
  
    .mt-sm-14 {
      margin-top: 112px !important;
    }
  
    .mt-sm-25 {
      margin-top: 200px !important;
    }
  
    .mt-sm-auto {
      margin-top: auto !important;
    }
  
    .me-sm-0 {
      margin-right: 0 !important;
    }
  
    .me-sm-1 {
      margin-right: 8px !important;
    }
  
    .me-sm-2 {
      margin-right: 16px !important;
    }
  
    .me-sm-3 {
      margin-right: 24px !important;
    }
  
    .me-sm-4 {
      margin-right: 32px !important;
    }
  
    .me-sm-5 {
      margin-right: 40px !important;
    }
  
    .me-sm-6 {
      margin-right: 48px !important;
    }
  
    .me-sm-8 {
      margin-right: 64px !important;
    }
  
    .me-sm-9 {
      margin-right: 72px !important;
    }
  
    .me-sm-10 {
      margin-right: 80px !important;
    }
  
    .me-sm-14 {
      margin-right: 112px !important;
    }
  
    .me-sm-25 {
      margin-right: 200px !important;
    }
  
    .me-sm-auto {
      margin-right: auto !important;
    }
  
    .mb-sm-0 {
      margin-bottom: 0 !important;
    }
  
    .mb-sm-1 {
      margin-bottom: 8px !important;
    }
  
    .mb-sm-2 {
      margin-bottom: 16px !important;
    }
  
    .mb-sm-3 {
      margin-bottom: 24px !important;
    }
  
    .mb-sm-4 {
      margin-bottom: 32px !important;
    }
  
    .mb-sm-5 {
      margin-bottom: 40px !important;
    }
  
    .mb-sm-6 {
      margin-bottom: 48px !important;
    }
  
    .mb-sm-8 {
      margin-bottom: 64px !important;
    }
  
    .mb-sm-9 {
      margin-bottom: 72px !important;
    }
  
    .mb-sm-10 {
      margin-bottom: 80px !important;
    }
  
    .mb-sm-14 {
      margin-bottom: 112px !important;
    }
  
    .mb-sm-25 {
      margin-bottom: 200px !important;
    }
  
    .mb-sm-auto {
      margin-bottom: auto !important;
    }
  
    .ms-sm-0 {
      margin-left: 0 !important;
    }
  
    .ms-sm-1 {
      margin-left: 8px !important;
    }
  
    .ms-sm-2 {
      margin-left: 16px !important;
    }
  
    .ms-sm-3 {
      margin-left: 24px !important;
    }
  
    .ms-sm-4 {
      margin-left: 32px !important;
    }
  
    .ms-sm-5 {
      margin-left: 40px !important;
    }
  
    .ms-sm-6 {
      margin-left: 48px !important;
    }
  
    .ms-sm-8 {
      margin-left: 64px !important;
    }
  
    .ms-sm-9 {
      margin-left: 72px !important;
    }
  
    .ms-sm-10 {
      margin-left: 80px !important;
    }
  
    .ms-sm-14 {
      margin-left: 112px !important;
    }
  
    .ms-sm-25 {
      margin-left: 200px !important;
    }
  
    .ms-sm-auto {
      margin-left: auto !important;
    }
  
    .p-sm-0 {
      padding: 0 !important;
    }
  
    .p-sm-1 {
      padding: 8px !important;
    }
  
    .p-sm-2 {
      padding: 16px !important;
    }
  
    .p-sm-3 {
      padding: 24px !important;
    }
  
    .p-sm-4 {
      padding: 32px !important;
    }
  
    .p-sm-5 {
      padding: 40px !important;
    }
  
    .p-sm-6 {
      padding: 48px !important;
    }
  
    .p-sm-8 {
      padding: 64px !important;
    }
  
    .p-sm-9 {
      padding: 72px !important;
    }
  
    .p-sm-10 {
      padding: 80px !important;
    }
  
    .p-sm-14 {
      padding: 112px !important;
    }
  
    .p-sm-25 {
      padding: 200px !important;
    }
  
    .px-sm-0 {
      padding-right: 0 !important;
      padding-left: 0 !important;
    }
  
    .px-sm-1 {
      padding-right: 8px !important;
      padding-left: 8px !important;
    }
  
    .px-sm-2 {
      padding-right: 16px !important;
      padding-left: 16px !important;
    }
  
    .px-sm-3 {
      padding-right: 24px !important;
      padding-left: 24px !important;
    }
  
    .px-sm-4 {
      padding-right: 32px !important;
      padding-left: 32px !important;
    }
  
    .px-sm-5 {
      padding-right: 40px !important;
      padding-left: 40px !important;
    }
  
    .px-sm-6 {
      padding-right: 48px !important;
      padding-left: 48px !important;
    }
  
    .px-sm-8 {
      padding-right: 64px !important;
      padding-left: 64px !important;
    }
  
    .px-sm-9 {
      padding-right: 72px !important;
      padding-left: 72px !important;
    }
  
    .px-sm-10 {
      padding-right: 80px !important;
      padding-left: 80px !important;
    }
  
    .px-sm-14 {
      padding-right: 112px !important;
      padding-left: 112px !important;
    }
  
    .px-sm-25 {
      padding-right: 200px !important;
      padding-left: 200px !important;
    }
  
    .py-sm-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
  
    .py-sm-1 {
      padding-top: 8px !important;
      padding-bottom: 8px !important;
    }
  
    .py-sm-2 {
      padding-top: 16px !important;
      padding-bottom: 16px !important;
    }
  
    .py-sm-3 {
      padding-top: 24px !important;
      padding-bottom: 24px !important;
    }
  
    .py-sm-4 {
      padding-top: 32px !important;
      padding-bottom: 32px !important;
    }
  
    .py-sm-5 {
      padding-top: 40px !important;
      padding-bottom: 40px !important;
    }
  
    .py-sm-6 {
      padding-top: 48px !important;
      padding-bottom: 48px !important;
    }
  
    .py-sm-8 {
      padding-top: 64px !important;
      padding-bottom: 64px !important;
    }
  
    .py-sm-9 {
      padding-top: 72px !important;
      padding-bottom: 72px !important;
    }
  
    .py-sm-10 {
      padding-top: 80px !important;
      padding-bottom: 80px !important;
    }
  
    .py-sm-14 {
      padding-top: 112px !important;
      padding-bottom: 112px !important;
    }
  
    .py-sm-25 {
      padding-top: 200px !important;
      padding-bottom: 200px !important;
    }
  
    .pt-sm-0 {
      padding-top: 0 !important;
    }
  
    .pt-sm-1 {
      padding-top: 8px !important;
    }
  
    .pt-sm-2 {
      padding-top: 16px !important;
    }
  
    .pt-sm-3 {
      padding-top: 24px !important;
    }
  
    .pt-sm-4 {
      padding-top: 32px !important;
    }
  
    .pt-sm-5 {
      padding-top: 40px !important;
    }
  
    .pt-sm-6 {
      padding-top: 48px !important;
    }
  
    .pt-sm-8 {
      padding-top: 64px !important;
    }
  
    .pt-sm-9 {
      padding-top: 72px !important;
    }
  
    .pt-sm-10 {
      padding-top: 80px !important;
    }
  
    .pt-sm-14 {
      padding-top: 112px !important;
    }
  
    .pt-sm-25 {
      padding-top: 200px !important;
    }
  
    .pe-sm-0 {
      padding-right: 0 !important;
    }
  
    .pe-sm-1 {
      padding-right: 8px !important;
    }
  
    .pe-sm-2 {
      padding-right: 16px !important;
    }
  
    .pe-sm-3 {
      padding-right: 24px !important;
    }
  
    .pe-sm-4 {
      padding-right: 32px !important;
    }
  
    .pe-sm-5 {
      padding-right: 40px !important;
    }
  
    .pe-sm-6 {
      padding-right: 48px !important;
    }
  
    .pe-sm-8 {
      padding-right: 64px !important;
    }
  
    .pe-sm-9 {
      padding-right: 72px !important;
    }
  
    .pe-sm-10 {
      padding-right: 80px !important;
    }
  
    .pe-sm-14 {
      padding-right: 112px !important;
    }
  
    .pe-sm-25 {
      padding-right: 200px !important;
    }
  
    .pb-sm-0 {
      padding-bottom: 0 !important;
    }
  
    .pb-sm-1 {
      padding-bottom: 8px !important;
    }
  
    .pb-sm-2 {
      padding-bottom: 16px !important;
    }
  
    .pb-sm-3 {
      padding-bottom: 24px !important;
    }
  
    .pb-sm-4 {
      padding-bottom: 32px !important;
    }
  
    .pb-sm-5 {
      padding-bottom: 40px !important;
    }
  
    .pb-sm-6 {
      padding-bottom: 48px !important;
    }
  
    .pb-sm-8 {
      padding-bottom: 64px !important;
    }
  
    .pb-sm-9 {
      padding-bottom: 72px !important;
    }
  
    .pb-sm-10 {
      padding-bottom: 80px !important;
    }
  
    .pb-sm-14 {
      padding-bottom: 112px !important;
    }
  
    .pb-sm-25 {
      padding-bottom: 200px !important;
    }
  
    .ps-sm-0 {
      padding-left: 0 !important;
    }
  
    .ps-sm-1 {
      padding-left: 8px !important;
    }
  
    .ps-sm-2 {
      padding-left: 16px !important;
    }
  
    .ps-sm-3 {
      padding-left: 24px !important;
    }
  
    .ps-sm-4 {
      padding-left: 32px !important;
    }
  
    .ps-sm-5 {
      padding-left: 40px !important;
    }
  
    .ps-sm-6 {
      padding-left: 48px !important;
    }
  
    .ps-sm-8 {
      padding-left: 64px !important;
    }
  
    .ps-sm-9 {
      padding-left: 72px !important;
    }
  
    .ps-sm-10 {
      padding-left: 80px !important;
    }
  
    .ps-sm-14 {
      padding-left: 112px !important;
    }
  
    .ps-sm-25 {
      padding-left: 200px !important;
    }
  
    .text-sm-start {
      text-align: left !important;
    }
  
    .text-sm-end {
      text-align: right !important;
    }
  
    .text-sm-center {
      text-align: center !important;
    }
  }
  @media (min-width: 834px) {
    .float-md-start {
      float: left !important;
    }
  
    .float-md-end {
      float: right !important;
    }
  
    .float-md-none {
      float: none !important;
    }
  
    .d-md-inline {
      display: inline !important;
    }
  
    .d-md-inline-block {
      display: inline-block !important;
    }
  
    .d-md-block {
      display: block !important;
    }
  
    .d-md-grid {
      display: grid !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;
    }
  
    .d-md-none {
      display: none !important;
    }
  
    .flex-md-fill {
      flex: 1 1 auto !important;
    }
  
    .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-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;
    }
  
    .flex-md-wrap {
      flex-wrap: wrap !important;
    }
  
    .flex-md-nowrap {
      flex-wrap: nowrap !important;
    }
  
    .flex-md-wrap-reverse {
      flex-wrap: wrap-reverse !important;
    }
  
    .gap-md-0 {
      gap: 0 !important;
    }
  
    .gap-md-1 {
      gap: 8px !important;
    }
  
    .gap-md-2 {
      gap: 16px !important;
    }
  
    .gap-md-3 {
      gap: 24px !important;
    }
  
    .gap-md-4 {
      gap: 32px !important;
    }
  
    .gap-md-5 {
      gap: 40px !important;
    }
  
    .gap-md-6 {
      gap: 48px !important;
    }
  
    .gap-md-8 {
      gap: 64px !important;
    }
  
    .gap-md-9 {
      gap: 72px !important;
    }
  
    .gap-md-10 {
      gap: 80px !important;
    }
  
    .gap-md-14 {
      gap: 112px !important;
    }
  
    .gap-md-25 {
      gap: 200px !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;
    }
  
    .justify-content-md-evenly {
      justify-content: space-evenly !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;
    }
  
    .order-md-first {
      order: -1 !important;
    }
  
    .order-md-0 {
      order: 0 !important;
    }
  
    .order-md-1 {
      order: 1 !important;
    }
  
    .order-md-2 {
      order: 2 !important;
    }
  
    .order-md-3 {
      order: 3 !important;
    }
  
    .order-md-4 {
      order: 4 !important;
    }
  
    .order-md-5 {
      order: 5 !important;
    }
  
    .order-md-last {
      order: 6 !important;
    }
  
    .m-md-0 {
      margin: 0 !important;
    }
  
    .m-md-1 {
      margin: 8px !important;
    }
  
    .m-md-2 {
      margin: 16px !important;
    }
  
    .m-md-3 {
      margin: 24px !important;
    }
  
    .m-md-4 {
      margin: 32px !important;
    }
  
    .m-md-5 {
      margin: 40px !important;
    }
  
    .m-md-6 {
      margin: 48px !important;
    }
  
    .m-md-8 {
      margin: 64px !important;
    }
  
    .m-md-9 {
      margin: 72px !important;
    }
  
    .m-md-10 {
      margin: 80px !important;
    }
  
    .m-md-14 {
      margin: 112px !important;
    }
  
    .m-md-25 {
      margin: 200px !important;
    }
  
    .m-md-auto {
      margin: auto !important;
    }
  
    .mx-md-0 {
      margin-right: 0 !important;
      margin-left: 0 !important;
    }
  
    .mx-md-1 {
      margin-right: 8px !important;
      margin-left: 8px !important;
    }
  
    .mx-md-2 {
      margin-right: 16px !important;
      margin-left: 16px !important;
    }
  
    .mx-md-3 {
      margin-right: 24px !important;
      margin-left: 24px !important;
    }
  
    .mx-md-4 {
      margin-right: 32px !important;
      margin-left: 32px !important;
    }
  
    .mx-md-5 {
      margin-right: 40px !important;
      margin-left: 40px !important;
    }
  
    .mx-md-6 {
      margin-right: 48px !important;
      margin-left: 48px !important;
    }
  
    .mx-md-8 {
      margin-right: 64px !important;
      margin-left: 64px !important;
    }
  
    .mx-md-9 {
      margin-right: 72px !important;
      margin-left: 72px !important;
    }
  
    .mx-md-10 {
      margin-right: 80px !important;
      margin-left: 80px !important;
    }
  
    .mx-md-14 {
      margin-right: 112px !important;
      margin-left: 112px !important;
    }
  
    .mx-md-25 {
      margin-right: 200px !important;
      margin-left: 200px !important;
    }
  
    .mx-md-auto {
      margin-right: auto !important;
      margin-left: auto !important;
    }
  
    .my-md-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important;
    }
  
    .my-md-1 {
      margin-top: 8px !important;
      margin-bottom: 8px !important;
    }
  
    .my-md-2 {
      margin-top: 16px !important;
      margin-bottom: 16px !important;
    }
  
    .my-md-3 {
      margin-top: 24px !important;
      margin-bottom: 24px !important;
    }
  
    .my-md-4 {
      margin-top: 32px !important;
      margin-bottom: 32px !important;
    }
  
    .my-md-5 {
      margin-top: 40px !important;
      margin-bottom: 40px !important;
    }
  
    .my-md-6 {
      margin-top: 48px !important;
      margin-bottom: 48px !important;
    }
  
    .my-md-8 {
      margin-top: 64px !important;
      margin-bottom: 64px !important;
    }
  
    .my-md-9 {
      margin-top: 72px !important;
      margin-bottom: 72px !important;
    }
  
    .my-md-10 {
      margin-top: 80px !important;
      margin-bottom: 80px !important;
    }
  
    .my-md-14 {
      margin-top: 112px !important;
      margin-bottom: 112px !important;
    }
  
    .my-md-25 {
      margin-top: 200px !important;
      margin-bottom: 200px !important;
    }
  
    .my-md-auto {
      margin-top: auto !important;
      margin-bottom: auto !important;
    }
  
    .mt-md-0 {
      margin-top: 0 !important;
    }
  
    .mt-md-1 {
      margin-top: 8px !important;
    }
  
    .mt-md-2 {
      margin-top: 16px !important;
    }
  
    .mt-md-3 {
      margin-top: 24px !important;
    }
  
    .mt-md-4 {
      margin-top: 32px !important;
    }
  
    .mt-md-5 {
      margin-top: 40px !important;
    }
  
    .mt-md-6 {
      margin-top: 48px !important;
    }
  
    .mt-md-8 {
      margin-top: 64px !important;
    }
  
    .mt-md-9 {
      margin-top: 72px !important;
    }
  
    .mt-md-10 {
      margin-top: 80px !important;
    }
  
    .mt-md-14 {
      margin-top: 112px !important;
    }
  
    .mt-md-25 {
      margin-top: 200px !important;
    }
  
    .mt-md-auto {
      margin-top: auto !important;
    }
  
    .me-md-0 {
      margin-right: 0 !important;
    }
  
    .me-md-1 {
      margin-right: 8px !important;
    }
  
    .me-md-2 {
      margin-right: 16px !important;
    }
  
    .me-md-3 {
      margin-right: 24px !important;
    }
  
    .me-md-4 {
      margin-right: 32px !important;
    }
  
    .me-md-5 {
      margin-right: 40px !important;
    }
  
    .me-md-6 {
      margin-right: 48px !important;
    }
  
    .me-md-8 {
      margin-right: 64px !important;
    }
  
    .me-md-9 {
      margin-right: 72px !important;
    }
  
    .me-md-10 {
      margin-right: 80px !important;
    }
  
    .me-md-14 {
      margin-right: 112px !important;
    }
  
    .me-md-25 {
      margin-right: 200px !important;
    }
  
    .me-md-auto {
      margin-right: auto !important;
    }
  
    .mb-md-0 {
      margin-bottom: 0 !important;
    }
  
    .mb-md-1 {
      margin-bottom: 8px !important;
    }
  
    .mb-md-2 {
      margin-bottom: 16px !important;
    }
  
    .mb-md-3 {
      margin-bottom: 24px !important;
    }
  
    .mb-md-4 {
      margin-bottom: 32px !important;
    }
  
    .mb-md-5 {
      margin-bottom: 40px !important;
    }
  
    .mb-md-6 {
      margin-bottom: 48px !important;
    }
  
    .mb-md-8 {
      margin-bottom: 64px !important;
    }
  
    .mb-md-9 {
      margin-bottom: 72px !important;
    }
  
    .mb-md-10 {
      margin-bottom: 80px !important;
    }
  
    .mb-md-14 {
      margin-bottom: 112px !important;
    }
  
    .mb-md-25 {
      margin-bottom: 200px !important;
    }
  
    .mb-md-auto {
      margin-bottom: auto !important;
    }
  
    .ms-md-0 {
      margin-left: 0 !important;
    }
  
    .ms-md-1 {
      margin-left: 8px !important;
    }
  
    .ms-md-2 {
      margin-left: 16px !important;
    }
  
    .ms-md-3 {
      margin-left: 24px !important;
    }
  
    .ms-md-4 {
      margin-left: 32px !important;
    }
  
    .ms-md-5 {
      margin-left: 40px !important;
    }
  
    .ms-md-6 {
      margin-left: 48px !important;
    }
  
    .ms-md-8 {
      margin-left: 64px !important;
    }
  
    .ms-md-9 {
      margin-left: 72px !important;
    }
  
    .ms-md-10 {
      margin-left: 80px !important;
    }
  
    .ms-md-14 {
      margin-left: 112px !important;
    }
  
    .ms-md-25 {
      margin-left: 200px !important;
    }
  
    .ms-md-auto {
      margin-left: auto !important;
    }
  
    .p-md-0 {
      padding: 0 !important;
    }
  
    .p-md-1 {
      padding: 8px !important;
    }
  
    .p-md-2 {
      padding: 16px !important;
    }
  
    .p-md-3 {
      padding: 24px !important;
    }
  
    .p-md-4 {
      padding: 32px !important;
    }
  
    .p-md-5 {
      padding: 40px !important;
    }
  
    .p-md-6 {
      padding: 48px !important;
    }
  
    .p-md-8 {
      padding: 64px !important;
    }
  
    .p-md-9 {
      padding: 72px !important;
    }
  
    .p-md-10 {
      padding: 80px !important;
    }
  
    .p-md-14 {
      padding: 112px !important;
    }
  
    .p-md-25 {
      padding: 200px !important;
    }
  
    .px-md-0 {
      padding-right: 0 !important;
      padding-left: 0 !important;
    }
  
    .px-md-1 {
      padding-right: 8px !important;
      padding-left: 8px !important;
    }
  
    .px-md-2 {
      padding-right: 16px !important;
      padding-left: 16px !important;
    }
  
    .px-md-3 {
      padding-right: 24px !important;
      padding-left: 24px !important;
    }
  
    .px-md-4 {
      padding-right: 32px !important;
      padding-left: 32px !important;
    }
  
    .px-md-5 {
      padding-right: 40px !important;
      padding-left: 40px !important;
    }
  
    .px-md-6 {
      padding-right: 48px !important;
      padding-left: 48px !important;
    }
  
    .px-md-8 {
      padding-right: 64px !important;
      padding-left: 64px !important;
    }
  
    .px-md-9 {
      padding-right: 72px !important;
      padding-left: 72px !important;
    }
  
    .px-md-10 {
      padding-right: 80px !important;
      padding-left: 80px !important;
    }
  
    .px-md-14 {
      padding-right: 112px !important;
      padding-left: 112px !important;
    }
  
    .px-md-25 {
      padding-right: 200px !important;
      padding-left: 200px !important;
    }
  
    .py-md-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
  
    .py-md-1 {
      padding-top: 8px !important;
      padding-bottom: 8px !important;
    }
  
    .py-md-2 {
      padding-top: 16px !important;
      padding-bottom: 16px !important;
    }
  
    .py-md-3 {
      padding-top: 24px !important;
      padding-bottom: 24px !important;
    }
  
    .py-md-4 {
      padding-top: 32px !important;
      padding-bottom: 32px !important;
    }
  
    .py-md-5 {
      padding-top: 40px !important;
      padding-bottom: 40px !important;
    }
  
    .py-md-6 {
      padding-top: 48px !important;
      padding-bottom: 48px !important;
    }
  
    .py-md-8 {
      padding-top: 64px !important;
      padding-bottom: 64px !important;
    }
  
    .py-md-9 {
      padding-top: 72px !important;
      padding-bottom: 72px !important;
    }
  
    .py-md-10 {
      padding-top: 80px !important;
      padding-bottom: 80px !important;
    }
  
    .py-md-14 {
      padding-top: 112px !important;
      padding-bottom: 112px !important;
    }
  
    .py-md-25 {
      padding-top: 200px !important;
      padding-bottom: 200px !important;
    }
  
    .pt-md-0 {
      padding-top: 0 !important;
    }
  
    .pt-md-1 {
      padding-top: 8px !important;
    }
  
    .pt-md-2 {
      padding-top: 16px !important;
    }
  
    .pt-md-3 {
      padding-top: 24px !important;
    }
  
    .pt-md-4 {
      padding-top: 32px !important;
    }
  
    .pt-md-5 {
      padding-top: 40px !important;
    }
  
    .pt-md-6 {
      padding-top: 48px !important;
    }
  
    .pt-md-8 {
      padding-top: 64px !important;
    }
  
    .pt-md-9 {
      padding-top: 72px !important;
    }
  
    .pt-md-10 {
      padding-top: 80px !important;
    }
  
    .pt-md-14 {
      padding-top: 112px !important;
    }
  
    .pt-md-25 {
      padding-top: 200px !important;
    }
  
    .pe-md-0 {
      padding-right: 0 !important;
    }
  
    .pe-md-1 {
      padding-right: 8px !important;
    }
  
    .pe-md-2 {
      padding-right: 16px !important;
    }
  
    .pe-md-3 {
      padding-right: 24px !important;
    }
  
    .pe-md-4 {
      padding-right: 32px !important;
    }
  
    .pe-md-5 {
      padding-right: 40px !important;
    }
  
    .pe-md-6 {
      padding-right: 48px !important;
    }
  
    .pe-md-8 {
      padding-right: 64px !important;
    }
  
    .pe-md-9 {
      padding-right: 72px !important;
    }
  
    .pe-md-10 {
      padding-right: 80px !important;
    }
  
    .pe-md-14 {
      padding-right: 112px !important;
    }
  
    .pe-md-25 {
      padding-right: 200px !important;
    }
  
    .pb-md-0 {
      padding-bottom: 0 !important;
    }
  
    .pb-md-1 {
      padding-bottom: 8px !important;
    }
  
    .pb-md-2 {
      padding-bottom: 16px !important;
    }
  
    .pb-md-3 {
      padding-bottom: 24px !important;
    }
  
    .pb-md-4 {
      padding-bottom: 32px !important;
    }
  
    .pb-md-5 {
      padding-bottom: 40px !important;
    }
  
    .pb-md-6 {
      padding-bottom: 48px !important;
    }
  
    .pb-md-8 {
      padding-bottom: 64px !important;
    }
  
    .pb-md-9 {
      padding-bottom: 72px !important;
    }
  
    .pb-md-10 {
      padding-bottom: 80px !important;
    }
  
    .pb-md-14 {
      padding-bottom: 112px !important;
    }
  
    .pb-md-25 {
      padding-bottom: 200px !important;
    }
  
    .ps-md-0 {
      padding-left: 0 !important;
    }
  
    .ps-md-1 {
      padding-left: 8px !important;
    }
  
    .ps-md-2 {
      padding-left: 16px !important;
    }
  
    .ps-md-3 {
      padding-left: 24px !important;
    }
  
    .ps-md-4 {
      padding-left: 32px !important;
    }
  
    .ps-md-5 {
      padding-left: 40px !important;
    }
  
    .ps-md-6 {
      padding-left: 48px !important;
    }
  
    .ps-md-8 {
      padding-left: 64px !important;
    }
  
    .ps-md-9 {
      padding-left: 72px !important;
    }
  
    .ps-md-10 {
      padding-left: 80px !important;
    }
  
    .ps-md-14 {
      padding-left: 112px !important;
    }
  
    .ps-md-25 {
      padding-left: 200px !important;
    }
  
    .text-md-start {
      text-align: left !important;
    }
  
    .text-md-end {
      text-align: right !important;
    }
  
    .text-md-center {
      text-align: center !important;
    }
  }
  @media (min-width: 1366px) {
    .float-lg-start {
      float: left !important;
    }
  
    .float-lg-end {
      float: right !important;
    }
  
    .float-lg-none {
      float: none !important;
    }
  
    .d-lg-inline {
      display: inline !important;
    }
  
    .d-lg-inline-block {
      display: inline-block !important;
    }
  
    .d-lg-block {
      display: block !important;
    }
  
    .d-lg-grid {
      display: grid !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;
    }
  
    .d-lg-none {
      display: none !important;
    }
  
    .flex-lg-fill {
      flex: 1 1 auto !important;
    }
  
    .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-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;
    }
  
    .flex-lg-wrap {
      flex-wrap: wrap !important;
    }
  
    .flex-lg-nowrap {
      flex-wrap: nowrap !important;
    }
  
    .flex-lg-wrap-reverse {
      flex-wrap: wrap-reverse !important;
    }
  
    .gap-lg-0 {
      gap: 0 !important;
    }
  
    .gap-lg-1 {
      gap: 8px !important;
    }
  
    .gap-lg-2 {
      gap: 16px !important;
    }
  
    .gap-lg-3 {
      gap: 24px !important;
    }
  
    .gap-lg-4 {
      gap: 32px !important;
    }
  
    .gap-lg-5 {
      gap: 40px !important;
    }
  
    .gap-lg-6 {
      gap: 48px !important;
    }
  
    .gap-lg-8 {
      gap: 64px !important;
    }
  
    .gap-lg-9 {
      gap: 72px !important;
    }
  
    .gap-lg-10 {
      gap: 80px !important;
    }
  
    .gap-lg-14 {
      gap: 112px !important;
    }
  
    .gap-lg-25 {
      gap: 200px !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;
    }
  
    .justify-content-lg-evenly {
      justify-content: space-evenly !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;
    }
  
    .order-lg-first {
      order: -1 !important;
    }
  
    .order-lg-0 {
      order: 0 !important;
    }
  
    .order-lg-1 {
      order: 1 !important;
    }
  
    .order-lg-2 {
      order: 2 !important;
    }
  
    .order-lg-3 {
      order: 3 !important;
    }
  
    .order-lg-4 {
      order: 4 !important;
    }
  
    .order-lg-5 {
      order: 5 !important;
    }
  
    .order-lg-last {
      order: 6 !important;
    }
  
    .m-lg-0 {
      margin: 0 !important;
    }
  
    .m-lg-1 {
      margin: 8px !important;
    }
  
    .m-lg-2 {
      margin: 16px !important;
    }
  
    .m-lg-3 {
      margin: 24px !important;
    }
  
    .m-lg-4 {
      margin: 32px !important;
    }
  
    .m-lg-5 {
      margin: 40px !important;
    }
  
    .m-lg-6 {
      margin: 48px !important;
    }
  
    .m-lg-8 {
      margin: 64px !important;
    }
  
    .m-lg-9 {
      margin: 72px !important;
    }
  
    .m-lg-10 {
      margin: 80px !important;
    }
  
    .m-lg-14 {
      margin: 112px !important;
    }
  
    .m-lg-25 {
      margin: 200px !important;
    }
  
    .m-lg-auto {
      margin: auto !important;
    }
  
    .mx-lg-0 {
      margin-right: 0 !important;
      margin-left: 0 !important;
    }
  
    .mx-lg-1 {
      margin-right: 8px !important;
      margin-left: 8px !important;
    }
  
    .mx-lg-2 {
      margin-right: 16px !important;
      margin-left: 16px !important;
    }
  
    .mx-lg-3 {
      margin-right: 24px !important;
      margin-left: 24px !important;
    }
  
    .mx-lg-4 {
      margin-right: 32px !important;
      margin-left: 32px !important;
    }
  
    .mx-lg-5 {
      margin-right: 40px !important;
      margin-left: 40px !important;
    }
  
    .mx-lg-6 {
      margin-right: 48px !important;
      margin-left: 48px !important;
    }
  
    .mx-lg-8 {
      margin-right: 64px !important;
      margin-left: 64px !important;
    }
  
    .mx-lg-9 {
      margin-right: 72px !important;
      margin-left: 72px !important;
    }
  
    .mx-lg-10 {
      margin-right: 80px !important;
      margin-left: 80px !important;
    }
  
    .mx-lg-14 {
      margin-right: 112px !important;
      margin-left: 112px !important;
    }
  
    .mx-lg-25 {
      margin-right: 200px !important;
      margin-left: 200px !important;
    }
  
    .mx-lg-auto {
      margin-right: auto !important;
      margin-left: auto !important;
    }
  
    .my-lg-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important;
    }
  
    .my-lg-1 {
      margin-top: 8px !important;
      margin-bottom: 8px !important;
    }
  
    .my-lg-2 {
      margin-top: 16px !important;
      margin-bottom: 16px !important;
    }
  
    .my-lg-3 {
      margin-top: 24px !important;
      margin-bottom: 24px !important;
    }
  
    .my-lg-4 {
      margin-top: 32px !important;
      margin-bottom: 32px !important;
    }
  
    .my-lg-5 {
      margin-top: 40px !important;
      margin-bottom: 40px !important;
    }
  
    .my-lg-6 {
      margin-top: 48px !important;
      margin-bottom: 48px !important;
    }
  
    .my-lg-8 {
      margin-top: 64px !important;
      margin-bottom: 64px !important;
    }
  
    .my-lg-9 {
      margin-top: 72px !important;
      margin-bottom: 72px !important;
    }
  
    .my-lg-10 {
      margin-top: 80px !important;
      margin-bottom: 80px !important;
    }
  
    .my-lg-14 {
      margin-top: 112px !important;
      margin-bottom: 112px !important;
    }
  
    .my-lg-25 {
      margin-top: 200px !important;
      margin-bottom: 200px !important;
    }
  
    .my-lg-auto {
      margin-top: auto !important;
      margin-bottom: auto !important;
    }
  
    .mt-lg-0 {
      margin-top: 0 !important;
    }
  
    .mt-lg-1 {
      margin-top: 8px !important;
    }
  
    .mt-lg-2 {
      margin-top: 16px !important;
    }
  
    .mt-lg-3 {
      margin-top: 24px !important;
    }
  
    .mt-lg-4 {
      margin-top: 32px !important;
    }
  
    .mt-lg-5 {
      margin-top: 40px !important;
    }
  
    .mt-lg-6 {
      margin-top: 48px !important;
    }
  
    .mt-lg-8 {
      margin-top: 64px !important;
    }
  
    .mt-lg-9 {
      margin-top: 72px !important;
    }
  
    .mt-lg-10 {
      margin-top: 80px !important;
    }
  
    .mt-lg-14 {
      margin-top: 112px !important;
    }
  
    .mt-lg-25 {
      margin-top: 200px !important;
    }
  
    .mt-lg-auto {
      margin-top: auto !important;
    }
  
    .me-lg-0 {
      margin-right: 0 !important;
    }
  
    .me-lg-1 {
      margin-right: 8px !important;
    }
  
    .me-lg-2 {
      margin-right: 16px !important;
    }
  
    .me-lg-3 {
      margin-right: 24px !important;
    }
  
    .me-lg-4 {
      margin-right: 32px !important;
    }
  
    .me-lg-5 {
      margin-right: 40px !important;
    }
  
    .me-lg-6 {
      margin-right: 48px !important;
    }
  
    .me-lg-8 {
      margin-right: 64px !important;
    }
  
    .me-lg-9 {
      margin-right: 72px !important;
    }
  
    .me-lg-10 {
      margin-right: 80px !important;
    }
  
    .me-lg-14 {
      margin-right: 112px !important;
    }
  
    .me-lg-25 {
      margin-right: 200px !important;
    }
  
    .me-lg-auto {
      margin-right: auto !important;
    }
  
    .mb-lg-0 {
      margin-bottom: 0 !important;
    }
  
    .mb-lg-1 {
      margin-bottom: 8px !important;
    }
  
    .mb-lg-2 {
      margin-bottom: 16px !important;
    }
  
    .mb-lg-3 {
      margin-bottom: 24px !important;
    }
  
    .mb-lg-4 {
      margin-bottom: 32px !important;
    }
  
    .mb-lg-5 {
      margin-bottom: 40px !important;
    }
  
    .mb-lg-6 {
      margin-bottom: 48px !important;
    }
  
    .mb-lg-8 {
      margin-bottom: 64px !important;
    }
  
    .mb-lg-9 {
      margin-bottom: 72px !important;
    }
  
    .mb-lg-10 {
      margin-bottom: 80px !important;
    }
  
    .mb-lg-14 {
      margin-bottom: 112px !important;
    }
  
    .mb-lg-25 {
      margin-bottom: 200px !important;
    }
  
    .mb-lg-auto {
      margin-bottom: auto !important;
    }
  
    .ms-lg-0 {
      margin-left: 0 !important;
    }
  
    .ms-lg-1 {
      margin-left: 8px !important;
    }
  
    .ms-lg-2 {
      margin-left: 16px !important;
    }
  
    .ms-lg-3 {
      margin-left: 24px !important;
    }
  
    .ms-lg-4 {
      margin-left: 32px !important;
    }
  
    .ms-lg-5 {
      margin-left: 40px !important;
    }
  
    .ms-lg-6 {
      margin-left: 48px !important;
    }
  
    .ms-lg-8 {
      margin-left: 64px !important;
    }
  
    .ms-lg-9 {
      margin-left: 72px !important;
    }
  
    .ms-lg-10 {
      margin-left: 80px !important;
    }
  
    .ms-lg-14 {
      margin-left: 112px !important;
    }
  
    .ms-lg-25 {
      margin-left: 200px !important;
    }
  
    .ms-lg-auto {
      margin-left: auto !important;
    }
  
    .p-lg-0 {
      padding: 0 !important;
    }
  
    .p-lg-1 {
      padding: 8px !important;
    }
  
    .p-lg-2 {
      padding: 16px !important;
    }
  
    .p-lg-3 {
      padding: 24px !important;
    }
  
    .p-lg-4 {
      padding: 32px !important;
    }
  
    .p-lg-5 {
      padding: 40px !important;
    }
  
    .p-lg-6 {
      padding: 48px !important;
    }
  
    .p-lg-8 {
      padding: 64px !important;
    }
  
    .p-lg-9 {
      padding: 72px !important;
    }
  
    .p-lg-10 {
      padding: 80px !important;
    }
  
    .p-lg-14 {
      padding: 112px !important;
    }
  
    .p-lg-25 {
      padding: 200px !important;
    }
  
    .px-lg-0 {
      padding-right: 0 !important;
      padding-left: 0 !important;
    }
  
    .px-lg-1 {
      padding-right: 8px !important;
      padding-left: 8px !important;
    }
  
    .px-lg-2 {
      padding-right: 16px !important;
      padding-left: 16px !important;
    }
  
    .px-lg-3 {
      padding-right: 24px !important;
      padding-left: 24px !important;
    }
  
    .px-lg-4 {
      padding-right: 32px !important;
      padding-left: 32px !important;
    }
  
    .px-lg-5 {
      padding-right: 40px !important;
      padding-left: 40px !important;
    }
  
    .px-lg-6 {
      padding-right: 48px !important;
      padding-left: 48px !important;
    }
  
    .px-lg-8 {
      padding-right: 64px !important;
      padding-left: 64px !important;
    }
  
    .px-lg-9 {
      padding-right: 72px !important;
      padding-left: 72px !important;
    }
  
    .px-lg-10 {
      padding-right: 80px !important;
      padding-left: 80px !important;
    }
  
    .px-lg-14 {
      padding-right: 112px !important;
      padding-left: 112px !important;
    }
  
    .px-lg-25 {
      padding-right: 200px !important;
      padding-left: 200px !important;
    }
  
    .py-lg-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
  
    .py-lg-1 {
      padding-top: 8px !important;
      padding-bottom: 8px !important;
    }
  
    .py-lg-2 {
      padding-top: 16px !important;
      padding-bottom: 16px !important;
    }
  
    .py-lg-3 {
      padding-top: 24px !important;
      padding-bottom: 24px !important;
    }
  
    .py-lg-4 {
      padding-top: 32px !important;
      padding-bottom: 32px !important;
    }
  
    .py-lg-5 {
      padding-top: 40px !important;
      padding-bottom: 40px !important;
    }
  
    .py-lg-6 {
      padding-top: 48px !important;
      padding-bottom: 48px !important;
    }
  
    .py-lg-8 {
      padding-top: 64px !important;
      padding-bottom: 64px !important;
    }
  
    .py-lg-9 {
      padding-top: 72px !important;
      padding-bottom: 72px !important;
    }
  
    .py-lg-10 {
      padding-top: 80px !important;
      padding-bottom: 80px !important;
    }
  
    .py-lg-14 {
      padding-top: 112px !important;
      padding-bottom: 112px !important;
    }
  
    .py-lg-25 {
      padding-top: 200px !important;
      padding-bottom: 200px !important;
    }
  
    .pt-lg-0 {
      padding-top: 0 !important;
    }
  
    .pt-lg-1 {
      padding-top: 8px !important;
    }
  
    .pt-lg-2 {
      padding-top: 16px !important;
    }
  
    .pt-lg-3 {
      padding-top: 24px !important;
    }
  
    .pt-lg-4 {
      padding-top: 32px !important;
    }
  
    .pt-lg-5 {
      padding-top: 40px !important;
    }
  
    .pt-lg-6 {
      padding-top: 48px !important;
    }
  
    .pt-lg-8 {
      padding-top: 64px !important;
    }
  
    .pt-lg-9 {
      padding-top: 72px !important;
    }
  
    .pt-lg-10 {
      padding-top: 80px !important;
    }
  
    .pt-lg-14 {
      padding-top: 112px !important;
    }
  
    .pt-lg-25 {
      padding-top: 200px !important;
    }
  
    .pe-lg-0 {
      padding-right: 0 !important;
    }
  
    .pe-lg-1 {
      padding-right: 8px !important;
    }
  
    .pe-lg-2 {
      padding-right: 16px !important;
    }
  
    .pe-lg-3 {
      padding-right: 24px !important;
    }
  
    .pe-lg-4 {
      padding-right: 32px !important;
    }
  
    .pe-lg-5 {
      padding-right: 40px !important;
    }
  
    .pe-lg-6 {
      padding-right: 48px !important;
    }
  
    .pe-lg-8 {
      padding-right: 64px !important;
    }
  
    .pe-lg-9 {
      padding-right: 72px !important;
    }
  
    .pe-lg-10 {
      padding-right: 80px !important;
    }
  
    .pe-lg-14 {
      padding-right: 112px !important;
    }
  
    .pe-lg-25 {
      padding-right: 200px !important;
    }
  
    .pb-lg-0 {
      padding-bottom: 0 !important;
    }
  
    .pb-lg-1 {
      padding-bottom: 8px !important;
    }
  
    .pb-lg-2 {
      padding-bottom: 16px !important;
    }
  
    .pb-lg-3 {
      padding-bottom: 24px !important;
    }
  
    .pb-lg-4 {
      padding-bottom: 32px !important;
    }
  
    .pb-lg-5 {
      padding-bottom: 40px !important;
    }
  
    .pb-lg-6 {
      padding-bottom: 48px !important;
    }
  
    .pb-lg-8 {
      padding-bottom: 64px !important;
    }
  
    .pb-lg-9 {
      padding-bottom: 72px !important;
    }
  
    .pb-lg-10 {
      padding-bottom: 80px !important;
    }
  
    .pb-lg-14 {
      padding-bottom: 112px !important;
    }
  
    .pb-lg-25 {
      padding-bottom: 200px !important;
    }
  
    .ps-lg-0 {
      padding-left: 0 !important;
    }
  
    .ps-lg-1 {
      padding-left: 8px !important;
    }
  
    .ps-lg-2 {
      padding-left: 16px !important;
    }
  
    .ps-lg-3 {
      padding-left: 24px !important;
    }
  
    .ps-lg-4 {
      padding-left: 32px !important;
    }
  
    .ps-lg-5 {
      padding-left: 40px !important;
    }
  
    .ps-lg-6 {
      padding-left: 48px !important;
    }
  
    .ps-lg-8 {
      padding-left: 64px !important;
    }
  
    .ps-lg-9 {
      padding-left: 72px !important;
    }
  
    .ps-lg-10 {
      padding-left: 80px !important;
    }
  
    .ps-lg-14 {
      padding-left: 112px !important;
    }
  
    .ps-lg-25 {
      padding-left: 200px !important;
    }
  
    .text-lg-start {
      text-align: left !important;
    }
  
    .text-lg-end {
      text-align: right !important;
    }
  
    .text-lg-center {
      text-align: center !important;
    }
  }
  @media (min-width: 1200px) {
    .fs-1 {
      font-size: 2.5rem !important;
    }
  
    .fs-2 {
      font-size: 2rem !important;
    }
  
    .fs-3 {
      font-size: 1.75rem !important;
    }
  
    .fs-4 {
      font-size: 1.5rem !important;
    }
  }
  @media print {
    .d-print-inline {
      display: inline !important;
    }
  
    .d-print-inline-block {
      display: inline-block !important;
    }
  
    .d-print-block {
      display: block !important;
    }
  
    .d-print-grid {
      display: grid !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;
    }
  
    .d-print-none {
      display: none !important;
    }
  }
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4010;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
  }
  
  .modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
  }
  .modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
  }
  @media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
      transition: none;
    }
  }
  .modal.show .modal-dialog {
    transform: none;
  }
  .modal.modal-static .modal-dialog {
    transform: scale(1.02);
  }
  
  .modal-dialog-scrollable {
    height: calc(100% - 1rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden;
  }
  .modal-dialog-scrollable .modal-body {
    overflow-y: auto;
  }
  
  .modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
  }
  
  .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(51, 51, 51, 0.2);
    border-radius: 0.3rem;
    outline: 0;
  }
  
  .modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4000;
    width: 100vw;
    height: 100vh;
    background-color: #333333;
  }
  .modal-backdrop.fade {
    opacity: 0;
  }
  .modal-backdrop.show {
    opacity: 0.5;
  }
  
  .modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0.8rem;
    border-bottom: 1px solid #99C7ED;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
  }
  .modal-header .btn-close {
    padding: 0.4rem 0.4rem;
    margin: -0.4rem -0.4rem -0.4rem auto;
  }
  
  .modal-title {
    margin-bottom: 0;
    line-height: 1.5;
  }
  
  .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 0.8rem;
  }
  
  .modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 0.55rem;
    border-top: 1px solid #99C7ED;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
  }
  .modal-footer > * {
    margin: 0.25rem;
  }
  
  @media (min-width: 600px) {
    .modal-dialog {
      max-width: 500px;
      margin: 1.75rem auto;
    }
  
    .modal-dialog-scrollable {
      height: calc(100% - 3.5rem);
    }
  
    .modal-dialog-centered {
      min-height: calc(100% - 3.5rem);
    }
  
    .modal-sm {
      max-width: 300px;
    }
  }
  @media (min-width: 1366px) {
    .modal-lg,
  .modal-xl {
      max-width: 800px;
    }
  }
  .modal-xl {
    max-width: 1140px;
  }
  
  .modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen .modal-footer {
    border-radius: 0;
  }
  
  @media (max-width: 599.98px) {
    .modal-fullscreen-sm-down {
      width: 100vw;
      max-width: none;
      height: 100%;
      margin: 0;
    }
    .modal-fullscreen-sm-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0;
    }
    .modal-fullscreen-sm-down .modal-header {
      border-radius: 0;
    }
    .modal-fullscreen-sm-down .modal-body {
      overflow-y: auto;
    }
    .modal-fullscreen-sm-down .modal-footer {
      border-radius: 0;
    }
  }
  @media (max-width: 833.98px) {
    .modal-fullscreen-md-down {
      width: 100vw;
      max-width: none;
      height: 100%;
      margin: 0;
    }
    .modal-fullscreen-md-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0;
    }
    .modal-fullscreen-md-down .modal-header {
      border-radius: 0;
    }
    .modal-fullscreen-md-down .modal-body {
      overflow-y: auto;
    }
    .modal-fullscreen-md-down .modal-footer {
      border-radius: 0;
    }
  }
  @media (max-width: 1365.98px) {
    .modal-fullscreen-lg-down {
      width: 100vw;
      max-width: none;
      height: 100%;
      margin: 0;
    }
    .modal-fullscreen-lg-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0;
    }
    .modal-fullscreen-lg-down .modal-header {
      border-radius: 0;
    }
    .modal-fullscreen-lg-down .modal-body {
      overflow-y: auto;
    }
    .modal-fullscreen-lg-down .modal-footer {
      border-radius: 0;
    }
  }
  .glide {
    position: relative;
    width: 100%;
    box-sizing: border-box;
  }
  .glide * {
    box-sizing: inherit;
  }
  .glide__track {
    overflow: hidden;
  }
  .glide__slides {
    position: relative;
    width: 100%;
    list-style: none;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    transform-style: preserve-3d;
    touch-action: pan-Y;
    overflow: hidden;
    padding: 0;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    will-change: transform;
  }
  .glide__slides--dragging {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .glide__slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    white-space: normal;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
  }
  .glide__slide a {
    -webkit-user-select: none;
            user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }
  .glide__arrows {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .glide__bullets {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .glide--rtl {
    direction: rtl;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #424242;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(51, 51, 51, 0);
  }
  
  b,
  strong {
    font-family: Lato;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
  }
  
  [tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important;
  }
  
  .row {
    --bs-gutter-x: 0px;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
  }
  .row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
  }
  
  .col {
    flex: 1 0 0%;
  }
  
  .row-cols-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  
  .row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  
  .row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .row-cols-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  
  .row-cols-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  
  .row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  
  .row-cols-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  
  .col-auto {
    flex: 0 0 auto;
    width: auto;
  }
  
  .col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  
  .col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  
  .col-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  
  .col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  
  .col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  
  .col-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  
  .col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  
  .col-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  
  .col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  
  .col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  
  .col-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  
  .offset-1 {
    margin-left: 8.33333333%;
  }
  
  .offset-2 {
    margin-left: 16.66666667%;
  }
  
  .offset-3 {
    margin-left: 25%;
  }
  
  .offset-4 {
    margin-left: 33.33333333%;
  }
  
  .offset-5 {
    margin-left: 41.66666667%;
  }
  
  .offset-6 {
    margin-left: 50%;
  }
  
  .offset-7 {
    margin-left: 58.33333333%;
  }
  
  .offset-8 {
    margin-left: 66.66666667%;
  }
  
  .offset-9 {
    margin-left: 75%;
  }
  
  .offset-10 {
    margin-left: 83.33333333%;
  }
  
  .offset-11 {
    margin-left: 91.66666667%;
  }
  
  .g-0,
  .gx-0 {
    --bs-gutter-x: 0;
  }
  
  .g-0,
  .gy-0 {
    --bs-gutter-y: 0;
  }
  
  .g-1,
  .gx-1 {
    --bs-gutter-x: 8px;
  }
  
  .g-1,
  .gy-1 {
    --bs-gutter-y: 8px;
  }
  
  .g-2,
  .gx-2 {
    --bs-gutter-x: 16px;
  }
  
  .g-2,
  .gy-2 {
    --bs-gutter-y: 16px;
  }
  
  .g-3,
  .gx-3 {
    --bs-gutter-x: 24px;
  }
  
  .g-3,
  .gy-3 {
    --bs-gutter-y: 24px;
  }
  
  .g-4,
  .gx-4 {
    --bs-gutter-x: 32px;
  }
  
  .g-4,
  .gy-4 {
    --bs-gutter-y: 32px;
  }
  
  .g-5,
  .gx-5 {
    --bs-gutter-x: 40px;
  }
  
  .g-5,
  .gy-5 {
    --bs-gutter-y: 40px;
  }
  
  .g-6,
  .gx-6 {
    --bs-gutter-x: 48px;
  }
  
  .g-6,
  .gy-6 {
    --bs-gutter-y: 48px;
  }
  
  .g-8,
  .gx-8 {
    --bs-gutter-x: 64px;
  }
  
  .g-8,
  .gy-8 {
    --bs-gutter-y: 64px;
  }
  
  .g-9,
  .gx-9 {
    --bs-gutter-x: 72px;
  }
  
  .g-9,
  .gy-9 {
    --bs-gutter-y: 72px;
  }
  
  .g-10,
  .gx-10 {
    --bs-gutter-x: 80px;
  }
  
  .g-10,
  .gy-10 {
    --bs-gutter-y: 80px;
  }
  
  .g-14,
  .gx-14 {
    --bs-gutter-x: 112px;
  }
  
  .g-14,
  .gy-14 {
    --bs-gutter-y: 112px;
  }
  
  .g-25,
  .gx-25 {
    --bs-gutter-x: 200px;
  }
  
  .g-25,
  .gy-25 {
    --bs-gutter-y: 200px;
  }
  
  @media (min-width: 600px) {
    .col-sm {
      flex: 1 0 0%;
    }
  
    .row-cols-sm-auto > * {
      flex: 0 0 auto;
      width: auto;
    }
  
    .row-cols-sm-1 > * {
      flex: 0 0 auto;
      width: 100%;
    }
  
    .row-cols-sm-2 > * {
      flex: 0 0 auto;
      width: 50%;
    }
  
    .row-cols-sm-3 > * {
      flex: 0 0 auto;
      width: 33.3333333333%;
    }
  
    .row-cols-sm-4 > * {
      flex: 0 0 auto;
      width: 25%;
    }
  
    .row-cols-sm-5 > * {
      flex: 0 0 auto;
      width: 20%;
    }
  
    .row-cols-sm-6 > * {
      flex: 0 0 auto;
      width: 16.6666666667%;
    }
  
    .col-sm-auto {
      flex: 0 0 auto;
      width: auto;
    }
  
    .col-sm-1 {
      flex: 0 0 auto;
      width: 8.33333333%;
    }
  
    .col-sm-2 {
      flex: 0 0 auto;
      width: 16.66666667%;
    }
  
    .col-sm-3 {
      flex: 0 0 auto;
      width: 25%;
    }
  
    .col-sm-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
    }
  
    .col-sm-5 {
      flex: 0 0 auto;
      width: 41.66666667%;
    }
  
    .col-sm-6 {
      flex: 0 0 auto;
      width: 50%;
    }
  
    .col-sm-7 {
      flex: 0 0 auto;
      width: 58.33333333%;
    }
  
    .col-sm-8 {
      flex: 0 0 auto;
      width: 66.66666667%;
    }
  
    .col-sm-9 {
      flex: 0 0 auto;
      width: 75%;
    }
  
    .col-sm-10 {
      flex: 0 0 auto;
      width: 83.33333333%;
    }
  
    .col-sm-11 {
      flex: 0 0 auto;
      width: 91.66666667%;
    }
  
    .col-sm-12 {
      flex: 0 0 auto;
      width: 100%;
    }
  
    .offset-sm-0 {
      margin-left: 0;
    }
  
    .offset-sm-1 {
      margin-left: 8.33333333%;
    }
  
    .offset-sm-2 {
      margin-left: 16.66666667%;
    }
  
    .offset-sm-3 {
      margin-left: 25%;
    }
  
    .offset-sm-4 {
      margin-left: 33.33333333%;
    }
  
    .offset-sm-5 {
      margin-left: 41.66666667%;
    }
  
    .offset-sm-6 {
      margin-left: 50%;
    }
  
    .offset-sm-7 {
      margin-left: 58.33333333%;
    }
  
    .offset-sm-8 {
      margin-left: 66.66666667%;
    }
  
    .offset-sm-9 {
      margin-left: 75%;
    }
  
    .offset-sm-10 {
      margin-left: 83.33333333%;
    }
  
    .offset-sm-11 {
      margin-left: 91.66666667%;
    }
  
    .g-sm-0,
  .gx-sm-0 {
      --bs-gutter-x: 0;
    }
  
    .g-sm-0,
  .gy-sm-0 {
      --bs-gutter-y: 0;
    }
  
    .g-sm-1,
  .gx-sm-1 {
      --bs-gutter-x: 8px;
    }
  
    .g-sm-1,
  .gy-sm-1 {
      --bs-gutter-y: 8px;
    }
  
    .g-sm-2,
  .gx-sm-2 {
      --bs-gutter-x: 16px;
    }
  
    .g-sm-2,
  .gy-sm-2 {
      --bs-gutter-y: 16px;
    }
  
    .g-sm-3,
  .gx-sm-3 {
      --bs-gutter-x: 24px;
    }
  
    .g-sm-3,
  .gy-sm-3 {
      --bs-gutter-y: 24px;
    }
  
    .g-sm-4,
  .gx-sm-4 {
      --bs-gutter-x: 32px;
    }
  
    .g-sm-4,
  .gy-sm-4 {
      --bs-gutter-y: 32px;
    }
  
    .g-sm-5,
  .gx-sm-5 {
      --bs-gutter-x: 40px;
    }
  
    .g-sm-5,
  .gy-sm-5 {
      --bs-gutter-y: 40px;
    }
  
    .g-sm-6,
  .gx-sm-6 {
      --bs-gutter-x: 48px;
    }
  
    .g-sm-6,
  .gy-sm-6 {
      --bs-gutter-y: 48px;
    }
  
    .g-sm-8,
  .gx-sm-8 {
      --bs-gutter-x: 64px;
    }
  
    .g-sm-8,
  .gy-sm-8 {
      --bs-gutter-y: 64px;
    }
  
    .g-sm-9,
  .gx-sm-9 {
      --bs-gutter-x: 72px;
    }
  
    .g-sm-9,
  .gy-sm-9 {
      --bs-gutter-y: 72px;
    }
  
    .g-sm-10,
  .gx-sm-10 {
      --bs-gutter-x: 80px;
    }
  
    .g-sm-10,
  .gy-sm-10 {
      --bs-gutter-y: 80px;
    }
  
    .g-sm-14,
  .gx-sm-14 {
      --bs-gutter-x: 112px;
    }
  
    .g-sm-14,
  .gy-sm-14 {
      --bs-gutter-y: 112px;
    }
  
    .g-sm-25,
  .gx-sm-25 {
      --bs-gutter-x: 200px;
    }
  
    .g-sm-25,
  .gy-sm-25 {
      --bs-gutter-y: 200px;
    }
  }
  @media (min-width: 834px) {
    .col-md {
      flex: 1 0 0%;
    }
  
    .row-cols-md-auto > * {
      flex: 0 0 auto;
      width: auto;
    }
  
    .row-cols-md-1 > * {
      flex: 0 0 auto;
      width: 100%;
    }
  
    .row-cols-md-2 > * {
      flex: 0 0 auto;
      width: 50%;
    }
  
    .row-cols-md-3 > * {
      flex: 0 0 auto;
      width: 33.3333333333%;
    }
  
    .row-cols-md-4 > * {
      flex: 0 0 auto;
      width: 25%;
    }
  
    .row-cols-md-5 > * {
      flex: 0 0 auto;
      width: 20%;
    }
  
    .row-cols-md-6 > * {
      flex: 0 0 auto;
      width: 16.6666666667%;
    }
  
    .col-md-auto {
      flex: 0 0 auto;
      width: auto;
    }
  
    .col-md-1 {
      flex: 0 0 auto;
      width: 8.33333333%;
    }
  
    .col-md-2 {
      flex: 0 0 auto;
      width: 16.66666667%;
    }
  
    .col-md-3 {
      flex: 0 0 auto;
      width: 25%;
    }
  
    .col-md-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
    }
  
    .col-md-5 {
      flex: 0 0 auto;
      width: 41.66666667%;
    }
  
    .col-md-6 {
      flex: 0 0 auto;
      width: 50%;
    }
  
    .col-md-7 {
      flex: 0 0 auto;
      width: 58.33333333%;
    }
  
    .col-md-8 {
      flex: 0 0 auto;
      width: 66.66666667%;
    }
  
    .col-md-9 {
      flex: 0 0 auto;
      width: 75%;
    }
  
    .col-md-10 {
      flex: 0 0 auto;
      width: 83.33333333%;
    }
  
    .col-md-11 {
      flex: 0 0 auto;
      width: 91.66666667%;
    }
  
    .col-md-12 {
      flex: 0 0 auto;
      width: 100%;
    }
  
    .offset-md-0 {
      margin-left: 0;
    }
  
    .offset-md-1 {
      margin-left: 8.33333333%;
    }
  
    .offset-md-2 {
      margin-left: 16.66666667%;
    }
  
    .offset-md-3 {
      margin-left: 25%;
    }
  
    .offset-md-4 {
      margin-left: 33.33333333%;
    }
  
    .offset-md-5 {
      margin-left: 41.66666667%;
    }
  
    .offset-md-6 {
      margin-left: 50%;
    }
  
    .offset-md-7 {
      margin-left: 58.33333333%;
    }
  
    .offset-md-8 {
      margin-left: 66.66666667%;
    }
  
    .offset-md-9 {
      margin-left: 75%;
    }
  
    .offset-md-10 {
      margin-left: 83.33333333%;
    }
  
    .offset-md-11 {
      margin-left: 91.66666667%;
    }
  
    .g-md-0,
  .gx-md-0 {
      --bs-gutter-x: 0;
    }
  
    .g-md-0,
  .gy-md-0 {
      --bs-gutter-y: 0;
    }
  
    .g-md-1,
  .gx-md-1 {
      --bs-gutter-x: 8px;
    }
  
    .g-md-1,
  .gy-md-1 {
      --bs-gutter-y: 8px;
    }
  
    .g-md-2,
  .gx-md-2 {
      --bs-gutter-x: 16px;
    }
  
    .g-md-2,
  .gy-md-2 {
      --bs-gutter-y: 16px;
    }
  
    .g-md-3,
  .gx-md-3 {
      --bs-gutter-x: 24px;
    }
  
    .g-md-3,
  .gy-md-3 {
      --bs-gutter-y: 24px;
    }
  
    .g-md-4,
  .gx-md-4 {
      --bs-gutter-x: 32px;
    }
  
    .g-md-4,
  .gy-md-4 {
      --bs-gutter-y: 32px;
    }
  
    .g-md-5,
  .gx-md-5 {
      --bs-gutter-x: 40px;
    }
  
    .g-md-5,
  .gy-md-5 {
      --bs-gutter-y: 40px;
    }
  
    .g-md-6,
  .gx-md-6 {
      --bs-gutter-x: 48px;
    }
  
    .g-md-6,
  .gy-md-6 {
      --bs-gutter-y: 48px;
    }
  
    .g-md-8,
  .gx-md-8 {
      --bs-gutter-x: 64px;
    }
  
    .g-md-8,
  .gy-md-8 {
      --bs-gutter-y: 64px;
    }
  
    .g-md-9,
  .gx-md-9 {
      --bs-gutter-x: 72px;
    }
  
    .g-md-9,
  .gy-md-9 {
      --bs-gutter-y: 72px;
    }
  
    .g-md-10,
  .gx-md-10 {
      --bs-gutter-x: 80px;
    }
  
    .g-md-10,
  .gy-md-10 {
      --bs-gutter-y: 80px;
    }
  
    .g-md-14,
  .gx-md-14 {
      --bs-gutter-x: 112px;
    }
  
    .g-md-14,
  .gy-md-14 {
      --bs-gutter-y: 112px;
    }
  
    .g-md-25,
  .gx-md-25 {
      --bs-gutter-x: 200px;
    }
  
    .g-md-25,
  .gy-md-25 {
      --bs-gutter-y: 200px;
    }
  }
  @media (min-width: 1366px) {
    .col-lg {
      flex: 1 0 0%;
    }
  
    .row-cols-lg-auto > * {
      flex: 0 0 auto;
      width: auto;
    }
  
    .row-cols-lg-1 > * {
      flex: 0 0 auto;
      width: 100%;
    }
  
    .row-cols-lg-2 > * {
      flex: 0 0 auto;
      width: 50%;
    }
  
    .row-cols-lg-3 > * {
      flex: 0 0 auto;
      width: 33.3333333333%;
    }
  
    .row-cols-lg-4 > * {
      flex: 0 0 auto;
      width: 25%;
    }
  
    .row-cols-lg-5 > * {
      flex: 0 0 auto;
      width: 20%;
    }
  
    .row-cols-lg-6 > * {
      flex: 0 0 auto;
      width: 16.6666666667%;
    }
  
    .col-lg-auto {
      flex: 0 0 auto;
      width: auto;
    }
  
    .col-lg-1 {
      flex: 0 0 auto;
      width: 8.33333333%;
    }
  
    .col-lg-2 {
      flex: 0 0 auto;
      width: 16.66666667%;
    }
  
    .col-lg-3 {
      flex: 0 0 auto;
      width: 25%;
    }
  
    .col-lg-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
    }
  
    .col-lg-5 {
      flex: 0 0 auto;
      width: 41.66666667%;
    }
  
    .col-lg-6 {
      flex: 0 0 auto;
      width: 50%;
    }
  
    .col-lg-7 {
      flex: 0 0 auto;
      width: 58.33333333%;
    }
  
    .col-lg-8 {
      flex: 0 0 auto;
      width: 66.66666667%;
    }
  
    .col-lg-9 {
      flex: 0 0 auto;
      width: 75%;
    }
  
    .col-lg-10 {
      flex: 0 0 auto;
      width: 83.33333333%;
    }
  
    .col-lg-11 {
      flex: 0 0 auto;
      width: 91.66666667%;
    }
  
    .col-lg-12 {
      flex: 0 0 auto;
      width: 100%;
    }
  
    .offset-lg-0 {
      margin-left: 0;
    }
  
    .offset-lg-1 {
      margin-left: 8.33333333%;
    }
  
    .offset-lg-2 {
      margin-left: 16.66666667%;
    }
  
    .offset-lg-3 {
      margin-left: 25%;
    }
  
    .offset-lg-4 {
      margin-left: 33.33333333%;
    }
  
    .offset-lg-5 {
      margin-left: 41.66666667%;
    }
  
    .offset-lg-6 {
      margin-left: 50%;
    }
  
    .offset-lg-7 {
      margin-left: 58.33333333%;
    }
  
    .offset-lg-8 {
      margin-left: 66.66666667%;
    }
  
    .offset-lg-9 {
      margin-left: 75%;
    }
  
    .offset-lg-10 {
      margin-left: 83.33333333%;
    }
  
    .offset-lg-11 {
      margin-left: 91.66666667%;
    }
  
    .g-lg-0,
  .gx-lg-0 {
      --bs-gutter-x: 0;
    }
  
    .g-lg-0,
  .gy-lg-0 {
      --bs-gutter-y: 0;
    }
  
    .g-lg-1,
  .gx-lg-1 {
      --bs-gutter-x: 8px;
    }
  
    .g-lg-1,
  .gy-lg-1 {
      --bs-gutter-y: 8px;
    }
  
    .g-lg-2,
  .gx-lg-2 {
      --bs-gutter-x: 16px;
    }
  
    .g-lg-2,
  .gy-lg-2 {
      --bs-gutter-y: 16px;
    }
  
    .g-lg-3,
  .gx-lg-3 {
      --bs-gutter-x: 24px;
    }
  
    .g-lg-3,
  .gy-lg-3 {
      --bs-gutter-y: 24px;
    }
  
    .g-lg-4,
  .gx-lg-4 {
      --bs-gutter-x: 32px;
    }
  
    .g-lg-4,
  .gy-lg-4 {
      --bs-gutter-y: 32px;
    }
  
    .g-lg-5,
  .gx-lg-5 {
      --bs-gutter-x: 40px;
    }
  
    .g-lg-5,
  .gy-lg-5 {
      --bs-gutter-y: 40px;
    }
  
    .g-lg-6,
  .gx-lg-6 {
      --bs-gutter-x: 48px;
    }
  
    .g-lg-6,
  .gy-lg-6 {
      --bs-gutter-y: 48px;
    }
  
    .g-lg-8,
  .gx-lg-8 {
      --bs-gutter-x: 64px;
    }
  
    .g-lg-8,
  .gy-lg-8 {
      --bs-gutter-y: 64px;
    }
  
    .g-lg-9,
  .gx-lg-9 {
      --bs-gutter-x: 72px;
    }
  
    .g-lg-9,
  .gy-lg-9 {
      --bs-gutter-y: 72px;
    }
  
    .g-lg-10,
  .gx-lg-10 {
      --bs-gutter-x: 80px;
    }
  
    .g-lg-10,
  .gy-lg-10 {
      --bs-gutter-y: 80px;
    }
  
    .g-lg-14,
  .gx-lg-14 {
      --bs-gutter-x: 112px;
    }
  
    .g-lg-14,
  .gy-lg-14 {
      --bs-gutter-y: 112px;
    }
  
    .g-lg-25,
  .gx-lg-25 {
      --bs-gutter-x: 200px;
    }
  
    .g-lg-25,
  .gy-lg-25 {
      --bs-gutter-y: 200px;
    }
  }
  .light/*eli*/
  {
    padding-left: 130px;
    padding-right: 130px;
    padding-bottom: 50px;
  
  }
  
  .link-a
  {
    color: #1762a0;
  }
  .container-fluid {
    width: 100%;
    padding-right: var(--bs-gutter-x, 10px);
    padding-left: var(--bs-gutter-x, 10px);
    margin-right: auto;
    margin-left: auto;
  }
  
  @media (min-width: 600px) {
    .container-fluid {
      width: 100%;
      padding-right: var(--bs-gutter-x, 20px);
      padding-left: var(--bs-gutter-x, 20px);
      margin-right: auto;
      margin-left: auto;
    }
    .light/*eli*/
    {
      padding-left: 20px!important;
      padding-right: 20px!important;
     
    }
    
  }
  @media (min-width: 834px) {
    .container-fluid {
      width: 100%;
      padding-right: var(--bs-gutter-x, 20px);
      padding-left: var(--bs-gutter-x, 20px);
      margin-right: auto;
      margin-left: auto;
    }
    
  }
  @media (min-width: 1366px) {
    .container-fluid {
      width: 100%;
      padding-right: var(--bs-gutter-x, 70px);
      padding-left: var(--bs-gutter-x, 70px);
      margin-right: auto;
      margin-left: auto;
    }
    .light /*eli*/
  {
    padding-left: 140px!important;
    padding-right: 140px!important;
    padding-bottom: 50px!important;
  
  }
   
  }
  @font-face {
    font-family: "Noto Serif";
    src: url("fonts/Noto_Serif/NotoSerif-Regular.ttf") format("truetype");
    font-display: swap;
  }
  @font-face {
    font-family: "Lato";
    src: url("fonts/Lato/Lato-Regular.ttf") format("truetype");
    font-display: swap;
  }
  .h1 {
    font-family: Noto Serif;
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 45px;
  }
  
  .h2 {
    font-family: Lato;
    font-style: normal;
    font-weight: 800;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 1%;
  }
  
  .h3 {
    font-family: Lato;
    font-style: normal;
    font-weight: 800;
    font-size: 26px;
    line-height: 31px;
  } 
  
  .h4 {
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 28px;
  }
  
  .txt-subtitle {
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0.02em;
  }
  
  .txt-pre-title, .booking .ss-divider {
    font-family: Lato;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.02em;
  }
  
  .txt-paragraph-form {
    font-family: Lato;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19.2px;
    letter-spacing: 0.02em;
  }
  
  .txt-strong, .booking .ss-content .ss-list .ss-optgroup .ss-optgroup-label, .booking-btn-fligth, .card-destination_small .card-header-caption a {
    font-family: Lato;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
  }
  
  .txt-body, .footer-nav-ul li a, .booking .ss-content .ss-list .ss-optgroup .ss-option, .booking-input {
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
  }
  
  .txt-small, .booking-label {
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 13.5px;
    line-height: 20.25px;
  }
  
  .txt-small-ex {
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 20.25px;
  }
  
  .txt-btn {
    font-family: Lato;
    font-style: normal;
    font-weight: 900;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.04em;
  }
  
  .txt-btn-menu {
    font-family: Lato;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.04em;
  }
  
  .txt-btn-txt {
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
  }
  
  .txt-price {
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 29px;
    line-height: 35px;
    letter-spacing: 0.02em;
  }
  
  .txt-space {
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.3em;
  }
  
  .txt-price-through {
    font-family: Lato;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 1%;
  }
  
  .txt-em {
    font-family: Lato;
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
  }
  
  @media (min-width: 834px) {
    .h1 {
      font-size: 48px;
      line-height: 56px;
    }
  
    .h2 {
      font-size: 36px;
      line-height: 43px;
    }
  }
  .radio-group-label {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
  }
  .radio-group-label span:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0px;
    top: 50%;
    transform: translateX(0) translateY(-50%);
    background-image: url("/img/icons/svg/toggle-radio-button.svg");
    background-size: cover;
  }
  .radio-group-input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    opacity: 0;
  }
  .radio-group-input:checked + span:after {
    background-image: url("/img/icons/svg/toggle-radio-button-active.svg");
  }
  
  .btn {
    font-family: Lato;
    font-style: normal;
    font-weight: 900;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.04em;
    min-height: 38px;
    padding: 10px 8px;
    cursor: pointer;
    transition: all 0.5s ease;
    text-decoration: none;
    border: 1px solid;
    border-radius: 3px;
  }
  .btn:focus {
    outline: none;
  }
  .btn_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 7px 8px;
  }
  .btn_icon svg {
    width: 24px;
    height: 24px;
  }
  .btn .white {
    fill: #fff;
  }
  .btn-no-pointer {
    cursor: context-menu !important;
  }
  .btn-white {
    background: #fff;
    color: #656565;
    box-shadow: 0px 0px 5px 1px rgba(148, 148, 148, 0.3);
  }
  .btn-outline-primary {
    border-color: #0059A2;
    background: transparent;
    color: #0059A2;
  }
  .btn-outline-primary svg {
    fill: #0059A2;
  }
  .btn-primary {
    background: #0059A2;
    border-color: #0059A2;
    color: #fff;
    box-shadow: 0px 0px 5px 1px rgba(148, 148, 148, 0.3);
  }
  .btn-primary:hover, .btn-outline-primary:hover {
    background: #00467F;
    border-color: #00467F;
    color: #fff;
    box-shadow: 0px 9px 10px rgba(0, 0, 0, 0.1);
  }
  .btn-secondary {
    background: #EA5E00;
    border-color: #EA5E00;
    color: #fff;
    box-shadow: 0px 0px 5px 1px rgba(148, 148, 148, 0.3);
  }
  .btn-secondary svg {
    fill: #fff;
  }
  .btn-outline-secondary {
    border-color: #EA5E00;
    background: #FFFFFF;
    color: #C95100;
  }
  .btn-secondary:hover, .btn-outline-secondary:hover {
    background: #C95100;
    border-color: #C95100;
    color: #fff;
    box-shadow: 0px 9px 10px rgba(0, 0, 0, 0.1);
  }
  .btn-secondary:hover svg, .btn-outline-secondary:hover svg {
    fill: #fff;
  }
  .btn-tertiary {
    background: #E5F4FF;
    border-color: #E5F4FF;
    color: #333333;
    box-shadow: 0px 0px 5px 1px rgba(148, 148, 148, 0.3);
  }
  .btn-tertiary svg {
    fill: #333333;
  }
  .btn-tertiary:hover {
    box-shadow: 0px 9px 10px rgba(0, 0, 0, 0.1);
  }
  .btn-toggle {
    border-color: rgba(148, 148, 148, 0.2);
    background: #fff;
    color: #424242;
    box-shadow: none;
  }
  .btn-toggle:hover {
    border-color: #99C7ED;
    background: #fff;
    color: #00467F;
    box-shadow: 0px 5px 10px rgba(153, 199, 237, 0.2);
  }
  .btn-toggle_selected {
    border-color: #00467F;
    background: #00467F;
    color: #fff;
    box-shadow: none;
  }
  .btn-toggle_selected:hover {
    border-color: #00467F;
    background: #00467F;
    color: #fff;
    box-shadow: none;
  }
  .btn-my-royal {
    padding: 0 15px;
    font-size: 12px;
    min-height: 30px;
  }
  .btn-my-royal svg {
    margin-right: 5px;
    fill: #FDB319;
    width: 22px;
    height: 20px;
  }
  .btn-close {
    background: none;
    border: none;
  }
  .btn-close svg {
    width: 20px;
    height: 20px;
  }
  .btn-dropmenu {
    padding: 8px 8px 8px 24px;
    border-color: white;
    background: white;
    font-family: Lato;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.02em;
  }
  .btn-dropmenu_body {
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
  }
  .btn-dropmenu_strong {
    font-family: Lato;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
  }
  .btn-dropmenu-strong {
    font-family: Lato;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.02em;
    font-weight: 700;
  }
  .btn-short-space {
    padding: 0 0 0 24px !important;
    line-height: 8px;
    min-height: 24px !important;
  }
  
  .btn-link {
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 10px 8px;
    cursor: pointer;
    text-decoration: underline;
    border: 1px solid transparent;
    border-radius: 3px;
    outline: none;
    background-color: transparent;
  }
  .btn-link svg {
    margin-right: 8px;
    fill: #00467F;
  }
  .btn-link-primary {
    color: #00467F;
  }
  .btn-link-primary:hover {
    color: #424242;
  }
  .btn-link-primary:hover svg {
    fill: #424242;
  }
  .btn-link-gray {
    color: #424242;
  }
  
  .btn-text {
    color: #656565;
    border-color: white;
    background-color: white;
  }
  .btn-text svg {
    fill: #656565;
  }
  .btn-text:hover {
    color: #00467F;
  }
  .btn-text:hover svg {
    fill: #00467F;
  }
  .btn-text_small {
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 13.5px;
    line-height: 20.25px;
  }
  
  [class^=btn-icon] {
    position: relative;
  }
  
  .glide__slides {
    margin-top: 0;
    margin-bottom: 0;
    white-space: normal;
  }
  .glide__bullets, .glide__arrow {
    display: none;
  }
  .glide__arrow {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: none;
    border-radius: 30px;
    background-color: #fff;
    filter: drop-shadow(0px 9px 10px rgba(0, 0, 0, 0.1));
    position: absolute;
    top: 50%;
  }
  .glide__arrow:focus {
    outline: none;
  }
  .glide__arrow--left {
    float: left;
  }
  .glide__arrow--right {
    float: right;
    right: 0;
    transform: translateX(calc(100% + 8px)) translateY(-50%);
  }
  .glide__bullet {
    font-size: 14px;
    padding: 6px;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
  }
  .glide__bullet svg {
    width: 14px;
    height: 14px;
    fill: #C4C4C4;
  }
  .glide__bullet--active svg {
    fill: #0059A2;
  }
  .glide__btn {
    color: #656565;
    border-color: transparent;
    background: none;
  }
  .glide__btn svg {
    fill: #656565;
  }
  .glide-same_height .glide__slides {
    display: flex;
  }
  .glide-same_height .glide__slide {
    height: auto;
  }
  .glide-same_height .glide__slide > div {
    height: 100%;
  }
  
  .bullets-d-flex .glide__bullets {
    display: flex;
  }
  
  .b-hover > .glide__controls {
    position: absolute;
    bottom: 0;
    transform: translateX(0) translateY(-100%);
    width: 100%;
  }
  .b-hover > .glide__controls .glide__bullets {
    justify-content: center;
  }
  
  @media (min-width: 600px) {
    .arrows-sm-d-flex .glide__arrow--right {
      display: block;
    }
  }
  @media (min-width: 1366px) {
    .arrows-lg-d-flex .glide__arrow--right {
      display: block;
    }
  }
  .glide-on-primary .glide__btn {
    color: #fff;
    border-color: transparent;
    background: none;
  }
  .glide-on-primary .glide__btn svg {
    fill: #FFD914;
  }
  .glide-on-primary .glide__bullet svg {
    fill: #fff;
  }
  .glide-on-primary .glide__bullet--active svg {
    fill: #99C7ED;
  }
  
  .glide-media-img {
    width: 100%;
  }
  
  @media (min-width: 834px) {
    .glide__controls {
      justify-content: space-between;
    }
    .glide__bullets {
      display: flex;
    }
  }
  @media (min-width: 1366px) {
    .glide__controls {
      align-items: center;
      justify-content: center;
    }
    .glide__controls::after {
      display: block;
      clear: both;
      content: "";
    }
    .glide__arrows {
      position: absolute;
    }
    .glide__link {
      position: absolute;
      right: 0;
    }
  }
  /*
      glide-offers
      Utilizado en las secciones
      1.- Detalle de ofertas
   */
  @media (min-width: 600px) {
    .glide-offers {
      padding-top: 20px;
      padding-bottom: 20px;
    }
    .glide-offers__slide {
      margin-bottom: 115px;
      transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
      transition-duration: 1s;
      transition-property: transform;
      transform: scale(0.9);
      opacity: 0.2;
    }
    .glide-offers__slide.glide__slide--active {
      z-index: 1;
      transform: scale(1.2);
      opacity: 1;
      background-color: white;
    }
  }
  /**
  * Mob
   */
  .mob {
    display: flex;
    justify-content: center;
    align-items: stretch;
  }
  .mob-icon {
    width: 59px;
    height: 59px;
    fill: #00467F;
  }
  
  .card {
    position: relative;
    box-sizing: border-box;
    border: 0.648318px solid rgba(148, 148, 148, 0.2);
    box-shadow: 0px 5px 10px rgba(153, 199, 237, 0.2);
  }
  .card-img {
    display: block;
    width: 100%;
  }
  .card-body {
    display: flex;
    flex-direction: column;
    padding: 15px 10px 10px;
    color: #262B2C;
  }
  .card-body strong {
    color: #0059A2;
  }
  .card-title {
    margin: 0 0 10px 0;
  }
  .card-text {
    margin: 0;
  }
  .card-main {
    margin-bottom: 10px;
  }
  .card-footer {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .card-destination .card-tag {
    display: none;
  }
  
  @media (max-width: 599.98px) {
    .card-destination {
      overflow: hidden;
      border: 1px solid rgba(148, 148, 148, 0.2);
      border-radius: 8px;
      box-shadow: 0px 5px 10px rgba(153, 199, 237, 0.2);
    }
    .card-destination .card-body {
      position: absolute;
      top: 0;
      right: 0;
      justify-content: space-between;
      width: 187px;
      height: 100%;
      background: rgba(255, 255, 255, 0.95);
    }
  }
  @media (min-width: 600px) {
    .card-destination .card-body {
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
    }
    .card-destination .card-tag {
      display: block;
      position: absolute;
      top: 13px;
      right: 6px;
    }
    .card-destination .card-tag span {
      background: #E5F4FF;
      color: #002644;
      padding: 2px 9px;
      border-radius: 6px;
      margin-right: 6px;
    }
  }
  .card-destination_small {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    min-height: 180px;
    border-radius: 8px;
  }
  .card-destination_small .card-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .card-destination_small .card-header {
    display: flex;
    flex-grow: 1;
    height: 100%;
  }
  .card-destination_small .card-header picture {
    width: 100%;
  }
  .card-destination_small .card-header-caption {
    position: absolute;
    bottom: 0;
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
  }
  .card-destination_small .card-header-caption a {
    text-decoration: none;
    color: #424242 !important;
  }
  .card-destination_small .card-body {
    display: none;
  }
  
  .card-offer {
    display: flex;
    overflow: hidden;
    justify-content: flex-end;
    border: 1px solid rgba(148, 148, 148, 0.2);
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgba(153, 199, 237, 0.2);
  }
  .card-offer .card-header {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .card-offer .card-header .card-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .card-offer .card-header .btn-my-royal {
    margin-top: 15px;
    margin-left: 7px;
  }
  .card-offer .card-body {
    position: relative;
    justify-content: space-between;
    width: 187px;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
  }
  .card-offer-inclusions {
    padding-left: 20px;
  }
  .card-offer-inclusions li:first-child {
    display: list-item;
  }
  .card-offer-inclusions li {
    display: none;
  }
  
  @media (min-width: 600px) {
    .card-offer-inclusions li {
      display: list-item;
    }
    .card-offer_sm-small .card-offer-inclusions li:first-child {
      display: list-item;
    }
    .card-offer_sm-small .card-offer-inclusions li {
      display: none;
    }
  }
  @media (min-width: 1366px) {
    .card-offer .card-body {
      max-width: 50%;
    }
  }
  .card-hotel {
    background: white;
  }
  .card-hotel .glide__track {
    padding-bottom: 0;
  }
  .card-hotel .glide__controls {
    position: absolute;
    bottom: 8px;
    width: 100%;
  }
  .card-hotel .glide__bullets {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .card-hotel-destination {
    margin-bottom: 20px;
  }
  .card-hotel-star {
    width: 24px;
    height: 24px;
    fill: #ECBA58;
  }
  .card-hotel-rate-from {
    font-family: "Lato";
    font-size: 13.5px;
    font-weight: normal;
    line-height: 100%;
  }
  .card-hotel-rate-from span {
    text-decoration: line-through;
  }
  .card-hotel-rate-price {
    font-family: "Lato";
    font-size: 26px;
    font-weight: 800;
    line-height: 31px;
  }
  .card-hotel-rate-price span {
    font-size: 17.5px;
    font-weight: bold;
    line-height: 26px;
  }
  
  @media (min-width: 600px) and (max-width: 1365.98px) {
    .card-hotel-horizontal {
      display: flex;
      box-sizing: border-box;
    }
    .card-hotel-horizontal .glide {
      height: 100%;
    }
    .card-hotel-horizontal .glide__track, .card-hotel-horizontal .glide__slides, .card-hotel-horizontal .glide__slide {
      height: 100%;
    }
    .card-hotel-horizontal .glide-media-img {
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
    }
    .card-hotel-horizontal .card-header {
      box-sizing: border-box;
      width: 50%;
      margin-right: 16px;
    }
    .card-hotel-horizontal .card-body {
      width: 50%;
      margin-left: 16px;
      padding: 10px 0px;
    }
    .card-hotel-horizontal-view-more {
      margin-right: 8px;
    }
    .card-hotel-horizontal-book-now {
      margin-left: 8px;
    }
  }
  .card-hotel-offer-inclusions {
    margin: 0;
    padding-left: 25px;
  }
  .card-hotel-offer-inclusion-item {
    display: none;
  }
  .card-hotel-offer-inclusion-item:nth-child(1), .card-hotel-offer-inclusion-item:nth-child(2) {
    display: list-item;
  }
  .card-hotel-offer-inclusion-item span {
    display: block;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .card-hotel-offer .card-hotel-gallery .glide__controls {
    position: absolute;
    bottom: 34px;
    width: 100%;
  }
  
  .card-room-gallery .glide__track {
    padding-bottom: 0px;
  }
  .card-room-gallery .glide__controls {
    position: absolute;
    bottom: 15px;
    width: 100%;
  }
  .card-room-divider {
    width: 100%;
    height: 1px;
    background-color: #99C7ED;
  }
  .card-room-rateplans {
    background: #E5F4FF;
  }
  .card-room-rateplan {
    box-sizing: border-box;
    padding: 8px;
    border: 1px solid rgba(153, 199, 237, 0.5);
  }
  .card-room-small {
    font-family: "Lato";
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    line-height: 14px;
    text-align: center;
    letter-spacing: 0.01em;
    -webkit-text-decoration-line: line-through;
            text-decoration-line: line-through;
  }
  .card-room-price {
    font-family: "Lato";
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
    line-height: 24px;
    margin-bottom: 5px;
  }
  .card-room-book .btn {
    display: block;
    justify-content: center;
    width: 100%;
  }
  
  @media (min-width: 600px) {
    .card-room-gallery {
      height: 100%;
    }
    .card-room-gallery .glide__track,
  .card-room-gallery .glide__slides,
  .card-room-gallery .glide__slide {
      height: 100%;
    }
    .card-room-gallery .glide-media-img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
    }
    .card-room .card-body {
      /*overflow : hidden;*/
      /*padding  : 0;*/
    }
    .card-room-rateplan-name {
      font-size: 15px;
    }
    .card-room-rateplan-name svg {
      fill: #0059A2;
    }
    .card-room-rateplan-discount {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
    }
    .card-room-rateplan-discount small {
      font-size: 15px;
      text-align: center;
      color: #0059A2;
    }
    .card-room-rateplan-discount ul {
      font-size: 12px;
      margin: 0;
      padding-left: 20px;
    }
    .card-room-rateplan-discount button {
      margin: auto;
    }
  }
  .card-restaurant {
    display: flex;
    overflow: hidden;
    justify-content: flex-end;
    border-radius: 8px;
  }
  .card-restaurant .card-header {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .card-restaurant .card-img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .card-restaurant .card-body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 200px;
    height: 100%;
    min-height: 220px;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.95);
  }
  .card-restaurant-text {
    color: #C95100;
  }
  
  @media (min-width: 600px) {
    .card-restaurant {
      flex-direction: column;
    }
    .card-restaurant .card-header {
      position: relative;
    }
    .card-restaurant .card-body {
      max-width: 100%;
    }
    .card-restaurant .card-buttom {
      text-align: center;
    }
    .card-restaurant .card-buttom .btn {
      display: inline-block;
    }
  }
  .booking {
    background: #E1F2FF;
  }
  .booking-group {
    padding: 5px 10px;
    border-radius: 3px;
    background: white;
  }
  .booking-label {
    display: flex;
    align-items: center;
    color: #656565;
  }
  .booking-label svg {
    flex-shrink: 0;
    margin-right: 4px;
    fill: #656565;
  }
  .booking-label-value {
    display: none;
  }
  .booking-input {
    cursor: pointer;
    color: #00467F;
    border: none;
    outline: none;
  }
  .booking-fligth { /*eli*/
    display: flex;
    align-items: left;
    justify-content: center;
    background: none;
  }
  .booking-btn-fligth {
    display: flex;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 9.5px 30px;
    color: #333333;
    border: none;
    border-radius: 3px;
    outline: none;
    background: white;
  }
  .booking-btn-fligth svg {
    margin-right: 10px;
  }
  .booking-guest {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 11px;
    border: 1px solid #99C7ED;
    border-bottom: none;
  }
  .booking-guest:last-child {
    border-bottom: 1px solid #99C7ED;
  }
  .booking-guest-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .booking-guest-item span {
    display: block;
    margin-right: 10px;
    margin-left: 10px;
    color: #0066BA;
  }
  .booking-guest-btn {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
  }
  .booking-guest-label {
    font-family: "Lato";
    font-size: 14px;
    font-weight: 700;
    line-height: 16.8px;
    color: #424242;
  }
  .booking-best_deal {
    font-family: "Lato";
    font-size: 14.4px;
    font-weight: 700;
    line-height: 14.4px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    padding: 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #333333;
    background: none;
  }
  .booking-best_deal svg {
    width: 24px;
    height: 24px;
    margin-right: 13px;
    fill: #00467F;
  }
  .booking-best_deal > div {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
  }
  .booking-best_deal a {
    text-decoration: none;
  }
  .booking .ss-single-selected {
    border: none;
  }
  .booking .ss-single-selected .ss-arrow {
    display: none;
  }
  .booking .ss-content .ss-list .ss-optgroup .ss-option {
    padding-left: 10px;
    color: #333333;
  }
  .booking .ss-content .ss-list .ss-optgroup .ss-optgroup-label {
    color: #333333;
  }
  .booking .ss-content .ss-list .ss-option:hover {
    background-color: #E1F2FF;
  }
  .booking .ss-divider {
    color: #949494;
    border-top: 1px solid #F2F2F2;
  }
  .booking .ss-option-selected {
    color: #00467F;
  }
  
  .booking-hotel .on-select-departure,
  .booking-hotel .on-select-airport {
    display: none !important;
  }
  
  .booking-movil {
    position: fixed;
    z-index: 3000;
    bottom: 0;
    width: 100%;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    transition-duration: 1s;
    transition-property: transform;
  }
  .booking-movil .container-flight {
    width: 100%;
  }
  .booking-movil .booking {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 9px 16px;
  }
  .booking-movil .booking-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 10px;
  }
  .booking-movil .booking-promocode, .booking-movil .booking-submit {
    width: calc(50% - 5px);
  }
  .booking-movil .booking-promocode {
    display: flex;
    justify-content: center;
  }
  .booking-movil .booking-promocode .booking-label {
    display: none;
  }
  .booking-movil .booking-submit {
    padding: 0;
  }
  .booking-movil .booking-best_deal {
    display: none;
  }
  .booking-movil .booking-dep-desk {
    display: none;
  }
  
  .dp-modal {
    z-index: 5000;
  }
  
  @media screen and (max-width: 699px) {
    .booking-movil:not(.show) {
      transform: translateY(100%);
    }
  }
  @media screen and (min-width: 700px) {
    .booking-modal {
      position: relative;
    }
  
    .booking-tb {
      bottom: auto;
      transform: translateY(0);
      background: #E1F2FF;
    }
    .booking-tb .booking {
      position: relative;
      max-width: 700px;
      margin: auto;
    }
    .booking-tb .booking-group {
      justify-content: center;
      box-sizing: border-box;
    }
    .booking-tb .booking-label {
      display: none;
    }
    .booking-tb .booking-label-value {
      display: flex;
      overflow: hidden;
      padding-top: 5px;
      padding-bottom: 5px;
      white-space: nowrap;
    }
    .booking-tb .booking-fligth {
      padding: 0;
      background-color: white;
    }
    .booking-tb .booking-btn-fligth {
      padding-top: 8px;
      padding-bottom: 8px;
    }
    .booking-tb .booking-best_deal {
      display: flex;
      flex-direction: row;
    }
    .booking-tb .booking-fligth {
      order: 1;
      width: 20%;
    }
    .booking-tb .booking-dep-desk {
      order: 2;
      width: 25%;
    }
    .booking-tb .booking-dep-desk .booking-input {
      display: none;
    }
    .booking-tb .booking-checkdates {
      position: relative;
      order: 3;
      width: 25%;
    }
    .booking-tb .booking-checkdates .booking-input {
      display: none;
    }
    .booking-tb .booking-checkdates .on-rangepicker {
      position: absolute;
      top: 110%;
      transform: translateX(-50%);
    }
    .booking-tb .booking-checkdates .dr-cals {
      left: 0;
      display: flex;
    }
    .booking-tb .booking-promocode {
      order: 4;
      width: 25%;
    }
    .booking-tb .booking-best_deal {
      order: 5;
      width: 20%;
    }
    .booking-tb .booking-resort {
      order: 6;
      width: 25%;
    }
    .booking-tb .booking-resort .ss-content.ss-open {
      min-width: 250px;
    }
    .booking-tb .booking-resort .ss-single-selected {
      display: none;
    }
    .booking-tb .booking-guest_room {
      position: relative;
      order: 7;
      width: 25%;
    }
    .booking-tb .booking-guest_room .booking-input {
      display: none;
    }
    .booking-tb .booking-guest_room .booking-guest-group {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 300px;
      padding: 5px;
      background: white;
    }
    /*eli*/
   .booking-guest-group2 {
      position: absolute;
      min-width: 300px;
      padding: 5px;
      background: white;
      z-index: 2;
  
    }
    .booking-tb .booking-submit {
      order: 8;
      width: 25%;
    }
    .booking-tb .booking-hotel .booking-resort {
      order: 2;
      width: 25%;
    }
    .booking-tb .booking-hotel .booking-guest_room {
      order: 3;
      width: 25%;
    }
    .booking-tb .booking-hotel .booking-submit {
      order: 4;
      width: 25%;
    }
    .booking-tb .booking-hotel .booking-checkdates {
      order: 6;
      width: 25%;
    }
    .booking-tb .booking-hotel .booking-checkdates .on-rangepicker {
      transform: translateX(-25%);
    }
    .booking-tb .booking-hotel .booking-promocode {
      order: 7;
      width: 25%;
    }
    .booking-tb .booking-hotel .booking-dep-desk {
      display: flex !important;
      order: 8;
      width: 25%;
      pointer-events: none;
      opacity: 0;
    }
    .booking-tb .container-flight:not(.show) {
      display: none;
    }
    .booking-tb .container-flight {
      position: absolute;
      z-index: 10;
      top: 50px;
      left: 100px;
      width: -webkit-max-content;
      width: -moz-max-content;
      width: max-content;
      min-width: 300px;
      padding: 10px;
      background: #E1F2FF;
    }
    .booking-tb .container-flight .booking-label {
      display: flex;
    }
    .booking-tb .container-flight .booking-label-value {
      display: none;
    }
    .booking-tb .booking-dep-desk {
      display: flex;
    }
  }
  @media screen and (min-width: 1333px) {
    .booking-desk .booking {
      align-items: stretch;
      flex-wrap: nowrap;
      justify-content: center;
      max-width: 1333px;
    }
    .booking-desk .booking-btn-fligth {
      padding: 5px 20px;
    }
    .booking-desk .booking-group {
      box-sizing: border-box;
      margin-right: 5px;
      margin-bottom: 0px;
      margin-left: 5px;
      background: white;
    }
    .booking-desk .booking-group .booking-label,
  .booking-desk .booking-group .booking-input {
      display: flex;
      white-space: nowrap;
    }
    .booking-desk .booking-group .booking-label-value {
      display: none;
      padding: 0;
    }
    .booking-desk .booking-fligth { /*eli*/
      order: 1;
      width: 150px;
    }
    .booking-desk .booking-dep-desk {
      order: 2;
      width: 165px;
    }
    .booking-desk .booking-resort {
      order: 3;
      width: 166px;
    }
    .booking-desk .booking-resort .ss-single-selected {
      display: flex;
    }
    .booking-desk .booking-resort .ss-content.ss-open {
      top: 100%;
      left: -12px;
      min-width: 360px;
    }
    .booking-desk .booking-resort .ss-content .ss-list {
      max-height: 400px;
    }
    .booking-desk .booking-checkdates {
      order: 4;
      width: 165px;
    }
    .booking-desk .booking-guest_room {
      order: 5;
      width: 153px;
    }
    .booking-desk .booking-promocode {
      order: 6;
      width: 117px;
    }
    .booking-desk .booking-promocode .booking-label-value {
      display: none !important;
    }
    .booking-desk .booking-submit {
      order: 7;
      width: 108px;
    }
    .booking-desk .booking-best_deal {
      order: 8;
      width: 126px;
      background-color: transparent;
    }
    .booking-desk .booking-guest_room {
      padding-bottom: 5px;
    }
    .booking-desk .booking-guest_room .booking-label {
      margin-bottom: 0;
    }
    .booking-desk .booking-guest_room .booking-input {
      display: flex;
    }
    .booking-desk .booking-promocode .booking-label {
      display: flex;
    }
    .booking-desk .booking-btn_submit {
      height: 100%;
      white-space: nowrap;
      color: #EA5E00;
      background-color: white;
    }
    .booking-desk .booking-hotel {
      max-width: 1200px;
    }
    .booking-desk .booking-hotel .booking-resort {
      order: 1;
      width: 163px;
    }
    .booking-desk .booking-hotel .booking-checkdates {
      order: 2;
      width: 165px;
    }
    .booking-desk .booking-hotel .booking-guest_room {
      order: 3;
      width: 202px;
    }
    .booking-desk .booking-hotel .booking-promocode {
      order: 4;
      width: 117px;
    }
    .booking-desk .booking-hotel .booking-submit {
      order: 5;
      width: 108px;
    }
    .booking-desk .booking-hotel .booking-best_deal {
      order: 6;
      width: 126px;
    }
    .booking-desk .booking-hotel .booking-dep-desk {
      display: none !important;
    }
    .booking-desk .container-flight {
      top: 80px;
      left: 131px;
    }
    .booking-desk .container-flight .booking-group {
      margin-bottom: 5px;
      margin-left: 0;
    }
  }
  .svg-big {
    width: 48px;
    height: 48px;
  }
  .svg-primary {
    fill: #00467F;
  }
  .svg-secundary {
    fill: #EA5E00;
  }
  
  .modal-btn-close {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    background: none;
  }
  .modal-btn-close svg {
    fill: #656565;
  }
  .modal-title-primary {
    margin: 0;
    color: #00467F;
    font-family: Lato;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
  }
  
  .modal-booking {
    z-index: 4010;
  }
  .modal-booking .booking-modal {
    z-index: 4010;
  }
  .modal-booking.show .booking-modal {
    transform: translateY(0);
  }
  
  @media (min-width: 700px) {
    .modal-booking {
      position: fixed;
      z-index: 4010;
      top: 0;
      left: 0;
      display: none;
      overflow: hidden;
      width: 100%;
      height: 100%;
      outline: 0;
    }
    .modal-booking.show {
      display: block;
    }
  
    .modal-booking-dialog {
      position: relative;
      width: auto;
      max-width: 750px;
      margin: 0.5rem auto;
      pointer-events: none;
    }
    .modal-booking.fade .modal-booking-dialog {
      transition: transform 0.3s ease-out;
      transform: translate(0, -50px);
    }
  }
  @media (min-width: 700px) and (prefers-reduced-motion: reduce) {
    .modal-booking.fade .modal-booking-dialog {
      transition: none;
    }
  }
  @media (min-width: 700px) {
    .modal-booking.show .modal-booking-dialog {
      transform: none;
    }
  }
  @media (min-width: 700px) {
    .modal-booking.modal-static .modal-booking-dialog {
      transform: scale(1.02);
    }
  }
  @media (min-width: 700px) {
    .modal-booking-dialog-centered {
      display: flex;
      align-items: center;
      min-height: calc(100% - 1rem);
    }
  }
  @media (min-width: 700px) {
    .modal-booking-content {
      position: relative;
      display: flex;
      flex-direction: column;
      width: 100%;
      pointer-events: auto;
      border: 0;
      outline: 0;
      background-color: transparent;
      border-radius: 0.3rem;
      background-clip: padding-box;
    }
  }
  @media (min-width: 700px) {
    .booking-modal {
      border-radius: 0.3rem;
    }
  }
  .footer-rotate-180 svg {
    transform: rotate(180deg);
  }
  .footer-social-links svg {
    width: 24px;
    height: 24px;
    margin-left: 25px;
    opacity: 0.8;
    fill: #ffffff;
  }
  .footer-nav-btn {
    padding-right: 0;
    padding-left: 0;
    color: #ECBA58;
    border-color: transparent;
    background: transparent;
  }
  .footer-nav-btn svg {
    margin-left: 10px;
    transition: transform 0.35s ease-in-out;
    fill: #ECBA58;
  }
  .footer-nav-ul {
    overflow: hidden;
    max-height: 0px;
    margin: 0;
    padding-left: 0;
    list-style: none;
    transition: max-height 0.35s ease-in;
  }
  .footer-nav-ul.show {
    max-height: 500px;
  }
  .footer-nav-ul li a {
    text-decoration: none;
    color: white;
  }
  .footer-nav-ul li a.txt-strong, .footer-nav-ul li .card-destination_small .card-header-caption a, .card-destination_small .card-header-caption .footer-nav-ul li a, .footer-nav-ul li a.booking-btn-fligth, .footer-nav-ul li .booking .ss-content .ss-list .ss-optgroup a.ss-optgroup-label, .booking .ss-content .ss-list .ss-optgroup .footer-nav-ul li a.ss-optgroup-label {
    font-weight: 700 !important;
  }
  .footer-family {
    position: relative;
  }
  .footer-family-text {
    color: #ECBA58;
    transform: translateY(-50%);
    /*background: #00467F;*/
    margin: 0;
    position: absolute;
    padding-right: 10px;
    top: 0;
    z-index: 2;
  }
  
  .glide-footer {
    position: relative;
  }
  .glide-footer:after, .glide-footer:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #ECBA58;
    opacity: 0.3;
  }
  .glide-footer:before {
    top: 100%;
  }
  .glide-footer svg {
    width: 100%;
    height: 60px;
  }
  .glide-footer .glide__track {
    padding: 16px 0px;
  }
  
  @media (min-width: 834px) {
    .footer-nav-ul {
      max-height: none;
    }
  }
  .list {
    list-style: none;
  }
  .list_check li {
    position: relative;
  }
  .list_check li:before {
    position: absolute;
    left: -30px;
    width: 20px;
    height: 20px;
    content: "";
    -webkit-mask-image: url("/img/icons/svg/check.svg");
            mask-image: url("/img/icons/svg/check.svg");
  }
  .list_primary li:before {
    background: #00467F;
  }
  .list-default {
    margin: 0;
    padding-left: 20px;
  }
  
  .headerr {
    position: fixed;
    background: white;
    z-index: 3001;
    top: 0px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 3px solid #002644;
  }
  .headerr.headband-active {
    top: 0px !important;
  }
  
  .headband {
    position: fixed;
    top: 0;
    background: #002644;
    width: 100%;
    height: 40px;
    z-index: 3002;
  }
  .headband label {
    color: #fff;
  }
  /**/
  .headband span {
    cursor: pointer;
  } 
  
  .header {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .header .brand img {
    /*width: 100%;*/
  }
  
  .nav-submenu {
    width: 100%;
  }
  .nav button.nav-link,
  .nav button.nav-link:focus {
    background: none;
    border: none;
    outline: none;
    padding: 0;
  }
  .nav .nav-link {
    margin-left: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.5s linear;
    max-width: 200px;
    overflow: hidden;
  }
  .nav .nav-link-img {
    margin-right: 5px;
  }
  .nav .nav-link svg {
    fill: #00467F;
  }
  
  .nav2 {
    margin-top: 19px;
    width: 100%;
    transition: all 0.5s ease-out;
    max-height: 100px;
  }
  
  .nav-link.a-deals,
  .nav-link.a-resorts {
    max-width: 0;
    height: 25px;
    overflow: hidden;
    margin: 0;
    transition: all 0.5s linear;
    white-space: nowrap;
    opacity: 0;
  }
  
  @media (min-width: 834px) {
    .on-scroll .a-language {
      max-width: 0;
      margin-left: 0;
      opacity: 0;
    }
    .on-scroll .nav2 {
      max-height: 0;
      margin: 0;
      opacity: 0;
    }
    .on-scroll .nav-link.a-deals {
      max-width: 200px;
      margin-left: 15px;
      opacity: 1;
    }
  }
  @media (min-width: 1366px) {
    .on-scroll .nav-link.a-resorts {
      max-width: 200px;
      margin-left: 15px;
      opacity: 1;
    }
  }
  .nav-float {
    position: absolute;
    background: white;
    top: 0;
    right: 0;
    padding: 19px 24px 19px 0px;
    max-height: 100vh;
    overflow-y: auto;
    box-shadow: 0px 9px 10px rgba(0, 0, 0, 0.1);
    z-index: 2050;
    transform: translateX(0px);
    transition-property: transform;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  }
  .nav-float-header {
    padding-bottom: 16px;
    border-bottom: 2px solid #002644;
    color: #002644;
    font-weight: bold;
    margin-left: 24px;
  }
  .nav-float-title {
    color: #002644;
  }
  .nav-float-subtitle {
    font-weight: normal;
    font-size: 16px;
    line-height: 32px;
  }
  .nav-float-item {
    display: block;
    padding: 0 8px 0 24px;
    min-height: 30px;
  }
  .nav-float ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
  }
  .nav-float .close-menu {
    background: none;
    border: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    top: 10px;
    right: 0;
  }
  .nav-float .close-menu svg {
    pointer-events: none;
    width: 24px;
    height: 24px;
  }
  
  .nav-float-link a {
    padding: 0 8px 0 24px;
    min-height: 28px;
  }
  
  #menu-hamburguesa {
    width: 300px;
    left: 100%;
  }
  #menu-hamburguesa.show {
    transform: translateX(-100%);
    overflow: hidden;
  }
  #menu-hamburguesa .btn-dropmenu {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  
  #resort-destination {
    width: 100vw;
    top: 105%;
    transform: translateX(0%);
  }
  #resort-destination:not(.show) {
    transform: translateX(110%);
  }
  
  @media (min-width: 1366px) {
    /*Sin booking margin*/
    .booking-hide #menu-hamburguesa, .booking-hide #resort-destination {
      top: 105% !important;
    }
  
    /*Margen de resorts*/
    .adjust-resort #menu-hamburgues, .adjust-resort #resort-destination {
      top: 105% !important;
    }
  
    /*Margen normal*/
    #menu-hamburguesa {
      top: 105%;
      width: 100vw;
    }
    #menu-hamburguesa .on-dropdown-ul {
      max-height: 500px;
    }
  
    .on-scroll #menu-hamburguesa, .on-scroll #resort-destination {
      top: 105%;
    }
  
    .headband-active #menu-hamburguesa {
      top: 105%;
    }
  }
  body {
    padding-top: 80px;
  }
  
  .headerr {
    height: 80px;
  }
  
  @media (min-width: 600px) {
    body {
      padding-top: 87px;
    }
  
    .headerr {
      height: 87px;
    }
  }
  @media (max-width: 599.98px) {
    .brand img {
      width: 125px !important;
      height: 80px !important;
      left: -26px !important;
      top: -5px !important;
    }
  }
  @media screen and (min-width: 700px) {
    .on-booking-header {
      position: relative;
      top: 0;
    }
    .on-booking-header.headband-active {
      top: 40px;
    }
  
    body.on-scroll .on-booking-header {
      position: fixed;
      top: 87px;
    }
  
    .gms-left-bar {
      top: 87px;
    }
  }
  @media (min-width: 834px) {
    body {
      padding-top: 87px;
    }
  
    .headerr {
      height: 87px;
    }
  
    body.on-scroll body {
      padding-top: 58px;
    }
    body.on-scroll .headerr {
      height: 58px;
    }
    body.on-scroll .on-booking-header {
      top: 58px;
    }
    body.on-scroll .on-booking-header.headband-active {
      top: 98px !important;
    }
    body.on-scroll .gms-left-bar {
      top: 58px;
    }
  }
  @media (min-width: 1366px) {
    body {
      padding-top: 87px;
    }
  
    .headerr {
      height: 87px;
    }
  }
  .container-fluid {
    max-width: 1366px;
  }
  
  .svg-icon {
    width: 24px;
    height: 24px;
  }
  
  .svg-fill-primary {
    fill: #00467F;
  }
  .svg-fill-primary svg {
    fill: #00467F;
  }
  .svg-fill-subtitle {
    fill: #ECBA58;
  }
  .svg-fill-subtitle svg {
    fill: #ECBA58;
  }
  
  .on-dropdown svg {
    transition: transform 0.35s ease-in-out;
  }
  .on-dropdown-rotate-180 svg {
    transform: rotate(180deg);
  }
  .on-dropdown-ul {
    max-height: 500px;
    transition: max-height 0.35s ease-in;
  }
  
  .on-dropdown-ul:not(.show) {
    overflow: hidden;
    max-height: 0px;
  }
  
  .brand {
    height: 42px;
  }
  .brand img {
    width: 330px;
    height: 100px;
    top: -28px;
  }
  
  .sourface {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    outline: 0;
    touch-action: none;
  }
  
  .img-cover {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  /*# sourceMappingURL=app.css.map*/
  
  .text-read-more::after{
    content: '... read more';
  }
  .padre
  {
  background-color:#E1F2FF ;
  padding: 10px 10px;
  
  }
  .hijo
  {
  background-color: white;
  border-radius: 10px;
  height: 100%;
  
  padding: 15px 10px;
  border: 7px solid #E1F2FF;
  }
  
  .contenedor
  {
  background-color:#E1F2FF ;
  }
  
  
  .btn_submit_book
  {
  color: #EA5E00!important;
  background-color: white!important;
  
  }
  .booking-guest-group
  {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  padding: 5px;
  background: white;
  }
  .selectDes
  {
  width: 170px!important;
  border:1px solid white;
  font-size: 18px;
  color: #00467F;
  outline: none;
  }
  
  .selectDes >optgroup > option ,option 
  {
  
  color: #333333;
  padding-top: 200px!important;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  
  }
  .selectDes >optgroup 
  {
  color: black;
  font-size: 17px;
  
  }
  .selectDes >option{
    font-size: 18px;
  }
  .box
  {
  
  padding: 20px 10px;
  border: 2px solid #F2F2F2;
  box-sizing: border-box;
  /* Sombra-card */
  
  filter: drop-shadow(0px 5px 10px rgba(153, 199, 237, 0.2));
  border-radius: 3px;
  
  }
  .text-m
  {
  font-size: 14px;
  }
  .link-contact
  {
  text-decoration: none;
  color: #00467F;
  }
  /* estilos de las cajas de servicios*/
  .title-box 
  {
  color: #002644;
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-align: left;
  }
  .text-box
  {
  color: #949494;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.02em;
  text-align: left;
  }
  .form-check-label
  {
  
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #333333;
  }
  .list-box
  {
  color: #424242;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.02em;
  text-align: left;
  }
  .price-box
  {
  font-family: Lato;
  font-style: normal;
  font-weight: 800;
  font-size: 26px;
  line-height: 31px;
  display: flex;
  align-items: center;
  color: #002644;
  }
  .price-text
  {
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 17.536px;
  line-height: 26px;
  display: flex;
  align-items: center;
  color: #002644;
  }
  .description-box
  {
  padding-left:15px!important;
  }
  
  
  input[type='radio'] {
  -webkit-appearance: none;
  }
  input[type='radio']:after {
  width: 20px;
  height: 20px;
  border-radius: 15px;
  top: 4px;
  left: -1px;
  position: relative;
  background: url(../img/Radiobutton-n3.png)center no-repeat;
  background-size: cover;
  content: '';
  display: inline-block;
  visibility: visible;
  
  }
  
  input[type='radio']:checked:after {
  width: 20px;
  height: 20px;
  border-radius: 15px;
  top: 4px;
  left: -1px;
  position: relative;
  background: url(../img/Radiobutton.png)center no-repeat;
  background-size: cover;
  content: '';
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
  }
  
  
  
  
  
  
  /* FIN de estilos de las cajas de servicios*/
  
  
  
  .carousel {
  position: relative;
  }
  
  .carousel.pointer-event {
  touch-action: pan-y;
  }
  
  .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  }
  .carousel-inner::after {
  display: block;
  clear: both;
  content: "";
  }
  
  .carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
  }
  
  
  
  
  @media (prefers-reduced-motion: reduce) {
  .carousel-item {
  transition: none;
  height: 500px;
  }
  }
  
  .carousel-item.active,
  .carousel-item-next,
  .carousel-item-prev {
  display: block;
  }
  
  /* rtl:begin:ignore */
  .carousel-item-next:not(.carousel-item-start),
  .active.carousel-item-end {
  transform: translateX(100%);
  }
  
  .carousel-item-prev:not(.carousel-item-end),
  .active.carousel-item-start {
  transform: translateX(-100%);
  }
  
  /* rtl:end:ignore */
  .carousel-fade .carousel-item {
  opacity: 0.5;
  transition-property: opacity;
  transform: none;
  }
  .carousel-fade .carousel-item.active,
  .carousel-fade .carousel-item-next.carousel-item-start,
  .carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
  }
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
  }
  @media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
  transition: none;
  }
  }
  
  .carousel-control-prev,
  .carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
  }
  @media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
  transition: none;
  }
  }
  .carousel-control-prev:hover, .carousel-control-prev:focus,
  .carousel-control-next:hover,
  .carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
  }
  
  .carousel-control-prev {
  left: 0;
  }
  
  .carousel-control-next {
  right: 0;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
  }
  
  /* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
  "name"    : "prev-next",
  "search"  : "prev",
  "replace" : "next"
  } ]
  } */
  .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
  }
  
  .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath 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'/%3e%3c/svg%3e");
  }
  
  .carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
  
  }
  .carousel-indicators [data-bs-target] { /* @eli controlan la¿os indicadores del carrusel*/
  box-sizing: content-box;
  flex: 0 1 auto;
  width:20px;
  height: 0px;
  border-radius: 20px;
  padding: 0;
  margin-right: 7px;
  margin-left: 0px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  /*background-clip: padding-box;*/
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.8;
  transition: opacity 0.6s ease;
  }
  @media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
  transition: none;
  }
  }
  .carousel-indicators .active {
  opacity: 1;
  background-color: #99C7ED;
  }
  
  .carousel-caption { /*"eli el contenido de la portada */
  position: absolute;
  right: 5%;
  top: 40%;
  left: 5%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
  }
  
  .carousel-dark .carousel-control-prev-icon,
  .carousel-dark .carousel-control-next-icon {
  /*filter: invert(1) grayscale(100);*/
  background-color: rgba(0, 0, 0, 0.5);
  }
  .carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
  }
  .carousel-dark .carousel-caption {
  color: #000;
  }
  
  @-webkit-keyframes spinner-border {
  to {
  transform: rotate(360deg) /* rtl:ignore */;
  }
  }
  
  @keyframes spinner-border {
  to {
  transform: rotate(360deg) /* rtl:ignore */;
  }
  }
  .spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 0.75s linear infinite spinner-border;
  animation: 0.75s linear infinite spinner-border;
  }
  
  .spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
  }
  
  @-webkit-keyframes spinner-grow {
  0% {
  transform: scale(0);
  }
  50% {
  opacity: 1;
  transform: none;
  }
  }
  
  @keyframes spinner-grow {
  0% {
  transform: scale(0);
  }
  50% {
  opacity: 1;
  transform: none;
  }
  }
  .spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: 0.75s linear infinite spinner-grow;
  animation: 0.75s linear infinite spinner-grow;
  }
  
  .spinner-grow-sm {
  width: 1rem;
  height: 1rem;
  }
  
  @media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  }
  }
  .offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
  }
  @media (prefers-reduced-motion: reduce) {
  .offcanvas {
  transition: none;
  }
  }
  
  
  .text-content
  {
    background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(196, 196, 196, 0.2);
  box-sizing: border-box;
  /* Sombra-card 
   background-color: red;*/
  
  
  box-shadow: 0px 5px 10px rgba(153, 199, 237, 0.2);
  border-radius: 0px 0px 3px 3px;
 
  position: relative;
  }
  .txt-p
  {
    font-weight: bold;
    padding-left: 20px;
    
  }
  .link-a{
    display:inline-block;
      position:absolute;
      right:0;
      margin-right:10px;
      font-weight: normal;
  }
  
  
  /* acordeon */
  
  /*estilos para acordeon*/
  
  
  
  
  .accordion-container {
      width: 100%;
      margin: 0 0 0px;
      clear:both;
  }
  
  .accordion-titulo {
      position: relative;
      display: block;
    padding:9px;
    background: #fff;
    border-radius:2px;
    color:#000;
    border:1px solid #ededed;
      
  
      font-weight: 300;
      text-decoration: none;
  }
  .accordion-titulo.open {
      background: #fff;
      color: #000;
  }
  .accordion-titulo:hover {
      background: #fff;
  }
  
  .accordion-titulo span.toggle-icon:before {
      content: url("../img/down-arrow.png");
  
  }
  
  .accordion-titulo.open span.toggle-icon:before {
      content: url("../img/up-arrow.png");
  }
  
  .accordion-titulo span.toggle-icon {
      position: absolute;
      top: 3px;
      right: 10px;
      font-size: 28px;
      font-weight:bold;
    color:gray;
  }
  
  .accordion-content {
      display: none;
      padding: 20px;
      overflow: auto;
    background-color: #fff;
    border: 1px solid #99C7ED;
  box-sizing: border-box;
  border-radius: 3px 3px 0px 0px;
  
  }
  
  .accordion-content p{
      margin:0;
  }
  
  .accordion-content img {
      display: block;
      float: left;
      margin: 0 15px 10px 0;
      width: 50%;
      height: auto;
  }
  .price-table 
  {
  
   width: 95%;
   text-align: center;
  
  
  }
  
  .head-table
  {
    border: 1px solid rgba(196, 196, 196, 0.2);
    box-sizing: border-box;
    /* Sombra-card */
    box-shadow: 0px 5px 10px rgba(153, 199, 237, 0.2);
    border-radius: 3px 3px 0px 0px;
    font-weight: bold;
    color: #000;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  
  .b-table
  {
    text-align: center;
    border: 1px solid #99C7ED;
  }
  .cont-rec
  {
    width: 100%;
    position: relative;
  }
  .rec-img
  {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    
  }
  .rec-text
  {
    width: 20%;
    background-color:rgba(255, 255, 255, 0.98);
    position: absolute;
    z-index: 2;
    top: 0px;
    right: 0px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 99%;
    padding: 20px 10px;
    text-align: left!important;
  
  }
  
  .deys
  {
    color: #EA5E00;
  }
  
  .numbers
  {
  width: 100%;
  border-spacing: 50px;
      border-collapse: separate;
  
  
  }
  .numbers td
  {
  
  text-align: center;
   
    border-radius: 5px;
    padding: 20px 15px;
    border: 1px solid #F2F2F2;
  
  /* Sombra-card */
  
  box-shadow: 0px 5px 10px rgba(153, 199, 237, 0.2);
  
  }
  .news-new
  {
    padding: 10px 10px;
  }
  .card-news
  {
    border: 1px solid rgba(196, 196, 196, 0.2);
  box-sizing: border-box;
  /* Sombra-card */
  
  box-shadow: 0px 5px 10px rgba(153, 199, 237, 0.2);
  border-radius: 0px 0px 3px 3px;
  }
/*menu*/

@media (min-width:834px){
  #menu-hamburguesa .scroll-view{
      display:flex;
      justify-content:space-around;
      width:100%
  }
  #menu-hamburguesa .scroll-view__primary-resorts{
      gap:20px
  }
  #menu-hamburguesa .scroll-view .btn-resort-tb span{
      color:#002644;
      font-size:18px;
      font-weight:500
  }
  #menu-hamburguesa .scroll-view .resorts-us{
      display:none
  }
}
#menu-hamburguesa .resort-menu-title{line-height:1.2;text-align:left}
@media (min-width:834px)
{#menu-hamburguesa .resort-menu-title--mobile{display:none}
}#menu-hamburguesa .resort-menu-title--tb{display:none}
@media (min-width:834px)
{#menu-hamburguesa .resort-menu-title--tb{display:block}}#menu-hamburguesa .resort-us-tb{display:none}
@media (min-width:834px){#menu-hamburguesa .resort-us-tb{display:block}}
#menu-hamburguesa.show{overflow:hidden;transform:translateX(-100%)}
#menu-hamburguesa .btn-dropmenu{align-items:center;display:flex;justify-content:space-between;padding-bottom:4px;padding-top:4px}
#menu-hamburguesa .btn-dropmenu--small{width:100%}
#menu-hamburguesa .btn-dropmenu--small .nav-float-title{color:#424242;font-size:16px;font-weight:700;line-height:1}
#menu-hamburguesa .nav-float-link a{padding-bottom:0;padding-top:0}
#menu-hamburguesa .nav-float-item--small{display:block;font-size:16px}
#menu-hamburguesa .nav-float-item--small span{font-size:13px;font-style:italic}



#resort-destination
{padding-left:24px;top:105%;transform:translateX(0);width:100vw}
#resort-destination:not(.show){transform:translateX(110%)}
.resort-destination{padding-left:24px;padding-right:24px}
.resort-destination__title
{
  border-bottom:2px solid var(--gray-3,#949494);color:#002644;font-size:18px;
  font-style:normal;font-weight:500;letter-spacing:.36px;line-height:24px;padding-bottom:8px;text-transform:capitalize;
}

.resort-destination__mexico
{
  margin-bottom:12px;padding-top:8px;
}
.resort-destination__ul-mexico
{
  display:flex;justify-content:space-between;
}
.resort-destination__ul-mexico>li
{
  flex-basis:30%;flex-grow:1;
}
.resort-destination__usa
  {
    margin-bottom:12px;padding-top:8px;
  }
.resort-destination__ul-usa
{
  -moz-column-count:2;column-count:2;
}

@media (min-width:1000px)
{
  .resort-destination__ul-usa
  {
    -moz-column-count:3;column-count:3;
  }
}
.resort-destination__ul-usa>li
{
  -moz-column-break-inside:avoid;break-inside:avoid-column;display:table;page-break-inside:avoid;
}
.resort-destination__link-primary
{
  color:#424242;font-weight:700;padding:4px 8px 0;
}
.resort-destination__link,.resort-destination__link-primary
{
  display:block;font-family:Lato;font-size:16px;font-style:normal;line-height:150%;text-decoration:none;
}
.resort-destination__link
{
  color:#656565;font-weight:400;padding:4px 8px;
}
.resort-destination__link span
{
  font-family:Lato;font-size:13px;font-style:italic;font-weight:400;line-height:150%;
}

.text-new{background:#0059a2;border-radius:43px;color:#ffd914;display:inline-block;font-family:Lato;font-size:16px;font-style:normal;font-weight:900;letter-spacing:.4px;line-height:24px;padding:3px 10px;text-transform:capitalize}
/*cambios menui*/
/*cambios menui*/
  
  @media (max-width: 767px) {
      .accordion-content {
          padding: 10px 0;
      }
    .rec-text
    {
      position: relative;
      border-top-right-radius: 0px;
      border-bottom-right-radius: 0px;
      border-bottom-right-radius: 10px;
      border-bottom-left-radius: 10px;
      width: 100%;
      top: -20px;
    }
    .numbers
      {
      
      border-spacing: 0px;
          border-collapse: separate;
  
  
      }
      
  }