/* 
 * COOKIE
 */
 .js-cookie-consent {
    position: fixed;
    bottom: 0px;
    padding: 10px;
    text-align: center;
    width: 100%;
    z-index: 9999999999999999;
    background-color: var(--white-color);
    border-top: 1px solid var(--bg-light);
}

span.cookie-consent__message {
    color: var(--bg-gray-dark);
    font-size: 14px;
}

button.js-cookie-consent-agree.cookie-consent__agree {
    transition: all .5s;
    position: relative;
    color: var(--white-color);
    display: inline-block;
    z-index: 2;
    font-size: 14px;
    background: var(--primary-color);
    height: 30px;
    line-height: 30px;
    padding: 0px 15px;
    border: none;
    text-align: center;
    border-radius: var(--radius_big2);
    font-weight: 400;
    margin-top: 0;
    cursor: pointer !important;
    margin: 0 15px;
    outline: 0;
}

button.js-cookie-consent-agree.cookie-consent__agree:hover {
    background: var(--primary-dark);
}

span.cookie-consent__message a {
    color: var(--bg-gray-dark);
    opacity: .8;
    text-decoration: underline;
    display: inline-block;
    margin-left: 5px;
    transition: all 400ms ease;
    -webkit-transition: all 400ms ease; 
}

span.cookie-consent__message a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.alert {
    font-size: 13px !important;
}