.header_wrapper {
    align-items: center;
    background-color: var(--bg);
    border-radius: 180px;
    display: flex;
    height: 36px;
    justify-content: space-between;
    padding: 6px 10px;
    width: 100%;

    @media (min-width: 576px) {
        height: 50px;
        padding: 10px 14px;
    }

    @media (min-width: 768px) {
        height: 64px;
        padding: 12px 18px;
    }

    @media (min-width: 1280px) {
        height: var(--header-height);
        padding: 16px 24px;
    }
}

.header__logobox {
    align-items: flex-end;
    display: flex;
    height: 24px;
    width: 168px;
    gap: 12px;

    @media (min-width: 768px) {
        align-items:center;
        height: 48px;
        width: 274px;
    }

    @media (min-width: 1280px) {
        gap: 24px;
        width: 436px;
    }
}

.header__profile-dropdown-menu__item{
    padding: 0 16px;
    color: var(--table-text-color);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 54px;
    text-align: left;
    text-decoration-skip-ink: none;
}

img {
    max-height: 100%
}

.header__thermopol__logo img {
    width: 94px;
    height: 24px;

    @media (min-width: 768px) {
        width: 168px;
        height: 48px;
    }

    @media (min-width: 1280px) {
        width: 252px;
        height: 48px;
    }
}
.header__lob__logo, .header__thermopol__logo {
    object-fit: contain;
}

.header__lob__logo img {
    width: 63px;
    height: 24px;

    @media (min-width: 768px) {
        width: 94px;
        height: 35px;
    }

    @media (min-width: 1280px) {
        width: 128px;
        height: 48px;
    }
}
.header__buttonbox {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    justify-self: flex-end;
    justify-content: end;
}

.header__profile-dropdown-menu{
    width:300px;
    margin-top:8px!important;
    height: min-content;
    border-radius: 16px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.15);
    border: none;
    --bs-dropdown-padding-y: 0;
    --bs-dropdown-item-padding-y: 0;
}

.btn-check:checked+.btn, .btn.active, .btn.show, :not(.btn-check)+.btn:active{
    background-color: var(--primary-active);
    color: var(--bg);
}

.navbar-toggler svg {
    @media (min-width: 576px) {
        transform: scale(1.33);
    }
}

.dropdown-item:active {
    background-color: var(--primary-active) !important;
    color: var(--bg) !important;
    border-radius: 16px;
}

.dropdown-item:hover {
    background-color: var(--primary-hover);
    color: var(--bg);
    border-radius: 16px;
}

.header__profile-burger-menu{
    background-color: var(--bg);
    position: relative;
    margin-top:8px!important;
    border-radius: 16px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.15);
    border: none;
    width: 136px;

    @media (min-width: 568px) {
        width: 236px;
    }
}

.header__profile-burger{
    background-color: var(--bg);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.15);
    border: none;
    --bs-dropdown-padding-y: 0;
    --bs-dropdown-item-padding-y: 0;
}


.header__profile-burger-menu__item{
    color: var(--table-text-color);
    font-family: var(--font-family);
    height: 40px;
    padding: 12px 14px;
    font-size: 10px;
    font-weight: 400;
    line-height: 12px;
    text-align: left;
    text-decoration-skip-ink: none;
}


#mobile-menu-container .dropdown-menu {
    right: auto !important;
    left: 0 !important;
    top: 0 !important;
    transform: translateX(-104%) !important;
    margin-top: 0 !important;
    min-width: 112px;
    max-width: 150px;
}

.dropdown-menu-wrapper {
    border-radius: 16px;
    overflow: hidden;
    width: 112px;
    @media (min-width: 568px) {
        width: 150px;
    }
    @media (min-width: 768px) {
        width: auto;
    }
}

#mobile-menu-container {
    position: absolute;
    z-index: 1200;
    right: 16px;
}
