  :root {
    --max-width-desktop: 1260px;
    --max-width-tablet: 954px;
    --max-width-phone: 610px;
    --side-padding: 15px;
    --nav-info-height: 44px;
    --nav-main-height: 60px;
    --nav-total-height: 104px;
    --logo-width: 190px;
    --logo-height: 104px;
    --logo-aspect-ratio: 3.357;
    --gap-lg: 30px;
    --color-gray-800: #333;
    --color-gray-100: #e0e0e0;
    --color-brand-green: #76b900;
    --color-brand-green-hover: #8ed100;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --z-nav: 1000;
  }
  nav.gtc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000;
    z-index: var(--z-nav);
    display: grid;
    grid-template-columns: var(--logo-width) minmax(0, 1fr);
    grid-template-rows: var(--nav-info-height) var(--nav-main-height);
    max-width: calc(var(--max-width-desktop) + (2 * var(--side-padding)));
    width: 100%;
    margin-inline: auto;
    padding-inline: 0;
    /* padding-inline: var(--side-padding); */
  }
  nav.gtc-header.gtc-collapsed {
    grid-template-rows: 0 var(--nav-main-height);
  }
  nav.gtc-header.gtc-collapsed .gtc-divider-line {
    opacity: 0;
  }
  nav.gtc-header.gtc-collapsed .gtc-info-bar {
    height: 0;
    opacity: 0;
    padding-block: 0;
    overflow: hidden;
  }
  nav.gtc-header.gtc-collapsed .gtc-logo {
    height: var(--nav-main-height);
    width: calc(30px * var(--logo-aspect-ratio));
  }
  nav.gtc-header.gtc-collapsed .gtc-logo-img {
    max-height: 30px;
  }
  nav.gtc-header .gtc-wrapper, nav.gtc-header .gtc-container {
    display: contents;
  }
  nav.gtc-header .gtc-wrapper {
    background-color: #000;
  }
  nav.gtc-header .gtc-logo {
    grid-column: 1;
    grid-row: 1 / 3;
    width: var(--logo-width);
    height: var(--logo-height);
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: calc(var(--z-nav) + 2);
    transition: height var(--transition-normal), width var(--transition-normal), margin-left var(--transition-normal);
    overflow: hidden;
    /* margin-left: -24px; */
  }
  nav.gtc-header .gtc-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  nav.gtc-header .gtc-logo-img {
    height: auto;
    width: auto;
    max-height: 42px;
    max-width: 141px;
    transition: max-height var(--transition-normal);
  }
  nav.gtc-header .gtc-content {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
  }
  nav.gtc-header .gtc-divider-line {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    align-self: end;
    height: 1px;
    background-color: var(--color-gray-800);
    z-index: calc(var(--z-nav) + 1);
    transition: opacity var(--transition-normal);
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  nav.gtc-header .gtc-info-bar {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-info-height);
    background-color: #000;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), height var(--transition-normal), padding var(--transition-normal);
    will-change: transform, opacity;
    transform: translateY(0);
    overflow: hidden;
  }
  nav.gtc-header.gtc-info-hidden .gtc-info-bar {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }
  nav.gtc-header.gtc-info-hidden .gtc-divider-line {
    opacity: 0;
  }
  nav.gtc-header .gtc-info-content {
    flex: 1;
    display: flex;
    align-items: center;
  }
  nav.gtc-header .gtc-event-details {
    font-size: 16px;
    color: #fff;
    line-height: 1;
    font-weight: 400;
  }
  nav.gtc-header .gtc-event-details strong {
    font-weight: 700;
  }
  nav.gtc-header .gtc-event-details .gtc-divider {
    margin-inline: 2px;
    opacity: 0.6;
  }
  nav.gtc-header .gtc-main {
    display: flex;
    align-items: center;
    height: var(--nav-main-height);
    background-color: #000;
    transition: padding var(--transition-normal);
    width: 100%;
  }
  nav.gtc-header .gtc-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: var(--gap-lg);
    min-width: 0;
  }
  nav.gtc-header .gtc-cta {
    flex-shrink: 0;
  }
  nav.gtc-header .gtc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-brand-green);
    color: #000;
    text-decoration: none;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    padding: 12px 14px;
    line-height: 1.25;
    white-space: nowrap;
    transition: background-color var(--transition-fast);
  }
  nav.gtc-header .gtc-btn:hover, nav.gtc-header .gtc-btn:focus {
    background-color: var(--color-brand-green-hover);
  }
  nav.gtc-header .gtc-btn-divider {
    font-weight: 700;
  }
  nav.gtc-header .brand-name {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    line-height: 125%;
  }
  @media (max-width: 1350px) {
    nav.gtc-header {
      max-width: 100%;
    }
    nav.gtc-header .gtc-container {
      max-width: calc(var(--max-width-tablet) + (2 * var(--side-padding)));
    }
    nav.gtc-header .gtc-event-details {
      font-size: 14px;
    }
    nav.gtc-header .gtc-btn {
      font-size: 14px;
      padding: 10.5px 12.25px;
    }
    nav.gtc-header .gtc-btn .gtc-btn-divider {
      font-size: 16px;
    }
  }
  @media(min-width: 955px) and (max-width: 1349px) {
    nav.gtc-header {
      max-width: calc(100% - 30px);
    }
    nav.gtc-header .gtc-main-content {
      margin-right: 0;
    }
  }
  @media (max-width: 1023px) {
    nav.gtc-header .brand-name {
      margin-left: -180px;
    }
    nav.gtc-header .gtc-main-content {
      position: relative;
      justify-content: center;
      margin-right: 0;
    }
    nav.gtc-header .gtc-cta.gtc-cta-desktop {
      position: absolute;
      right: 0;
    }
  }
  @media (max-width: 954px) {
    nav.gtc-header .brand-name {
      margin-left: -90px;
    }
    :root {
      --nav-info-height: 44px;
      --nav-main-height: 60px;
      --nav-total-height: calc(var(--nav-info-height) + var(--nav-main-height));
      --logo-height: 60px;
    }
    nav.gtc-header .gtc-divider-line {
      display: none;
    }
    nav.gtc-header {
      display: flex;
      flex-direction: column;
      max-width: none;
      padding-inline: 0;
      background-color: #000;
    }
    nav.gtc-header .gtc-info-bar {
      order: 1;
      z-index: calc(var(--z-nav) + 3);
      padding-inline: var(--side-padding);
      border-bottom: 1px solid var(--color-gray-800);
      justify-content: center;
      height: auto;
      min-height: var(--nav-info-height);
      padding-block: 8px;
      width: 100%;
      background-color: #000;
    }
    nav.gtc-header.gtc-info-hidden .gtc-info-bar {
      max-height: 0;
      min-height: 0;
      padding-block: 0;
      border-bottom: none;
    }
    nav.gtc-header .gtc-wrapper {
      order: 2;
      display: flex;
      justify-content: center;
      width: 100%;
      background-color: #000;
    }
    nav.gtc-header .gtc-container {
      display: flex;
      width: 100%;
      max-width: calc(var(--max-width-tablet) + (2 * var(--side-padding)));
      padding-inline: var(--side-padding);
      background-color: #000;
    }
    nav.gtc-header .gtc-content {
      flex: 1;
      min-width: 0;
      background-color: #000;
    }
    nav.gtc-header .gtc-logo {
      height: var(--logo-height);
      width: calc(30px * var(--logo-aspect-ratio));
      margin-left: 0;
    }
    nav.gtc-header .gtc-logo-img {
      max-height: 30px;
    }
    nav.gtc-header .gtc-main {
      background-color: #000;
    }
    nav.gtc-header .gtc-main-content {
      /*  justify-content: flex-end; */
      background-color: #000;
    }
    nav.gtc-header .gtc-event-details {
      font-size: 12px;
      white-space: normal;
      line-height: 1.4;
      word-wrap: break-word;
    }
    nav.gtc-header .gtc-info-content {
      flex: none;
      text-align: center;
      justify-content: center;
      width: 100%;
    }
    nav.gtc-header.gtc-collapsed .gtc-info-bar {
      max-height: 0;
      min-height: 0;
      padding-block: 0;
      margin: 0;
      opacity: 0;
      overflow: hidden;
      border-bottom: none;
    }
  }
  @media (min-width: 641px) {
    .hide-dlt {
      display: none;
    }
  }
  @media (max-width: 640px) {
    :root {
      --nav-info-height: 36px;
      --logo-height: 60px;
    }
    nav.gtc-header .gtc-container {
      max-width: calc(var(--max-width-phone) + (2 * var(--side-padding)));
    }
    nav.gtc-header .gtc-logo {
      width: calc(26px * var(--logo-aspect-ratio));
    }
    nav.gtc-header .gtc-logo-img {
      max-height: 26px;
    }
    nav.gtc-header .gtc-event-details {
      font-size: 12px;
    }
    nav.gtc-header .gtc-event-details .gtc-divider {
      margin-inline: 1px;
    }
    nav.gtc-header .gtc-info-bar {
      height: auto;
      min-height: var(--nav-info-height);
      padding: 8px var(--side-padding);
      width: calc(100% - 30px);
    }
    nav.gtc-header .brand-name {
      font-size: 16px;
      max-width:145px;
    }
  }
  @media (max-width: 360px) {
    nav.gtc-header .gtc-logo {
      width: 25.16vw;
      min-width: 80px;
    }
    nav.gtc-header .gtc-logo-img {
      max-height: 7.5vw;
      min-height: 24px;
    }
  }
  .rf-org-header-container {
    position: fixed;
    width: 100%;
    height: 104px;
    background: #000;
    z-index: 1;
    top: 0;
  }
  .rf-org-header-container.gtc-header-collapsed {
    height: 60px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    transition: height var(--transition-normal), box-shadow var(--transition-normal);
  }
  @media (max-width: 954px) {
    .rf-org-header-container {
      height: calc(var(--nav-info-height) + var(--nav-main-height));
    }
    .rf-org-header-container.gtc-header-collapsed {
      height: var(--nav-main-height);
    }
  }
  @media (max-width: 640px) {
    .rf-org-header-container {
      height: calc(var(--nav-info-height) + var(--nav-main-height));
    }
    .rf-org-header-container.gtc-header-collapsed {
      height: var(--nav-main-height);
    }
    .rf-org-header-container .hide-mobile {
      display: none;
    }
  }
  @media (max-width: 390px) {
    nav.gtc-header .brand-name {
      font-size: 14px;
    }
  }
  #rf-catalog {
    transition: padding-top var(--transition-normal);
  }
  nav.gtc-header span.gtc-btn-text {
    color: #fff;
  }
  body:has(nav.gtc-header) div#rf-content {
    padding-top: 104px;
  }
  body:has(nav.gtc-header.gtc-collapsed) div#rf-content {
    padding-top: 60px;
  }
  nav.gtc-header a.gtc-btn {
    background-color: transparent;
    border: 2px solid #76b900;
    text-decoration: none !important;
  }
  nav.gtc-header a.gtc-btn:hover {
    background-color: transparent;
    border-color: #fff;
  }
  body:has(.rf-org-header-container.gtc-header-collapsed) .page-builder-panel.panel-left {
    top: 60px;
  }
  body:has(.rf-org-header-container.gtc-header-collapsed) .sidebarTitle {
    top: 60px;
  }