/* Pasek informacji o plikach cookie */
.cookies {
    background-color: rgba(253, 252, 250, 0.94);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    color: #37486A;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 6px clamp(16px, 6vw, 96px) 6px clamp(16px, 5vw, 48px);
    text-align: center;
    font-family: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.82rem;
    line-height: 1.6;
    border-top: 1px solid rgba(14, 41, 81, 0.14);
    box-shadow: 0 -18px 40px -34px rgba(4, 16, 31, 0.6);
    transition: all 1s ease-in-out;
}

.cookies > p {
    margin: 0 auto;
    padding: 14px 0;
    max-width: 96ch;
}

.cookies .close {
    position: absolute;
    right: clamp(12px, 2vw, 22px);
    top: calc(50% - 16px);
    cursor: pointer;
}

.cookies .close p {
    margin: 0;
    padding: 0;
    background: transparent;
    color: #6C7C97;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(14, 41, 81, 0.18);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.cookies .close p:hover {
    background: #0E2951;
    border-color: #0E2951;
    color: #fff;
}

@media (max-width: 640px) {
    .cookies {
        padding-right: clamp(16px, 14vw, 64px);
        font-size: 0.78rem;
    }
}
