.cookie-card {
    max-width: 320px;
    padding: 1rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, .05);
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 401;
}

.title {
    font-weight: 600;
    color: rgb(31 41 55);
}

.description {
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgb(75 85 99);
}

.description a {
    color: rgb(59 130 246);
}

.description a:hover {
    text-decoration: underline;
}

.actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    column-gap: 1rem;
}

.pref {
    font-size: 0.75rem;
    line-height: 1rem;
    color: var(--blue);
    text-decoration: underline;
    background-color: transparent;
    border: none;
}

.pref:hover {
    color: rgb(156 163 175);
}

.accept {
    font-size: 0.75rem;
    line-height: 1rem;
    background-color: var(--blue);
    font-weight: 500;
    border-radius: 0.5rem;
    color: #fff;
    padding: 0.625rem 1rem;
    border: none;
    transition: all .15s;
}

.accept:hover {
    background-color: rgb(55 65 81);
}