




/* COOKIES ALL ////////////////////////////////////////////  */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
.cookiesbox{
  position: fixed;
  bottom: 30px;
  right: 30px;
  max-width: 365px;
  background: #003399;
  padding: 25px 25px 30px 25px;
  border-radius: 15px;
  box-shadow: 1px 7px 14px -5px rgba(0,0,0,0.15);
  text-align: center;
    z-index: 999;
  
}
.cookiesbox.hide{
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
::selection{
  color: #fff;
  background: green;
}
.cookiesbox img{
  max-width: 90px;
}
.contentcookies header{
  font-size: 20px;
  font-weight: 600;
  color:#92a7bb;
}
.contentcookies{
  margin-top: 10px;
}
.contentcookies p{
  font-size: 12px;
  color: #92a7bb;
  margin: 5px 0 20px 0;
}
.contentcookies .buttonscookies{
  font-size: 14px;
  font-weight:600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.buttonscookies button{
  padding: 10px 20px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  background: green;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  
}
.buttonscookies button:hover{
  transform: scale(0.97);
}
.buttonscookies .itemcookies{
  margin: 0 10px;
  font-family: 'Inter', sans-serif;
}
.buttonscookies a{
  color: #92a7bb;
}

/* COOKIES ALL XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX  */
