/*
loader
 */
.header__cart-toggler {
    position: relative;
}
.header__cart_hasproduct .header__loader-section {
    position: absolute;
    left: -2px;
    top: -6px;
    width: 64px;
    height: 57px;
    display: flex;
    z-index: 2;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}
.loader-section, .header__loader-section {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 2;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}
.loader-block {
    display: inline-block;
    width: 1em;
    height: 1em;
    color: inherit;
    vertical-align: middle;
    pointer-events: none;
}
.loader-block {
    border: .2em solid transparent;
    border-left-color: currentcolor;
    border-right-color: currentcolor;
    border-radius: 50%;
    animation: 1s loader-block linear infinite;
}

@keyframes loader-block {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.modal-callback__input.required {
    border-color: var(--kmnd-body-background-accent);
}
.form_thanks {
    text-align: center;
}