.header__line--1 {
    height: fit-content;
}

.header__link--icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__link--icon + .header__link--icon {
    margin-left: 8px;
}

.header__link--tg {
  background: #ECFAFE;
}
.header__link--wa {
  background: #ECFEF5;
}
.header__link .icon {
  margin-right: 0;
}

.header__btn {
    height: 35px;
    
    padding: 6px 12px;
    font-weight: 600;
}

.header__btn + .header__btn {
    margin-left: 10px;
}

.header__btn.btn--outlined:hover svg {
    fill: #fff;
}

.header__divider {
    width: 1px;
    height: 6px;
    background: #D5D5D5;
    
    margin: auto 14px;
}

input[type="search"].header_search__input {
    border: 1px solid #E5E7E0;    
}

.header__best {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAFAF1;
    padding: 10px 14px;
    font-size: 1em;
    line-height: 1.375em;
    color: #0A7339;
    font-weight: 600;
    
    position: relative;
    width: fit-content;
}

.header__best .image {
  width: 17px;
  height: 16px;
  margin-right: 8px;
}

.header__best_tooltip {
  position: absolute;
  background: #fff;
  color: #000;
  left: 50%;
  transform: translateX(-50%);
  bottom: -26px;
  padding: 0px 12px;
  white-space: nowrap;
  font-size: 12px;
  border-radius: 8px;
  box-shadow: 0 0 36px 0 rgba(0, 0, 0, 0.18);
  
  opacity: 0;
  pointer-events: none;
  
  transition: opacity .2s;
}

.header__best:hover .header__best_tooltip {
    opacity: 1;
}

.header__best--modal {
    width: 100%;
    margin-top: 20px;
}

.offers_block--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}






@media(max-width: 1124px) {
    .header__best--desktop,
    .header__divider {
        display: none;
    }   
}








@media(max-width: 500px) {
    .header__best--modal {
        margin-top: 16px;
    }   
}








