html.overflow,
html.overflow body {
  overflow: hidden;
}

.header-gtopgbr ul {
    list-style: none;
  }
  
  .header-gtopgbr a {
    text-decoration: none;
  }
  
  .header-gtopgbr {
    font-weight: 500;
    height: 96px;
  }
  
  .header-gtopgbr .header-overlay {
    background: rgba(0,0,0,0.8);
    display: none;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 8;
  }
  
  .header-gtopgbr .header-overlay.active {
    display: block;
  }
  
  .header-gtopgbr .header-bg {
    background-color: #ff5100;
    height: 100%;
    position: relative;
    z-index: 10;
  }
  
  .header-gtopgbr .header-container {
    margin: 0 auto;
    max-width: calc(1200px + 30px);
    padding: 0 15px;
    width: 100%;
  }
  
  .header-gtopgbr .header-container {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: space-between;
  }
  
  .header-gtopgbr .header-logo {
    position: relative;
    z-index: 9;
  }
  
  .header-gtopgbr .header-logo img {
    display: block;
    max-width: 100%;
  }
  
  .header-gtopgbr .header-nav {
    display: flex;
    z-index: 8;
  }
  
  .header-gtopgbr .header-nav > ul li + li {
    margin-left: 28px;
  }
  
  .header-gtopgbr .header-nav ul li a {
    align-items: center;
    color: #000;
    display: flex;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    transition: 0.3s;
    padding: 4px 6px;
    position: relative;
  }
  
  .header-gtopgbr .header-nav ul li.active > a {
    color: #fff;
  }
  
  .header-gtopgbr .header-nav ul li.active .header-dropdown-options {
    display: block;
  }
  
  .header-gtopgbr .header-dropdown-item:not(.full-dropdown) {
    position: relative;
  }

  
  .header-gtopgbr .header-dropdown-item button[data-header="dropdown-item-btn"] {
    position: absolute;
    border-radius: 4px;
    display: none;
    align-items: center;
    justify-content: center;
    top: 0;
    right: -36px;
    height: 36px;
    width: 40px;
    background-color: #ea5008 !important;
    outline: none;
    padding: 2px 14px 0;
    border: none;
  }

  .header-gtopgbr .header-dropdown-item button[data-header="dropdown-item-btn"] svg {
    touch-action: none;
    pointer-events: none;
    transition: 0.3s;
  }

  .header-gtopgbr .header-dropdown-item.active button[data-header="dropdown-item-btn"] svg {
    transform: rotate(180deg);
  }
  
  .header-gtopgbr .header-dropdown-options {
    display: none;
    max-width: 100%;
    width: 100%;
  }
  
  .header-gtopgbr .header-dropdown-options ul li a {
    color: #fff !important;
  }
  
  .header-gtopgbr .header-dropdown-grid {
    flex-direction: column;
    width: 100%;
  }
  
  .header-gtopgbr .header-dropdown-grid li + li {
    margin-left: 0 !important;
  }
  
  .header-gtopgbr .header-btn-buy {
    align-items: center;
    background-color: #fff;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    display: flex;
    margin-left: 28px;
    padding: 3px 4px;
  }
  
  .header-gtopgbr .header-btn-buy span {
    color: #ff5100;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin-left: 4px;
    padding-left: 4px;
    position: relative;
  }
  
  .header-gtopgbr .header-btn-buy span::before {
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    background-color: #000;
  }
  
  .header-gtopgbr .header-btn-mobile {
    background-color: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    height: 46px;
    justify-content: center;
    overflow: hidden;
    padding: 4px 6px;
    position: relative;
    width: 46px;
    z-index: 100;
  }
  
  .header-gtopgbr .header-btn-mobile.active span {
    background-color: #fff;
  }
  
  .header-gtopgbr .header-btn-mobile span {
    background-color: #000;
    border-radius: 4px;
    display: block;
    height: 3px;
    transition: 0.2s ease;
    width: 30px;
  }
  
  .header-gtopgbr .header-btn-mobile span + span {
    margin-top: 6px;
  }
  
  .header-gtopgbr .header-btn-mobile.active span:nth-child(1) {
    background-color: white;
    transform: rotate(45deg);
  }
  
  .header-gtopgbr .header-btn-mobile.active span:nth-child(2) {
    transform: translate3d(-50px, 0, 0);
    position: absolute;
    opacity: 0;
  }
  
  .header-gtopgbr .header-btn-mobile.active span:nth-child(3) {
    background-color: white;
    transform: rotate(-45deg);
    margin-top: -4px;
  }
  
  .header-gtopgbr .header-dropdown-item a[data-header="dropdown-item-link"] {
    justify-content: space-between;
  }

  .header-gtopgbr .header-dropdown-item a[data-header="dropdown-item-link"] button {
    display: none;
    height: 36px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 36px;
    border: none;
    align-items: center;
    justify-content: center;
  }
  
  @media screen and (min-width: 992px) {
    .header-gtopgbr .header-overlay {
      opacity: 0;
      touch-action: none;
      pointer-events: none;
    }
  
    .header-gtopgbr .header-overlay.active {
      opacity: 1;
    }
  
    .header-gtopgbr .header-nav ul li:hover > a {
      color: #fff;
    }
  
    .header-gtopgbr .header-nav,
    .header-gtopgbr .header-nav > ul,
    .header-gtopgbr .header-nav > ul li,
    .header-gtopgbr .header-nav > ul li a {
      height: 100%;
    }
  
    .header-gtopgbr .header-nav {
      align-items: center;
    }
  
    .header-gtopgbr .header-nav > ul li:hover .header-dropdown-options,
    .header-gtopgbr .header-nav > ul li.active .header-dropdown-options {
      opacity: 1;
      touch-action: initial;
      pointer-events: initial;
    }
  
    .header-gtopgbr .header-nav > ul {
      align-items: center;
      display: flex;
    }
  
    .header-gtopgbr .header-dropdown-item .header-dropdown-options ul li a:hover {
      opacity: 0.5;
    }
  
    .header-gtopgbr .header-dropdown-item:not(.full-dropdown) .header-dropdown-options {
      left: 50%;
      max-width: initial;
      padding-left: 20px;
      padding-right: 20px;
      transform: translateX(-50%);
      width: 280px;
    }
  
    .header-gtopgbr .header-dropdown-item:not(.full-dropdown) .header-dropdown-options ul li + li {
      margin-top: 14px;
    }
  
    .header-gtopgbr .header-dropdown-options {
      background-color: #000;
      display: block;
      left: 0;
      opacity: 0;
      padding: 30px 0;
      pointer-events: none;
      position: absolute;
      touch-action: none;
      transition: 0.4s;
    }
  
    .header-gtopgbr .header-dropdown-options ul li + li {
      margin-left: 0 !important;
    }
  
    .header-gtopgbr .header-dropdown-grid {
      display: grid !important;
      grid-gap: 14px 20px;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
      margin: 0 auto;
      max-width: calc(1200px + 30px);
      padding: 0;
    }
  
    .header-gtopgbr .header-btn-buy svg path,
    .header-gtopgbr .header-btn-buy svg circle,
    .header-gtopgbr .header-btn-buy span {
      transition: 0.3s;
    }
    
    .header-gtopgbr .header-btn-buy:hover svg path,
    .header-gtopgbr .header-btn-buy:hover svg circle {
      fill: #000;
    }
  
    .header-gtopgbr .header-btn-buy:hover span {
      color: #000;
    }
  }
  
  @media screen and (max-width: 991px) {
    .header-gtopgbr .header-overlay.active {
      display: block;
    }
  
    .header-gtopgbr .header-logo {
      max-width: 162px;
    }
  
    .header-gtopgbr .header-nav {
      background-color: #ff5100;
      box-shadow: 2px 0 3px rgba(71,71,71,0.3);
      height: 100vh;
      flex-direction: column;
      left: -120%;
      max-width: 300px;
      padding: 96px 15px 30px;
      position: absolute;
      top: 0;
      transition: 0.5s ease;
      width: 100%;
    }
  
    .header-gtopgbr .header-nav.active {
      left: 0%;
    }
  
    .header-gtopgbr .header-nav ul {
      overflow-y: auto;
      overflow-x: hidden;
      padding-right: 15px;
      width: calc(100% + 15px);
    }
  
    .header-gtopgbr .header-nav ul li + li {
      margin-left: 0;
      margin-top: 12px;
    }
  
    .header-gtopgbr .header-nav ul li a {
      color: #fff;
      padding: 8px 0;
    }

    .header-gtopgbr .header-dropdown-item {
      width: calc(100% - 35px);
    }
  
    .header-gtopgbr .header-dropdown-options {
      padding-left: 20px;
      margin-top: 10px;
    }
  
    .header-gtopgbr .header-btn-buy {
      margin-left: 0;
      margin-top: 14px;
      padding: 12px 8px;
    }
  
    .header-gtopgbr .header-btn-mobile {
      display: flex;
    }
    
    .header-gtopgbr .header-dropdown-item {
      position: relative;
    }

    .header-gtopgbr .header-dropdown-item button[data-header="dropdown-item-btn"] {
      display: flex;
    }
  }
  
  @media screen and (max-width: 374px) { 
    .header-gtopgbr .header-nav {
      max-width: 270px;
    }
  }