*{ box-sizing: border-box;}
body{
    font-family: 'Roboto', sans-serif;
    background-color: rgb(255, 255, 255);
    padding: 0;
    margin: 0;
}
p{
    line-height: 150%;
}

.aviso-cookies{
    display:  none;
    background-color: rgb(255, 255, 255);
    max-width: 300px;
    width: calc(100% -40px);
    padding: 50px 20px 20px 20px;
    border-radius: 10px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    text-align: center;
    -webkit-box-shadow: 5px 5px 7px 5px rgba(0,0,0,0.6); 
    box-shadow: 5px 5px 7px 5px rgba(0,0,0,0.6);
    z-index: 20;
    
    
}

.img-cookie{
    width: 100px;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
}

.titulo-cookies{
}

.parrafo{
}

.btn-cookies{
    width: 100%;
    background-color: rgb(62, 113, 174);
    padding: 1rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 8px 0px #000000; 
    box-shadow: 0px 0px 8px 0px #000000;
    transition: 0.3s all;
    border: none;
    color: white;
}

.btn-cookies:hover{
    background-color: rgb(58, 96, 143);
}
    
.link-cookies{
    display: inline-block;
    padding: 1rem;
}

.bg-aviso-cookies{
    display: none;
    background-color: #0000003d;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}
.activo{
    display: block;
}
    


    