

/*Cookies*/
#cookie-popup { 
  text-align: center; 
  background: #444;
  position: fixed;
  top: 0px; 
  left: 0;
  right: 0;
  color: white;
  z-index: 9999;
  font-size:14px; 
  line-height:20px;
  padding: 2px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
  }
 
#cookie-popup.hidden {
  display: none;
}

.cookie_ok{
    font-family: Verdana, sans-serif;
    background-color: #03498E;
    border-width: 0px;
    box-shadow: 1px 1px 5px 0px gray;
    color: #EEE;
    padding: 4px 10px;
    margin-left: 10px;
    border-radius: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size:12px; 
    font-weight: bold;
   
}

.cookie_details{
    font-family: Verdana, sans-serif;
    background-color: #03498E;
    border-width: 0px;
    box-shadow: 1px 1px 5px 0px gray;
    color: #EEE;
    padding: 4px 10px;
    margin-left: 10px;
    border-radius: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size:11px; 
   
    
}


.text{
    font-family: Verdana, sans-serif;
}

.cookie_details:hover{
    cursor: pointer;
    
     box-shadow: 2px 2px 5px 0px gray;
}

.cookie_ok:hover{
    cursor: pointer;
    
     box-shadow: 3px 3px 5px 0px gray;
}