@charset "UTF-8";


.cookies {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 20px 0;
    line-height: 20px;
    font-size: 20px;
    text-align: left;
    z-index: 9999999;
    background-color: rgb(0, 0, 0);
    opacity: 0.5;
    color: white;
}

.cookies-container {
    width: calc(100% - 145px);
    margin-top: 0;
    float: left;
    margin-left: 0;
    padding-left: 30px;
    padding-right: 2px;
    font-size: 14px;
    font-family: "Montserrat Regular", sans-serif;
}

.cookie-button-container {
    width: 145px;
    float: left;
    padding-right: 20px;
}

#btnCookies {
    background-color: #00aeef;
    color: white;
    font-family: "Montserrat Regular", sans-serif;
    font-size: 14px;
    border: none;
    padding: 6px 30px;
    text-transform: uppercase;
    float: right;
}

@media (max-width: 767px) {
    .cookies-container {
        font-size: 12px;
        line-height: 12px;
        padding: 0 20px 10px 20px;
        width: 100%;
    }

    .cookie-button-container {
        width: 100%;
        text-align: center;
    }

    #btnCookies {
        float: none;
    }
}