.abr-site-header {
  background-color: var(--wp--preset--color--secondary);
  border-bottom: 1px solid #fff;
  color: #fff;

  position: fixed;
  top: 0;
  width: 100%;
  z-index:20;
}

.abr-site-header__message {
  text-align: center;
  background-color: var(--wp--preset--color--accent-1);
  transition: 0.2s;
  max-height: 90px;
  overflow: hidden;
}

.abr-site-header__message a {
  color: #fff!important;
}

.abr-site-header__message-flexbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 12px;
  font-size: 14px;
  font-weight: 500;
  min-height: 33px;
  padding-top:1px;
}

.abr-site-header.abr-site-header--sticky .abr-site-header__message{
  max-height: 0;
}

@media(max-width:800px) {
  /* .abr-site-header__message {
    display: none;
  } */
   .abr-site-header__message-flexbox {
    display: inline;
    align-items: center;
    justify-content: center;
    gap: 0 12px;
    font-size: 14px;
    font-weight: 500;
    min-height: 33px;
    padding-top: 1px;
}

}


.abr-site-header__flexbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 43px;
  min-height:  clamp(56px, 9vw, 68px);
}

.abr-site-header__flexbox a {
  text-decoration: none;
}

.abr-site-header__flexbox >nav {
  flex: 1;
  max-width: 530px;
}

.abr-site-header__flexbox >nav> ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
  padding: 0;
  margin: 0;
  width: 100%;
}




.abr-site-header__flexbox >nav> ul > li a {
  font-size: 16px;
  font-weight: 500;
  color: #e0e5eb;
}

.abr-site-header__flexbox >nav> ul > li:hover {
  opacity: 0.8;
}

.abr-site-header__flexbox > div:last-child {
  display: flex;
  align-items: center;
  gap: clamp(15px, 3vw, 27px);
}

.abr-site-header__last-column > img {

}

.abr-site-header__last-column >a > img {

}


@media (max-width: 800px) {
  .abr-site-header__my-acc-icon {
    display: none;
  }
}

.abr-site-header__hamburger {
  display: none;
  position: relative;
  margin-left: 12px;
}

.abr-site-header__hamburger:hover {
  cursor: pointer;
}

@media (max-width: 1350px) {

  .abr-site-header__hamburger {
    display: block;
  }
  .abr-site-header__flexbox > nav {
    display: none;
  }

}


.abr-site-header__logo {
  display: inline-block;
  position: relative;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 500;
  color:#fff;
  white-space: nowrap;
}

.abr-site-header__logo::after {
  content: "";
  height: 4px;
  width: clamp(19px, 2vw, 29px);
  position: absolute;
  top: -2px;
  left: 0;
  background-color: #dc6a1e;
  border-radius: 5px;
}

.abr-site-header__search-icon {
  height: 23px;
}

.abr-site-header__search-icon:hover {
  cursor: pointer;
}



.abr-mobile-menu__overlay, .abr-main-search__overlay, .abr-popup__overlay {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  max-height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
  z-index: 30;
}

.abr-popup__overlay {
background-color: rgba(26, 34, 55, 0.89);
background-color: rgba(0, 0, 0, 0.7);
}

.abr-popup {
  background-color: white;
  padding: clamp(24px, 5vw, 55px);
  padding-top:55px;
  position: fixed;
  top: 50%;
  left: 50%;
  max-height: 88vh;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  overflow: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
  width: calc(100% - 40px);
  max-width: 1246px;
  min-height: 330px;
}

.abr-popup::-webkit-scrollbar {
  display: none;
}

.abr-loading-wheel {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.1); /* Light border */
  border-top: 5px solid var(--wp--preset--color--accent-1); /* Colored border */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


.abr-site-header__xmark:hover, .abr-main-search__xmark:hover {
  cursor: pointer;
}

.abr-mobile-menu__strip {
  width: 100%;
}

.abr-mobile-menu__strip .abr-container {
  border-bottom: 15px solid var(--wp--preset--color--accent-1);
}

.abr-mobile-menu__top {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  align-items: center;
}

@media(max-width: 600px) {
  .abr-mobile-menu__top {
    padding-top: 25px;
  }
}


.abr-mobile-menu__nav {
  padding: 15px 0;
}

.abr-mobile-menu__nav>ul {
  display: block;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0;
}

.abr-mobile-menu__nav>ul>li {
  cursor: pointer;
}

.abr-mobile-menu__nav>ul>li {
  padding: 15px 0;
  border-bottom: 1px solid lightgrey;
  position: relative;
}

.abr-mobile-menu__nav>ul>li a {
  font-size: 15px;
  text-decoration: none;
  color: #fff;
}

.abr-mobile-menu__nav>ul>li a:hover {
  opacity: 0.8;
}



.abr-mobile-menu__social  {
  margin-top: 12px;
  display: flex;
  gap: 11px;
}

.abr-mobile-menu__social a:hover img {
  opacity: 0.8;
  cursor: pointer;
}

.abr-mobile-menu__bottom {
  padding: 50px 0 30px 0;
  font-size: 13px;
  text-align: center;
  color:#fff;
}





.abr-site-header-placeholder {
  height: clamp(56px, 9vw, 68px);

  box-sizing: content-box;
  margin-top: 0;
  display: block;
  transition: 0.2s;
  background-color: var(--wp--preset--color--secondary);
  margin-top: 33px;
}

body.logged-in.admin-bar .abr-site-header-placeholder {
  height: 37px;
}

@media(max-width: 783px) {
  body.logged-in.admin-bar .abr-site-header-placeholder {
    height: clamp(2px, 0.7vw, 7px);
  }
}

@media(max-width: 800px) {
  .abr-site-header-placeholder {
    margin-top: 0;
     margin-bottom: 40px;
  }
}

.abr-main-search__strip {
  padding: 48px 0;
  background-color: var(--wp--preset--color--secondary);
}

#abr-main-search-form > div {
  display: flex;
  gap: 18px 18px;
}


#abr-main-search-form > div input {
  flex: 1;
}

#abr-main-search-form input[type="text"] {
  font-family: inherit;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 28px;
  border: 1px solid #cbcccb;
  box-sizing: border-box;
  width: 100%;
}

#abr-main-search-form input::placeholder {
  color: #9b9b9b;
  font-family: inherit;
  font-weight: 500;
}


@media(max-width: 625px) {
  .abr-main-search__strip {
    padding: 38px 0;
  }
  #abr-main-search-form > div {
    align-items: center;
    flex-wrap: wrap;
    justify-content: end;
  }

  #abr-main-search-form > div input {
    flex: 0 0 100%;
  }

  #abr-main-search-form > div svg {
    display: none;
  }
}


.abr-site-header__minicart-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  background-color: #333d4c;
  position: relative;
}


.abr-site-header__minicart__count {
  position: absolute;
  top: -5px;
  right: -8px;
  background-color: var(--wp--preset--color--accent-1);
  height: 22px;
  min-width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
}