/* Aviso de cookies */
.aviso-cookies {
    display: hidden;
    position: fixed;
    bottom: 1.1rem;
    left: 2.1rem;
    background-color: #e0dede;
    padding: 1.2rem 2rem;
    width: calc(100% - 40px);
    max-width: 450px;
    line-height: 150%;
    border-radius: 5%;
    box-shadow: 0 2px 20px 10px rgba(51, 47, 47, 0.25);
    text-align: center;
    z-index: 1000001;
}

.aviso-cookies .aviso-cookies__titulo {
    margin-bottom: 2rem;
}

.aviso-cookies .aviso-cookies__parrafo {
    font-size: 1.5rem;
    text-align: justify;
}

.aviso-cookies .aviso-cookies__button-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
}

.aviso-cookies .aviso-cookies__btn {
    width: 100%;
    max-width: 500px;
    background: #595959;
    color: #fff;
    padding: 1rem 1.1rem;
    font-weight: 700;
    transition: .3s ease all;
    border-radius: .3rem;
    margin-bottom: 1rem;
    border: none;
}

.aviso-cookies .aviso-cookies__btn:hover {
    background: #000;
}

.aviso-cookies__btn.rechazar-cookies {
    background: #cc2c2c;
}

.aviso-cookies__btn.rechazar-cookies:hover {
    background: #b10505;
}

.aviso-cookies .aviso-cookies__enlace {
    font-weight: 800;
    color: #055685;
    text-decoration: none;
}

.aviso-cookies .aviso-cookies__enlace:hover {
    text-decoration: underline;
}

.modal-aviso-cookies {
    display: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .50);
    z-index: 1000000;
}

.active {
    display:block ;
}

/* End Aviso cookies */