.consent-popup {
  position: fixed;
  overflow: hidden;
  box-sizing: border-box;
  font-family: Helvetica,Calibri,Arial,sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  color: rgb(255, 255, 255);
  background-color: rgb(30, 30, 30);
}

.consent-popup--hidden {
  opacity: 0;
  pointer-events: none;
}

.consent-popup--banner-bottom {
  padding: 1em 1.8em;
  width: 100%;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  left: 0;
  right: 0;
  bottom: 0;
}

.consent-popup--float-right {
  padding: 2em;
  max-width: 24em;
  -ms-flex-direction: column;
  flex-direction: column;
  bottom: 1em;
  right: 1em;
}

.consent-popup__message {
  flex: 1;
  margin: 0 0 1rem;
  padding: 0;
}

.consent-popup__controls {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  width: 100%;
}

.consent-popup__text {
  display: none;
  margin-right: 0.5rem;
}

.consent-popup__text-mobile {

}

@media screen and (min-width: 480px) {
  .consent-popup__controls {
    width: auto;
  }

  .consent-popup--banner-bottom .consent-popup__message {
    margin-bottom: 0;
  }

  .consent-popup__text {
    display: inline;
  }

  .consent-popup__text-mobile {
    display: none;
  }

  .consent-popup--banner-bottom {
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.consent-popup__moreinfo {
  text-decoration: underline;
  opacity: 0.8;
  font-style: italic;
  transition: opacity 0.5s ease-in-out;
}

.consent-popup__moreinfo,
.consent-popup__moreinfo:hover,
.consent-popup__moreinfo:active,
.consent-popup__moreinfo:focus,
.consent-popup__moreinfo:visited {
  color: rgb(255, 255, 255);
}

.consent-popup__moreinfo:hover {
  opacity: 1;
}

.consent-popup__dismiss {
  -ms-flex: 1;
  flex: 1;
  display: block;
  font-size: 12px;
  padding: 0.6em .8em;
  border-radius: 0;
  line-height: 18px;
  font-weight: 700;
  border-width: 2px;
  border-style: solid;
  text-align: center;
  white-space: nowrap;
  min-width: 140px;
  border-color: transparent;
  transition: background-color 0.5s ease-in-out;
}
