.cookie-consent {
  position: fixed;
  left: 0px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.35);
  transition: all 500ms;
  opacity: 0;
  z-index: 99999;
}

.cookie-consent.bottom {
  bottom: 0px;
  transform: translateY(100%) translateZ(5px);
}

.cookie-consent.top {
  top: 0px;
  transform: translateY(-100%) translateZ(5px);
}

.cookie-consent.visible {
  opacity: 1;
  transform: translateY(0) translateZ(5px);
}

.cookie-consent-content {
  margin: auto;
  padding: 20px;
}

.cookie-consent-content * {
  margin: 0px;
}

.cacc-buttons {
  text-align: center;
  margin-top: 20px;
}

.cacc-buttons .cacc-button {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(0,0,0,0.25);
  margin-right: 10px;
  cursor: pointer;
}

.cacc-buttons .cacc-button.learn {
  color: inherit;
  text-decoration: underline;
  background: none;
}

.cacc-buttons .cacc-button:last-of-type {
  margin-right: 0px;
}

@media only screen and (min-width: 576px) {
  .cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cacc-buttons {
    margin: 0px;
    margin-left: 30px;
    flex-basis: 220px;
    flex-shrink: 0;
  }
}
