.cookie {
    position: fixed;
    bottom: 12px;
    left: 10px;
    z-index: 100;
    width: 482px;
    padding: 24px;
    border-radius: 32px;
    background: var(--dark-80);
    transition: all var(--trs-out);
    opacity: 1;
    pointer-events: all
}

.cookie.hide {
    transform: translateY(200%);
    opacity: 0;
    pointer-events: none
}

@media (max-width: 576px) {
    .cookie {
        width: auto;
        right: 10px;
        border-radius: 24px
    }
}

.cookie-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-20);
    margin-bottom: 16px
}

.cookie-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: var(--dark-50);
    margin-bottom: 16px
}

.cookie-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: unset;
    border: 0;
    outline: 0;
    cursor: pointer
}

.cookie-btn span {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--dark-10)
}