  .overlay {
display: none;
  }
  .alertcookie {
background-color: rgb(255, 255, 255);
position: fixed!important;
bottom: 7px!important;
right: 5px!important;
left: 5px!important;
padding: 13px!important;
border-radius: 10px!important;
box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
text-align: center;
z-index: 99999999;
margin: 0 auto;
transition: all ease-in-out 0.3s;
  }
  .alertcookie:hover {
    box-shadow: rgba(14, 30, 37, 0.4) 2px 2px 4px 2px, rgba(14, 30, 37, 0.5) 1px 1px 16px 2px;
  }
  .alertcookie a {
    text-decoration: none!important;
    color:dodgerblue;
  }
  .alertcookie a:hover {
    text-decoration:underline!important;
    color:rgb(0, 128, 255);

  }
  .closecookie {
    margin-left: 15px;
    color: rgb(84, 84, 84);
    font-weight: bold;
    float: right;
    font-size: 40px;
    line-height: 20px;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
  }
  .closecookie:hover {
    color: rgb(255, 30, 30);
  }
  .confirmcookie {
    text-align: center;
    margin-top: 20px!important;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
    color: #ffffff!important;
    background-color:dodgerblue;
    cursor: pointer;
    text-decoration: none!important;
    transition: all ease-in-out 0.3s;
  }
  .confirmcookie:hover {
    background-color:rgb(0, 112, 224);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  }