.captcha {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100001;
  background: #0009;
  backdrop-filter: blur(4px);
}

.captcha__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 24px;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.captcha__subtitle {
  text-align: center;
  margin-bottom: 20px;
}

.captcha-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #181818;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 450px;
  height: 200px;
}

.slider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(100% - 40px);
  height: 40px;
  background: #ddd;
  border-radius: 20px;
  overflow: hidden;
  user-select: none;
}

.slider-handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 40px;
  height: 40px;
  background: #ff9549;
  border-radius: 50%;
  top: 0;
  left: 0;
  transition: left 0.3s;
  user-select: none;
  cursor: pointer;
}

.slider-handle svg {
  width: 16px;
  height: 16px;
  object-fit: contain;
  fill: #fff;

}

.slider-handle svg path.lock {
  display: block;
  transition: all .2s ease-in-out;
}

.slider-handle svg path.unlock {
  display: none;
  transition: all .2s ease-in-out;
}

.slider-handle.success svg path.lock {
  display: none;
}

.slider-handle.success svg path.unlock {
  display: block;
}

.slider-text {
  position: absolute;
  width: 100%;
  line-height: 40px;
  color: #555;
  font-size: 16px;
  user-select: none;
  height: 100%;
}

.success {
  background: #4CAF50 !important;
}

@media(max-width: 767px) {
  .captcha-container {
    width: calc(100% - 30px);
  }

  .slider-text {
    font-size: 12px;
  }
}

@media(max-width: 326px) {
  .slider {
    width: calc(100% - 30px);
    height: 30px;
  }

  .slider-handle {
    width: 30px;
    height: 30px;
  }

  .slider-text {
    font-size: 10px;
    line-height: 30px;
  }

  .captcha__subtitle {
    font-size: 12px;
  }

  .captcha__title {
    font-size: 21px;
    line-height: 21px;
  }

}