@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  min-width: 320px;
  position: relative;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  color: var(--text-color);
  background-color: rgb(15, 19, 37);
  min-height: 100vh;
  -webkit-appearance: none;
  width: 100vw;
}
body.stop {
  overflow: hidden;
}

textarea, input {
  font-family: "Roboto", "Open Sans", "Poppins", Arial, sans-serif;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
  color: red;
}

body input:required:valid,
body textarea:required:valid {
  color: green;
}

section {
  margin: 0 auto;
}
section.main {
  max-width: 1000px;
  padding: 40px 20px;
}
section.main .section {
  margin: 0 auto;
}
section.main .section .top_text {
  text-align: center;
}
section.main .section .top_text h1 {
  font-size: 36px;
  font-weight: 500;
  color: #fff;
}
section.main .section .top_text h2 {
  font-size: 18px;
  color: #999;
  font-weight: 400;
}
section.main .section .form {
  margin: 35px auto 25px;
  width: 100%;
  border-radius: 30px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 0.2);
          box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 0.2);
  padding: 20px;
  background-color: #0f1325;
  max-width: 650px;
}
section.main .section .form .input {
  position: relative;
}
section.main .section .form .input input[type=text],
section.main .section .form .input input[type=number] {
  background-color: #272b3b;
  width: 100%;
  border-radius: 30px;
  border: 0;
  color: #fff;
  font-size: 16px;
}
section.main .section .form .input.input_nickname {
  width: 100%;
  position: relative;
}
section.main .section .form .input.input_nickname .question:hover + .quest_hidden {
  display: block;
}
section.main .section .form .input.input_nickname .quest_hidden {
  position: absolute;
  background-color: #222;
  border-radius: 10px;
  right: 0;
  top: 55px;
  padding: 10px 10px;
  z-index: 1;
  width: 324px;
  display: none;
}
section.main .section .form .input.input_nickname .quest_hidden.active {
  display: block;
}
section.main .section .form .input.input_nickname .quest_hidden img {
  width: 100%;
  position: static;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 5px;
}
section.main .section .form .input.input_nickname .quest_hidden p {
  color: #fff;
  font-size: 14px;
}
section.main .section .form .input.input_nickname .error {
  color: #ff5867;
  padding-left: 10px;
  padding-top: 5px;
}
section.main .section .form .input.input_nickname img {
  position: absolute;
  width: 30px;
  height: 30px;
}
section.main .section .form .input.input_nickname img:nth-child(1) {
  overflow: hidden;
  border-radius: 50%;
  left: 20px;
  top: 15px;
  width: 40px;
  height: 40px;
}
section.main .section .form .input.input_nickname img.circle {
  left: 25px;
  top: 20px;
  width: 30px;
  height: 30px;
}
section.main .section .form .input.input_nickname img.question {
  right: 25px;
  top: 20px;
  cursor: pointer;
}
section.main .section .form .input.input_nickname input[type=text] {
  height: 72px;
  padding-right: 100px;
  text-indent: 0;
  padding-left: 72px;
}
section.main .section .form .inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 24px;
}
section.main .section .form .inputs span {
  display: block;
  width: 100%;
  color: #fff;
  padding-top: 10px;
  color: #b7b7b7;
}
section.main .section .form .inputs button {
  background-color: transparent;
  border: transparent;
  cursor: pointer;
}
section.main .section .form .inputs button img {
  width: 25px;
}
section.main .section .form .inputs .input {
  position: relative;
  width: calc(50% - 25px);
}
section.main .section .form .inputs .input:nth-child(1) img {
  left: 25px;
  top: 12px;
}
section.main .section .form .inputs .input:nth-child(3) img {
  right: 25px;
  top: 12px;
}
section.main .section .form .inputs .input:nth-child(3) input {
  text-align: right;
  text-indent: 0;
  padding-right: 72px;
}
section.main .section .form .inputs .input img {
  position: absolute;
  width: 25px;
}
section.main .section .form .inputs .input input {
  height: 52px;
  text-indent: 72px;
}
section.main .section .form .sender {
  background-color: #605fff;
  border: 0;
  width: 100%;
  color: #fff;
  border-radius: 30px;
  padding: 0 20px;
  font-size: 18px;
  font-weight: 600;
  min-height: 55px;
  max-height: 55px;
  margin-top: 10px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: flex
;
    justify-content: center;
    align-items: center;
}
section.main .section .form .sender:hover {
  opacity: 0.8;
}
section.main .section .form .sender:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
section.main .section .form .sender_tbank {
  background-color: #605fff;
  border: 0;
  width: 100%;
  color: #fff;
  border-radius: 30px;
  padding: 0 20px;
  font-size: 18px;
  font-weight: 600;
  min-height: 55px;
  max-height: 55px;
  margin-top: 10px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: flex
;
    justify-content: center;
    align-items: center;
}
section.main .section .form .sender_tbank:hover {
  opacity: 0.8;
}
section.main .section .form .sender_tbank:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
section.main .section .form .sender_tbank img {
    width: 29px;
    margin-left: 15px;
}
section.main .section .form .sender img {
    width: 40px;
    margin-left: 15px;
}
section.main .section .form .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 15px;
}
section.main .section .form .group .item {
  width: calc(33% - 3px);
  margin-bottom: 6px;
  background-color: #272b3b;
  padding: 19px 12px;
  border-radius: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
section.main .section .form .group .item:hover {
  background-color: #3a3d49;
}
section.main .section .form .group .item.active {
  background-color: #605fff;
}
section.main .section .form .group .item span {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
section.main .section .form .group .item img {
  width: 30px;
  position: absolute;
  left: 15px;
  top: 18px;
}
section.main .section .form .group .item p {
  position: absolute;
  color: #fff;
  right: 10px;
  top: 5px;
  font-size: 12px;
}
section.main .section .link_bot {
  background-color: #605fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 20px;
  border-radius: 15px;
  max-width: 650px;
  margin: 0 auto;
  margin-top: 30px;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.main .section .link_bot .tiger {
  width: 100px;
}
section.main .section .link_bot .text {
  padding-left: 15px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
section.main .section .link_bot .text span {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  display: block;
}
section.main .section .link_bot .text h3 {
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  color: #e0e0e0;
}
section.main .section .tabs {
  margin-top: 60px;
}
section.main .section .tabs .tabs_top {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
section.main .section .tabs .tabs_top span {
  font-size: 24px;
  font-weight: 500;
}
section.main .section .tabs .tab {
  margin-bottom: 20px;
}
section.main .section .tabs .tab.active .tab_top img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
section.main .section .tabs .tab .tab_top {
  background-color: #1f1e54;
  border-radius: 15px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
section.main .section .tabs .tab .tab_top img {
  width: 40px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
section.main .section .tabs .tab .tab_top h3 {
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 400;
}
section.main .section .tabs .tab .tab_body {
  display: none;
}
section.main .section .tabs .tab .tab_body div {
  background-color: #4947bd;
  border-radius: 15px;
  margin-top: 8px;
  color: #fff;
  padding: 20px;
}
section.main .section .tabs .tab .tab_body div a {
  color: #fff;
}

footer .section {
  max-width: 1000px;
  padding: 10px 20px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .section .footer_info span {
  display: block;
  color: #717171;
  font-size: 14px;
  line-height: 16px;
}
footer .section .footer_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .section .footer_right a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-left: 15px;
  height: 20px;
  cursor: pointer;
}
footer .section .footer_right a img {
  width: 20px;
  fill: #fff;
}

.overlay {
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.overlay.active {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, 0.7);
}

.modal {
  display: none;
  -webkit-box-shadow: 0px 0px 19px 0px rgba(255, 255, 255, 0.3);
          box-shadow: 0px 0px 19px 0px rgba(255, 255, 255, 0.3);
  z-index: 10;
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #0f1325;
  border-radius: 30px;
  padding: 20px;
}
.modal.modal_success {
  padding: 20px 30px;
}
.modal.modal_success .modal_body {
  padding: 20px 0;
  text-align: center;
}
.modal.modal_success .modal_body lottie-player {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
}
.modal.modal_success .modal_body img {
  width: 250px;
}
.modal.modal_success .modal_body span {
  display: block;
  text-align: center;
  color: #fff;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}
.modal.modal_success .modal_body p {
  color: #b7b7b7;
}
.modal.modal_success .modal_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.modal.modal_success .modal_top .close {
  font-size: 30px;
  cursor: pointer;
  color: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
  top: -9px;
  left: -5px;
}
.modal.modal_contact .modal_top {
    widtuh: 100%;
    position: relative;
}
.modal.modal_contact .modal_top .close {
  font-size: 30px;
  cursor: pointer;
  color: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -9px;
  position: absolute;
    right: 10px;
    width: fit-content;
    left: auto;
}
.modal.modal_success .modal_top .modal_top_text span {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}
.modal.modal_success .modal_top .modal_top_text a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  font-size: 16px;
}
.modal.modal_success .modal_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal.modal_success .modal_footer button {
  background-color: #605fff;
  border: 0;
  width: calc(50% - 10px);
  color: #fff;
  border-radius: 30px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 600;
  min-height: 55px;
  max-height: 55px;
  margin-top: 10px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal.modal_success .modal_footer button.white {
  background-color: #fff;
  color: #605fff;
}
.modal.modal_success .modal_footer button i {
  display: block;
  margin-left: 10px;
}
.modal.modal_success .modal_footer button:hover {
  opacity: 0.8;
}
.modal.modal_contact {
  max-width: 450px;
  text-align: center;
}
.modal.modal_contact button {
  background-color: #605fff;
  border: 0;
  width: 100%;
  color: #fff;
  border-radius: 30px;
  padding: 0 20px;
  font-size: 18px;
  font-weight: 600;
  min-height: 55px;
  max-height: 55px;
  margin-top: 10px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.modal.modal_contact button:hover {
  opacity: 0.8;
}
.modal.modal_contact img {
  display: inline-block;
  width: 150px;
}
.modal.modal_contact span {
  display: block;
  text-align: center;
  color: #fff;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}
.modal.modal_contact a {
  margin-bottom: 5px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  color: #625dfe;
  display: block;
}
.modal.modal_contact a:hover {
  text-decoration: underline;
}
.modal.modal_success {
  max-width: 550px;
}
.modal.active {
  display: block;
}

@media only screen and (max-width: 768px) {
  section.main {
    padding: 40px 0;
  }
  .modal {
      margin: auto 10px;
  }
  section.main .section .top_text {
    padding: 0 15px;
  }
  section.main .section .top_text h1 {
    font-size: 20px;
  }
  section.main .section .link_bot {
    margin: 0 10px;
    padding: 10px 10px;
  }
  section.main .section .link_bot .tiger {
    width: 80px;
  }
  section.main .section .link_bot .text span {
    font-size: 16px;
  }
  section.main .section .link_bot .text h3 {
    line-height: 17px;
    font-size: 14px;
  }
  section.main .section .tabs {
    margin: 60px 10px auto;
  }
  section.main .section .form {
    margin: 35px 10px 60px;
    width: calc(100% - 20px);
  }
  section.main .section .form .input.input_nickname .quest_hidden img {
    height: 221px;
  }
  section.main .section .form .group .item img {
    width: 22px;
    top: 23px;
    left: 10px;
  }
  section.main .section .form .group .item span {
    margin-left: 10px;
  }
  footer .section {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .section .footer_info {
    text-align: center;
    width: 100%;
  }
  footer .section .footer_right {
    width: 100%;
    padding-bottom: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .section .footer_right a {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
    text-align: center;
  }
}
.input-error {
  border: 2px solid #ff5867 !important;
}

.clear-nickname {
  display: none;
  cursor: pointer;
  position: absolute;
  right: 72px;
  top: 36px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 37px;
  color: #bbb;
  z-index: 2;
}

.input_nickname {
  position: relative;
}
.tabs_pages {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.tabs_pages .tab {
    width: calc(50% - 10px);
    text-align: center;
    color: #fff;
    padding: 15px 0;
    border-radius: 13px;
    cursor: pointer;
    background-color: #171b2e;
}
.tabs_pages .tab.active {
        background-color: #605fff;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}