/* cookie consent */
.cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f8f8f8;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    color: #737b86;
    padding: 15px;
    font-size: 14px;
    text-align: center;
    z-index: 1000;
}

.cookie-consent-button {
    border: none;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
}

.cookie-consent-button:hover {
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-consent-button:active {
    opacity: .5;
}

.cookie-consent-banner .btn-success {
    background-color: #34a853;
    color: white;
}

.cookie-consent-banner .btn-grayscale{
    background-color: #dfe1e5;
    color: black;
}

.cookie-consent-banner .btn-outline {
    background-color: #e6f4ea;
    color: #34a853;
}

.cookie-consent-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.cookie-consent-options label {
    margin: 0 10px;
    font-size: 14px;
}

.cookie-consent-options input {
    margin-right: 5px;
    width: auto;
    height: auto;
}

@media only screen and (max-width: 40em) {

    .cookie-consent-banner {
        padding: 15px 5px 0px;
    }
    .cookie-consent-banner h3{
        font-size: 22px;
        margin-bottom: 10px;
        font-weight: 700;
    }
    .cookie-consent-banner p{
        font-size: 14px;
        line-height: 1.25;
        margin-bottom: 10px;
    }
    .cookie-consent-banner button{
        font-size: 12px;
        margin-bottom: 10px;
        padding: 5px 15px;
    }

    .cookie-consent-banner label {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .cookie-consent-banner label input{
        margin-top: 5px;
        margin-bottom: -10px;
    }


}