/* start style devConsentMessage */
.divConsentMessage.fixed-top {
    position: fixed;
    left: 0;
    right: 0;
    top: 1rem;
    width: 80%;
    font-size: 16px;
    z-index: 99999;
    padding: 10px;
    background-color: #e8e8e8;
    box-shadow: 0px 10px 20px black;
    color: black;
}

.bg-blue {
    background-color: #012060;
}

.consentMessage {
    text-align: left;
    padding: 10px 10px 10px 15px;
    font-size: 18px;
}

.consentMessage a {
    text-decoration-line: underline;
}

.btn-blue {
    margin: 10px;
    float: left;
    color: white;
    background-color: #012060;
    border: 1px solid #012060;
}

.btn-blue:hover {
    color: white;
    background-color: #012060d4
}
@media screen and  (min-width: 2301px) {
    .divConsentMessage.fixed-top {
        width: 30%;
    }
}
@media  (min-width:1981px) and (max-width:2300px) {
    .divConsentMessage.fixed-top {
        width: 38%;
    }
}
@media  (min-width:1481px) and (max-width:1980px) {
    .divConsentMessage.fixed-top {
        width: 45%;
    }
}
@media  (min-width:1110px) and (max-width:1480px) {
    .divConsentMessage.fixed-top {
        width: 60%;
    }
} 
@media only screen and (max-width:991px) {
    .divConsentMessage.fixed-top {
        width: 90%;
    }

    .consentMessage {
        font-size: 16px;
    }
}
