<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  z-index: 9999;
  border: 2px solid #008b95;
  background-color: #fff;
  border-radius: 15px 15px 0 0;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .cookie-banner {
    padding: 10px;
  }
}
.cookie-banner p {
  display: inline-block;
  line-height: 1.5;
  margin-bottom: 0;
  /*
  font-size: 1.2rem;
  */
  font-size: 15px;
}
.cookie-banner p br {
  display: none;
}
@media screen and (max-width: 1400px) {
  .cookie-banner p br {
    display: initial;
  }
}
@media screen and (max-width: 768px) {
  .cookie-banner p {
    /*
    font-size: 1rem;
    */
    font-size: 15px;
  }
}
.cookie-banner__apply {
  color: #fff;
  background-color: #008b95;
  border: 1px solid;
  border-color: #008b95;
  font-weight: 300;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  border-radius: 4px;
  transition: 0.2s;
  width: fit-content;
  padding: 0.3rem 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  /*
  font-size: 1.5rem;
  */
  font-size: 15px;
}
.cookie-banner__read:hover {
	color: #ff7c24;
}
.cookie-banner__apply:hover {
  color: #fff;
  background-color: #ff7c24;
  border-color: #ff7c24;
}
.cookie-banner__apply:focus {
  outline: none;
}
.cookie-banner__read {
	font-family: OpenSansLight;
  color: #008b95;
}
</pre></body></html>