.unmodal {
  border-radius: 2.5px;
  box-sizing: border-box;
  display: none;
  height: 100%;
  max-height: 700px;
  max-width: 1000px;
  overflow: hidden;
  overflow: visible;
  position: fixed;
  width: 100%;
  z-index: 2200;
  padding: 36px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 569px) {
  .unmodal {
    height: 100% !important;
  }
}
@media (min-width: 570px) {
  .unmodal {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    right: auto;
    bottom: auto;
  }
}
.unmodal .unmodal-content-wrapper {
  box-shadow: 0 50px 50px -30px rgba(0, 0, 0, 0.2), 0 30px 50px 0 rgba(0, 0, 0, 0.15);
  height: 100%;
  position: relative;
  background: #fff;
  border-radius: 2px;
  opacity: 0;
}
.unmodal.show-unmodal-with-animation .unmodal-content-wrapper {
  opacity: 1;
  animation-duration: 0.2s;
  backface-visibility: hidden;
  animation-name: unmodalfadeIn;
  animation-timing-function: ease-in-out;
}
.unmodal .unmodal-content {
  height: 100%;
  overflow-y: auto;
}
@keyframes unmodalfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.unmodal-overlay {
  background: rgba(20, 22, 24, 0.6);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2199;
}
.unmodal-overlay.loading:before {
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  top: 36px;
  left: 36px;
  right: 36px;
  bottom: 36px;
  content: "";
  z-index: 2201;
  background-image: url(../img/oval-anim-dark.svg);
}
.unmodal-close {
  color: #fff;
  cursor: pointer;
  line-height: 0;
  position: absolute;
  right: -27px;
  top: 0;
  z-index: 2200;
}
body.rtl .unmodal-close {
  right: auto;
  left: -27px;
}
.unmodal-close:before {
  content: '\e117';
  font-family: uncodeicon !important;
  font-size: 18px;
  transition: all 400ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  display: inline-block;
}
.unmodal-close:hover:before {
  transform: rotate(180deg);
}
.uncode-unmodal-overlay-visible .main-container {
  z-index: auto !important;
}
.uncode-unmodal-body-disable-scroll {
  overflow-y: hidden !important;
}
