.modalx {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 70px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
}
.modalx-content {
  background-color: red;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 70%;
}
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}
/*-------------    modal   -------------------*/
.windowModal {
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  z-index: 99999;
  opacity:0;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none;
}

.windowModal:target {
  opacity:1;
  pointer-events: auto;
}

.windowModal > div {
  position: relative;
  margin-top: 50px;
  margin-left: 30px;
  border-radius: 10px;
}
.close {
  background: #606061;
  opacity: 1;
  color: #FFFFFF;
  line-height: 25px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 24px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -moz-box-shadow: 1px 1px 3px #000;
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
}

.close:hover { background: #00d9ff; }


/*-------------    fine modal   -------------------*/
.div_cookie
{
  width: 80%;
  height: 65%;
}
.frame_cookie
{
  width: 80%;
  height: 65%;
}
.notifica
{
  width: 25%;
  height: 60%;
}
.frame_notifica
{
  width: 25%;
  height: 60%;
}
.font
{
  font-size: 14px;
}
@media all and (min-width: 360px) and (max-width: 480px) 
{
    .div_cookie
    {
      width: 90%;
      height: 95%;
    }
    .frame_cookie
    {
      width: 90%;
      height: 95%;
    }

    .notifica
    {
      margin-left: -80px;
      width: 140%;
      height: 92%;
    }
    .frame_notifica
    {
      margin-left: -80px;
      width: 140%;
      height: 92%;
    }
    .font
    {
      font-size: 6px;
    }
        
}