@media only screen and (max-width: 1440px) {
  /* For mobile phones: */
  .ajs-dialog {
    max-width: max-content !important;
  }
}
@media only screen and (max-width: 320px) {
  .ajs-dialog {
    max-width: 90vw !important;
  }
}
.wlcr-overlay-section {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
}

.wlcr-overlay-section.active {
  visibility: visible;
  opacity: 1;
}

.wlcr-overlay {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  position: absolute;
  height: auto;
  width: auto;
  min-width: 425px;
  max-width: 500px;
  max-height: 640px;
  overflow-y: scroll;
  border-radius: 6px;
}
.wlcr-overlay::-webkit-scrollbar {
  width: 15px;
}
.wlcr-overlay::-webkit-scrollbar-thumb {
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 20px;
  background-color: #4F47EB;
}
@media screen and (max-width: 767px) {
  .wlcr-overlay {
    min-width: unset;
    width: 100%;
  }
}

#wlcr-loader-wrapper {
  display: none;
  justify-content: center;
  align-items: center;
}

#wlcr-loader {
  width: 44px;
  height: 44px;
  border: 8px solid rgba(0, 0, 0, 0.1);
  border-top: 8px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=wlcr_main.css.map */
