﻿@import "site.css";

#cookieConsent {
    box-shadow: 0 0.625em 1.875em rgba(2,2,3,.28);
    top: 10px;
    text-align: center;
}

    #cookieConsent button {
        background: rgb(var(--primary-color));
        border: 1px solid rgb(var(--primary-color));
        width: 30%;
        color: #fff;
        padding: 0.5em;       
    }
        #cookieConsent button:hover {
            background: rgb(var(--sec-hover-color));
            font-weight: bold;
        }
    #cookieConsent h5 {
        background: rgb(var(--primary-color));
        color: #fff;
        height: 1.5em;
        padding-top:5px;
    }
    #cookieConsent .modal-content {
        border-radius: 5px !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
    }
}
