body.modal-is-open {
  overflow: hidden;
}

.slide-wheel-parent {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to right, #19293db9, #19293d);
  z-index: 1000000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  display: none;
}

.slide-wheel-parent.slide-open {
  display: flex;
}

.captcha-close-button {
  padding: 8px;
  position: absolute !important;
  top: 5px;
  right: 5px;
  cursor: pointer;
}

.simple-captcha-verification {
  padding: 30px;
  text-align: center;
}

.simple-captcha-verification p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

.check-mark {
  margin: 20px auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wheel-wrapper {
  background: linear-gradient(45deg, #5729da, #1e124f);
  width: 650px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 30px;
  padding-bottom: 20px;
  text-align: center;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.wheel-wrapper * {
  z-index: 2;
}

* {
  font-family: verdana, arial, sans-serif;
}

.are-you-human-slide-wrapper {
  width: 100%;
  margin: auto;
  margin-top: 0px;
  padding: 0px 0;
}

.are-you-human-slide-wrapper h5 {
  line-height: 30px;
  color: #fff;
}

/* css */
.are-you-human-wrapper {
  color: #fff;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.are-you-human-wrapper .dcontent {
  display: flex;
  align-items: center;
  justify-content: left;
  /* background: #5645FF; */
  border-radius: 10px;
  /* border: 1px solid rgba(255, 255, 255, 0.4); */
  width: 100%;
}

.are-you-human-wrapper label {
  color: #fff;;
  margin-bottom: 0px;
}

.are-you-human-wrapper .are-you-human-button {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgb(228 228 228);
  background: rgba(255, 255, 255, 0.1);
  margin-left: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  flex: none;
}

.are-you-human-wrapper .are-you-human-button.checked {
  border: 1px solid rgb(25, 163, 32);
}

.are-you-human-wrapper .are-you-human-button .are-you-human-result {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #b5ecb8;
  display: none;
}

.are-you-human-wrapper .are-you-human-button.checked .are-you-human-result {
  display: flex;
}

.are-you-human-wrapper .are-you-human-button .are-you-human-result img {
  width: 60%;
}

.are-you-human-message {
  text-align: center;
  display: none;
  background: rgb(167, 50, 50);
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.are-you-human-message.show {
  display: block;
}

.wheel-wrapper .check-captcha-button {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  width: 100%;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  z-index: 4;
  position: relative;
  margin-top: 20px;
}

.wheel-wrapper .check-captcha-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.captcha-is-wrong-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgb(157 157 157 / 77%);
  z-index: 1000000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.captcha-is-wrong-modal-wrapper.close {
  display: none;
}

.captcha-is-wrong-modal {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  background: #2a2626;
  border-radius: 20px;
  color: #fff;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 100000;
  text-align: center;
}

.captcha-is-wrong-modal-ok {
  padding: 6px 20px;
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #e39b1f;
  text-align: center;
  display: block;
  margin-top: 10px;
  cursor: pointer;
}

/******************************************/
#message-after-email {
  width: 100%;
  position: fixed;
  top: 50%;
  z-index: 10000;
  max-width: 600px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  color: #fff;
  background: #5623d8;
  border-radius: 20px;
  overflow: hidden;
}

#message-after-email #image-captcha-success-result-message {
  background: #5623d8;
  padding: 40px 40px;
  color: #fff;
}

#message-after-email .tcm-close {
  position: absolute;
  top: 10px;
  right: 10px;
}

#message-after-email #image-captcha-success-result-message p {
  color: #fff;
}

@media only screen and (max-width: 900px) {
  .wheel-wrapper {
    width: calc(100% - 40px);
    max-width: 340px;
  }

  .are-you-human-slide-wrapper h5 {
    font-size: 18px !important;
    line-height: 22px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 30px;
  }
}