/* ===========================
   COOKIE CONSENT BANNER
   Shared across all pages
   =========================== */

#cookieConsent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    min-height: 50px;
    min-width: 250px;
    background-color: #222;
    color: #fff;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-radius: 8px;
    box-shadow: 0px 50px 100px 0px rgba(0,0,0,0.3);
    z-index: 1000;
    font-size: 14px;
    display: none;
    overflow: hidden
}

    #cookieConsent button {
        padding: 8px 16px;
        color: #FFFFFF !important;
        border-width: 1px !important;
        border-color: RGBA(0,0,0,0);
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600 !important;
        background-color: #8565d2;
        min-width: 100%
    }

    #cookieConsent p {
        min-width: 100%;
        padding-bottom: .5em
    }

    #cookieConsent div {
        padding-top: .5em;
        padding-bottom: 1em;
        display: block;
        align-items: center;
        min-height: 100px
    }

@media (min-width:576px) {
    #cookieConsent div {
        display: flex;
        padding-bottom: .5em
    }

    #cookieConsent p {
        padding-right: 1em;
        min-width: calc(80% - 20px)
    }

    #cookieConsent button {
        min-width: 20%
    }
}

@media (min-width:768px) {
    #cookieConsent {
        left: 50px;
        right: 50px
    }
}

@media (min-width:992px) {
    #cookieConsent {
        left: 100px;
        right: 100px
    }
}

@media (min-width:1200px) {
    #cookieConsent {
        left: 200px;
        right: 200px
    }
}
