.cookie-consent-popup {
  animation-name: show;
  animation-duration: 1s;
  animation-timing-function: ease;
  background-color: white;
  display: none;
  padding: 22px 15px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: initial !important;
  text-align: center;
  width: 100%;
  z-index: 3000;
}
.cookie-consent-popup button {
  border: 1px solid #99cccc;
  color: #99cccc;
  padding: 9px 13px;
}
.cookie-consent-popup.open {
  opacity: 1;
  animation-name: show;
  animation-duration: 1s;
  animation-timing-function: ease;
}
.cookie-consent-controls {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-out;
  -moz-transition: max-height 0.5s ease-out;
  transition: max-height 0.5s ease-out;
}
.cookie-consent-controls.open {
  border-top: 1px solid #99cccc;
  margin: 15px 0 0 0;
  max-height: 600px;
  padding: 15px 0 0 0;
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.cookie-consent-message {
  margin: 0 0 15px 0 !important;
}
.cookie-consent-control {
  margin: 0 15px 0 0;
}
/*# sourceMappingURL=cc.css.map */