/**
 * Module voucher
 * @author - MASLENKA
*/
.cookie {
    display: none;
    position: fixed;
    bottom: 12px;
    left: calc(16px + 5rem);
    z-index: 1001;
    background-color: var(--bg);
    border: 1px solid var(--transparent-2-w);
    padding: 12px;
    border-radius: 12px;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie.show {
    display: block;
}

@media (max-width: 576px) {
    .cookie {
        max-width: unset;
        left: 24px;
        right: 24px;
        bottom: 70px;
    }
}

.cookie__header {
    font-size: 18px;
    font-family: Rubik-Medium, sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie__header svg {
    width: 24px;
    height: 24px;
}

.cookie__content {
    color: var(--text-secondary);
    margin-top: 4px;
    line-height: 1.5;
}

.cookie__footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
    margin-top: 12px;
}



.btn_primary {
    background: var(--button);
    color: var(--text-default);
    border: 1px solid var(--transparent-2-w);
    width: 100%;
    transition: background-color .3s ease-in-out, color .3s ease-in-out;
}

.btn_outlined {
    background: var(--btn-disabled);
    color: var(--text-default);
    border: 1px solid var(--transparent-2-w);
    width: 100%;
    transition: background-color .3s ease-in-out, color .3s ease-in-out;
}