body.active {
  position: relative;
  overflow: hidden;
}

body.active:after {
  position: absolute;
  content: '';
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-tap-highlight-color: transparent;
  z-index: 99998;
  backdrop-filter: blur(8px);
}

.cbl-header__main {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  transition: 0.2s ease;
  z-index: 99999;
  padding: 12px 40px;
  z-index: 999;
}

.cbl-header__main.add-animation {
  border-bottom: 1px solid rgba(205, 213, 223, 0.4);
  box-shadow: rgba(205, 213, 223, 0.5) 1px 1px 3px;
}

.cbl-header__row {
  display: flex;
  justify-content: space-between;
}


.cbl-header__button .button {
  min-width: 150px;
  line-height: 1;
  word-spacing: 2px;
  letter-spacing: 1px; 
  transition: 0.3s ease-in-out;
}


.cbl-header__col {
  flex: 0 0 100%;
  max-width: calc(100% - 590px);
  display: flex;
  flex-wrap: wrap;
  gap: 66px;
  padding: 4px 0;
}

.cbl-header__menu {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 0;
  align-items: center;
}

.cbl-header__menu-item a:hover {
  text-decoration: underline;
}

/* General Styles */
.cbl-header__hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: none;
  padding: 0;
}

.cbl-header__hamburger:hover,
.cbl-header__hamburger:active {
  background-color: transparent;
  border: none;

}


/* Mobile Menu */
.cbl-header__mobile-menu {
  position: fixed;
  top: 0;
  right: -190px;
  width: 186px;
  height: 100%;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 99999;
  display: none;
  flex-direction: column;
  padding: 16px 20px;
}

.cbl-header__mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cbl-header__mobile-menu-list {
  list-style: none;
  border: 1px solid;
  border-left: none;
  border-right: none;
  padding: 5px 5px 10px;
  margin: 18px 0;
}

.cbl-header__mobile-menu-item {
  line-height: 1;
  padding: 8px 0px;
  margin: 0;
}

.cbl-header__social-icons {
  margin-top: auto;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.cbl-header__mobile-menu.open {
  right: 0;
}

.cbl-header__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  padding: 0;
  position: absolute;
  right: 23px;
  top: 19px;
}

.cbl-header__close svg {
  width: 24px;
  height: 24px;
}

.cbl-header__close svg path {
  fill: #ffffff;
}

li.cbl-header__mobile-menu-item a {
  font-size: 15px;
}

.cbl-header__social-icons svg {
  width: 30px;
  height: 30px;
}

.cbl-header__mobile-menu-btn .button {
  font-size: 10px;
  padding: 8px;
  width: 100%;
  margin-bottom: 10px;
}

@media(max-width:1317px) and (min-width:993px){


.cbl-header__button{
    display:none;
}
  
  
.cbl-header__col {
    max-width: calc(100% - 240px);
}


}


/* Responsive Styles */
@media screen and (max-width: 992px) {


  .cbl-header__main {
    overflow: hidden;
    padding: 12px 16px;
  }

  .cbl-header__hamburger,
  .cbl-header__mobile-menu {
    display: flex;
  }

  .cbl-header__navigation {
    display: none;
  }

  .cbl-header__logo {
    line-height: 1;  
  }
  .cbl-header__button {
    position: absolute;
    top: 70px;
    right: 48px;
    transition: 0.3s ease-in-out;
  }

  .cbl-header__main.add-animation .cbl-header__button {
    top: 6px;
    display:none;
  }
  .cbl-header__col {
    max-width: 100%;
    justify-content: space-between;
  }
}


@media only screen and (min-width: 992px) {
  .cbl-header__button .button {
    //transform: translateX(195px);
  }

  .add-animation .cbl-header__button .button {
   // transform: translateX(0);
  }
}

@media(max-width:916px){


button.cbl-header__close:hover {
    background: transparent;
    border: none;
}
  
.cbl-header__close {
    right: 9px;
    top: 6px;
}  


}

