#cookie-message {
  position: fixed;
  left: 5px;
  bottom: 30px;
  max-width: 480px;
  background-color: #f5f5f5;
  padding: 20px;
  padding-bottom: 7px;
  border-radius: 17px;
  box-shadow: 0 1px 12px rgb(0 0 0 / 12%);
  margin-left: 30px;
  font-family: system-ui;
  z-index: 1999;
}

#cookie-message h4 {
  color: #eb375e;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

#cookie-message h5 {
  color: #eb375e;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}

#cookie-message p, #cookie-message ul {
  font-size: 15px;
  line-height: 1.5em;
  font-weight: 400;
}

#cookie-message p:last-child {
  margin-bottom: 0;
  text-align: right;
}

#cookie-message li {
  width: 49%;
  display: inline-block;
}

#cookie-message a {
  color: #eb375e;
  text-decoration: none;
  font-size: 15px;
  padding-bottom: 2px;
  border-bottom: 1px dotted rgba(255,255,255,0.75);
  transition: all 0.3s ease-in;
}

#cookie-message a:hover {
  color: #121212;
  border-bottom-color: #eb375e;
  transition: all 0.3s ease-in;
 }

button#cookie-advanced {
  background: white;
  color: #eb375e;
}

#cookie-message button:disabled {
  opacity: 0.3;
}

#cookie-message input[type="checkbox"] {
  float: none;
  margin-top: 0;
  margin-right: 5px;
}

@media only screen and (max-width: 768px) {
  #cookie-message {
    left: 0;
    right: 15px;
    bottom: 100px;
    margin-left: 15px;
    padding-bottom: 5px;
  }
}