.remodal{
  --awc-modal-bg: #fff;
  --awc-modal-color: #333;
  --awc-modal-padding: 30px;
  --awc-modal-radius: 0;
  --awc-modal-max-width: 100%;
  --awc-modal-text-align: left;
  --awc-modal-loader-size: 50px;
  --awc-modal-loader-border-size: 4px;
  --awc-modal-loader-color:#1dc8ff;
  --awc-modal-loader-bg: transparent;
}

.remodal {
  text-align: var(--awc-modal-text-align);
  box-sizing: border-box;
  width: 100%;
  max-width:  var(--awc-modal-max-width);
  padding: var(--awc-modal-text-align);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: var(--awc-modal-color);
  background-color: var(--awc-modal-bg);
  border-radius: var(--awc-modal-radius);
}

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.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;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal__close-link {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal__close-link:hover,
.remodal__close-link:focus {
  color: #2b2e38;
}

/* Dialog buttons */
.remodal__btn-confirm,
.remodal__btn-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal__btn-confirm {
  color: #fff;
  background: #81c784;
}

.remodal__btn-confirm:hover,
.remodal__btn-confirm:focus {
  background: #66bb6a;
}

.remodal__btn-cancel {
  color: #fff;
  background: #e57373;
}

.remodal__btn-cancel:hover,
.remodal__btn-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal__btn-confirm::-moz-focus-inner,
.remodal__btn-cancel::-moz-focus-inner,
.remodal__close-link::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.remodal__header {
  padding: 0;
}
.remodal__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
  text-align: center;
  padding: 12px 24px;
  background-color: #f2f2f2;
  border-top-left-radius: var(--awc-modal-radius);
  border-top-right-radius: var(--awc-modal-radius);
}
.remodal__body {
  padding: 30px 24px;
}

.remodal-is-ajax-loading .remodal__body {
  padding: 30px;
  text-align: center;
  background-color: var(--awc-modal-loader-bg);
}

.remodal-is-ajax-loading .remodal__body:after {
  content: "";
  display: block;
  position: absolute;
  width: var(--awc-modal-loader-size);
  height: var(--awc-modal-loader-size);
  left: 50%;
  top: 50%;
  margin-left: calc(var(--awc-modal-loader-size) / 2 * -1);
  margin-top: calc(var(--awc-modal-loader-size) / 2 * -1);
  z-index: 20;
  transform-origin: 50%;
  box-sizing: border-box;
  border: var(--awc-modal-loader-border-size) solid var(--awc-modal-loader-color);
  border-radius: 50%;
  border-top-color: transparent;
  animation: preloader-spin 1s steps(12, end) infinite;
}
.remodal__close-link {
  top: 11px;
  right: 0;
  width: 24px;
  height: 24px;
}

.remodal__close-link svg{
  width: 100%;
  height: 100%;
}
.remodal__close-link:focus{
  outline: none;
}

@media (min-width: 1025px) {
  .remodal__title {
    padding: 20px 50px;
  }
  .remodal__close-link {
    top: 15px;
    right: 9px;
  }
  .remodal__body {
    padding: 30px 50px;
  }
  .remodal__close-link {
    width: 32px;
    height: 32px;
  }
}

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(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;
  }
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}
@keyframes preloader-spin {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}