
/*Sección Cookies Empieza*/
.wrapper{
    z-index: 300;
    position: fixed;
    bottom: 1rem;
    right: -100%;
    max-width: 600px;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0, .2);
    border-radius: 1rem;
    padding: 1rem;
    visibility: hidden;
    pointer-events: none;
}

.wrapper.show{
    right: 1rem;
    visibility: visible;
    pointer-events: all;
}

.wrapper .cookie-header{
    display: flex;
    align-items: center;
    column-gap:1rem;
}
.wrapper .cookie-header i{
    color: orange;
    font-size: 2rem;
}
.wrapper .cookie-header p{
    font-size: clamp(1.2rem, 3vw, 1.5rem);
   color: #272727;
   font-weight: 500;
}
.wrapper .data{
    margin-top: 1rem;
}
.wrapper .data p{
    color: #333;
    text-transform: none;
    font-size: clamp(.7rem, 2vw, .9rem);
}
.wrapper .data a{
    color:#4070f4;
    font-weight: 700;
    text-decoration: underline;
}


.wrapper .buttons{
    margin-top: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.buttons .button{
    border: none;
    color: #fff;
    width: 100%;
    padding: .5rem 0;
    border-radius: 4rem;
    background: #666;
    cursor: pointer;
    font-weight: bolder;
}
.buttons .button:hover{
    background: #333;

}
.buttons #acceptBtn{
    background: #6868ff;
}

.buttons #acceptBtn:hover{
    background: #2323e7;
}






/*Borrar Cookies Empieza*/
.deleteCookie{
    position: fixed;
    top: 110%;
    left: 0;
    min-height: 100svh;
    width:100%;
    height: 100%;
    background: rgba(90, 90, 90, 0.5);
    z-index: 999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    backdrop-filter: blur(5px);
    opacity: 0;
    padding: 1rem;
}
.deleteCookie.active{
    top:0;
    opacity: 1;
}


.deleteCookie .container{
    height: 100%;
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
    border-radius: 1rem;
    background:linear-gradient(0, #111, #333);
    border:1px solid #777;
}

.deleteCookie .container .textDelete001{
    font-size: clamp(2rem, 3vw, 3rem);
    border-radius: .5rem;
    background:#222;
    color: #cfcfcf;
    font-weight: 700;
    padding: 0 .5rem .5rem .5rem;
    width: 100%;
    text-align: center;
}
.deleteCookie .container .textDelete002{
    color: #aaa;
    font-size: clamp(.8rem, 2vw, 1rem);
    font-weight:400;
}
.deleteCookie .container .textDelete003{
    color: #aaa;
}
.deleteCookie .container .textDelete004{
    margin-top: auto;
    color: #999;
    margin-left: auto;
}

.deleteCookie .container .btnscookies{
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: .3rem;
}

.deleteCookie .container .btnscookies button{
    padding: .4rem .7rem;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 1px;
    font-size:clamp(.7rem, 2vw, 1rem);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .2rem;
}

@media(max-width:480px){
    .deleteCookie .container .btnscookies button{
        width: 100%;
    }
}



.deleteCookie .container .btnscookies .cancelar{
    background: transparent;
    color: #999;
    width: max-content;
}
.deleteCookie .container .btnscookies .cancelar:hover{
    color: #fff;
}

.deleteCookie .container .btnscookies .borrar{
    background: #aaa;
    color: #000;
    border-radius: 5rem;
    box-shadow: 0 0 8px transparent;
}
.deleteCookie .container .btnscookies .borrar:hover{
    background: #fff;
    box-shadow: 0 0 8px #fff;
}


/*Borrar Cookies Termina*/



/*Sección Cookies Termina*/





@media(max-width:720px){
        .wrapper{
        bottom: 0rem;
        border-radius: 8px;
        padding: 1rem;
        max-width: 100%;
        right: 0;
        left: 0;
    }
}