/* COOKIES */
.box-cookies {
    font-size: 0.875rem;
    background-color: rgba(245, 245, 245, 0.95);
    padding: 10px 140px 10px 10px;
    margin: 20px;
    font-weight: 400;
    width: 97%;
    border: solid 1px #00938d;
    z-index: 1040;
}

.box-cookies a {
    color: #323a3f;
    font-weight: 700;
    text-decoration: underline;
    transition: all 0.7s;
}

.box-cookies a:hover {
    color: #00938d;
    text-decoration: none;
    transition: all 0.3s;
}

.box-cookies p {
    padding: 0;
    margin: 10px;
}

.box-cookies button {
    color: #fff;
    text-transform: uppercase;
    background-color: #00938d;
    /* background-color: rgba(50, 58, 63, 0.8); */
    border-radius: 30px;
    background-image: url("../img/ico-close-24px.svg");
    background-position: center right 10px;
    background-repeat: no-repeat;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
    padding: 10px 40px 10px 20px;
    border: none;
    transition: all 0.7s;
}

.box-cookies button:hover {
    background-color: #323a3f;
    transition: all 0.3s;
}

.box-cookies button:focus {
    outline: 0;
    box-shadow: none;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

.ml-auto, .mx-auto {
    margin-left: auto !important;
}

.mr-auto, .mx-auto {
    margin-right: auto !important;
}

