#cookie-compliance-popup {
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background-color: rgb(17, 17, 17);
  z-index: 999999;
  opacity: 1;
  position: fixed;
  padding: 15px 0px 5px;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: normal;
  color: rgb(255, 255, 255);
  font-family: Arial, sans-serif;
  box-shadow: rgb(0, 0, 0) 0px 0px 8px;
}

#cookie-compliance-popup > h2 {
  padding: 0px 0px 7px;
  color: white;
  font-size: 15px;
  font-weight: bold;
  margin: 0px;
  border: 0 none;
}

#cookie-compliance-popup .buttons {
  margin: 10px auto 5px;
  font-size: 13px;
  font-weight: normal;
  text-align: center;
  font-family: Arial, sans-serif;
}

#cookie-compliance-popup .buttons > * {
  border-radius: 5px;
  border: 0px none;
  padding: 6px 10px;
  font-weight: bold;
  font-size: 13px;
  cursor: pointer;
  margin: 0px 15px 0px 0px;
  transition: all 0.25s ease 0s;
  text-shadow: rgb(0, 0, 0) 0px 0px 2px;
  display: inline-block;
  color: rgb(255, 255, 255);
  text-decoration: none;
}

#cookie-compliance-popup .buttons > .accept {
  background-color: rgb(91, 183, 91);
}

#cookie-compliance-popup .buttons > .reject {
  background-color: rgb(183, 91, 91);
}

#cookie-compliance-popup .buttons > .read_more {
  background-color: rgb(105, 118, 119);
}