div.cookie_info{
    display:none;
    text-align:center;
    position:fixed;
    top: 50%;
    left: 50%;
    width:100%;
    max-width: 600px;
    transform: translate(-50%, -50%);
    padding: 25px;
    background: #f2f2f2;
    color:rgb(33, 37, 41);
    z-index: 99999;
    box-shadow: 5px 5px 20px 0 rgba(0,0,0,0.4);
    border-radius: 25px;
}

div.cookie_info p a {
  color: #266cad;
  text-decoration: none;
}

div.cookie_info #more {
  color: #266cad;
  background: transparent;
  border: none;
  cursor: pointer;
}

div.cookie_info #AcceptCookie {
    background-image: none;
    border-style: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin: 41px auto 0; 
    background-color: #266cad;
    color: #fff;
    padding: 10px 30px;
    cursor: pointer;
    border-radius: 25px
}



div.cookie_info #close {
  position: absolute;
  top: 0;
  right: 0;
  background: #111;
  border: 2px solid #fff;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  transform: translate(50%, -50%);
  color: #fff;
  text-align: center;
  line-height: 26px;
  cursor: pointer;
  font-size: 16px;
}

div.cookie_info .hidden {
  display: none;
}

div.cookie_info_backdrop {
  display: none;
  background: #000;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 21;
  opacity: 0.7;
}