@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');



:root{
    --Sand:"Quicksand", sans-serif;
}

*{
    font-family:"Quicksand", sans-serif ;
}

/*Sección Cookies Empieza*/
.wrapper{
    z-index: 999999;
    position: fixed;
    bottom: 2rem;
    right: -115%;
    max-width: 500px;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 10px #000000;
    border-radius: 8px;
    padding: 1rem;
    opacity: 0;
}

.wrapper.show{
    right: 2rem;
    opacity: 1;
}

.wrapper .cookie-header{
    display: flex;
    align-items: center;
    column-gap:1rem;
}
.wrapper .cookie-header i{
    color: orange;
    font-size: 2rem;
}
.wrapper .cookie-header h2{
    font-size: clamp(1.2rem, 3vw, 1.5rem);
   color: #86209d;
   font-weight: 500;
}
.wrapper .data{
    margin-top: 1rem;
}
.wrapper .data p{
    color: #333;
    text-transform: none;
    font-size: clamp(.8rem, 3vw, 1rem);
}
.wrapper .data p a{
    color:#4070f4;
    font-weight: 700;
}
.wrapper .data p a:hover{
    text-decoration: underline;
}

.wrapper .buttons{
    margin-top: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.buttons .button{
    border: none;
    color: #fff;
    width: calc(100% / 2 - 10px);
    padding: .5rem 0;
    border-radius: 4px;
    background: #333;
    cursor: pointer;
}
.buttons .button:hover{
    background: #a40000;

}
.buttons #acceptBtn{
    background: #0000ca;
}

.buttons #acceptBtn:hover{
    background:#ffa500;
}






/*Borrar Cookies Empieza*/
.deleteCookie{
    position: fixed;
    top: 110%;
    left: 0;
    min-height: 100dvh;
    width:100%;
    height: 100%;
    background: rgba(194, 194, 194, 0.5);
    z-index: 999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    backdrop-filter: blur(5px);
    cursor: default;
    opacity: 0;
}
.deleteCookie.active{
    top:0;
    opacity: 1;
}


.deleteCookie .container{
    height: 100%;
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: .5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 15px rgba(0,0,0, .3);
    background: #f0f0f0;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.deleteCookie .container h1{
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    font-weight: 900;
    margin-bottom: 2rem;
}
.deleteCookie .container p{
    color: #666;
    font-weight: 500;
    font-size: clamp(.7rem, 2vw, .9rem);
}
.deleteCookie .container p strong{
    color: orangered;
}

.deleteCookie .container .btnscookies{
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.deleteCookie .container .btnscookies button{
    padding: .4rem .7rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    font-size:clamp(.6rem 2vw, .8rem);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
    gap: .2rem;
}

@media(max-width:1200px){
    .deleteCookie .container .btnscookies button{
        width: 100%;
    }
}



.deleteCookie .container .btnscookies .cancelar{
    background: #535458;
}
.deleteCookie .container .btnscookies .cancelar:hover{
    background: #191f27;
}

.deleteCookie .container .btnscookies .borrar{
    background: #57a400;
}


/*Borrar Cookies Termina*/



/*Sección Cookies Termina*/





@media(max-width:1200px){
        .wrapper{
        z-index: 999999;
        position: fixed;
        bottom: 2rem;
        right: -100%;
        max-width: 100vh;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0);
        border-radius: 8px;
        padding: 1rem;
    }
    .wrapper.show{
        right: 50%;
        transform: translateX(50%);
    }

}