


/*Sección Cookies Empieza*/
.wrapper{
    z-index: 999999;
    position: fixed;
    bottom: 2rem;
    right: -100%;
    max-width: 500px;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 10px #000000;
    border-radius: 8px;
    padding: 1rem;
}

.wrapper.show{
    right: 2rem;
}

.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{
    z-index: 999999;
    position: fixed;
    bottom: 5rem;
    left: -100%;
    transform: translateX(-50%);
    max-width: 50%;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0, .7);
    border-radius: 8px;
    padding: 15px 25px 22px;
}

.deleteCookie.active{
    left: 50%;
}

.deleteCookie h1{
    margin-bottom: 1rem;
    text-align: center;
    color: #a40000;
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: 400;
}
.deleteCookie p{
    font-size: clamp(.8rem, 3vw, 1rem);
    color: #333;
    margin-bottom: 1rem;
    font-weight: 500;
}
.deleteCookie .btnscookies{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}



.deleteCookie .btnscookies .cancelar{
    flex: 1 1 15rem;
    width: 100%;
    padding: .5rem 2rem;
    outline: none;
    border: none;
    border: 1px solid rgb(188, 188, 188);
    border-radius: 3px;
    cursor: pointer;
    background: #cdcdcd;
    color: #000;
    font-weight: 500;
    font-size: clamp(.8rem, 2vw, 1.2rem);
}

.deleteCookie .btnscookies .cancelar:hover{
    background: #9b9b9b;
    color: #fff;
}

.deleteCookie .btnscookies .borrar{
    flex: 1 1 15rem;
    width: 100%;
    padding: .5rem 2rem;
    outline: none;
    border: none;
    border: 1px solid rgb(188, 188, 188);
    border-radius: 3px;
    cursor: pointer;
    background: #32374a;
    color: #fff;
    font-weight: 500;
    font-size: clamp(.8rem, 2vw, 1.2rem);
}

.deleteCookie .btnscookies .borrar:hover{
    background: red;
}

.footer .legal{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer .legal a{
    font-size: clamp(.7rem, 2vw, 1rem);
    color:#333;
}

.footer .legal a:hover{
    color: orangered;
}

.footer .legal span i{
    color: #797979;
    font-size: 1.2rem;
    cursor: pointer;
}

.footer .legal span i:hover{
    color: orangered;
    transform: rotate(180deg) scale(1.3);

}


/*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%);
    }


    .deleteCookie{
        max-width: 90%;
    }

}