﻿@import "site.css";

#cookieConsent {
    position: fixed;
    max-width: 25em;
    height: auto;
    z-index: 200;
    background: white;
    padding: 1.1em 1.8em 1.4em;
    box-shadow: 0 0.625em 1.875em rgba(2,2,3,.28);
    left: 0;
    bottom: 0;
    border-radius: 5px;
}

    #cookieConsent button {
        background: rgb(var(--secondary-color));
        border: 1px solid rgb(var(--secondary-color));
        width: 100%;
        color: #fff;
        padding: 0.5em;
        /*font-size: .82em;*/
        text-align: center;
    }
        #cookieConsent button:hover {
            background: white !important;
            color: rgb(var(--secondary-color));
            font-weight: bold;
        }

    #cookieConsent p {
        font-size: 14px;
    }

    #cookieConsent button:hover {
        background: #457ebd;
    }

.alert {
    --bs-alert-margin-bottom: none !important;
    --bs-alert-border-radius: none !important;
    --bs-alert-bg: none !important;
    --bs-alert-border-color: none !important;
    --bs-alert-color: darkslategray !important;
}

@media only screen and (min-width: 768px) {
    #cookieConsent{
        margin: 0 2rem;
        margin-bottom: 2rem;
    }
}

@media only screen and (max-width: 768px) {
    #cookieConsent {
        max-width: none
    }
}
