.twz-popup-maker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--twz-popup-maker-padding, 15px);
  -webkit-box-pack: var(--twz-popup-maker-justify, center);
      -ms-flex-pack: var(--twz-popup-maker-justify, center);
          justify-content: var(--twz-popup-maker-justify, center);
  width: 100%;
  position: var(--twz-popup-maker-position, fixed);
  z-index: var(--twz-popup-maker-zindex, 1000);
  border: var(--twz-popup-maker-border, 1px solid);
}
@media (min-width: 0px) and (max-width: 599px) {
  .twz-popup-maker {
    padding: 10px;
  }
}
.twz-popup-maker--notification {
  background-color: var(--twz-popup-maker-custom-bg-color, var(--twz-popup-maker-notification-background-color, #fff3cd));
  border-color: var(--twz-popup-maker-notification-border, #ffecb5);
}
.twz-popup-maker--alert {
  background-color: var(--twz-popup-maker-custom-bg-color, var(--twz-popup-maker-alert-background-color, #f8d7da));
  border-color: var(--twz-popup-maker-alert-border, #f5c2c7);
}
.twz-popup-maker__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.twz-popup-maker__icon {
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  margin-top: 0.25em;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
}
.twz-popup-maker__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.twz-popup-maker__icon .bi {
  font-size: 1.6rem;
  line-height: 1;
  display: block;
}
.twz-popup-maker--notification .twz-popup-maker__icon {
  color: var(--twz-popup-maker-custom-text-color, var(--twz-popup-maker-notification-color, #664d03));
}
.twz-popup-maker--alert .twz-popup-maker__icon {
  color: var(--twz-popup-maker-custom-text-color, var(--twz-popup-maker-alert-color, #842029));
}
.twz-popup-maker__message {
  font-size: var(--twz-popup-maker-fontsize, 16px);
  margin-left: 10px;
}
@media (min-width: 0px) and (max-width: 599px) {
  .twz-popup-maker__message {
    font-size: 14px;
    line-height: 1.3em;
  }
}
.twz-popup-maker--notification .twz-popup-maker__message {
  color: var(--twz-popup-maker-custom-text-color, var(--twz-popup-maker-notification-color, #664d03));
}
.twz-popup-maker--alert .twz-popup-maker__message {
  color: var(--twz-popup-maker-custom-text-color, var(--twz-popup-maker-alert-color, #842029));
}
.twz-popup-maker__message :where(h1, h2, h3, h4, h5, h6, p, a, span, div, li, ul, ol, strong, em, b, i, u) {
  color: inherit;
}
.twz-popup-maker__message a {
  color: inherit;
  text-decoration: underline;
}
.twz-popup-maker__message a:hover {
  opacity: 0.8;
}
.twz-popup-maker__close {
  width: 25px;
  height: 25px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25px;
          flex: 0 0 25px;
  margin-left: auto;
  cursor: pointer;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.twz-popup-maker__close svg {
  width: 100%;
  height: 100%;
  display: block;
}
.twz-popup-maker--notification .twz-popup-maker__close {
  color: var(--twz-popup-maker-custom-text-color, var(--twz-popup-maker-alert-color, #842029));
}
.twz-popup-maker--alert .twz-popup-maker__close {
  color: var(--twz-popup-maker-custom-text-color, var(--twz-popup-maker-alert-color, #842029));
}
.twz-popup-maker--popup {
  position: relative;
  max-width: var(--twz-popup-maker-popup-max-width, 90%);
  width: var(--twz-popup-maker-popup-width, min(90%, 50rem));
  margin: 0 auto;
  border-radius: var(--twz-popup-maker-popup-border-radius, 0.8rem);
  -webkit-box-shadow: var(--twz-popup-maker-popup-shadow, 0 0.4rem 2rem rgba(0, 0, 0, 0.15));
          box-shadow: var(--twz-popup-maker-popup-shadow, 0 0.4rem 2rem rgba(0, 0, 0, 0.15));
  z-index: 1;
}

.twz-popup-maker-popup {
  position: fixed;
  inset: 0;
  z-index: var(--twz-popup-maker-popup-zindex, 10000);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: var(--twz-popup-maker-popup-padding, 2rem);
  pointer-events: none;
}
.twz-popup-maker-popup__backdrop {
  position: absolute;
  inset: 0;
  background-color: var(--twz-popup-maker-popup-backdrop-color, rgba(0, 0, 0, 0.5));
  cursor: pointer;
  pointer-events: auto;
}
.twz-popup-maker-popup .twz-popup-maker {
  pointer-events: auto;
  position: relative;
}

/*# sourceMappingURL=twz-popup-maker.css.map*/