.cookie-consent
{
    display: none;
    width: 640px;
    padding: 32px;
    position: fixed;
    bottom: 16px;
    left: 16px;
    border-radius: 32px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 999;
    height: auto;
}

.cookie-consent h2
{
    font-size: 32px;
    font-family: "Inter-Tight", sans-serif;
    font-weight: 700;
    line-height: 1.24;
    margin: 0px 0px 24px 0px;
}

.cookie-consent p
{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 24px;
}

.cookie-consent a
{
    text-decoration: underline;
    font-weight: 700;
}

.cookie-consent button
{
    width: 100%;
    padding: 20px 40px;
    border-radius: 40px;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.cookie-consent button:hover
{
    transform: scale(1.05);
}

.cookie-consent .close-button
{
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    top: 24px;
    right: 24px;
}

.cookie-consent .close-button svg
{
    width: 40px;
    height: 40px;
}

@media only screen and (max-width: 768px)
{
    .cookie-consent
    {
        width: auto;
        left: 8px;
        right: 8px;
        padding: 32px 72px 32px 40px;
        box-sizing: border-box;
    }

    .cookie-consent h2
    {
        font-size: 24px;
        line-height: 29px;
    }
}

/* <= 540px */
@media (max-width: 540px)
{
    .cookie-consent {
        padding: 24px 16px;
    }

    .cookie-consent h2
    {
        font-size: 22px;
        line-height: 29px;
        padding-right: 48px;
    }

    .cookie-consent p
    {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 16px;
    }

    .cookie-consent .close-button
    {
        top: 16px;
        right: 16px;
    }
}