p, h1 {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
  font-family: "Inter", "Roboto", sans-serif;
}

.loader_wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 999999999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  background: var(--bg_color, #0d1b2a);
}

.circle-relative {
  position: relative;
}

.loader-title {
  color: var(--title_color, #fff);
  font-size: clamp(32px, 5vw, 62px);
  line-height: clamp(36px, 5vw, 66px);
  transition: opacity 0.3s ease;
}

.loader-subtext {
  color: var(--subtitle_color, #cbd5e0);
  font-size: clamp(22px, 5vw, 36px);
  line-height: clamp(26px, 5vw, 38px);
}

.loader-circle {
  width: var(--loader-size);
  height: var(--loader-size);
  transform: rotate(-90deg);
}

.loader-circle circle {
  fill: none;
  stroke-width: var(--stroke-width);
}

.loader-circle .bg {
  stroke: #eee;
}

.loader-circle .progress {
  stroke: var(--accent_color, #00c27e);
  stroke-dasharray: var(--circumference);
  stroke-dashoffset: var(--circumference);
  transition: stroke-dashoffset linear;
}

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 16px var(--glow-color), inset 5px 5px 16px var(--glow-color);
  }
  50% {
    box-shadow: 0 0 25px var(--glow-color), inset 5px 5px 25px var(--glow-color);
  }
  100% {
    box-shadow: 0 0 16px var(--glow-color), inset 5px 5px 16px var(--glow-color);
  }
}
.inner {
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  box-shadow: 0 0 16px var(--glow-color), inset 5px 5px 16px var(--glow-color);
  -webkit-animation: pulse 2s linear 1s infinite;
}

.loader-percent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: 600;
  color: var(--glow-color, #fff);
  pointer-events: none;
}

.loader-cta-button {
  display: inline-block;
  background: var(--button-color);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#loaderContent {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

#popupWrapping {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  z-index: 10;
}

#popupWrapping.is-visible {
  display: flex;
}

.matching-popup {
  opacity: 0;
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 55px 70px 42px;
  background: #fff;
  border-radius: 34px;
  text-align: center;
  box-sizing: border-box;
  transform: translateY(25px) scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

#popupWrapping.is-visible {
  display: flex;
}

.matching-popup.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.matching-popup__close {
  position: absolute;
  top: 20px;
  right: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #6f7785;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.matching-popup__image {
  margin-bottom: 25px;
}

.matching-popup__image img {
  display: block;
  width: 130px;
  height: auto;
  margin: 0 auto;
}

.matching-popup__status {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--popup-status-color);
}

.matching-popup__title {
  margin: 0 0 12px;
  color: #101823;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
}

.matching-popup__subtitle {
  max-width: 440px;
  margin: 0 auto 35px;
  color: #6f7785;
  font-size: 20px;
  line-height: 1.45;
}

.matching-popup__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 100%;
  min-height: 88px;
  padding: 20px 30px;
  border-radius: 12px;
  color: #fff;
  background: var(--popup-button-background);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 190, 150, 0.28);
  box-sizing: border-box;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.matching-popup__button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
  color: #fff;
}

.matching-popup__button-arrow {
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.matching-popup__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  color: #6f7785;
  font-size: 16px;
  line-height: 1.4;
}

.matching-popup__lock {
  font-size: 17px;
}

@media (max-width: 767px) {
  .matching-popup {
    max-width: calc(100% - 30px);
    padding: 45px 25px 30px;
    border-radius: 24px;
  }
  .matching-popup__close {
    top: 14px;
    right: 20px;
    font-size: 40px;
  }
  .matching-popup__image img {
    width: 105px;
  }
  .matching-popup__status {
    font-size: 14px;
  }
  .matching-popup__title {
    font-size: 30px;
  }
  .matching-popup__subtitle {
    margin-bottom: 25px;
    font-size: 17px;
  }
  .matching-popup__button {
    min-height: 66px;
    padding: 16px 20px;
    font-size: 18px;
    gap: 15px;
  }
  .matching-popup__button-arrow {
    font-size: 25px;
  }
  .matching-popup__bottom {
    margin-top: 22px;
    font-size: 13px;
  }
}

/*# sourceMappingURL=one-click-with-loader.css.map */
