.uvpo-footer {
  background-color: #375ea9;
  color: rgba(255, 255, 255, 0.5);
}

.uvpo-footer-social {
  color: #fff;
}

.uvpo-footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(120px, 143px) minmax(0, 1fr);
}

.uvpo-footer-brand {
  align-items: center;
  background: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 1.1rem;
  display: inline-flex;
  justify-content: center;
  min-height: 220px;
  min-width: 160px;
  padding: 0 1rem 1rem;
  text-decoration: none;
}

.uvpo-footer-brand__logo {
  display: block;
  height: auto;
  max-height: 190px;
  object-fit: contain;
  width: auto;
}

.uvpo-footer-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.uvpo-footer-links,
.uvpo-footer-meta-links {
  list-style: none;
  margin: 0 2rem 0;
  padding: 0;
}

.uvpo-footer-link {
  color: rgba(255, 255, 255, 0.75);
  display: inline-block;
  padding: 0.25rem 0;
  text-decoration: none;
}

.uvpo-footer-link:hover {
  color: #fff;
}

.uvpo-footer-social-row {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  min-height: 56px;
  min-width: 220px;
  width: fit-content;
}

.uvpo-footer-social-row a {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 48px;
  min-width: 48px;
}

.uvpo-footer-social-row svg {
  display: block;
}

.uvpo-footer-locales {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.uvpo-footer-meta-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.uvpo-footer-meta {
  font-size: 0.875rem;
}

.uvpo-footer-meta-link {
  font-size: 0.8rem;
}

.uvpo-footer-button-link {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

@media (max-width: 767.98px) {
  .uvpo-footer .container {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
  }

  .uvpo-footer-grid {
    gap: 2rem;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .uvpo-footer-grid > div:first-child {
    display: flex;
    justify-content: center;
  }

  .uvpo-footer-brand {
    min-height: 0;
    min-width: 0;
    width: min(220px, 100%);
  }

  .uvpo-footer-brand__logo {
    max-height: 160px;
  }

  .uvpo-footer-content {
    gap: 1.75rem;
    grid-template-columns: 1fr;
  }

  .uvpo-footer-links {
    display: grid;
    gap: 0.25rem;
    justify-items: center;
  }

  .uvpo-footer-social-row {
    flex-wrap: wrap;
    gap: 0.5rem;
    min-width: 0;
    width: 100%;
  }

  .uvpo-footer-locales {
    flex-wrap: wrap;
  }

  .uvpo-footer-meta {
    padding-top: 2rem !important;
  }

  .uvpo-footer-meta-links {
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
  }
}

.uvpo-newsletter-modal-open {
  overflow: hidden;
}

.uvpo-newsletter-modal {
  inset: 0;
  position: fixed;
  z-index: 2000;
}

.uvpo-newsletter-modal__backdrop {
  background: rgba(15, 23, 42, 0.64);
  inset: 0;
  position: absolute;
}

.uvpo-newsletter-modal__dialog {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 1.5rem;
  position: absolute;
}

.uvpo-newsletter-modal__content {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.24);
  display: flex;
  flex-direction: column;
  max-width: 760px;
  overflow: hidden;
  position: relative;
  width: min(100%, 760px);
}

.uvpo-newsletter-modal__header {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 0;
}

.uvpo-newsletter-modal__eyebrow {
  color: #375EA9;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin: 0 0 .35rem;
  text-transform: uppercase;
}

.uvpo-newsletter-modal__title {
  color: #1f3a5f;
  font-size: 1.35rem;
  line-height: 1.15;
  margin: 0;
}

.uvpo-newsletter-modal__close {
  align-items: center;
  background: #f3f6fb;
  border: 0;
  border-radius: 999px;
  color: #1f3a5f;
  cursor: pointer;
  display: inline-flex;
  height: 2.5rem;
  justify-content: center;
  width: 2.5rem;
}

.uvpo-newsletter-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 1rem 1.25rem 1.25rem;
}

.uvpo-newsletter-modal__frame {
  border: 0;
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  min-height: 420px;
}

.uvpo-nav {
  position: relative;
  z-index: 1100;
}

.has-overlay-nav .uvpo-nav {
  background: rgba(255, 255, 255, 0.9);
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.has-fixed-nav .uvpo-nav {
  background: #fff;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}

.has-overlay-nav .uvpo-nav__inner {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.has-fixed-nav .uvpo-nav__inner {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.uvpo-nav__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 88px;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.uvpo-nav__brand img {
  display: block;
  height: auto;
  max-width: 100%;
}

.uvpo-nav__toggle {
  align-items: center;
  color: #375ea9;
  background-color: transparent;
  border: none !important;
  border-radius: 0;
  box-shadow: none !important;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  line-height: 1;
  outline: none !important;
  padding: 0.25rem;
}

.uvpo-drawer__overlay {
  background: rgba(19, 31, 55, 0.48);
  inset: 0;
  position: fixed;
  z-index: 1190;
}

.uvpo-drawer {
  background-color: #385ea9;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-width: min(420px, calc(100vw - 24px));
  padding: 1.5rem 1.5rem 2rem;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  width: 100%;
  z-index: 1200;
}

body.sidebar-open {
  overflow: hidden;
}

body.has-fixed-nav {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.has-fixed-nav > .container-fluid.app-shell-offset {
  flex: 1 0 auto;
}

body.sidebar-open .uvpo-drawer {
  transform: translateX(0);
}

.uvpo-drawer__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.uvpo-drawer__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow-y: auto;
}

.uvpo-drawer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.uvpo-drawer__item + .uvpo-drawer__item {
  margin-top: 0.4rem;
}

.uvpo-drawer__link {
  color: rgba(255, 255, 255, 0.96);
  display: inline-flex;
  font-weight: 500;
  opacity: 0.82;
  padding: 0.25rem 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.uvpo-drawer__link:hover,
.uvpo-drawer__link.active {
  color: #fff;
  opacity: 1;
}

.btn-close-menu {
  background-color: transparent;
  border: 0;
  color: #fff;
  padding: 0.25rem;
}

.uvpo-drawer__locales {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.uvpo-chip {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.98);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  min-width: 3.25rem;
  padding: 0.45rem 0.85rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.uvpo-chip--active,
.uvpo-chip:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #1f4fbf;
}

.uvpo-cookie-banner {
  background: rgba(16, 29, 54, 0.96);
  bottom: 0;
  color: #fff;
  left: 0;
  position: fixed;
  right: 0;
  transform: translateY(100%);
  transition: transform 0.2s ease;
  z-index: 1400;
}

.uvpo-cookie-banner.is-visible {
  transform: translateY(0);
}

.uvpo-cookie-banner__inner {
  align-items: center;
  display: grid;
  gap: 1rem 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.uvpo-cookie-banner__title {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.uvpo-cookie-banner__text {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.uvpo-cookie-banner__link {
  color: #8fe7ff;
}

.uvpo-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.uvpo-cookie-policy-container {
  max-width: 52rem;
  padding-top: 9rem;
}

.uvpo-drawer__divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 1.5rem 0;
  opacity: 1;
}

.uvpo-drawer__divider--spaced {
  margin-bottom: 1.25rem;
}

.uvpo-member-access-btn {
  align-self: flex-start;
  background-color: #ffffff;
  border-radius: 999px;
  color: #1f4fbf;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  text-transform: uppercase;
}

.login-page {
  min-height: 600px;
}

.login-form {
  max-width: 420px;
  min-width: 360px;
}

.login-title {
  color: #009cdc;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
}

.login-submit {
  font-weight: 500;
}

.partner-single-image {
  max-height: 300px;
}

.customer-card-logo {
  max-height: 120px;
}

.customer-single-logo {
  max-height: 150px;
}

.container,
.container-fluid {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
}

.container {
  max-width: 1100px;
}

.uvpo-footer .container {
  max-width: 1370px;
}

.container-fluid {
  max-width: 100%;
}

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

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

.d-none {
  display: none;
}

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

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

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

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

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

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

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

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

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

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.top-0 {
  top: 0;
}

.start-0 {
  left: 0;
}

.bottom-0 {
  bottom: 0;
}

.w-100 {
  width: 100%;
}

.w-auto {
  width: auto;
}

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

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

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

.text-start {
  text-align: left;
}

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

.text-white {
  color: #fff;
}

.text-decoration-none,
.text-decoratipn-none {
  text-decoration: none;
}

.text-muted {
  color: rgba(0, 0, 0, 0.62);
}

.small {
  font-size: 0.875rem;
}

.lead {
  font-size: 1.125rem;
  font-weight: 400;
}

.h1,
.h3,
.h4,
.h5,
.h6 {
  color: inherit;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
}

.h4 {
  font-size: 1.5rem;
}

.h3 {
  font-size: 1.75rem;
}

.h5 {
  font-size: 1.25rem;
}

.h6 {
  font-size: 1rem;
}

.row {
  --uvpo-gutter-x: 1.5rem;
  --uvpo-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(var(--uvpo-gutter-x) * -0.5);
  margin-right: calc(var(--uvpo-gutter-x) * -0.5);
  margin-top: calc(var(--uvpo-gutter-y) * -1);
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  margin-top: var(--uvpo-gutter-y);
  max-width: 100%;
  padding-left: calc(var(--uvpo-gutter-x) * 0.5);
  padding-right: calc(var(--uvpo-gutter-x) * 0.5);
  width: 100%;
}

.g-3 {
  --uvpo-gutter-x: 1rem;
  --uvpo-gutter-y: 1rem;
}

.g-4 {
  --uvpo-gutter-x: 1.5rem;
  --uvpo-gutter-y: 1.5rem;
}

.gy-3 {
  --uvpo-gutter-y: 1rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 1rem;
}

.col {
  flex: 1 0 0%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.333333%;
}

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

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

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

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

.h-100 {
  height: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

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

.mb-3 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.my-4 {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.my-5 {
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.me-2 {
  margin-right: 0.5rem;
}

.me-3 {
  margin-right: 1rem;
}

.ms-2 {
  margin-left: 0.5rem;
}

.p-0 {
  padding: 0;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 1rem;
}

.pt-4 {
  padding-top: 1.5rem;
}

.pt-5 {
  padding-top: 3rem;
}

.py-5 {
  padding-bottom: 3rem;
  padding-top: 3rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

.card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.card-body {
  flex: 1 1 auto;
}

.card-img-top {
  display: block;
  height: auto;
  width: 100%;
}

.card-title {
  margin: 0;
}

.border-0 {
  border: 0;
}

.shadow-sm {
  box-shadow: 0 0.35rem 1rem rgba(16, 32, 61, 0.12);
}

.shadow {
  box-shadow: 0 0.5rem 1.5rem rgba(16, 32, 61, 0.14);
}

.badge {
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.4rem 0.7rem;
  text-transform: uppercase;
}

.bg-info {
  background: #009cdc;
  color: #fff;
}

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

.alert {
  border-radius: 0.85rem;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
}

.alert-danger {
  background: rgba(227, 6, 20, 0.08);
  border: 1px solid rgba(227, 6, 20, 0.22);
  color: #9f1722;
}

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

@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

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

  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .justify-content-sm-between {
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
    width: auto;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }

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

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }

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

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }

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

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.333333%;
  }

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

  .pe-md-5 {
    padding-right: 3rem;
  }

  .ps-md-5 {
    padding-left: 3rem;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.333333%;
  }

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

  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.666667%;
  }
}

.uvpo-breadcrumb {
  align-items: center;
  color: rgba(55, 94, 169, 0.72);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.uvpo-breadcrumb a {
  color: #375ea9;
  text-decoration: none;
}

.uvpo-breadcrumb a:hover {
  text-decoration: underline;
}

.uvpo-breadcrumb li {
  align-items: center;
  display: inline-flex;
  gap: 0.5rem;
}

.uvpo-breadcrumb li:not(:last-child)::after {
  color: rgba(55, 94, 169, 0.45);
  content: "/";
}

.uvpo-breadcrumb li[aria-current="page"] {
  color: rgba(0, 0, 0, 0.72);
}

.uvpo-context-links {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(55, 94, 169, 0.12);
  border-radius: 1rem;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
}

.uvpo-context-links__title {
  color: #375ea9;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.uvpo-context-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.uvpo-context-links__link {
  color: #009cdc;
  font-weight: 600;
  text-decoration: none;
}

.uvpo-context-links__link:hover {
  text-decoration: underline;
}
