.header {
    width: 100%;
    height: 64px;
    position: fixed;
    top: 0;
    padding: 12px;
    background: #ffffff;
    z-index: 33;
}

.header-burger-button {
    margin-top: 0;
    margin-right: 0;

    svg {
        width: 24px;
        height: 24px;
    }
}

.header-container {
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-logo {
    width: 285px;
    margin: 0 20px 12px 16px;

    @media screen and (max-width: 767px) {
        width: 204px;
        margin: 0 8px 8px 16px;
    }
}

.header-link {
    padding: 0;
    margin: 0;
    color: #242424;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    transition: color 0.3s;
}

.header-link__grey {
    &:hover {
        color: #f39100 !important;

        svg {
            color: #f39100 !important;
        }
    }

    svg {
        transition: color 0.3s;
        color: #929292 !important;
    }
}

.header-link__enter {
    &:hover {
        color: #f39100 !important;

        svg {
            color: #f39100 !important;
        }
    }

    svg {
        transition: color 0.3s;
        color: #767676 !important;
    }
}

.header-link__green {
    &:hover {
        color: #f39100 !important;

        svg {
            color: #f39100 !important;
        }
    }

    svg {
        transition: color 0.3s;
        color: #94C11C !important;
    }
}

.header-all-products--wrapper {
    position: relative;
}

.header-burger-products {
    margin-top: 24px;
}

.header-burger-partners {
    margin-top: 16px;
    display: flex;
    column-gap: 14px;
}

.header-all-products--links {
    width: 275px;
    padding: 20px 28px;
    flex-direction: column;
    row-gap: 16px;
    background: white;
    position: absolute;
    top: 34px;
    right: -80px;
    border-radius: 4px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.20);

        display: none;

    a:hover {
        opacity: 0.8;
    }
}

.header-all-products--links.active {
    display: flex;
}

.header-divider {
    width: 100%;
    height: 1px;
    background: #DFE1E3;
}

.header-button__orange {
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    background-color: #F39100;
    color: #ffffff;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    border: 1px solid #F39100;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;

    &:hover {
        border-color: #94C11C;
        color: #ffffff !important;
        background-color: #94C11C;
    }
}

.header-button__white {
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    background-color: #ffffff;
    color: #F39100;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid #F39100;

    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;

    &:hover {
        color: #ffffff !important;
        background-color: #F39100;
    }
}

.header-my-profile-wrapper {
    width: 154px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;

    @media screen and (max-width: 1199px) {
        width: 44px;
    }

    .header-my-profile-wrapper-text {
        @media screen and (max-width: 1199px) {
            display: none;
        }
    }
}

.header-my-profile-circle {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #F39100;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    right: -8px;
}

.hidden-on-tablet {
    @media screen and (max-width: 1360px) {
        display: none;
    }
}
.hidden-on-mobile {
    @media screen and (max-width: 767px) {
        display: none;
    }
}
