@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  font-size: 15px;
  line-height: normal;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}
body a {
  text-decoration: none;
  color: #1a2242;
}
body a:hover {
  color: #03cf00;
}
body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
body img {
  max-width: 100%;
}

.header-area {
  padding: 20px 0px;
}

.language-switcher-wrap {
  text-align: right;
  position: relative;
  display: inline-flex;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(226, 232, 239);
  min-height: 40px;
  min-width: 100px;
  padding: 7px 10px;
  border-radius: 5px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .language-switcher {
    min-height: 30px;
    min-width: 80px;
    padding: 5px 10px;
    font-size: 12px;
  }
}
.language-switcher .icon {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 7px;
}
.language-switcher .arrow {
  margin-left: 10px;
  height: 15px;
  width: 15px;
}

.language-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  max-width: 140px;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
  min-width: 100%;
  padding: 15px 10px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
  transform: scaleY(0);
  transform-origin: top;
  z-index: 11;
  background: #fff;
}
@media (max-width: 400px) {
  .language-dropdown {
    min-width: 130px;
  }
}
.language-dropdown.active {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}
.language-dropdown li {
  display: flex;
  align-items: center;
  min-height: 35px;
  cursor: pointer;
}
.language-dropdown li img {
  height: 20px;
  margin-right: 7px;
}

.content-area {
  padding: 100px 0px;
}
@media (max-width: 767px) {
  .content-area {
    padding: 70px 0px;
  }
}

.mhn-body {
  display: none;
}
.mhn-body:first-child {
  display: block;
}

.btn-style {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #03cf00;
  color: #fff;
  border: 1px solid #03cf00;
  font-weight: 600;
  width: 100%;
  border-radius: 5px;
  transition: all 0.4s ease-in-out 0s;
  font-size: 18px;
}
.btn-style.btn-outlined {
  background: transparent;
  color: #03cf00;
}
.btn-style:hover {
  background: transparent;
  color: #03cf00;
}
.btn-style.email-confirmed {
  background: #2f9e33;
  color: #fff;
  border-color: #2f9e33;
}
.btn-style.email-confirmed i {
  margin-right: 10px;
}
.btn-style.btn-small {
  min-width: 70px;
  min-height: 35px;
  width: unset;
  padding: 5px 15px;
  font-size: 14px;
  margin-top: 10px;
}

.logo {
  display: inline-block;
}
.logo img {
  height: 55px;
}
@media (max-width: 767px) {
  .logo img {
    height: 40px;
  }
}

.logo-wrap {
  text-align: center;
}
.logo-wrap img {
  display: inline-block;
  height: 110px;
  margin-bottom: 50px;
}
.logo-wrap .title {
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 25px;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .logo-wrap .title {
    font-size: 23px;
  }
}
.logo-wrap .info {
  font-size: 18px;
  margin-bottom: 30px;
}
.logo-wrap .info a {
  display: inline-block;
  color: #03cf00;
  text-decoration: underline;
  font-weight: 600;
}

.where-do-wrap .title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .where-do-wrap .title {
    font-size: 23px;
  }
}
.where-do-wrap .subtitle {
  text-align: center;
  margin-bottom: 30px;
}
.where-do-wrap .info {
  font-size: 18px;
  margin-bottom: 30px;
}

.country-select {
  margin-bottom: 30px;
}
.country-select .niceCountryInputMenu {
  min-height: 50px;
  border: 1px solid rgb(226, 232, 239);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 15px;
  box-sizing: border-box;
  border-radius: 5px;
}
.country-select .niceCountryInputMenu .niceCountryInputMenuDefaultText span {
  font-size: 16px;
}
.country-select .niceCountryInputMenu .niceCountryInputMenuDefaultText .niceCountryInputMenuCountryFlag {
  width: 30px;
  height: 20px;
  border: none;
  margin-left: 0;
  margin-right: 6px;
}
.country-select .niceCountryInputMenu .niceCountryInputMenuDropdown {
  min-height: 50px;
  display: flex;
  align-items: center;
}
.country-select .niceCountryInputMenu .niceCountryInputMenuDropdown span {
  font-size: 20px !important;
  color: #999;
}
.country-select .niceCountryInputMenuFilter {
  border-color: rgb(226, 232, 239);
  padding: 15px;
}
.country-select .niceCountryInputMenuFilter input {
  height: 45px;
  border: 1px solid rgb(226, 232, 239);
  padding: 5px 15px;
  border-radius: 5px;
  transition: all 0.4s ease-in-out 0s;
}
.country-select .niceCountryInputMenuFilter input:focus {
  outline: none;
  border-color: #03cf00;
}
.country-select .niceCountryInputMenuDropdownContent {
  border-color: rgb(226, 232, 239);
}
.country-select .niceCountryInputMenuDropdownContent a {
  min-height: 35px;
  padding: 4px 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out 0s;
}
.country-select .niceCountryInputMenuDropdownContent a:hover {
  background: #f1f1f1 !important;
  color: #1a2242 !important;
}

.input-style {
  margin-bottom: 30px;
}
.input-style label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.input-style input,
.input-style select {
  width: 100%;
  height: 55px;
  padding: 5px 20px;
  border: 1px solid rgb(226, 232, 239);
  transition: all 0.4s ease-in-out 0s;
  border-radius: 5px;
  background: transparent;
}
.input-style input:focus,
.input-style select:focus {
  outline: none;
  border-color: #03cf00;
  box-shadow: #03cf00 0px 0px 0px 1px;
}
.input-style .input-withicon {
  position: relative;
}
.input-style .input-withicon .doller {
  position: absolute;
  left: 10px;
  top: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  right: unset;
}
.input-style .input-withicon i,
.input-style .input-withicon span {
  position: absolute;
  right: 10px;
  top: 20px;
  cursor: pointer;
}
.input-style .input-withicon span {
  cursor: default;
}
.input-style .input-withicon input {
  padding-right: 50px;
}

.error-message {
  min-height: 30px;
  margin-bottom: 0;
  margin-top: 4px;
  background: transparent;
  color: #e74c3c;
  border-radius: 3px;
  padding: 2px 0px;
  display: flex;
  align-items: center;
}

.mhn-password {
  display: none;
}

.iti {
  width: 100%;
}

.error-message {
  display: none;
}

.mhn-password h4 {
  font-size: 24px;
  margin-bottom: 15px;
}
.mhn-password ul {
  margin-bottom: 30px;
}
.mhn-password ul li {
  display: flex;
  align-items: center;
  line-height: 30px;
}
.mhn-password ul li i {
  font-size: 20px;
  margin-right: 10px;
}
.mhn-password ul li i.fa-circle {
  color: #c5c8d0;
}
.mhn-password ul li.complete i::before {
  content: "\f058";
  color: #2f9e33;
}

.form-check {
  display: flex;
  margin-bottom: 30px;
}
.form-check input {
  margin-right: 10px !important;
  width: 20px;
  height: 20px;
}
.form-check input:focus {
  outline: none;
}
.form-check label {
  width: calc(100% - 30px);
}

.identity-verification-wrap .title {
  font-size: 30px;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .identity-verification-wrap .title {
    font-size: 23px;
  }
}
.identity-verification-wrap .mhn-verification {
  margin-bottom: 30px;
}
.identity-verification-wrap .mhn-verification p {
  margin-bottom: 0;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}
.identity-verification-wrap .mhn-verification p i {
  color: #2f9e33;
  margin-right: 5px;
  font-size: 15px;
}

.mhn-verification-top-box {
  cursor: pointer;
  position: relative;
  text-align: center;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #03cf00;
  border-radius: 5px;
}
.mhn-verification-top-box h4 {
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 600;
}
.mhn-verification-top-box h5 {
  font-size: 14px;
  color: #fff;
  font-style: italic;
  margin-bottom: 0;
}
.mhn-verification-top-box span {
  background-color: #228b22;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  line-height: 16px;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 5px;
  position: absolute;
  color: #fff;
}
.mhn-verification-top-box span::before {
  content: "";
  position: absolute;
  background-color: #228b22;
  width: 8px;
  height: 8px;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.mhn-verification-bottom-box {
  position: relative;
  text-align: center;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #03cf00;
  border-radius: 5px;
}
.mhn-verification-bottom-box h4 {
  font-size: 18px;
  text-transform: uppercase;
  color: #1a2242;
  margin-bottom: 5px;
  font-weight: 600;
}
.mhn-verification-bottom-box h5 {
  font-size: 14px;
  color: #1a2242;
  font-style: italic;
  margin-bottom: 0;
}

.lock-wrap {
  text-align: center;
}
.lock-wrap i {
  font-size: 30px;
  color: #c5c8d0;
  margin-bottom: 10px;
}

.take-photo-wrap .card {
  margin-bottom: 30px;
}
.take-photo-wrap .card.good-example {
  background: rgba(47, 158, 51, 0.05);
  border-color: rgba(47, 158, 51, 0.3);
}
.take-photo-wrap .card.bad-example {
  background: rgba(231, 76, 60, 0.05);
  border-color: rgba(231, 76, 60, 0.3);
}
.take-photo-wrap .title {
  font-size: 30px;
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 767px) {
  .take-photo-wrap .title {
    font-size: 23px;
  }
}
.take-photo-wrap .subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  text-align: center;
}
.take-photo-wrap .mhn-valid {
  text-align: center;
  margin-bottom: 30px;
}
.take-photo-wrap .mhn-valid i {
  font-size: 40px;
  color: #2f9e33;
}
.take-photo-wrap .mhn-valid p {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  color: #2f9e33;
  margin-top: 10px;
}
.take-photo-wrap .mhn-invalid {
  text-align: center;
  margin-bottom: 30px;
}
.take-photo-wrap .mhn-invalid i {
  font-size: 40px;
  color: #e74c3c;
}
.take-photo-wrap .mhn-invalid p {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  color: #e74c3c;
  margin-top: 10px;
}

.guide-invalid .single-guide-invalid {
  text-align: center;
}
.guide-invalid .single-guide-invalid h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.guide-invalid .single-guide-invalid p {
  margin-bottom: 0;
}
.guide-invalid .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.guide-invalid .slick-dots li {
  margin: 0px 3px;
  line-height: 0px;
}
.guide-invalid .slick-dots li.slick-active button {
  background: #03cf00;
  transform: scale(1.1);
}
.guide-invalid .slick-dots li button {
  width: 15px;
  height: 15px;
  font-size: 0px;
  border-radius: 50%;
  background: #c5c8d0;
  border: none;
  transition: all 0.4s ease-in-out 0s;
}

.personal-info-wrap .title {
  font-size: 30px;
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 767px) {
  .personal-info-wrap .title {
    font-size: 23px;
  }
}
.personal-info-wrap .subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  text-align: center;
}
.personal-info-wrap .card {
  margin-bottom: 30px;
}
.personal-info-wrap .card .info {
  text-align: center;
}
.personal-info-wrap .card .info h4 {
  font-size: 20px;
}
.personal-info-wrap .card .info h4 span {
  color: #c5c8d0;
}
.personal-info-wrap .card .info p {
  margin-top: 20px;
  margin-bottom: 20px;
}
.personal-info-wrap .card .info a {
  display: inline-block;
}

.upload-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 100px;
  border-radius: 5px;
  border: 2px dashed rgb(226, 232, 239);
  font-size: 18px;
  font-style: italic;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 20px;
}
.upload-wrap svg {
  height: 70px;
  margin-bottom: 10px;
}
.upload-wrap svg path {
  fill: #c5c8d0;
}

.documents-wrap {
  text-align: center;
}
.documents-wrap .title {
  font-size: 20px;
}
.documents-wrap i {
  font-size: 45px;
  margin-top: 20px;
}
.documents-wrap .success {
  color: #2f9e33;
  margin-bottom: 20px;
}
.documents-wrap .fa-lock {
  color: #c5c8d0;
  margin-bottom: 10px;
  font-size: 25px;
}

.forgot-pass {
  display: inline-block;
  color: #03cf00;
  font-weight: 600;
  margin-top: 10px;
}

.auth-wrap .title {
  font-size: 30px;
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
}
.auth-wrap .subtitle {
  font-size: 16px;
  text-align: center;
  color: rgb(100, 116, 145);
  margin-bottom: 25px;
}
.auth-wrap .input-style {
  margin-bottom: 20px;
}

.login-otp-wrap label {
  display: block;
  margin-bottom: 10px;
}
.login-otp-wrap .otp {
  display: flex;
  justify-content: space-between;
  gap: 3px;
  margin-bottom: 30px;
}
.login-otp-wrap .otp input {
  width: 60px;
  height: 60px;
  text-align: center;
  border: 1px solid #c5c8d0;
  border-radius: 5px;
  transition: all 0.4s ease-in-out 0s;
}
.login-otp-wrap .otp input:focus {
  outline: none;
  border-color: #03cf00;
}
@media (max-width: 767px) {
  .login-otp-wrap .otp input {
    width: 45px;
    height: 45px;
  }
}
.login-otp-wrap .otp input:focus {
  outline: none;
}

.dont-have-account {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}
.dont-have-account a {
  display: inline-block;
  font-weight: 600;
  text-decoration: underline;
  color: #03cf00;
}

.dashboard-featured li {
  margin-bottom: 10px;
}
.dashboard-featured li .collups-btn {
  min-height: 100px;
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  position: relative;
  border: 1px solid #c5c8d0;
  background: #fafafa;
  border-radius: 10px;
  padding: 20px 30px;
  flex-wrap: wrap;
  transition: all 0.4s ease-in-out 0s;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .dashboard-featured li .collups-btn {
    padding: 15px 20px;
    min-height: 80px;
    font-size: 18px;
  }
  .dashboard-featured li .collups-btn:hover {
    color: #1a2242;
  }
}
@media (min-width: 767px) {
  .dashboard-featured li .collups-btn:not(.success):hover {
    background: rgba(3, 207, 0, 0.15);
    border-color: #03cf00;
    color: #03cf00;
  }
  .dashboard-featured li .collups-btn:not(.success):hover svg path {
    fill: #03cf00;
  }
}
.dashboard-featured li .collups-btn:not(.success).active {
  background: rgba(3, 207, 0, 0.15);
  border-color: #03cf00;
  color: #03cf00;
}
.dashboard-featured li .collups-btn:not(.success).active svg {
  transform: translateY(-50%) rotate(180deg);
}
.dashboard-featured li .collups-btn:not(.success).active svg path {
  fill: #03cf00;
}
.dashboard-featured li .collups-btn:not(.success).active svg {
  transform: translateY(-50%) rotate(180deg);
}
.dashboard-featured li .collups-btn:not(.success).active svg path {
  fill: #03cf00;
}
.dashboard-featured li .collups-btn .label {
  width: 100%;
}
.dashboard-featured li .collups-btn.success {
  background: rgba(47, 158, 51, 0.15);
  border-color: #2f9e33;
  color: #1a2242;
}
.dashboard-featured li .collups-btn.success svg path {
  fill: #2f9e33;
}
.dashboard-featured li .collups-btn svg {
  height: 35px;
  transition: all 0.4s ease-in-out 0s;
}
.dashboard-featured li .collups-btn svg path {
  fill: #c5c8d0;
  transition: all 0.4s ease-in-out 0s;
}
.dashboard-featured li .collups-btn .badge {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0px;
  height: 30px;
  border-radius: unset;
  line-height: unset;
  white-space: unset;
  vertical-align: unset;
  width: 30px;
}
@media (max-width: 767px) {
  .dashboard-featured li .collups-btn .badge {
    right: 10px;
  }
}

.header-right-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-right-wrap .logout {
  min-height: 45px;
  min-width: 45px;
  display: inline-flex;
  align-items: center;
  background: rgba(3, 207, 0, 0.15);
  border-radius: 50%;
  justify-content: center;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .header-right-wrap .logout {
    min-height: 30px;
    min-width: 30px;
    margin-right: 7px;
  }
}
.header-right-wrap .logout:hover {
  background: #03cf00;
}
.header-right-wrap .logout:hover svg path {
  fill: #fff;
}
.header-right-wrap .logout svg {
  height: 20px;
  width: 20px;
}
@media (max-width: 767px) {
  .header-right-wrap .logout svg {
    height: 15px;
    width: 15px;
  }
}
.header-right-wrap .logout svg path {
  fill: #03cf00;
  transition: all 0.4s ease-in-out 0s;
}
.header-right-wrap .profile {
  margin-right: 30px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}
.header-right-wrap .profile svg {
  height: 18px;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .header-right-wrap .profile svg {
    margin-left: 5px;
  }
}
.header-right-wrap .profile:hover .profile-dropdown {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}
.header-right-wrap .profile .profile-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 150px;
  padding: 15px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  transform-origin: top;
  transform: scaleY(0);
  transition: all 0.4s ease-in-out 0s;
}
.header-right-wrap .profile .profile-dropdown li a {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .header-right-wrap .profile {
    margin-right: 10px;
  }
}
.header-right-wrap .profile .icon {
  min-height: 45px;
  min-width: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #03cf00;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .header-right-wrap .profile .icon {
    min-height: 30px;
    min-width: 30px;
    margin-right: 0;
    font-size: 10px;
  }
}
.header-right-wrap .profile .name {
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .header-right-wrap .profile .name {
    display: none;
  }
}

.deposit-withdrow-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.deposit-withdrow-btns li {
  width: calc(50% - 10px);
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #03cf00;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.4s ease-in-out 0s;
  color: #03cf00;
}
.deposit-withdrow-btns li.active {
  background: #03cf00;
  color: #fff;
}

.funding-form {
  margin-top: 20px;
  padding: 30px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .funding-form {
    padding: 15px;
  }
}

.funding-btns li {
  margin-bottom: 15px;
}
.funding-btns li.label {
  font-size: 16px;
  font-weight: 600;
}

.funding-wrap {
  display: none;
  margin: 20px 0;
}

.dashboard-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 30px;
}
@media (max-width: 767px) {
  .dashboard-title {
    font-size: 23px;
  }
}

.dashboard-subtitle {
  font-size: 16px;
  text-align: center;
  margin-bottom: 30px;
}

.custom-select {
  position: relative;
}
.custom-select .selected-text {
  width: 100%;
  height: 55px;
  padding: 5px 20px;
  border: 1px solid #e2e8ef;
  transition: all 0.4s ease-in-out 0s;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.custom-select .selected-text .angle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  height: 10px;
  transition: all 0.4s ease-in-out 0s;
}
.custom-select .selected-text.active {
  border-color: #03cf00;
  box-shadow: #03cf00 0px 0px 0px 1px;
}
.custom-select .selected-text.active .angle {
  transform: translateY(-50%) rotate(180deg);
}
.custom-select .selected-text img:not(.angle) {
  height: 25px;
  width: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 12px;
}
.custom-select .selected-text .name {
  font-size: 15px;
}
.custom-select .select-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 1px);
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.14);
  z-index: 11;
  padding: 15px 0px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.4s ease-in-out 0s;
}
.custom-select .select-dropdown.active {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}
.custom-select .select-dropdown li {
  min-height: 40px;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 20px;
  transition: all 0.4s ease-in-out 0s;
  margin-bottom: 0;
}
.custom-select .select-dropdown li:hover, .custom-select .select-dropdown li.active {
  background: rgba(197, 200, 208, 0.3);
}
.custom-select .select-dropdown li img {
  height: 25px;
  width: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 10px;
}

.deposit-to-select .selected-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 40px;
}
.deposit-to-select .selected-text .value {
  font-size: 15px;
  font-weight: 500;
}
.deposit-to-select .select-dropdown li {
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
}

.registation-form .title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .registation-form .title {
    font-size: 23px;
  }
}
.registation-form .subtitle {
  margin-bottom: 30px;
  text-align: center;
}
.registation-form .password-info {
  margin-bottom: 30px;
}
.registation-form ul {
  margin-bottom: 30px;
}
.registation-form ul li {
  line-height: 28px;
}

.quiz-container {
  border: 1px solid #e5e5e5;
  padding: 30px;
  border-radius: 10px;
  display: none;
  margin: 20px 0px;
}
@media (max-width: 767px) {
  .quiz-container {
    padding: 15px;
  }
}
.quiz-container .question {
  display: none;
}
.quiz-container .question .title {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
}
.quiz-container .question .subtitle {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.quiz-container .question .question-item li {
  line-height: 30px;
}
.quiz-container .question .question-item li label {
  display: flex;
  align-items: center;
}
.quiz-container .question .question-item li label input {
  width: 22px;
  height: 22px;
  margin-bottom: 0;
}
.quiz-container .question .question-item li label span {
  margin-left: 10px;
}

.navigation-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.navigation-buttons li {
  width: calc(50% - 20px);
}
@media (max-width: 767px) {
  .navigation-buttons li {
    width: calc(50% - 10px);
  }
}
.navigation-buttons li .btn-style {
  min-height: 40px;
  font-size: 14px;
  cursor: pointer;
}
.navigation-buttons li .btn-style.prev {
  border-color: #03cf00;
  background: transparent;
  color: #03cf00;
}

.dashboard-verification-wrap {
  border: 1px solid #e5e5e5;
  padding: 30px;
  border-radius: 10px;
  display: none;
  margin: 20px 0px;
}
@media (max-width: 767px) {
  .dashboard-verification-wrap {
    padding: 15px;
  }
}

.support-wrapper {
  position: fixed;
  right: 15px;
  bottom: 30px;
  z-index: 120;
}
.support-wrapper .support-trigger {
  min-height: 70px;
  min-width: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #03cf00;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.support-wrapper .support-trigger svg {
  height: 30px;
  width: 30px;
}
.support-wrapper .support-trigger svg path {
  fill: #fff;
}
.support-wrapper .support-info {
  position: absolute;
  right: 5px;
  bottom: calc(100% + 15px);
  min-width: 220px;
  padding: 25px;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
}
.support-wrapper .support-info.active {
  visibility: visible;
  opacity: 1;
}
.support-wrapper .support-info::before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #e5e5e5;
  bottom: -10px;
  content: "";
  right: 10px;
  position: absolute;
}
.support-wrapper .support-info .user {
  display: inline-block;
  min-height: 70px;
  min-width: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  margin-bottom: 10px;
}
.support-wrapper .support-info .user svg {
  height: 25px;
}
.support-wrapper .support-info .name,
.support-wrapper .support-info .email {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.support-wrapper .support-info a {
  display: block;
  font-size: 15px;
  color: #03cf00;
  margin-bottom: 15px;
}

.account-wrapper {
  padding: 30px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  margin: 20px 0px;
  display: none;
}
@media (max-width: 767px) {
  .account-wrapper {
    padding: 15px;
  }
}
.account-wrapper .balance {
  margin-bottom: 15px;
}
.account-wrapper .balance h4 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
  font-weight: 600;
}
.account-wrapper .balance h4 span {
  margin-left: 10px;
  font-weight: 300;
  font-size: 12px;
  position: relative;
}
.account-wrapper .balance h4 span .edit {
  position: absolute;
  right: -10px;
  top: -10px;
  cursor: pointer;
  display: inline-block;
  min-height: 15px;
  min-width: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 5px;
  border-radius: 50%;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background: #2f9e33;
}
.account-wrapper .balance h4 span .edit svg {
  height: 10px;
}
.account-wrapper .balance h4 span .edit svg path {
  fill: #fff;
}
.account-wrapper .balance .account {
  display: inline-block;
  font-size: 12px;
  color: #444;
}
.account-wrapper .account-info {
  margin-bottom: 15px;
}
.account-wrapper .account-info li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 26px;
  margin-bottom: 0;
  color: #444;
}
.account-wrapper .manage-account {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.account-wrapper .manage-account li {
  margin-bottom: 0;
}
.account-wrapper .manage-account li span {
  display: block;
  color: #444;
}
.account-wrapper .manage-account li span.label {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
}
.account-wrapper .manage-account li span.value {
  font-size: 15px;
  font-weight: 600;
}
.account-wrapper .manage-account li.right {
  text-align: right;
}
.account-wrapper .progress {
  margin-top: 20px;
  height: 10px;
  padding: 2px;
}
.account-wrapper .progress .progress-bar {
  border-radius: 8px;
  background: #03cf00;
}

.authorize-wrapper {
  padding: 30px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  margin: 20px 0px;
  display: none;
}
@media (max-width: 767px) {
  .authorize-wrapper {
    padding: 15px;
  }
}

.badge-show {
  min-height: 28px;
  min-width: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 14px !important;
  color: #fff;
  font-weight: 600 !important;
}

.badge-edit {
  width: 80px;
  min-height: 28px;
  padding: 5px;
  border: none;
  border-radius: 4px;
  transition: all 0.4s ease-in-out 0s;
  display: none;
  background: transparent;
  color: #fff;
}
.badge-edit:focus {
  outline: none;
  border-color: #03cf00;
}

.or-text {
  position: relative;
  margin: 30px 0px;
  text-align: center;
}
.or-text span {
  display: inline-block;
  background: #fff;
  padding: 5px 10px;
  z-index: 11;
  position: relative;
}
.or-text::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background: #e5e5e5;
  width: 100%;
  height: 1px;
}

.social-login {
  padding-bottom: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
}
.social-login li {
  margin-bottom: 15px;
}
.social-login li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  min-width: 100%;
  border: 2px solid transparent;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border-radius: 5px;
}
.social-login li a svg {
  height: 25px;
  margin-right: 15px;
}
.social-login li a svg path {
  fill: #fff;
  transition: all 0.4s ease-in-out 0s;
}
.social-login li a.facebook {
  border-color: #1877f2;
  color: #1877f2;
}
.social-login li a.facebook svg path {
  fill: #1877f2;
}
.social-login li a.facebook:hover {
  background: #1877f2;
  color: #fff;
}
.social-login li a.facebook:hover svg path {
  fill: #fff;
}
.social-login li a.google {
  border-color: #db4437;
  color: #db4437;
}
.social-login li a.google svg path {
  fill: #db4437;
}
.social-login li a.google:hover {
  background: #db4437;
  color: #fff;
}
.social-login li a.google:hover svg path {
  fill: #fff;
}

.next-prev-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.next-prev-wrapper li {
  width: 48%;
}
.next-prev-wrapper li button.mhn-prev {
  background: transparent;
  color: #03cf00;
}

.copyright {
  font-size: 16px;
  text-align: center;
  margin-top: 40px;
}

.deposit-card .card-title {
  font-size: 24px;
  text-align: center;
}
.deposit-card .info {
  text-align: center;
  font-size: 18px;
  margin-bottom: 30px;
}

.desposit-item {
  margin-bottom: 10px;
}
.desposit-item .title {
  min-height: 100px;
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  position: relative;
  border: 1px solid #c5c8d0;
  background: #fafafa;
  border-radius: 10px;
  padding: 20px 30px;
  flex-wrap: wrap;
  transition: all 0.4s ease-in-out 0s;
  justify-content: space-between;
  cursor: pointer;
}
.desposit-item .title[aria-expanded=true] {
  background: rgba(3, 207, 0, 0.15);
  border-color: #03cf00;
  color: #03cf00;
}
.desposit-item .title[aria-expanded=true] svg {
  transform: translateY(-50%) rotate(180deg);
}
.desposit-item .title[aria-expanded=true] svg path {
  fill: #03cf00;
}
.desposit-item .title:hover {
  background: rgba(3, 207, 0, 0.15);
  border-color: #03cf00;
  color: #03cf00;
}
.desposit-item .title:hover svg path {
  fill: #03cf00;
}
.desposit-item .title svg {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 30px;
  transition: all 0.4s ease-in-out 0s;
}
.desposit-item .title svg path {
  fill: #c5c8d0;
  transition: all 0.4s ease-in-out 0s;
}
.desposit-item .desposit-body {
  text-align: center;
  border: 1px solid #e5e5e5;
  padding: 30px;
  border-radius: 10px;
  margin: 20px 0px;
}
.desposit-item .desposit-body .qrcode-wrap {
  padding: 25px;
  max-width: 70%;
  margin: auto auto 10px;
}
.desposit-item .desposit-body .label {
  font-size: 18px;
  font-weight: 600;
}
.desposit-item .desposit-body .address {
  font-size: 16px;
  margin-bottom: 20px;
}
.desposit-item .desposit-body .copyButton {
  margin-top: 25px;
  background: transparent;
  color: #03cf00;
  border-color: #03cf00;
}
.desposit-item .desposit-body .copyButton i {
  margin-right: 10px;
}

.token-wrap {
  background: #f5f5f5;
  padding: 20px 25px;
  border-radius: 7px;
  text-align: center;
  margin-bottom: 20px;
}
.token-wrap h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 3px;
}
.token-wrap h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

.theme-toggle {
  background: rgba(3, 207, 0, 0.1);
  color: #03cf00;
  min-height: 45px;
  min-width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .theme-toggle {
    min-height: 30px;
    min-width: 30px;
    margin-right: 7px;
  }
}

.dark {
  background: #121212;
  color: #fff;
}
.dark .mhn-container {
  border-color: #363636;
}
.dark .language-switcher {
  border-color: #363636;
}
.dark .language-switcher .arrow path {
  fill: #fff;
}
.dark .language-dropdown {
  background: #363636;
}/*# sourceMappingURL=style.css.map */