.slidercaptcha {
  box-sizing: content-box;

  margin: 0 auto;
  width: 336px;
  height: 307px;
  background: #deeffd;
  border: none;
  padding: 15px 20px;
  border-radius: 20px;
  /* background-color: rgb(0 0 0 / 0); */
}
.block {
  cursor: pointer;
}
.captcha__title {
  font-family: 'Philosopher-Bold';
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.slidercaptcha .card-body {
  padding: 4px;
}

.slidercaptcha canvas:first-child {
  border-radius: 4px;
  border: 1px solid #e6e8eb;
}

.slidercaptcha.card .card-header {
  background-image: none;
  background-color: rgba(0, 0, 0, 0.03);
}

.refreshIcon {
  top: 3px;
  right: 3px;
  background-color: rgb(255 255 255 / 0.5);
  margin: 0;
  padding: 6px;
  border-radius: 50%;
}

.sliderContainer {
  margin-top: 20px;
  border-radius: 20px;
}
.sliderbg {
  border-radius: 20px;
  background-color: #ffffff;
}
.sliderMask {
  border-radius: 20px;
  /* background: none !important; */
  /* border: 1px solid transparent !important; */
}
.sliderContainer_active .sliderMask {
  border-width: 1px;
}

.sliderContainer_success .sliderMask {
  border-width: 1px;
}

.sliderContainer_fail .sliderMask {
  border-width: 1px;
}

.slider {
  width: 30px;
  height: 30px;
  top: 50% !important;
  left: 5px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: none;
}

.sliderText {
  font-size: 18px;
  color: #b1b1b1;
  font-weight: 500;
}

.popup {
  position: fixed;
  inset: 0;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(0.3125rem);
  backdrop-filter: blur(0.3125rem);
  color: var(--color-black);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 10000;
}

.popup.active {
  opacity: 1;
  pointer-events: auto;
}

.popup__container {
  height: 100%;
}

.popup__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.popup__body {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  border-radius: 25px;
  padding: 48px 60px;
  max-width: 830px;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgb(190, 179, 179);
}

.popup__close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background-color: transparent;
}

.popup__image {
  display: flex;
  margin-bottom: 20px;
}

.popup__title {
  font-family: 'Philosopher-Bold', sans-serif;
  font-size: 44px;
  margin-bottom: 35px;
  text-align: center;
}

.popup__title_small {
  font-size: 30px;
  line-height: 38px;
}

.popup__text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
  color: #70808e;
}

.popup__text_blue {
  color: #407cab;
}

.popup__text_big {
  text-transform: uppercase;
}

.popup__hr {
  width: 100%;
  height: 1px;
  margin-block: 10px 30px;
  background: url(../images/captcha/hr.svg);
}

.popup__button {
  width: 170px;
  margin-top: 20px;
  padding: 11px 23px;
  border: none;
  border-radius: 80px;
  background-color: #1a2027;
  color: white;
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
}

.popup__decor-top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.popup__decor-bot {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 1024px) {
  .popup__body {
    max-width: 710px;
    padding: 48px 35px;
  }
  .popup__button {
    margin: 0;
  }
  .popup__hr {
    margin-block: 10px 20px;
  }
}

@media (max-width: 768px) {
  .popup__inner {
    /* padding-inline: 20px; */
  }
  .popup__body {
    width: 100%;
    padding: 48px 16px 68px;
  }

  .popup__title {
    font-size: 32px;
    margin-bottom: 22px;
  }

  .popup__hr {
    margin-block: 4px 16px;
  }

  .popup__text {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .popup__decor-top {
    top: -20px;
    left: -60px;
  }

  .popup__decor-bot {
    scale: 0.8;
    position: absolute;
    bottom: -75px;
    right: -30px;
  }

  .popup__button {
    margin-top: 14px;
  }

  .popup__title_small {
    font-size: 22px;
    line-height: 30px;
  }
}

html.is-lock {
  overflow: hidden;
}
