
.wrapper{
    z-index: 999999;
    position: fixed;
    bottom:-100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    visibility: hidden;
    pointer-events: none;
}

.wrapper.show{
    bottom: 0;
    pointer-events: all;
    visibility: visible;
}

.wrapper .cookie-header{
    display: flex;
    align-items: center;
    column-gap:1rem;
}
.wrapper .cookie-header i{
    color: orange;
    font-size: clamp(1.2rem, 2vw, 2rem);
}
.wrapper .cookie-header h2{
    font-size: clamp(1rem, 2vw, 1.3rem);
   color: #555;
   font-weight: 100;
}
.wrapper .data{
    margin-top: 1rem;
}
.wrapper .data p{
    color: #666;
    font-size: clamp(.6rem, 2vw, .8rem);
    font-weight: 200;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.wrapper .data p a{
    color:#4070f4;
    font-weight: 500;
    font-style: oblique;
    text-decoration: underline;
}
.wrapper .data p a:hover{
    text-decoration: underline;
}

.wrapper .buttons{
    margin-top: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
}

.buttons .button{
    border: none;
    color: #fff;
    padding: .5rem 0;
    border-radius: 4px;
    background: #8a8a8a;
    cursor: pointer;
    padding: .5rem 2rem;
}
.buttons .button:hover{
    background: #4d4d4d;

}
.buttons #acceptBtn{
    background: #0068ca;
}

.buttons #acceptBtn:hover{
    background:#0b39d1;
}
.deleteCookie{
  z-index: 999999;
  position: fixed;
  left: 50%;
  bottom: 5rem;
  transform: translateX(-50%);
  max-width: 50%;
  width: 100%;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0, .180);
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.deleteCookie.active{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.deleteCookie h3{
    margin-bottom: 1rem;
    text-align: center;
    color: #c06161;
    font-size: clamp(1rem, 3vw, 2rem);
}
.deleteCookie p{
    font-size: clamp(.8rem, 3vw, 1rem);
    color: #555;
    margin-bottom: 1rem;
    font-weight: 300;
}
.deleteCookie span{
    font-size: clamp(.7rem, 2vw, .8rem);
    margin-bottom: 1rem;
    color: #666;
}
.deleteCookie .btnscookies{
    display: flex;
    align-items: center;
    gap: .5rem;
    justify-content: end;
}



.deleteCookie .btnscookies .cancelar{
    padding: .3rem 2rem;
    outline: none;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    background: transparent;
    color: #696969;
    font-weight: 500;
    font-size: clamp(.8rem, 2vw, 1.2rem);
}

.deleteCookie .btnscookies .cancelar:hover{
    background: #9b9b9b;
    color: #fff;
}

.deleteCookie .btnscookies .borrar{
    padding: .3rem 3rem;
    outline: none;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
    font-size: clamp(.8rem, 2vw, 1.2rem);
    background: rgb(150, 106, 201);
}

.deleteCookie .btnscookies .borrar:hover{
    background: #1d87dd;
}



.footer .rightsCont a{
    font-size: clamp(.7rem, 2vw, 1rem);
    font-weight: 200;
}



.footer .rightsCont span i{
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
}

.footer .rightsCont span i:hover{
    transform: rotate(90deg) scale(1.2);

}






@media(max-width:1200px){
    .wrapper{
        width: 100%;
    }
    .wrapper .buttons{
        justify-content: center;
    }
    
    .deleteCookie{
        max-width: 90%;
    }
    
}
@media(max-width:720px){
    .wrapper .buttons .button{
        width: 100%;
    }

}