/*.cookie-card{
    position: fixed;
    bottom: 2em;
    right: 2em;
    width: 30rem;
    background-color: #141414;
    padding: 1.5em;
}

.cookie-card * {
    color: #fff;
}

.title{
    font-size: 1.6em;
    letter-spacing: .2rem;
    margin-bottom: .5em;
}

.info{
    line-height: 1.4em;
    letter-spacing: .1em;
    margin-bottom: 2em;
}

.cta{
    border: none;
    outline: none;
    padding:0.8em 1.5em;
    background-color: #000;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.4s;
}

.cta:hover{
    background-color: #3c9e66;
}

.cookie-card a{
    text-decoration: none;
    border-bottom: .3em solid;
    transition: color 0.4s;
}

.cookie-card a.settings{
    color: #bbb;
    border: none;
    margin-left: 1em;
}

a:hover{
    color: #3c9e66;
}*/

.aviso-cookies{
    display: none;
    background: #fbe122;
    padding: 2rem;
    width: calc(100% - 40px);
    max-width: 300px;
    line-height: 150%;
    border-radius: 1rem;
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 100;
    padding-top: 5rem;
    box-shadow: 0px 2px 20px 10px rgba(34,34,34,.25);
    text-align: center;
}

.aviso-cookies.activo{
    display: block;
}

.aviso-cookies .galleta{
    max-width: 10rem;
    position: absolute;
    top: -5rem;
    left: calc(50% - 5rem);
}

.aviso-cookies .titulo,
.aviso-cookies .parrafo{
    margin-bottom: 1rem;
}

.aviso-cookies .boton{
    width: 100%;
    background: #222;
    border: none;
    color: #fff;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    padding: 1.5rem 2rem;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease all;
    border-radius: .5rem;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.aviso-cookies .boton:hover{
    background: #000;
}

.aviso-cookies .enlace{
    color: #222;
    text-decoration: none;
    font-size: 1.3rem;
}

.aviso-cookies .enlace:hover{
    text-decoration: underline;
}

.fondo-aviso-cookies{
    display: none;
    background: rgba(34,34,34,.20);
    position: fixed;
    z-index: 99;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

.fondo-aviso-cookies.activo{
    display: block;
}

/*Aviso de cookies*/
.av-cookie{
    display: flex;
    flex-direction: column;
    width: 80%;
    align-items: center;
    text-align: justify;
    border: #000 solid 2px;
    padding: 1rem 2rem;
    line-height: 1.2;
    margin: 0 auto;
}

.av-cookie h1{
    color: #fbe122;
    font-size: 3.5rem;
}

.av-cookie h2{
    color: #fbe122;
    font-size: 2.3rem;
}

.av-cookie p{
    font-size: 1.2rem;
}