.cookie-overlay {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 6, 19, 0.45);
    transition: all 350ms ease-out;
    z-index: 10001;
}

.cookie-overlay .cookie-content {
    display: flex;
    column-gap: 32px;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    background-color: rgba(221, 240, 232, 1);
    width: 100%;
    padding: 24px;
    z-index: 100;
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

.cookie-overlay .cookie-content.visible {
    animation: 1s ease-out 0s 1 slideInFromBottom;
}

.cookie-overlay .cookie-content .info {
    color: rgba(44, 44, 44, 1);
    width: 77%;
}

.cookie-overlay .cookie-content p {
    line-height: 21px;
}

.cookie-overlay .cookie-content > button.status {
    align-self: center;
    height: 32px;
    padding: 8px 24px;
    text-transform: uppercase;
    line-height: 16px;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(0, 108, 63, 1);
    font-family: 'Hind Regular', sans-serif;
    border-radius: 2px;
}

.cookie-overlay .cookie-content > button.status:hover {
    background-color: rgba(0, 86, 50, 1);
}

.cookie-overlay .cookie-content > button[data-value="deny"] {
    background-color: rgba(221, 240, 232, 1);
    border: 1px solid rgba(0, 108, 63, 1);
    color: rgba(0, 108, 63, 1);
}

.cookie-overlay .cookie-content > button[data-value="deny"]:hover {
    color: rgba(255, 255, 255, 1);
}

/* Mobile */
@media (max-width: 768px) {
    .cookie-overlay .cookie-content {
        flex-wrap: wrap;
    }

    .cookie-overlay .cookie-content .info {
        margin-bottom: 16px;
        width: 100%;
    }
}
