.site-sticky-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background-color: #12006e;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
}
.site-sticky-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-sticky-banner .banner-copy {
  font-size: 14px;
  line-height: 1.4;
  max-width: calc(100% - 0px);
      display: flex;
    flex-direction: row-reverse;
        align-items: center;
}
.site-sticky-banner .banner-copy strong {
  font-weight: 700;
  font-size: 15px;
      white-space: nowrap;
}
.site-sticky-banner .btn.btn-sticky-banner {
    /* float: right; */
  background: #ffffff;
  color: #12006e;
  border: 0;
  font-weight: 700;
  padding: 10px 30px;
  white-space: nowrap;
  margin-left:1em;
}
.site-sticky-banner .btn.btn-sticky-banner:hover {
  background: #f3f3f3;
  color: #0a003f;
}
@media (max-width: 767px) {
  .site-sticky-banner .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-sticky-banner .banner-copy {
    max-width: 100%;
    margin-bottom: 10px;
    display: flex;
    flex-flow: column-reverse;
  }
  .site-sticky-banner .btn.btn-sticky-banner {
    width: 100%;
    text-align: center;
    float: none;
     margin-left: 0;
     margin-top: 1em;
  }
  .site-sticky-banner .banner-copy strong {
      white-space: wrap;
}
}
/* Sticky-on-scroll behavior: start in-flow then become fixed when scrolled */
.site-sticky-banner.not-stuck {
  position: static !important;
  box-shadow: none !important;
  border-bottom: 1px solid rgba(0,0,0,0.02) !important;
}
.site-sticky-banner.stuck {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 10000 !important;
}
/* When banner is stuck we add a class to body to reserve space equal to banner height */
body.banner-is-stuck {
  padding-top: var(--banner-height, 60px) !important;
}
@media (max-width: 767px) {
  body.banner-is-stuck {
    padding-top: calc(var(--banner-height, 60px) + 0px) !important;
  }
}

.leo-modal-backdrop {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(9, 4, 31, 0.8);
  z-index: 20000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.leo-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.leo-modal {
  position: relative;
  width: min(100%, 960px);
  max-height: min(90vh, 900px);
  overflow: auto;
  background: #ffffff;
  color: #1d1d1d;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.leo-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 0;
  background: rgba(18, 0, 110, 0.08);
  color: #12006e;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.leo-modal-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  padding: 32px;
}

.leo-modal-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.leo-modal-visual-desktop {
  display: block;
}

.leo-modal-visual-mobile {
  display: none;
  margin-top: 4px;
}

.leo-modal-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leo-modal-kicker {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #12006e;
}

.leo-modal-body h2, .leo-modal-body #leo-modal-title {
  margin: 0 0 12px;
  font-size: 40px;
  line-height: 1.05;
  color: #12006e;
}
.leo-modal-body #leo-modal-title {
  width: 87px;
  height: 34px;
  max-width: 100%;
  display: block;
}

.leo-modal-body p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.6;
}

.leo-offer {
  color: #12006e;
}
.leo-offer strong{
  font-weight:600;
  font-size: 18px;
}

.leo-modal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 8px 0 14px;
  padding: 12px 22px;
  background: #12006e;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.leo-modal-cta:hover,
.leo-modal-cta:focus {
  color: #ffffff;
  background: #0c004f;
  text-decoration: none;
}

p.leo-small-print {
  font-size: 12px;
  line-height: 1.5;
  color: #5b5870;
}

body.leo-modal-open {
  overflow: hidden;
}

.leo-sidebar-tag {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  justify-content: center;
  width: 82px;
  min-height: 72px;
  padding: 0;
  border: 0;
  border-radius: 20px 0 0 20px;
  background: #12006e;
  box-shadow: 0 10px 30px rgba(18, 0, 110, 0.28);
  cursor: pointer;
  z-index: 19999;
}

.leo-sidebar-tag.is-visible {
  display: flex;
}

.leo-sidebar-tag:hover,
.leo-sidebar-tag:focus {
  background: #0c004f;
}

.leo-sidebar-tag svg {
  width: 38px;
  height: auto;
  max-height: 38px;
  display: block;
}

@media (max-width: 767px) {
  .leo-sidebar-tag {
    width: 60px;
    min-height: 54px;
    border-radius: 14px 0 0 14px;
  }

  .leo-sidebar-tag svg {
    width: 30px;
    max-height: 30px;
  }

  .leo-modal {
    max-height: min(95vh, 900px);
  }
  .leo-modal-backdrop {
    padding: 12px;
  }

  .leo-modal-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .leo-modal-visual-desktop {
    display: none;
  }

  .leo-modal-visual-mobile {
    display: block;
    margin-bottom: 14px;
  }

  .leo-modal-body h2 {
    font-size: 32px;
  }

  .leo-modal-body #leo-modal-title {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .leo-modal-cta {
    width: 100%;
  }

  .leo-modal-body p {

    text-align: center;
  }
}
