
/*Sección Cookies Empieza*/
.wrapper{
    z-index: 999999;
    position: fixed;
    bottom: .5rem;
    right:-100%;
    visibility: hidden;
    pointer-events: none;
    background: rgba(255, 255, 255, .7);
    box-shadow: var(--box-shadow);
    border:2px solid #fff;
    border-radius:1rem;
    padding: .5rem 1rem;
    width: calc(100% - 35%);
    backdrop-filter: blur(3px);
    box-shadow: inset 0 .5rem 2rem #fff;
    filter: drop-shadow(0 5px 8px rgba(0,0,0, .5));
    cursor: default;
}

.wrapper.show{
    right:0;
    visibility: visible;
    pointer-events: all;
}


@media(max-width:990px){
    .wrapper{
        width: 100%;
    }
}

.wrapper .cookie-header{
    display: flex;
    align-items: center;
    column-gap:1rem;
}
.wrapper .cookie-header i{
    color: #ff9900;
    font-size:clamp(1rem, 2vw, 2rem);
}
.wrapper .cookie-header .consent001{
    font-size: clamp(1.1rem, 2vw, 1.7rem);
    color: #232369;
   font-weight: 500;
}
.wrapper .data{
    margin-top: 1rem;
}
.wrapper .data .textConsent{
    color: #232369;
    font-size:clamp(.7rem, 2vw, .9rem);
    font-weight: 300;
}
.wrapper .data .textConsent a{
    color:#003cff;
    font-style: oblique;
    font-weight: 400;
}
.wrapper .data p a:hover{
    text-decoration: underline;
}

.wrapper .buttons{
    margin-top: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: .5rem;
}

.buttons .button{
    color: #fff;
    padding: .5rem 2rem;
    border-radius: 4rem;
    background: #4070f4;
    cursor: pointer;
    border: 1px solid #333;
    font-weight: 600;
}
.buttons .button:first-child{
    background: transparent;
    color: #222;
    font-weight: 400;
    
}
.buttons .button:last-child{
    background: #000;
}
.buttons .button:hover{
    background: #0000ff;
    color: #fff;
    border: 1px solid #0000ff;

}

/*Borrar Cookies Empieza*/
.deleteCookie{
    z-index: 999999;
    position: fixed;
    bottom: 2rem;
    left: -100%;
    transform: translateX(-50%);
    background: linear-gradient(0, rgba(0,0,0, .7), rgba(0,0,0, .8));
    box-shadow: inset 0 0 17px #000;
    border:1px solid #999;
    border-radius:2rem;
    padding: 1rem;
    backdrop-filter: blur(7px);
    cursor: default;
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
}



.deleteCookie.active{
    left: 50%;
}

.deleteCookie .textDelete001{
    margin-bottom: 1rem;
    text-align: center;
    color:#ddd;
    font-size: clamp(.9rem, 2vw, 2rem);
    font-weight: 400;
}
.deleteCookie p{
    font-size: clamp(.8rem, 2vw, 1rem);
    color: #ccc;
    font-weight: 300;
}
.deleteCookie p:nth-child(3){
    margin-bottom: 1rem;
}
.deleteCookie .btnscookies{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: .5rem;
}



.deleteCookie .btnscookies .cancelar{
    padding: .5rem 3rem;
    border-radius: 3rem;
    cursor: pointer;
    background: #222;
    color:#b3b3b3;
    font-weight: 500;
    font-size: clamp(.8rem, 2vw, 1rem);
}

.deleteCookie .btnscookies .cancelar:hover{
    background: #777;
    color: #fff;
}

.deleteCookie .btnscookies .borrar{
    padding: .5rem 3rem;
    border-radius: 3rem;
    cursor: pointer;
    color:#fff;
    background: #ff4500;
    font-weight: 500;
    font-size: clamp(.8rem, 2vw, 1rem);
}

.deleteCookie .btnscookies .borrar:hover{
    background: red;
}





@media(max-width:1200px){
    .deleteCookie{
        width: 90%;
    }
}
@media(max-width:780px){
    .deleteCookie .btnscookies{
        justify-content: center;
    }

}
/*Borrar Cookies Termina*/

/*Sección Cookies Termina*/