#cookie_box {
    position:fixed;
    bottom:30px;
    right: -500px;
    background: black;
    background: rgba(0,0,0,0.8);
    height: auto;
    max-width: 500px;
    min-width:300px;
    user-select: none;
    -ms-user-select:none;
    -o-user-select:none;
    -moz-user-select:none;
    -webkit-user-select:none;
    margin-left:30px;
    transition: all 500ms ease-in;
    opacity:0.2;
    box-sizing:border-box;
    border: 2px solid white;
}
#cookie_message {
    font-family: Arial, Helvetica, Sans-Serif;
    color: white;
    padding: 20px;
    padding-bottom:0;
    padding-top:0;
    margin:0;
    position:relative;
    font-weight: bold;
    font-size: 15px;
    text-align:center;
}
#cookie_consent_button {
    width: 180px;
    margin-top:20px;
    margin-bottom: 20px;
    height: auto;
    display:block;
    margin-right:auto;
    margin-left:auto;
    transition: all 300ms ease-out;
}
#cookie_consent_button:hover {
    cursor:pointer;
    transform: scale(1.05,1.05);
}
#cookie_link {
    
    font-family: Arial, Helvetica, Sans-Serif;
    padding-bottom:20px;
    text-align:center;
    text-decoration:none;
    display:block;
    transition: all 300ms ease-out;
    color: #31daf1;
    font-size: 15px;
}
#cookie_link:hover {
    color: #25a2f5;
}
@media (orientation: landscape) {
  #cookie_box_fox.hide_in_landscape {
      display:none;
  }
  #cookie_box.fullscreen_in_landscape {
      height:100%;
  }
  #cookie_box.fullscreen_in_landscape #cookie_message {
      padding-top:50px;
  }
  #cookie_box.fullscreen_in_landscape #cookie_message {
      font-size:30px;
  }
  #cookie_box.fullscreen_in_landscape #cookie_consent_button {
      width:auto !important;
      height:15%;
  }
  #cookie_box.fullscreen_in_landscape #cookie_link {
      font-size:10px;
  }
}
#cookie_box_fox {
    width:200px;
    height:auto;
    display:block;
    margin-right:auto;
    margin-left:auto;
}