#myCookieConsent {
    z-index: 999;
    min-height: 20px;
    padding: 20px 20px;
    background: #004165;
    overflow: hidden;
    position: fixed;
    color: #FFF;
    bottom: 0px;
    right: 10px;
    display: none;
    width: 100%;
}

#myCookieConsent p {
    font-size: 12px;
    line-height: 18px;
}

#myCookieConsent .cookie-text p a {
    text-decoration: underline;
    color: #fff !important;
}

#myCookieConsent .cookie-container .btn-primary {
    text-decoration: none;
}

@media (max-width: 1079px) {
    #myCookieConsent .cookie-text {
        width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin: 10px 0;
        text-align: center;
    }

    #myCookieConsent .cookie-button {
        width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin: 10px 0;
        text-align: center;
    }
}

@media (min-width: 1080px) {

    #myCookieConsent .cookie-container {
        padding: 0 calc(100% / 12 * 1);
    }
    
    #myCookieConsent .cookie-text {
        width: calc(100% / 12 * 8);
        -ms-flex-preferred-size: calc(100% / 12 * 8);
        flex-basis: calc(100% / 12 * 8);
    }

    #myCookieConsent .cookie-button {
        width: calc(100% / 12 * 2);
        -ms-flex-preferred-size: calc(100% / 12 * 2);
        flex-basis: calc(100% / 12 * 2);
    }
}




