/** CSS **/
.box-cookies.hide {
    display: none !important;
}

.box-cookies {
    position: fixed;
    background: rgba(14, 23, 39, .8);
    width: 100%;
    max-width: 980px;
    z-index: 998;
    bottom: 0;
    left: 0;
    border-radius: 8px 0px 0px 0px;
    border: dashed 3px rgba(255, 255, 255, 0.6);
    border-bottom: none;
    border-right: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-cookies a {
    color: #fff;
    font-weight: bold;
}

.box-cookies a:hover {
    text-decoration: underline;
}

.msg-cookies,
.box-cookies .btn-cookies {
    text-align: left;
    padding: 5px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
}

.box-cookies .btn-cookies {
    cursor: pointer;
    height: auto;
    margin: 11px 10px 20px;
    padding: 3px 8px;
    border: none;
    border-radius: 5px;
    color: #fff;
}

.btn-cookies {
    background-color: red;
}

.btn-cookies:hover {
    color: rgba(14, 23, 39, .8);
}

.msg-cookies {
    padding: 8px;
}

@media screen and (max-width: 600px) {
    .box-cookies {
        flex-direction: column;
        border-left: none;
    }
} 