#cookieconsent {
  position: fixed;
  bottom: 0;
  right: 0px;
  display: none;
  font-size: 12pt;
  line-height: 1.2;
}
#cookieconsent .step-1,
#cookieconsent .step-2 {
  max-width: 600px;
  background-color: #789;
  padding: 20px;
  border-radius: 18px;
  margin: 0px 10px 10px;
  color: white;
}
#cookieconsent .step-1 > a {
  font-size: smaller;
  color: white;
  font-weight: 300;
}
#cookieconsent .step-1 > a:nth-child(5) {
  margin-left: 30px;
}
#cookieconsent .step-1 > div:last-child,
#cookieconsent .step-2 > div:last-child {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: space-between;
  padding-top: 30px;
  hyphens: none;
  text-align: center;
  row-gap: 10px
}
#cookieconsent .configure,
#cookieconsent .allow,
#cookieconsent .deny,
#cookieconsent .save {
  cursor: pointer;
  background: lightgrey;
  padding: 18px 15px;
  border-radius: 5px;
  font-weight: 500;
  color: black;
  width: 150px;
}
#cookieconsent .allow {
  background: #8cc63f;
}
#cookieconsent .deny {
  background: orchid;
}
#cookieconsent .step-2 {
  display: none;
}
#cookieconsent .close-settings {
  float: right;
  margin-right: 10px;
  line-height: 1;
}
#cookieconsent .close-settings:hover {
  text-decoration: none;
}
#cookieconsent .close-settings:after {
  content: "\00d7";
  font-size: 60px;
  font-weight: 300;
  color: white;
}
#cookieconsent .scroll {
  overflow-y: scroll;
  max-height: 400px;
}
#cookieconsent h3 {
  margin-top: 0;
}
#cookieconsent .wrapper {
  display: flex;
  flex-flow: row nowrap;
  align-items: top;
  justify-content: space-between;
}
#cookieconsent [type=checkbox] {
  margin-right: 20px;
}
@media screen and (max-width: 610px) {
  #cookieconsent .configure {
    width: 100%;  
  }
}
@media screen and (max-width: 430px) {
  #cookieconsent .allow,
  #cookieconsent .deny,
  #cookieconsent .configure,
  #cookieconsent .save {
    width: 100%
  }
}