.cookies-wrapper-post .cookies {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    background: rgba(58, 63, 68, 0.7019607843);
    opacity: 0;
    transition: 0.3s;
    font-family: "formular";
}
@media (max-width: 600px) {
    .cookies-wrapper-post .cookies {
        align-items: flex-end;
    }
}

.cookies-wrapper-post .cookies a {
    color: #89AA28;
    text-decoration: underline;
}

.cookies-wrapper-post .cookies a:hover {
    text-decoration: none;
}

.cookies-wrapper-post .show-modal {
    opacity: 1;
}
@media screen and (max-width: 600px) {
    .cookies-wrapper-post .show-modal .cookies__wrapper {
        transform: translateY(0);
    }
}

.cookies-wrapper-post .footer__offer {
    display: flex;
    gap: 30px;
}

.cookies-wrapper-post .footer__part-item-confidentiality {
    flex-wrap: wrap;
}

.cookies-wrapper-post .cookies__wrapper {
    background: #F5F5F7;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: min(970px, 100% - 32px);
    max-height: min(100dvh - 32px, 730px);
    overflow-y: auto;
    position: relative;
}
@media (max-width: 1024px) {
    .cookies-wrapper-post .cookies__wrapper {
        padding: 24px 30px;
        max-height: min(100dvh - 32px, 800px);
    }
}
@media screen and (max-width: 600px) {
    .cookies-wrapper-post .cookies__wrapper {
        max-width: unset;
        border-radius: 20px 20px 0 0;
        transform: translateY(103%);
        transition: 0.3s;
        padding: 24px 16px;
    }
}

.cookies-wrapper-post .cookies__wrapper::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.cookies-wrapper-post .cookies__wrapper::-webkit-scrollbar-track {
    border-radius: 5px;
}

.cookies-wrapper-post .cookies__wrapper::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #89AA28;
    border: unset;
    border-color: var(--black_bg_black);
}

.cookies-wrapper-post .cookies__wrapper::-webkit-scrollbar-thumb:window-inactive-thumb {
    background: #ccc;
    background: var(--gray_bg_black);
    border: 2px solid #fff;
    border-color: var(--black_bg_black);
}

.cookies-wrapper-post .cookies__wrapper > img {
    width: 360px;
    max-width: 80%;
}

.cookies-wrapper-post .cookies__check-wrap {
    display: none;
}
.cookies-wrapper-post .cookies__check-wrap.active {
    display: block;
}

.cookies-wrapper-post .cookies__check_title {
    margin: 0;
    color: #1D1D1F;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
}
@media (max-width: 600px) {
    .cookies-wrapper-post .cookies__check_title {
        font-size: 16px;
        font-weight: 700;
    }
}

.cookies-wrapper-post .cookies__check_text {
    color: #707070;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
@media (max-width: 600px) {
    .cookies-wrapper-post .cookies__check_text {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
    }
}

.cookies-wrapper-post .cookies-text {
    font-size: 1rem;
    line-height: calc(1em + 7px);
}

.cookies-wrapper-post .cookies-close svg {
    fill: #999;
}

.cookies-wrapper-post .cookies-close:hover svg {
    fill: #8fc63d;
}

.cookies-wrapper-post .cookies__check {
    display: flex;
    align-items: flex-start;
}

.cookies-wrapper-post .cookies__check input {
    opacity: 0;
    width: 0;
    height: 0;
    z-index: -1;
    position: absolute;
}

.cookies-wrapper-post .cookies__check input:checked ~ .cookies__check_sq {
    background: #89AA28;
}
.cookies-wrapper-post .cookies__check input:checked ~ .cookies__check_sq::before {
    transform: translateX(24px);
}

.cookies-wrapper-post .cookies__check_sq {
    width: 48px;
    min-width: 48px;
    height: 24px;
    display: block;
    border-radius: 16px;
    background: #707070;
    border: unset;
    transition: all ease 0.3s;
    cursor: pointer;
    position: relative;
}
.cookies-wrapper-post .cookies__check_sq::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    background: white;
    transition: 0.3s;
}

.cookies-wrapper-post .cookies__check input:disabled ~ .cookies__check_sq {
    cursor: default;
    pointer-events: none;
    opacity: 0.3;
}

.cookies-wrapper-post .cookies__tabs {
    margin-top: 32px;
    display: flex;
}
@media (max-width: 768px) {
    .cookies-wrapper-post .cookies__tabs {
        flex-wrap: wrap;
    }
}
@media (max-width: 600px) {
    .cookies-wrapper-post .cookies__tabs {
        margin-top: 24px;
        gap: 12px;
    }
}
.cookies-wrapper-post .cookies__tabs .cookies__tab {
    color: #1D1D1F;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    transition: color 0.3s;
    text-decoration: none;
    padding: 6px 16px 4px;
    border-bottom: 2px solid transparent;
}
@media (max-width: 600px) {
    .cookies-wrapper-post .cookies__tabs .cookies__tab {
        padding: 6px 10px 4px;
    }
}
.cookies-wrapper-post .cookies__tabs .cookies__tab:hover {
    color: #89AA28;
}
.cookies-wrapper-post .cookies__tabs .cookies__tab.active {
    border-color: #89AA28;
    color: #89AA28;
}

.cookies-wrapper-post .cookies-close {
    position: absolute;
    right: 16px;
    top: 16px;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    outline: none;
    border: none;
    border-radius: unset;
}
.cookies-wrapper-post .cookies-close svg {
    width: 100%;
    height: 100%;
}
.cookies-wrapper-post .cookies-close svg path {
    transition: fill 0.3s;
}
.cookies-wrapper-post .cookies-close:hover path {
    fill: #89AA28;
}

.cookies-wrapper-post .cookies-text {
    line-height: 145%;
}

.cookies-wrapper-post .cookies-text a {
    color: #89AA28;
    text-decoration: underline;
    transition: 0.3s;
}

.cookies-wrapper-post .cookies-text a:hover {
    text-decoration: none;
}

.cookies-wrapper-post .cookies-btn {
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 115%;
    cursor: pointer;
    border: none;
    -webkit-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

.cookies-wrapper-post .cookies-btn:hover {
    background-color: #2a0e72;
}

.cookies-wrapper-post .cookies-btn--gray {
    background-color: #c4c4c4;
}

.cookies-wrapper-post .cookies-btn--blue {
    background-color: #1792d4;
}

.cookies-wrapper-post .cookies-btn:last-child {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.cookies-wrapper-post .cookies-btn__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 40px auto 0;
    justify-content: flex-start;
}
@media (max-width: 600px) {
    .cookies-wrapper-post .cookies-btn__list {
        margin: 32px auto 0;
    }
}

.cookies-wrapper-post .cookies--hidden {
    opacity: 0;
    pointer-events: none;
}

.cookies-wrapper-post .cookies__notification {
    display: flex;
    align-items: flex-start;
    padding: 12px 16px;
    padding-left: 50px;
    border-radius: 8px;
    background: rgba(227, 71, 61, 0.08);
    margin-top: 16px;
    position: relative;
}
@media (max-width: 600px) {
    .cookies-wrapper-post .cookies__notification {
        margin-top: 20px;
    }
}
.cookies-wrapper-post .cookies__notification p {
    color: #707070;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
@media (max-width: 600px) {
    .cookies-wrapper-post .cookies__notification p {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
    }
}
.cookies-wrapper-post .cookies__notification::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 9.75V13.5' stroke='%23E3473D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.7068 3.74999L2.45683 18C2.3254 18.2276 2.25609 18.4858 2.25586 18.7487C2.25563 19.0115 2.32447 19.2698 2.4555 19.4977C2.58653 19.7256 2.77513 19.915 3.00243 20.0471C3.22972 20.1791 3.48772 20.2491 3.75058 20.25H20.2506C20.5134 20.2491 20.7714 20.1791 20.9987 20.0471C21.226 19.915 21.4146 19.7256 21.5457 19.4977C21.6767 19.2698 21.7455 19.0115 21.7453 18.7487C21.7451 18.4858 21.6758 18.2276 21.5443 18L13.2943 3.74999C13.1639 3.52206 12.9755 3.33263 12.7483 3.20088C12.5212 3.06914 12.2632 2.99976 12.0006 2.99976C11.738 2.99976 11.48 3.06914 11.2528 3.20088C11.0256 3.33263 10.8373 3.52206 10.7068 3.74999V3.74999Z' stroke='%23E3473D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 18C12.6213 18 13.125 17.4963 13.125 16.875C13.125 16.2537 12.6213 15.75 12 15.75C11.3787 15.75 10.875 16.2537 10.875 16.875C10.875 17.4963 11.3787 18 12 18Z' fill='%23E3473D'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}
@media (max-width: 600px) {
    .cookies-wrapper-post .cookies__notification::before {
        top: 12px;
        transform: unset;
    }
}

.cookies-wrapper-post .cookies-start {
    display: none;
    align-items: flex-end;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s;
    opacity: 0;
    font-family: "formular";
}

.cookies-wrapper-post .cookies-start.show-modal {
    opacity: 1;
}

.cookies-wrapper-post .cookies-start .form {
    background: white;
    display: flex;
    max-width: 1373px;
    width: calc(100% - 32px);
    align-items: center;
    min-height: unset;
    padding: 16px 24px;
    gap: 24px;
    border-radius: 20px;
    margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
    .cookies-wrapper-post .cookies-start .form {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media screen and (max-width: 450px) {
    .cookies-wrapper-post .cookies-start .form {
        padding: 16px;
    }
}

.cookies-wrapper-post .cookies-start .marketing-popup .popup-text-info__text {
    padding: 0;
}

.cookies-wrapper-post .cookies-start .popup-text-info__btn {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px;
}
@media (max-width: 768px) {
    .cookies-wrapper-post .cookies-start .popup-text-info__btn {
        margin: 0 auto;
    }
}
@media (max-width: 450px) {
    .cookies-wrapper-post .cookies-start .popup-text-info__btn {
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {
    .cookies-wrapper-post .cookies-start .popup-text-info__btn .btn {
        min-width: 150px;
        display: flex;
        justify-content: center;
    }
}
@media (max-width: 450px) {
    .cookies-wrapper-post .cookies-start .popup-text-info__btn .btn {
        min-width: unset;
        flex-grow: 1;
    }
}

.cookies-wrapper-post .cookies-settings {
    color: #8fc63d;
}

.cookies-wrapper-post * {
    outline: 0 !important;
}

.cookies-wrapper-post *, .cookies-wrapper-post :after, .cookies-wrapper-post :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-size: 1.6rem;
    line-height: calc(1em + 10px);
}

.cookies-wrapper-post .font_14 {
    color: #707070;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cookies-wrapper-post form {
    display: block;
    margin-top: 0em;
}

.cookies-wrapper-post .cookies__wrapper > img {
    width: 360px;
    max-width: 80%;
}

.cookies-wrapper-post img {
    overflow-clip-margin: content-box;
    overflow: clip;
}

.cookies-wrapper-post .cookies__title {
    color: #89AA28;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
    margin-bottom: 16px;
}
@media (max-width: 600px) {
    .cookies-wrapper-post .cookies__title {
        color: #89AA28;
        font-size: 22px;
        font-style: normal;
        font-weight: 600;
        line-height: 120%;
        max-width: calc(100% - 35px);
    }
}

.cookies-wrapper-post .cookies-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #1D1D1F;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
@media (max-width: 600px) {
    .cookies-wrapper-post .cookies-text {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
    }
}
.cookies-wrapper-post .cookies-text p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
@media (max-width: 600px) {
    .cookies-wrapper-post .cookies-text p {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
    }
}

.cookies-wrapper-post .cookies__checkboxes {
    margin-top: 24px;
}

.cookies-wrapper-post .cookies__check {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
}
.cookies-wrapper-post .cookies__check label {
    display: flex;
    gap: 16px;
    user-select: none;
    align-items: center;
}

.cookies-wrapper-post .cookies__check input {
    opacity: 0;
    width: 0;
    height: 0;
    z-index: -1;
    position: absolute;
}

.cookies-wrapper-post button, .cookies-wrapper-post input, .cookies-wrapper-post select, .cookies-wrapper-post textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
    line-height: inherit;
}

.cookies-wrapper-post *, .cookies-wrapper-post :after, .cookies-wrapper-post :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@keyframes checkbox-check {
    0% {
        width: 0;
        height: 0;
        border-color: #fff;
        transform: translate3d(0, 0, 0) rotate(45deg);
    }
    33% {
        width: 0.2em;
        width: 4px;
        height: 0;
        transform: translate3d(0, 0, 0) rotate(45deg);
    }
    100% {
        width: 0.2em;
        width: 4px;
        height: 0.5em;
        height: 8px;
        border-color: #fff;
        transform: translate3d(0, -8px, 0) rotate(45deg);
    }
}

.cookies-wrapper-post .cookies-wrapper a {
    display: inline-block;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}
.cookies-wrapper-post .btn-bordered {
    color: #89AA28;
    font-size: min(18px, 1.2vw);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 100px;
    background: transparent;
    border: 1px solid #89AA28;
    transition: 0.3s;
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 22px;
    cursor: pointer;
}
.cookies-wrapper-post .btn-green {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 100px;
    background: #89AA28;
    transition: 0.3s;
    height: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 22px;
    cursor: pointer;
}
@media (max-width: 1440px) {
    .cookies-wrapper-post .btn-bordered {
        font-size: 18px;
    }
}
.cookies-wrapper-post .cookies-start .form {
    flex-direction: row;
}
.cookies-wrapper-post .cookies-start .marketing-popup .popup-text-info__text {
    color: black;
}
.step-preview {
    padding-top: 0;
}