<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cookie-popup {
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 450px;
  z-index: 750;
  text-align: center !important;
}
.cookie-popup .cookie-popup-inner {
  padding: 15px;
}
.cookie-popup .cookie-popup-inner p {
  margin: 0 0 15px 0 !important;
  color: #303030 !important;
  font-size:13px;
  line-height:20px;	
}

.cookie-popup .cookie-popup-inner button {
  width: 100%;
  border-radius: 5px;
  border: none;
  color: #fff;	
  background: #0064a9;
  text-shadow: none;
  transition: all 0.5s ease 0s;	
}
.cookie-popup .cookie-popup-inner button:hover, 
.cookie-popup .cookie-popup-inner button:focus {
  color: #fff;
  background-color: #8ba9d0;
  box-shadow: none;
}

.cookie-popup .cookie-popup-inner button:disabled,
.cookie-popup .cookie-popup-inner button:disabled:hover {
  background: #eee;
  color: #888;
}

/* set cookie popup to bottom */
.cookie-popup.set-bottom {
  bottom: 0;
  right: 0;
  width: 100%;
}
.cookie-popup.set-bottom .cookie-popup-inner button {
  max-width: 300px;
}

/* dark theme */
.cookie-popup.dark {
  background-color: #333;
  color: #fff;
}
.cookie-popup.dark .cookie-popup-inner p {
  color: #fff !important;
}

@media (max-width: 767px) {
  .cookie-popup {
    width: 100%;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .cookie-popup.set-bottom .cookie-popup-inner button {
    max-width: 100%;
  }
}</pre></body></html>