.cookie {
    --cookie-background-secondary: #f5f5f8;
    --cookie-background-primary: #fff;
    --cookie-text-primary-85: rgb(0 0 0 / 85%);
    --cookie-text-primary-50: rgb(0 0 0 / 50%);
    --cookie-text-primary-30: rgb(0 0 0 / 30%);
    --cookie-text-primary: #000;
    --cookie-primary: #045da9;
    --cookie-text-alternate: #0671cb;
    --cookie-text-alternate-80: rgb(6 113 203 / 80%);
    --cookie-text-alternate-30: rgb(6 113 203 / 30%);
    --cookie-text-light: #fff;
    --cookie-line-primary: #f5f5f8;
    --cookie-line-secondary: #e7e7ee;
    --cookie-background-alternate: #e7e7ee;
    --cookie-transition-secondary: 0.3s ease-in-out;
    --cookie-container-zIndex: 199;
    --cookie-container-left: 24px;
    --cookie-container-right: auto;
    --cookie-container-bottom: 24px;
    --cookie-container-border-radius: 0px;
    --cookie-btn-border-radius: 1px;
}


.cookie .button {
    cursor: pointer;
}

.cookie .button:hover {
    border-color: #cbcbcb !important;
    background-color: #cbcbcb !important;
    color: #fff !important;
}

.cookie__header {
    display: block;
}

.cookie__close {
    position: absolute !important;
    top: 0;
    right: 0;
    cursor: pointer;
}

.cookie {
    box-sizing: border-box;
    min-width: 320px;
    min-height: auto;
    left: 50% !important;
    right: initial !important;
    transform: translateX(-50%);
    width: auto;
    padding: 20px;
    box-shadow: -5px 5px 15px 0px #00000033;
    color: #000000;
    background: #FFFFFF;
    text-align: center;
}

.cookie__title.h3 {
    margin-bottom: 14px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cookie__container {
    display: block;
}

.cookie__main {
    max-width: 100%;
}

.cookie__content {
    max-height: 100%;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.4px;
}

.cookie__content a {
    color: #000000;
}

.cookie__actions {
    flex-direction: column;
    gap: 8px;
}

.cookie__actions .button {
    min-height: 40px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #131313;
    border-radius: 0;
    border: none;
}

.cookie__actions .button:last-child {
    border: 1px solid #131313;
    color: #131313;
    background-color: #FFFFFF;
}

.cookie__settings {
    max-width: 100%;
    overflow: auto;
}

.cookie__checkboxes-wrapper {
    position: relative;
    margin: 20px 0 12px 0;
}

.cookie__checkboxes-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    pointer-events: none;
}

.cookie__checkboxes {
    display: block;
    max-height: 336px;
    padding-right: 20px;
}

.cookie__checkboxes .form-checkbox {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
    text-align: left;
    border-bottom: 1px solid #B1B1B1;
}

.cookie .form-checkbox__vue {
    position: relative;
    width: 30px;
    height: 18px;
    border-radius: 50px;
    border: 1px solid #131313 !important;
    background-color: #FFFFFF !important;
    opacity: 1 !important;
}

.cookie .form-checkbox__vue::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #131313;
}

.cookie .form-checkbox__vue .icon {
    display: none;
}

.cookie .form-checkbox__input:checked~.form-checkbox__vue {
    background-color: #131313 !important;
}

.cookie .form-checkbox__input:checked~.form-checkbox__vue::after {
    background-color: #FFFFFF;
    transform: translateX(100%);
}

.cookie .form-checkbox__input:disabled~.form-checkbox__vue {
    border: none !important;
    background-color: #B1B1B1 !important;
}

.cookie__checkboxes .form-checkbox__label {
    gap: 6px;
}

.cookie__checkboxes .form-checkbox__label b {
    font-size: 13px;
    line-height: 22px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.cookie__checkboxes .form-checkbox__label p {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.4px;
}

.cookie__settings .cookie__actions .cookie__button {
    color: #FFFFFF;
    background-color: #131313;
}

@media (min-width: 1280px) {
    .cookie {
        padding: 44px 60px;
        text-align: left;
    }

    .cookie__main {
        width: 1080px;
    }

    .cookie__settings {
        width: 601px;
    }

    .cookie__main .cookie__content {
        max-width: 66%;
    }

    .cookie__checkboxes {
        max-height: 100%;
    }

    .cookie__checkboxes .form-checkbox__label {
        gap: 10px;
    }

    .cookie__checkboxes .form-checkbox__label b {
        font-size: 14px;
    }

    .cookie__checkboxes .form-checkbox__label p {
        font-size: 13px;
    }

    .cookie__content {
        margin: 0;
        font-size: 15px;
        line-height: 22px;
    }

    .cookie__actions {
        position: absolute;
        top: 48px;
        right: 60px;
    }

    .cookie__actions .button {
        min-height: 40px;
        font-size: 12px;
        letter-spacing: 1.8px;
        cursor: pointer;
    }

    .cookie__settings .cookie__actions {
        position: static;
    }
}