:root {
    --header-height: 95px;
}

.header-wrapper {
    position: relative;
    height: var(--header-height);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden;
    background: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 26px;
    padding-bottom: 27px;
    border-radius: 0;
    justify-content: space-between;
}

@media (max-width: 650px) {
    :root {
        --header-height: 56px;
    }

    .header-wrapper {
        padding-top: 7px;
        padding-bottom: 7px;
    }

    .page-header:not(.sticky-disabled) {
        position: sticky;
        position: -webkit-sticky;
        top: 0;
        z-index: 1001;
    }
}

@media (max-width: 650px) {
    .header-wrapper {
        border-bottom-left-radius: unset;
        border-bottom-right-radius: unset;
    }
}

.header-wrapper .header-lang {
    width: 78px;
    height: 43px;
}

.header-wrapper .header-belt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0px;
    background: white;
}

.header-wrapper .header-logo a {
    float: left;
}

.header-wrapper .logo-wrapper {
    width: 155px;
    height: 35.18px;
}