﻿body.modal-open {
    overflow: hidden;
}

.cookies-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    height: 100vh;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    background-color: #0c0c0c80;
    transition: backdrop-filter .3s ease;
    z-index: 250;
}

.cookies-modal {
    position: relative;
    max-width: 570px;
    width: 100%;
    background-color: #fff;
    color: #300936;
    padding: 2rem 2.5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookies-info-box {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.cookies-button {
    color: white;
    background-color: purple;
    padding: 1rem 2rem;
    border-radius: 16px;
    border: none;
    font-size: 14px;
    margin: 0px auto;
    cursor: pointer;
}

.cookies-container.hidden {
    display: none;
}

.cookies-link {
    text-decoration: none;
    font-weight: bold;
}
