/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs 
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: $yuvezzi-black;
 * $body-color: $gray-100;
 */
.site-header *,
.site-header *::before,
.site-header *::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.site-header a {
  color: inherit;
  text-decoration: none;
}
.site-header button {
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}
.site-header svg {
  display: block;
  flex-shrink: 0;
}

.utility-bar {
  display: none;
}
.utility-bar__inner {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.u-sep {
  flex-shrink: 0;
  width: 1px;
  height: 16px;
  background: #999;
}

.u-link {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  font-family: "Figtree", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #2F415B;
  text-decoration: none;
}
.u-link:hover {
  opacity: 0.75;
}

.line-banner {
  width: 100%;
  height: 4px;
  background: #2F415B;
}

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 1px 0 #dee2e6;
}

.hdr-row {
  display: flex;
  gap: clamp(16px, 3vw, 50px);
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  max-width: 1160px;
  padding: 16px 0;
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  text-decoration: none;
}

.desk-nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  height: 100%;
}
.desk-nav__top {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 27px;
  align-items: center;
  justify-content: flex-end;
}
.desk-nav__bottom {
  display: flex;
  flex: 1;
  gap: clamp(4px, 1.5vw, 24px);
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}
.desk-nav__item {
  display: inline-flex;
  align-items: center;
  padding: 8px;
  font-family: "Figtree", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 160%;
  color: #2F415B !important;
  text-align: center;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: border-color 0.15s;
}
.desk-nav__item-home {
  display: none;
}
.desk-nav__item:hover {
  border-bottom-color: #bbb;
}
.desk-nav__item.is-active {
  color: #A50776 !important;
  border-bottom-color: #A50776;
}
.desk-nav__item.is-active .nav-arrow--up {
  display: block;
}
.desk-nav__item.is-active .nav-arrow--down {
  display: none;
}
.desk-nav__item.home-icon {
  padding: 10px 0;
}

.nav-arrow {
  flex-shrink: 0;
  margin-left: 4px;
}
.nav-arrow--up {
  display: none;
}
.nav-arrow--down {
  display: block;
}

.hdr-link {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
  color: #2F415B !important;
  text-align: center;
  transition: opacity 0.15s;
}
.hdr-link img {
  margin-right: 24px;
}
.hdr-link:hover {
  opacity: 0.75;
}

.hdr-pipe {
  font-size: 13px;
  color: #2F415B;
}

.btn-updates {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  padding: 8px 24px;
  margin-left: 0;
  font-family: "Figtree", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 160%;
  color: #fff !important;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background: #A50776;
  border-radius: 7px;
  transition: background 0.15s;
}
.btn-updates:hover {
  background: #830560;
}

.site-header .btn-home {
  display: inline-flex;
  align-items: center;
  padding: 8px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.15s;
}
.site-header .btn-home:hover {
  border-bottom-color: #bbb;
}
.site-header .btn-home.is-active {
  color: #A50776 !important;
  border-bottom-color: #A50776;
}

.btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 100%;
  padding: 10px 0;
  color: #000;
  border-bottom: 3px solid transparent;
  border-radius: 2px;
  transition: background 0.15s, border-color 0.15s;
}
.btn-search:hover {
  background: #f3f3f3;
}
.btn-search.is-active {
  border-bottom-color: #A50776;
}
.btn-search.is-active img {
  -webkit-filter: invert(9%) sepia(96%) saturate(6000%) hue-rotate(308deg) brightness(85%) contrast(105%);
          filter: invert(9%) sepia(96%) saturate(6000%) hue-rotate(308deg) brightness(85%) contrast(105%);
}

.hdr-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
  align-items: center;
}

.search-drop {
  position: absolute;
  right: max(30px, (100% - 1160px) / 2);
  top: 100%;
  z-index: 101;
  display: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 500px;
  padding: 40px;
  background: #fff;
  border: 1px solid #dee2e6;
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.search-drop__close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex !important;
  padding: 4px !important;
  transition: opacity 0.15s;
}
.search-drop__close:hover {
  opacity: 1;
}
.search-drop.is-open {
  display: block;
}
.search-drop__inner {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  max-width: 1380px;
  margin: 0 auto;
}
.search-drop__input {
  width: 400px;
  padding: 8px 12px;
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  background: #fff;
  border: 1px solid #2f415b;
  border-radius: 5px;
  outline: none;
}
.search-drop__input:focus {
  background: #fff;
  border: 1px solid #2f415b;
  border-radius: 5px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}
.search-drop__btn {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 8px 16px !important;
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #a50776 !important;
  border-radius: 7px;
  transition: background 0.15s;
}
.search-drop__btn:hover {
  background: #1e2d40 !important;
}

body.scroll-locked {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

.mob-only {
  display: none !important;
}

.btn-menu {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  padding: 4px 6px;
  color: #000;
}
.btn-menu__bars {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-menu__bars span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  border-radius: 1px;
  transition: opacity 0.22s, -webkit-transform 0.22s;
  transition: transform 0.22s, opacity 0.22s;
  transition: transform 0.22s, opacity 0.22s, -webkit-transform 0.22s;
}
.btn-menu__lbl {
  font-family: "Figtree", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 150%;
  color: #2F415B;
}
.btn-menu.is-open .btn-menu__bars span:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
          transform: translateY(6px) rotate(45deg);
}
.btn-menu.is-open .btn-menu__bars span:nth-child(2) {
  opacity: 0;
}
.btn-menu.is-open .btn-menu__bars span:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
          transform: translateY(-6px) rotate(-45deg);
}

.mob-drawer {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 200;
  display: none;
  flex-direction: column;
  width: 100%;
  height: 84vh;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  background: #fff;
  border-top: 1px solid #dee2e6;
}
.mob-drawer.is-open {
  display: flex;
}

.drawer-search {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  align-items: center;
  padding: 8px 16px;
  background: #f2f2f2;
  border-bottom: 1px solid #dee2e6;
}
.drawer-search__input {
  flex: 1;
  padding: 8px 15px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  line-height: 22px;
  color: #000;
  background: #fff;
  border: 1px solid #666;
  border-radius: 5px;
  outline: none;
}
.drawer-search__input::-webkit-input-placeholder {
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  line-height: 22px;
  color: #000;
}
.drawer-search__input::-moz-placeholder {
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-feature-settings: "liga" off, "clig" off;
  line-height: 22px;
  color: #000;
}
.drawer-search__input::-ms-input-placeholder {
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-feature-settings: "liga" off, "clig" off;
  line-height: 22px;
  color: #000;
}
.drawer-search__input::placeholder {
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" off, "clig" off;
          font-feature-settings: "liga" off, "clig" off;
  line-height: 22px;
  color: #000;
}
.drawer-search__input:focus {
  background: #fff;
  border: 1px solid #06c;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}
.drawer-search__input:focus::-webkit-input-placeholder {
  color: transparent;
}
.drawer-search__input:focus::-moz-placeholder {
  color: transparent;
}
.drawer-search__input:focus::-ms-input-placeholder {
  color: transparent;
}
.drawer-search__input:focus::placeholder {
  color: transparent;
}
.drawer-search__btn, button.drawer-search__btn {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 8px 16px;
  color: #fff;
  background: #2F415B !important;
  border-radius: 7px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 10px;
  height: 65vh;
  overflow-y: scroll;
}
.drawer-nav__link {
  display: block;
  padding: 8px;
  color: #2F415B !important;
  font-family: "Figtree", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 160%;
  color: #2F415B;
  transition: background 0.12s;
}
.drawer-nav__link:hover {
  background: #f7f7f7;
}
.drawer-nav__separator {
  height: 1px;
  background: #8d99a8;
}

.drawer-footer {
  flex-shrink: 0;
  padding: 16px 20px;
  border-top: 1px solid #dee2e6;
}

.mobile-isi-container {
  padding: 32.5px 78px;
}
.mobile-isi-container__link {
  display: block;
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
  color: #2F415B !important;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.15s;
}
.mobile-isi-container__link:hover {
  opacity: 0.75;
}

.drawer-pi {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  font-size: 13px;
  color: #555;
  transition: color 0.15s;
}
.drawer-pi:hover {
  color: #000;
}

.backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 150;
  display: none;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.4);
}
.backdrop.is-open {
  pointer-events: auto;
}
.backdrop.is-open {
  display: block;
}

@media only screen and (max-width: 991.98px) {
  .utility-bar {
    display: block;
    font-family: "Figtree", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 150%;
    color: #000;
    text-align: center;
  }
  .desk-nav {
    display: none;
  }
  .hdr-actions {
    display: none;
  }
  .mob-only {
    display: inline-flex !important;
  }
  .hdr-row {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
  }
  .logo {
    flex-shrink: 0;
  }
}
@media only screen and (max-width: 991.98px) and (min-width: 992px) {
  .logo img {
    width: 188px;
    height: 94.989px;
  }
}
@media only screen and (max-width: 991.98px) and (max-width: 991.98px) {
  .logo img {
    width: 120px;
    height: 61px;
  }
}
@media only screen and (max-width: 991.98px) {
  .logo svg {
    width: 160px;
    height: 60px;
  }
  .logo__name {
    font-size: 17px;
  }
  .logo__sub {
    font-size: 7.5px;
  }
  .btn-updates.mob-only {
    flex-shrink: 0;
    padding: 9px 20px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    border-radius: 7px;
  }
  .btn-menu {
    flex-shrink: 0;
    gap: 2px;
    padding: 2px 4px;
  }
  .btn-menu__bars img {
    width: 34px;
    height: 34px;
  }
  .btn-menu__lbl {
    font-size: 11px;
  }
}
/* ... Header dropdown styles... */
.desk-nav__dropdown {
  position: relative;
  display: inline-block;
}
.desk-nav__dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 180px;
  padding: 16px 0;
  background: #fff;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.desk-nav__dropdown-menu.is-open {
  display: block;
}
.desk-nav__dropdown-item {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
}
.desk-nav__dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 20px;
  height: 20px;
  margin-left: 6px;
  flex-shrink: 0;
}

.desk-nav__dropdown .arrow-down,
.desk-nav__dropdown .arrow-up {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.15s;
}

.desk-nav__dropdown .arrow-down {
  opacity: 1;
}

.desk-nav__dropdown .arrow-up {
  opacity: 0;
}

.block--dtc-siteheader .mob-drawer .social-links--mobile {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 8px;
}
.block--dtc-siteheader .mob-drawer .mobile-isi-container {
  padding: 0px;
}
.block--dtc-siteheader .desk-nav__top .hdr-link img {
  margin-right: 0;
}
.block--dtc-siteheader .desk-nav__top .social-links {
  display: flex;
  gap: 16px;
}
.block--dtc-siteheader .desk-nav__top .social-links .social-links__label {
  padding: 5px 0;
}
.block--dtc-siteheader .desk-nav__dropdown-menu a.desk-nav__dropdown-item {
  position: relative;
  padding: 0 8px;
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 700;
  color: #2F415B;
  border-bottom: none;
}
.block--dtc-siteheader .desk-nav__dropdown-menu a.desk-nav__dropdown-item:hover {
  opacity: 0.6;
  color: #a50776 !important;
}
.block--dtc-siteheader .desk-nav__dropdown-menu a.desk-nav__dropdown-item.is-current-page {
  padding-left: 4px;
  color: #A50776;
  border-left: 4px solid #A50776;
}
.block--dtc-siteheader .desk-nav__dropdown .desk-nav__item.is-active {
  color: #A50776 !important;
  border-bottom-color: #A50776;
}
.block--dtc-siteheader .desk-nav__dropdown.is-dropdown-open .desk-nav__item.is-active {
  color: rgba(47, 65, 91, 0.7490196078) !important;
  border-bottom-color: transparent;
}
.block--dtc-siteheader .btn-search img {
  width: 24px;
  height: 24px;
}
.block--dtc-siteheader .btn-search .is-active img {
  -webkit-filter: #1c1a00;
          filter: #1c1a00;
}
.block--dtc-siteheader .search-drop {
  padding: 56px;
  right: max(58px, (100% - 1160px) / 2);
}
.block--dtc-siteheader .search-drop .search-drop__inner {
  gap: 28px;
}
.block--dtc-siteheader .search-drop .search-drop__inner .search-drop__input {
  padding: 14px 12px;
  border: 1px solid #0066CC;
}
.block--dtc-siteheader .search-drop .search-drop__inner .search-drop__btn {
  padding: 8px 24px !important;
}
.block--dtc-siteheader .drawer-nav__link.drawer-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}
.block--dtc-siteheader .drawer-nav__link.drawer-nav__toggle .arrow-down {
  opacity: 1;
}
.block--dtc-siteheader .drawer-nav__link.drawer-nav__toggle .arrow-up {
  opacity: 0;
}
.block--dtc-siteheader .drawer-nav__toggle-arrow {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 16px;
  height: 16px;
  margin-left: 8px;
}
.block--dtc-siteheader .drawer-nav__toggle-arrow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.15s;
}
.block--dtc-siteheader .drawer-nav__toggle-arrow img.arrow-down {
  opacity: 1;
}
.block--dtc-siteheader .drawer-nav__toggle-arrow img.arrow-up {
  opacity: 0;
}
.block--dtc-siteheader .drawer-nav__group {
  display: flex;
  flex-direction: column;
}
.block--dtc-siteheader .drawer-subnav {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
}
.block--dtc-siteheader .drawer-subnav__link {
  display: block;
  padding: 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 160%;
  color: #2F415B;
  text-decoration: none;
  transition: background 0.12s;
}
.block--dtc-siteheader .drawer-subnav__link:hover, .block--dtc-siteheader .drawer-subnav__link.is-current-page {
  padding-left: 4px;
  color: #A50776;
  border-left: 4px solid #A50776;
}
.block--dtc-siteheader .drawer-nav__link {
  font-family: inherit;
  color: #2F415B;
}
.block--dtc-siteheader .drawer-search__btn {
  background-color: #A50776 !important;
}
.block--dtc-siteheader .line-banner {
  display: none;
}
.block--dtc-siteheader .site-header {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 990px) and (max-width: 1399px) {
  .block--dtc-siteheader .site-header .hdr-row {
    max-width: 1140px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media screen and (min-width: 1400px) {
  .block--dtc-siteheader .site-header .hdr-row {
    max-width: 1160px;
    padding-left: 0;
    padding-right: 0;
  }
}
.block--dtc-siteheader .social-links__label {
  font-size: 15px;
  font-family: "Figtree", sans-serif;
}
.block--dtc-siteheader .desk-nav__item:hover {
  opacity: 0.6;
  border-bottom: 3px solid transparent;
  color: #a50776 !important;
}
.block--dtc-siteheader .desk-nav__item:hover .dropdown-arrow {
  background: transparent;
  -webkit-filter: invert(14%) sepia(86%) saturate(3588%) hue-rotate(305deg) brightness(85%) contrast(95%);
          filter: invert(14%) sepia(86%) saturate(3588%) hue-rotate(305deg) brightness(85%) contrast(95%);
}
@media only screen and (max-width: 991.98px) {
  .block--dtc-siteheader .btn-updates.mob-only {
    width: 117px;
    height: 54px;
    padding: 8px 17px;
    white-space: normal;
    text-align: center;
    line-height: 135%;
  }
}

.dtc-2 .desk-nav__bottom {
  gap: 0;
}
.dtc-2 .btn-updates:hover {
  background-color: #2f415b;
}
@media only screen and (max-width: 991.98px) {
  .dtc-2 .drawer-nav__separator {
    border-bottom: 1px solid #ccc;
    height: unset;
    background-color: unset;
  }
}
.dtc-2 .btn-search:hover,
.dtc-2 .btn-home:hover {
  background: transparent;
  -webkit-filter: invert(14%) sepia(86%) saturate(3588%) hue-rotate(305deg) brightness(85%) contrast(95%);
          filter: invert(14%) sepia(86%) saturate(3588%) hue-rotate(305deg) brightness(85%) contrast(95%);
  opacity: 0.6;
}
.dtc-2 .btn-search:hover .dropdown-arrow,
.dtc-2 .btn-home:hover .dropdown-arrow {
  background: transparent;
  -webkit-filter: invert(14%) sepia(86%) saturate(3588%) hue-rotate(305deg) brightness(85%) contrast(95%);
          filter: invert(14%) sepia(86%) saturate(3588%) hue-rotate(305deg) brightness(85%) contrast(95%);
}
.dtc-2 .search-drop__inner .search-drop__btn:hover {
  background-color: #830560 !important;
}
.dtc-2 .drawer-nav__link.drawer-nav__toggle[aria-expanded=true] {
  color: rgba(47, 65, 91, 0.75) !important;
}
.dtc-2 .drawer-nav__link.drawer-nav__toggle[aria-expanded=true] .arrow-down {
  opacity: 0;
}
.dtc-2 .drawer-nav__link.drawer-nav__toggle[aria-expanded=true] .arrow-up {
  opacity: 1 !important;
}
.dtc-2 .utility-bar .utility-bar__inner {
  padding-top: 4px;
}
@media only screen and (max-width: 991.98px) {
  .dtc-2 .mob-drawer.is-open {
    height: 84vh;
  }
}
.dtc-2 .mobile-isi-container {
  display: none;
}

@media only screen and (min-width: 992px) {
  .site-header .hdr-row .logo img {
    width: 188px;
    height: 94.989px;
  }
}
@media screen and (max-width: 991px) {
  .site-header .hdr-row .logo img {
    width: 120px;
    height: 61px;
  }
}

@media only screen and (min-width: 992px) {
  .page__header--dtc .dtc-2 .site-header .hdr-row {
    padding-bottom: 0px;
  }
  .page__header--dtc .dtc-2 .site-header .hdr-row .logo {
    padding-bottom: 16px;
  }
  .page__header--dtc .dtc-2 .site-header .hdr-row .desk-nav__bottom > div {
    padding-bottom: 16px;
  }
  .page__header--dtc .dtc-2 .site-header .hdr-row .desk-nav__bottom > button,
  .page__header--dtc .dtc-2 .site-header .hdr-row .desk-nav__bottom > a {
    margin-bottom: 16px;
  }
  .page__header--dtc .dtc-2 .site-header .hdr-row .desk-nav__dropdown-menu {
    top: 100%;
  }
  .page__header--dtc .dtc-2 .site-header .desk-nav__dropdown-menu.is-open {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .page__header--dtc .dtc-2 .site-header .desk-nav__dropdown-menu.is-open a.desk-nav__dropdown-item {
    margin-bottom: 0px;
    padding: 4px 10px;
  }
}

/*# sourceMappingURL=site-header.css.map*/