﻿#cookie-consent-banner {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    bottom: 20px;
    right: 20px;
    width: calc(100% - 40px);
    max-width: 800px;
    background: white 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 30px #00000029;
    border-radius: 10px;
    opacity: 0.95;
    font-family: Cabin;
    font-weight: normal;
    color: black;
    z-index: 2000000001 !important;
    overflow-y: auto; /* Enable vertical scrolling */
    max-height: 85%; /* Set the maximum height */
}

    #cookie-consent-banner h3 {
        text-align: center;
        font-size: 30px;
        line-height: 37px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    #cookie-consent-banner p {
        text-align: center;
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    #cookie-consent-banner label {
        font-size: 18px;
        line-height: 10px;
    }

        #cookie-consent-banner label input {
            margin-right: 1px;
            accent-color: black;
        }

    #cookie-consent-banner .cookie-consent-options,
    #cookie-consent-banner .cookie-consent-buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
        gap: 20px;
    }

        #cookie-consent-banner .cookie-consent-buttons button {
            display: block;
            width: 150px;
            height: 50px;
            border: 0;
            border-radius: 10px;
            box-sizing: border-box;
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            line-height: 23px;
        }

            #cookie-consent-banner .cookie-consent-buttons button:nth-of-type(1) {
                background-color: black;
            }

            #cookie-consent-banner .cookie-consent-buttons button:nth-of-type(2) {
                background-color: goldenrod;
            }

            #cookie-consent-banner .cookie-consent-buttons button:nth-of-type(3) {
                background-color: goldenrod;
            }

@media screen and (max-width: 600px) {
    #cookie-consent-banner h3 {
        font-size: 17px;
        line-height: .9rem;
        margin-bottom: 10px;
    }

    #cookie-consent-banner p {
        font-size: 10px;
        line-height: .9rem;
        margin-bottom: 10px;
    }

    #cookie-consent-banner .cookie-consent-options {
        gap: 5px;
    }

    #cookie-consent-banner .cookie-consent-buttons {
        margin-bottom: 10px;
        gap: 5px;
    }

        #cookie-consent-banner .cookie-consent-buttons button {
            width: 90px;
            height: 35px;
            font-size: 8px;
        }

    #cookie-consent-banner .cookie-consent-options label {
        font-size: 10px;
    }
}

@media screen and (max-height: 450px) {
    #cookie-consent-banner h3 {
        font-size: 7vh;
        line-height: 1rem;
        margin-bottom: 10px;
    }

    #cookie-consent-banner p {
        font-size: 4vh;
        line-height: 1.2rem;
        margin-bottom: 10px;
    }
}

@media screen and (max-height: 300px) {
    #cookie-consent-banner h3 {
        font-size: 4vh;
        line-height: 1rem;
        margin-bottom: 10px;
    }

    #cookie-consent-banner p {
        font-size: 3vh;
        line-height: 1rem;
        margin-bottom: 10px;
    }

    #cookie-consent-banner .cookie-consent-buttons button {
        width: 70px;
        height: 35px;
        font-size: 7px;
    }

    #cookie-consent-banner .cookie-consent-options label {
        font-size: 7px;
    }

        #cookie-consent-banner .cookie-consent-options label input {
            height: 7px;
        }

