.cookie {
    position: fixed;
    top: 50%;
    right: 50%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    max-width: 413px;
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 20px;
    transform: translate(50%, -50%);
    z-index: 999999;
}

.cookie-content {

}

.cookie h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}
.cookie p, .cookie a {
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    margin: 20px 0;
}
.cookie button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 15px;
    gap: 10px;
    font-weight: 300;
    font-size: 12px;
    line-height: 140%;
    border: 1px solid #000000;
    border-radius: 9px;
}
.hidden {
    display: none !important;
}

.cookie a {
    text-decoration: underline;
    color: black;
}
@media (max-width: 760px){
    .cookie {
        width: 90%;
    }
}
