:root {
    --scrollbar-width: 0px;
}
button,
label {
    position: relative;
}
label span[data-validation-elem] {
    display: none !important;
    color: #f04438;
}
label.standard-error input {
    border: 1px solid #f04438;
}
label.standard-error span[data-validation="standard"] {
    display: inline-block !important;
}
label.unhandled-error input {
    border: 1px solid #f04438;
}
label.unhandled-error span[data-validation="unhandled"] {
    display: inline-block !important;
}
.footer__logo,
.header__logo {
    display: flex;
    gap: 29px;
    position: relative;
    width: auto;
    align-items: center;
}
.footer__logo img,
.header__logo img {
    position: relative;
}
.footer__logo-caption,
.header__logo-caption {
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: 15px;
    font-weight: 300;
    color: #242a34;
    padding-left: 5px;
    line-height: 1.2;
}
.footer__logo-caption::before,
.header__logo-caption::before {
    content: "";
    position: absolute;
    left: calc(0% - 15px);
    height: 41px;
    top: -2px;
    width: 1px;
    background-color: #525861;
    display: block;
}
.header {
    min-height: 60px;
    background-color: #fff;
    margin: 0 auto;
    width: 100%;
    display: flex;
    position: fixed;
    z-index: 30;
    box-shadow: 0 0 15.3px rgba(127, 86, 217, 0.17);
    justify-content: center;
    padding: 11px 360px;
}
.header-wrapper {
    max-width: 1920px;
    display: flex;
    gap: 74px;
    width: 100%;
}
.header__menu {
    display: flex;
    gap: 32px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #242a34;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.6;
}
.header__menu .link-with-arrow-acc {
    gap: 10px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    color: #525861;
    display: none;
    position: absolute;
    box-shadow: 0 0 15.3px rgba(127, 86, 217, 0.17);
}
.header__menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__menu a {
    white-space: nowrap;
    font-weight: 500;
}
.header__menu a:hover .link-with-arrow-acc {
    display: flex;
    flex-direction: column;
}
.header__switch {
    font-size: 14px;
    font-weight: 500;
    color: #242a34;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
}
.header__actions {
    display: flex;
    gap: 24px;
    align-items: center;
}
.header__actions-login {
    /*    display: flex;
        justify-content: center;
        align-items: center;*/
    cursor: pointer;
}
.header__actions-burger-container {
    display: none;
    align-items: center;
    justify-content: center;
}
.header__actions-burger-button {
    padding: 12px;
    background-color: transparent;
    border: 2px solid #525861;
    border-radius: 12px;
}
.header__actions-burger-button-img {
    width: 24px;
    height: 24px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.header__actions-burger-button-img--close {
    display: none;
}
.header__actions svg {
    width: 24px;
    height: 24px;
}
.header__actions-support {
    max-height: 50px;
    min-height: 50px;
    min-width: 176px;
    transition: 0.4s ease-in-out;
    font-weight: 550;
    font-size: 16px;
    line-height: 1.6;
    color: #f66b34;
    border: 2px solid #f66b34;
    background-color: transparent;
    border-radius: 8px;
    white-space: nowrap;
    position: relative;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__actions-support:hover {
    background-color: #f66b34;
    color: #fff;
}
.header__actions-support:hover svg path {
    stroke: #fff;
}
.header__actions-support.focus-visible:focus:not([disabled]) {
    outline: 0;
    box-shadow: 0 0 0 5px #4766d2;
    border: 2px solid transparent;
}
.header__actions-support.active {
    background-color: rgba(246, 107, 52, 0.1);
}
.header__logo-caption-word {
    color: #525861;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.2;
}
@keyframes shine {
    to {
        background-position: 200% center;
    }
}
.header {
    transition: 0.3s ease-in-out;
}
.header-wrapper.show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    /*    height: 100vh;*/
    background-color: #fff;
    z-index: 999999;
    transform: none;
    display: flex;
    align-items: flex-start;
    padding-top: 11px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 57.5px repeat(2, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
    padding-right: calc(48px + 0px);
    padding-right: calc(48px + var(--scrollbar-width, 0px));
    padding-left: 48px;
}
.header-wrapper.show .header__logo {
    grid-area: 1/1/2/2;
    align-self: center;
}
.header-wrapper.show .header__actions {
    justify-self: end;
    grid-area: 1/2/2/3;
    align-self: center;
    /*    right: 15px;
        top: 11px;*/
}
.header-wrapper.show .header__menu {
    grid-area: 2/1/4/3;
    left: 15px;
    top: 11px;
    display: flex;
    flex-direction: column;
    /*margin-top: 75px;*/
    justify-self: center;
}
.header-wrapper.show .header__logo {
    top: -5px;
}
.header-wrapper.show .header__menu-list {
    justify-content: flex-start;
}
.header-wrapper.show .header__actions-burger-button-img {
    display: none;
}
.header-wrapper.show .header__actions-burger-button-img--close {
    display: block;
}
@media (min-width: 430px) {
    .header__actions {
        margin-left: 12px;
    }
}
@media (min-width: 720px) {
    .header__actions {
        justify-content: center;
    }
    .header__actions-login {
        display: none;
    }
}
@media (min-width: 1920px) {
    .header-wrapper {
        justify-content: space-between;
    }
}
@media (max-width: 1920px) {
    .header {
        max-width: 1920px;
    }
    /*      .header__actions-login {
            display: none;
        }*/
}
@media (max-width: 1800px) {
    .header {
        padding-left: 300px;
        padding-right: 300px;
    }
}
@media (max-width: 1750px) {
    .header {
        padding-left: 250px;
        padding-right: 250px;
    }
}
@media (max-width: 1700px) {
    .header {
        padding-left: 200px;
        padding-right: 200px;
    }
}
@media (max-width: 1600px) {
    .header {
        padding-left: 150px;
        padding-right: 150px;
    }
}
@media (max-width: 1440px) {
    .header {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (max-width: 1367px) {
    .header {
        padding-left: 48px;
        padding-right: 48px;
    }
}
@media (max-width: 1285px) {
    .header,
    .header-wrapper {
        justify-content: space-between;
    }
    .header__menu,
    .header__switch {
        display: none;
    }
    .header__actions {
        align-items: flex-end;
        gap: 71.5px;
    }
    .header__actions-login {
        display: none;
    }
    .header__actions-burger-container {
        display: flex;
    }
}
@media (max-width: 1000px) {
    .header-wrapper {
        gap: 58px;
    }
}
@media (max-width: 750px) {
    .header__actions {
        gap: 40px;
    }
    .header-wrapper.show .header__actions {
        right: 52px;
    }
}
@media (max-width: 725px) {
    .header-wrapper.show {
        padding-left: 24px;
        padding-right: calc(24px + 0px);
        padding-right: calc(24px + var(--scrollbar-width, 0px));
    }
}
@media (max-width: 720px) {
    .header-wrapper {
        gap: 36px;
    }
    .header {
        padding-left: 24px;
        padding-right: 24px;
    }
    .header__actions-support {
        display: none;
    }
    .header__actions {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .header__logo-img {
        width: 143px;
    }
    .header__logo-caption::before {
        height: 35px;
        top: 0;
    }
    .header__logo-caption {
        font-size: 12px;
    }
    .header__actions-login {
        display: inline-block;
    }
}
@media (max-width: 430px) {
    .header__logo {
        gap: 15px;
    }
    .header__logo-caption{
        display: none;
    }
}
@media (max-width: 400px) {
    .header-wrapper {
        gap: 0;
        display: flex;
        justify-content: space-between;
    }
}
@media (max-width: 385px) {
    .header__logo {
        transform: scale(0.85) translateX(-25px);
    }
}

.icon-mobile-header {
    font-size: 30px;
    line-height: 1.6;
    color: #f66b34;
}