/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

#gdpr-banner {
  z-index:10000;

  display:flex;
  flex-direction:column;
  align-items: center;

  background-color:#fff;
  color:#000;

  position:fixed;
  left:0;
  bottom:0;
  right:0;

  transition:bottom 1s;
  overflow:hidden;
  padding:1rem;
}
#gdpr-banner > .gdpr-banner-content {
  text-align:center;
}
#gdpr-banner > div {
  padding:1rem;
}
#gdpr-banner .gdpr-banner-content {
  flex:1
}
#gdpr-banner.accepted {
  bottom:-100%;
}
#gdpr-banner .gdpr-accept-button {
  border-radius: 24px;
  padding: 13px 30px;
}

#gdpr-banner .close-button-svg {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}

#gdpr-banner .close-button-svg > img {
  width: 25px;
  margin: 20px;
}

@media (min-width: 900px) {
  #gdpr-banner .gdpr-banner-content {
    padding: 1rem 27.5%;
  }
}

@media (max-width: 899px) {
  #gdpr-banner .close-button-svg > img {
    width: 20px;
    margin: 10px;
  }
}
