#cookie {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100dvw;
    min-width: 350px;
    height: 100dvh;
    min-height: 600px;
    background: rgb(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    overflow: hidden;
}

#cookie-card {
    width: auto;
    max-width: 500px;
    height: auto;
    max-height: calc(100dvh - 100px);
    min-height: 525px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: var(--container-margin);
    margin: 30px;
    background: var(--white);
    box-shadow: 0 0 20px rgb(0, 0, 0, 0.5);
    pointer-events: all;
}

#cookie .logo {
    width: auto;
    height: 150px;
    user-select: none;
}

#cookie .title-wrap {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

#cookie .title {
    width: 100%;
    height: auto;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: var(--black);
    line-height: 20px;
    text-wrap: wrap;
}
#cookie .subtitle {
    width: 100%;
    height: auto;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    color: var(--grey);
    line-height: 15px;
    text-wrap: wrap;
}

#cookie .btn-wrap {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 30px;
}

#cookie .header-btn {
    padding: 0 30px;
    cursor: pointer;
    width: 150px;
}
#cookie-yes, #cookie-yes:hover {
    background-color: var(--color);
}
#cookie-no, #cookie-no:hover {
    background-color: var(--black);
}

#cookie-footer {
    cursor: pointer;
}