body {
    --header-h: 152px;
    --header-mb: 10px;
    --header-top-vp: 14px;
    --header-main-vp: 10px;
    --header-si-size: 24px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #fff;
    box-shadow: 0 0 30px #2a30471a;
    margin-bottom: var(--header-mb);
}

.header__container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__top {
    color: var(--dark-100);
    background: var(--bg);
}

.header__top .header__container{
    padding-top: var(--header-top-vp);
    padding-bottom: var(--header-top-vp);
    gap: 20px
}

.header__top-item_schedule,
.header__top-item_address,
.header__top-item__search-link,
.header__top-item__personal-link{
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: var(--text);
}
.header .bvi-open{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    background-color: #49B1DF;
}
.header .bvi-open:hover{
    color: #49B1DF;
    background-color: #fff;
}

.header__top-item__personal-link__icon,
.header__top-item__search-link__icon{
    color: var(--blue);
}
.header__top-item_phone{
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    color: var(--black);
}
.header__top-item_schedule,
.header__top-item_phone,
.header__top-item__search-link,
.header__top-item__personal-link{
    white-space: nowrap;
}
.header__top-item__search-link,
.header__top-item__personal-link{
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}
.user-authorize .header__top-item__personal-link__icon{
    background: #55565a;
    border-radius: 50%;
    padding: 3px;
}
.admin-interface .header__top-item__personal-link__icon{
    background: #55565a;
}
.admin-interface .header__top-item__personal-link__icon svg path{
    stroke: #fff;
}
.developer-interface .header__top-item__personal-link__icon{
    background: #13b284;
}
.developer-interface .header__top-item__personal-link__icon svg path{
    stroke: #fff;
}
.header .social-links__list{
    flex-wrap: nowrap;
    gap: 10px;
}
.header .social-links__item{
    padding: 0;
    width: var(--header-si-size);
    height: var(--header-si-size);
    box-shadow: none;
    background: none;
}
.header__top-item {
    display: flex;
    align-items: center;
    gap: 10px
}
.header__main .header__container{
    padding-top: var(--header-main-vp);
    padding-bottom: var(--header-main-vp);
    gap: 10px;
}
.header__main-logo{
    line-height: 1;
}

@media (max-width: 991px) {
    .header__top,
    .header__main-nav,
    .header .bvi-open,
    .header__top-item__search-link__text,
    .header__top-item__personal-link__text{
        display: none;
    }
    .header__main .header__container {
        flex-wrap: wrap;
        gap: 12px;
    }
    .header__main-logo{
        width: calc(100% - 160px);
    }
    .header__main-connect-cta{
        width: 100%;
    }
    .header__main-logo img{
        width: 133px;
    }
    .header__top-item {
        gap: 30px;
    }
}

@media (min-width: 992px) {
    .header__main .header__top-item__links,
    .header__main-burger{
        display: none;
    }
}
@media (min-width: 992px) and (max-width: 1360px){
    .header__main-logo img{
        width: 100px;
    }
    .header__main-connect-cta .btn{
        font-size: 12px;
        padding: 5px 8px;
    }
}
@media (min-width: 1300px) {
    .header__top-item_schedule, .header__top-item_address, .header__top-item__search-link, .header__top-item__personal-link {
        font-size: 16px;
    }
    .header__top-item_phone {
        font-size: 20px;
    }
    .header__top .header__container {
        gap: 77px;
    }
    .header__top-item,
    .header .social-links__list,
    .header__main .header__container{
        gap: 24px;
    }
}

@media (min-width: 1600px) {
    .header__main .header__container {
        gap: 60px;
    }
}
