.popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(61, 61, 61, 0.7);
}
#main-form {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: none;
}
.ux-modal {
  position: absolute;
  top: 3em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: 100%;
  max-width: 520px;
  background-color: white;
  border-radius: 5px;
  transition: all 0.5s;
}
.ux-modal .exit-button {
  position: absolute;
  top: -11px;
  right: -11px;
  width: 24px;
  height: 24px;
  background: #767676;
  z-index: 10;
  border-radius: 100%;
  border: 2px solid white;
  cursor: pointer;
}
.ux-modal .exit-button::after {
  content: "X";
  color: white;
  font-size: 13px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.ux-modal .ux-modal-header {
  width: inherit;
  font-family: Circe;
  font-size: 2em;
  font-variant: small-caps;
  letter-spacing: 2px;
  text-align: center;
  color: white;
  padding: 14px 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background: #444444;
}
.ux-modal .ux-modal-content {
  width: inherit;
  padding: 14px;
  overflow: hidden;
  text-align: center;
}
.ux-modal .ux-modal-content .ux-modal-input-wrapper {
  position: relative;
  display: none;
  width: 100%;
  margin: 0;
}
.ux-modal .ux-modal-content .ux-modal-input-wrapper img {
  display: inline-block;
  width: 20px;
  height: 20px;
  box-shadow: none;
}
.ux-modal .ux-modal-content .ux-modal-input-wrapper input,
.ux-modal .ux-modal-content .ux-modal-input-wrapper select,
.ux-modal .ux-modal-content .ux-modal-input-wrapper textarea {
  display: inline-block;
  width: 74%;
  padding: 8px 0;
  padding-left: 14px;
  margin: 10px 8px;
}
.ux-modal .ux-modal-content .ux-modal-input-wrapper input[type=checkbox] {
  display: none;
}
.ux-modal .ux-modal-content .ux-modal-short-input {
  width: 38%;
  display: inline-block;
  padding: 0;
}
.ux-modal .ux-modal-content .ux-modal-short-input input {
  width: 92.5%;
  margin: 0;
}
.ux-modal .ux-modal-footer {
  width: 100%;
  background: white;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.ux-modal .ux-modal-footer button {
  width: 110%;
  height: 50px;
  margin-left: -5%;
  background: #ffb347;
  border: 0;
  box-shadow: none;
  font-size: 22px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.ux-modal .ux-modal-footer .ux-modal-submit-wrap {
  width: 110%;
  height: 20px;
  margin-left: -5%;
  position: relative;
  z-index: -1;
}
.ux-modal .ux-modal-footer .ux-modal-submit-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  border-bottom: 30px solid transparent;
  border-left: 30px solid darkorange;
}
.ux-modal .ux-modal-footer .ux-modal-submit-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 30px solid transparent;
  border-right: 30px solid darkorange;
}
.ux-modal .ux-modal-input-required::after {
  content: '*';
  position: absolute;
  top: 10px;
  left: 86%;
  color: red;
}
/*# sourceMappingURL=customs.css.map */