.banner-popup {
  border-width: 0;
  text-align: center;
  height: auto;
  width: 100%;
  padding-top: 22px;
  padding-bottom: 22px;
  background-color: var(--avixa-yellow, #f6ca15);
  z-index: 8000;
  grid-template-columns: 1fr auto 1fr;
  -webkit-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s;
}
.banner-popup[open] {
  display: grid;
}
.banner-popup:not([open]) {
  opacity: 0;
}
:where(.sfPageEditorWrp) .banner-popup {
  position: static;
}

.banner-popup[data-alignment=Top] {
  position: fixed;
  top: var(--header-height, 116px);
}
:where(.sfPageEditorWrp) .banner-popup[data-alignment=Top] {
  position: static;
  top: initial;
}

.banner-popup[data-alignment=Bottom] {
  position: fixed;
  bottom: 0;
}
:where(.sfPageEditorWrp) .banner-popup[data-alignment=Bottom] {
  position: static;
  top: initial;
}

@media (width < 768px) {
  .banner-popup {
    display: none;
  }
}

.banner-popup-content {
  grid-column-start: 2;
}

.banner-popup-text {
  display: inline;
  font-size: 24px;
  font-family: "Euclid", Calibri, Arial, sans-serif;
}

.banner-popup-button {
  font-family: "Euclid-bold", Calibri, Arial, sans-serif;
  margin-left: 30px;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  color: white;
  background-color: var(--avixa-red, #ee3353);
  display: inline-block;
}
.banner-popup-button:hover, .banner-popup-button:focus {
  color: white;
}

.banner-popup-close-button {
  display: inline-block;
  border: none;
  margin: 0;
  background-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  font-family: sans-serif;
  cursor: pointer;
  text-align: center;
  transition: background 250ms ease-in-out, transform 150ms ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../svg/togglericoncross.svg);
  background-size: contain;
  width: 17.15px;
  height: 17.15px;
  margin-left: auto;
  margin-right: 30px;
  align-self: center;
}

.banner-popup-close-button-accessible-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=BannerPopup.css.map */
