.remodal:not(.remodal-is-initialized) {
  display: none;
}

html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.remodal-overlay.remodal-is-opening, .remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
          animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
          animation-name: remodal-overlay-closing-keyframes;
}

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
  padding: 42px 10px 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.remodal-wrapper::after {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}
.remodal-wrapper .remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #ffffff;
  vertical-align: middle;
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  display: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}
.remodal-wrapper .remodal.lt-ie9 {
  width: 700px;
}
.remodal-wrapper .remodal.remodal-is-opening, .remodal-wrapper .remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.remodal-wrapper .remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
          animation-name: remodal-opening-keyframes;
}
.remodal-wrapper .remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
          animation-name: remodal-closing-keyframes;
}
.remodal-wrapper .remodal.remodal-is-initialized {
  display: inline-block;
}
.remodal-wrapper .remodal .remodal-header {
  display: flex;
  align-items: center;
  height: 45px;
}
.remodal-wrapper .remodal .remodal-header h1 {
  display: flex;
  align-self: stretch;
  align-items: center;
  flex: 1;
  padding: 10px 16px 10px 20px;
  font-size: 16px;
  margin: 0;
  text-align: left;
  overflow: hidden;
}
.remodal-wrapper .remodal .remodal-header h1 > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.remodal-wrapper .remodal .remodal-header .remodal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #dddddd;
  background-color: transparent;
  cursor: pointer;
  color: #72777c;
  width: 45px;
  height: 45px;
  transition: color 0.1s ease-in-out, background 0.1s ease-in-out;
}
.remodal-wrapper .remodal .remodal-header .remodal-close::before {
  position: absolute;
  font: normal 20px/1 dashicons;
  font-size: 22px;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f335";
}
.remodal-wrapper .remodal .remodal-header .remodal-close:hover {
  background: #dddddd;
  border-color: #cccccc;
  color: #000000;
  outline: 0;
  box-shadow: none;
}
.remodal-wrapper .remodal .remodal-content {
  border-top: 1px solid #dddddd;
  padding: 16px 20px 20px 20px;
  font-size: 14px;
}
.remodal-wrapper .remodal .remodal-content .remodal-message {
  text-align: left;
  margin-bottom: 20px;
}
.remodal-wrapper .remodal .remodal-content .remodal-checkboxes {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
.remodal-wrapper .remodal .remodal-content .remodal-checkboxes .checkbox-wrapper:not(:first-child) {
  margin-top: 18px;
}
.remodal-wrapper .remodal .remodal-content .remodal-checkboxes .checkbox-wrapper .checkbox-content p {
  margin-top: 5px;
  margin-bottom: 0;
}
.remodal-wrapper .remodal .remodal-content .remodal-select-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  text-align: left;
}
.remodal-wrapper .remodal .remodal-content .remodal-select-wrapper label {
  display: block;
  padding: 0 0 3px;
  color: #777777;
  font-size: 13px;
}
.remodal-wrapper .remodal .remodal-content .remodal-select-wrapper .remodal-select {
  width: 100%;
  max-width: unset;
  margin: 0;
}
.remodal-wrapper .remodal .remodal-content .remodal-input {
  margin: 0;
}
.remodal-wrapper .remodal .remodal-content .remodal-input.input-error {
  border-color: #aa000a;
  box-shadow: 0 0 0 1px #aa000a;
}
.remodal-wrapper .remodal .remodal-buttons {
  display: flex;
  gap: 6px;
  padding: 16px 20px 16px 20px;
  border-top: 1px solid #dfdfdf;
  background: #fcfcfc;
  box-shadow: 0 -4px 4px -4px rgba(0, 0, 0, 0.1);
}
.remodal-wrapper .remodal .remodal-buttons > button {
  width: 100%;
}

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}
@-webkit-keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/*# sourceMappingURL=admin-remodal.css.map */