@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans&display=swap");
html {
  font-family: "Open Sans", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth !important;
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  touch-action: manipulation;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 4 */
  -ms-overflow-style: scrollbar;
  /* 5 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /**
  * html root rules
  * 1. set border-box for inheritance
  * 2. avoid 300ms click delay on touch devices that support the `touch-action`
  * CSS property
  * 3. Prevent adjustments of font size after orientation changes in IE, on
  * Windows Phone and iOS.
  * 4. Setting @viewport causes scrollbars to overlap content in IE11 and Edge,
  * so we force a non-overlapping, non-auto-hiding scrollbar to counteract.
  * 5. Change the default tap highlight to be completely transparent in iOS.
  */
  overflow: scroll;
  overflow-x: hidden;
}
html::-webkit-scrollbar {
  width: 0;
  /* Remove scrollbar space */
  background: transparent;
  /* Optional: just make scrollbar invisible */
}

.no-tap-color {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background: transparent;
  text-decoration: none;
}
a:visited {
  color: #23262f;
}

a:active,
a:hover {
  outline: 0;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
html input[type=button],
input[type=reset],
input[type=submit],
input[type=password],
input[type=email] {
  -webkit-appearance: button;
  box-sizing: border-box;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

textarea {
  overflow: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/** 
 * ===================================================================
 * 02. basic/base setup styles 
 *
 * ------------------------------------------------------------------- 
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-weight: normal;
  line-height: 1;
  text-rendering: optimizeLegibility;
  word-wrap: break-word;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: none;
}

body,
input,
button {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/**
   * Media 
   * ------------------------------------------------------------------- 
   */
img,
video {
  max-width: 100%;
  height: auto;
}

/**
   * Typography resets 
   * ------------------------------------------------------------------- 
   */
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 60%;
  line-height: inherit;
}

ol,
ul {
  list-style: none;
}

li {
  display: block;
}

/**
   * Links
   * ------------------------------------------------------------------- 
   */
a {
  text-decoration: none;
  line-height: inherit;
}

a img {
  border: none;
}

/**
   * Inputs 
   * ------------------------------------------------------------------- 
   */
fieldset {
  margin: 0;
  padding: 0;
}

input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

/**
   * flex box
   * --------------------------------------------------------------- 
   */
.flex-container {
  display: flex;
  justify-content: center;
}

.flex-start-container {
  display: flex;
  justify-content: flex-start;
}

.flex-end-container {
  display: flex;
  justify-content: flex-end;
}

/**
   * Misc Helper Styles 
   */
.hide {
  display: none;
}

.invisible {
  visibility: hidden;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.remove-bottom {
  margin-bottom: 0;
}

.half-bottom {
  margin-bottom: 1.5rem !important;
}

.add-bottom {
  margin-bottom: 3rem !important;
}

.no-border {
  border: none;
}

.full-width {
  width: 100%;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.uppercase {
  text-transform: uppercase;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.washed-text {
  color: #777e90;
}

.small-img {
  width: 22px !important;
  height: 22px !important;
}

.small-wide-img {
  width: 50px !important;
  height: 22px !important;
}

.capitalize {
  text-transform: capitalize;
}

body::-webkit-scrollbar {
  width: 0.5rem;
  border-radius: 10px !important;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: #a8a8a8;
}
html {
  font-size: 16px;
}

body {
  background: #ffffff;
  font-size: "normal";
}
body .bg-elements {
  z-index: -1;
  position: absolute;
  width: 100%;
  padding-top: 5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
body .bg-elements .left-element {
  left: 0;
  width: 15%;
  padding-top: 10rem;
}
body .bg-elements .right-element {
  right: 0;
  width: 15%;
}
body .body-bg {
  padding: 2rem 1rem;
  position: relative;
}
body .body-bg header .logo-wrapper {
  padding-bottom: 3rem;
}
body .body-bg header .logo-wrapper .logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 131.27px;
  height: 38px;
}
body .body-bg .content {
  position: relative;
}
body .body-bg .content .bg-shapes {
  position: absolute;
  z-index: -1;
}
body .body-bg .content .bg-shapes .bg-red {
  margin-left: 1.5rem;
}
body .body-bg .content .bg-shapes .bg-blue {
  margin-left: -2.5rem;
}
body .body-bg .title {
  padding: 1.5rem 0 3rem 0;
  line-height: 28px;
}
body .body-bg .main-form .bg-blob {
  display: none !important;
  top: 12rem;
  position: absolute;
  height: 520px;
  width: 100%;
  overflow-y: visible;
}
body .body-bg .main-form .bg-blob .right-green-blob,
body .body-bg .main-form .bg-blob .right-red-blob {
  height: 5rem !important;
}
body .body-bg .main-form .bg-blob .right-blob {
  background: rgba(255, 61, 0, 0.1);
  filter: blur(200px);
}
body .body-bg .main-form .bg-blob .left-blob {
  background: rgba(0, 117, 255, 0.1);
  filter: blur(200px);
}
body .body-bg .main-form .wrapper {
  position: relative;
}
body .body-bg .main-form .wrapper .input-field:not(:-moz-placeholder-shown) ~ .input-label {
  transform: translateY(-30px);
  font-size: 12px;
}
body .body-bg .main-form .wrapper .input-field:not(:-ms-input-placeholder) ~ .input-label {
  transform: translateY(-30px);
  font-size: 12px;
}
body .body-bg .main-form .wrapper .input-field:focus ~ .input-label,
body .body-bg .main-form .wrapper .input-field:not(:placeholder-shown) ~ .input-label {
  transform: translateY(-30px);
  font-size: 12px;
}
body .body-bg .main-form .wrapper input[type=email],
body .body-bg .main-form .wrapper input[type=password],
body .body-bg .main-form .wrapper input[type=text] {
  position: relative;
  margin-bottom: 1rem;
  width: 100%;
  height: 3rem;
  padding-left: 1rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: ease-in-out 0.2s all;
}
body .body-bg .main-form .wrapper input[type=email]:focus,
body .body-bg .main-form .wrapper input[type=password]:focus,
body .body-bg .main-form .wrapper input[type=text]:focus {
  outline: none !important;
  border: 1px solid #2f80ed;
}
body .body-bg .main-form .wrapper .input-label {
  pointer-events: none;
  position: absolute;
  background-color: #ffffff;
  display: inline-block;
  left: 10px;
  top: 1rem;
  padding: 0 10px;
  color: #777e90;
  transition: ease-in-out 0.2s all;
}
body .body-bg .main-form .wrapper .password-eye,
body .body-bg .main-form .wrapper .confirm-password-eye {
  position: absolute;
  right: 1.5rem;
  padding-top: 0.7rem;
  cursor: pointer;
}
body .body-bg .main-form .wrapper #visibility-off {
  display: none;
}
body .body-bg .main-form .wrapper #confim-visibility-off {
  display: none;
}
body .body-bg .main-form input[type=checkbox] {
  background: #ffffff;
  margin-top: 7px;
}
body .body-bg .main-form .read-text {
  padding-left: 8px;
  font-size: 14px;
  line-height: 24px;
  color: #777e90;
}
body .body-bg .main-form .read-text a.links {
  color: #2f80ed;
}
body .body-bg .main-form input::-moz-placeholder {
  line-height: 28px;
  color: #777e90;
}
body .body-bg .main-form input:-ms-input-placeholder {
  line-height: 28px;
  color: #777e90;
}
body .body-bg .main-form input::placeholder {
  line-height: 28px;
  color: #777e90;
}
body .body-bg .main-form a.submit {
  display: inline-block;
  border: none;
  padding: 16px 24px;
  width: 100%;
  background: #2f80ed;
  border-radius: 8px;
  color: #fcfcfd;
  margin-top: 32px;
  line-height: 16px;
  font-family: "DM Sans", "Helvetics", "Roboto", "Arial", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 800px) {
  body .bg-elements .left-element {
    left: 0;
    padding-top: 0rem;
  }
  body .bg-elements .right-element {
    right: 0;
  }

  header .logo-wrapper .logo {
    margin-left: 40px !important;
  }

  .main-form .bg-blob {
    display: block !important;
  }
  .main-form .bg-blob .right-green-blob,
.main-form .bg-blob .right-red-blob {
    height: 5rem !important;
  }

  .content {
    max-width: 540px;
    margin: 0 auto;
  }
  .content .title {
    font-size: 36px;
    line-height: 48px;
  }
  .content form {
    padding: 0 5rem;
  }
}
.navbar {
  padding: 1rem;
  background: #f5f6fc;
  border-radius: 0 0 15px 15px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
}
.navbar .menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.navbar .menu .hamburger {
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.navbar .menu .hamburger .hamburger-menu {
  width: 28px;
  height: 3px;
  background-color: #000000;
  transition: all 0.5s ease-in-out;
}
.navbar .menu .hamburger .hamburger-menu::before,
.navbar .menu .hamburger .hamburger-menu::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 3px;
  background-color: #000000;
  transition: all 0.5s ease-in-out;
}
.navbar .menu .hamburger .hamburger-menu::before {
  transform: translateY(6px);
}
.navbar .menu .hamburger .hamburger-menu::after {
  transform: translateY(12px);
}
.navbar .menu ul {
  display: flex;
}
.navbar .menu ul .nav-item {
  cursor: pointer;
  padding: 0 10px;
  border-right: 1px solid #e3e3e3;
}
.navbar .menu ul .nav-item:first-child .notification-dot {
  display: none;
  position: absolute;
  margin-left: -10px;
  border: 6px solid #ff0000;
  border-radius: 50%;
}
.navbar .menu ul .nav-item:first-child .notification-dot.active {
  display: inline-block;
}
.navbar .menu ul .nav-item:last-child {
  border-right: none;
  margin-top: 5px;
}
.navbar .menu ul .nav-item span.avatar {
  align-items: center;
  margin-top: 15px;
  padding: 10px;
  background-color: #64acef;
  border: 1px solid #2f80ed;
  font-style: "normal";
  font-weight: bold;
  font-size: 13px;
  text-align: center;
  color: #001b7a;
  border-radius: 2px;
}
.navbar .menu ul .nav-item img.span {
  position: absolute;
  height: 15px;
  width: 15px;
  background-color: #ff0000;
  border-radius: 50%;
}
.navbar .menu .title {
  color: #333333;
  font-size: 24px;
  margin-top: 0.3rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.navbar .menu .avatar {
  background-color: #64acef;
  border: 1px solid #2f80ed;
  border-radius: 2px;
  color: #001b7a;
  font-weight: bold;
  font-size: 13px;
  line-height: 16px;
  padding: 0.4em;
}

.back-to-top {
  z-index: 25;
  visibility: hidden;
  position: fixed;
  height: 3rem;
  width: 3rem;
  top: 90%;
  right: 5%;
  background-color: #2f80ed;
  border-radius: 50%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.back-to-top .arrow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 32px;
  color: #ffffff;
  transform: rotate(-88deg);
}

.left-nav {
  display: none;
  background: #ffffff;
  border-right: 1px solid #d7d7d6;
  z-index: 20;
}
.left-nav .desktop-menu-bar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.left-nav .desktop-menu-bar .desktop-menu-logo {
  background: #ffffff;
  padding: 29px 22px;
  border-bottom: 1px solid #d7d7d6;
}
.left-nav .desktop-menu-bar .desktop-menu-items {
  margin-top: 10px;
}
.left-nav .desktop-menu-bar .desktop-menu-items .trade-menu:hover + div {
  visibility: visible;
  opacity: 1;
}
.left-nav .desktop-menu-bar .desktop-menu-items .menu-card:hover {
  visibility: visible;
  opacity: 1;
}
.left-nav .desktop-menu-bar .desktop-menu-items .menu-card {
  visibility: hidden;
  position: fixed;
  margin-left: 7.5rem;
  margin-top: -5rem;
  width: 267px;
  background-color: #2f80ed;
  padding: 1.5rem;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.left-nav .desktop-menu-bar .desktop-menu-items .menu-card.active {
  display: block !important;
}
.left-nav .desktop-menu-bar .desktop-menu-items .menu-card svg {
  stroke: #fff;
}
.left-nav .desktop-menu-bar .desktop-menu-items .menu-card .convert {
  width: 45px;
  height: 30px;
  stroke: #fff;
}
.left-nav .desktop-menu-bar .desktop-menu-items .menu-card .convert-menu-item,
.left-nav .desktop-menu-bar .desktop-menu-items .menu-card .spot-trading-menu-item {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0rem;
  color: #ffffff;
}
.left-nav .desktop-menu-bar .desktop-menu-items .menu-card .convert-menu-item .menu-card-title,
.left-nav .desktop-menu-bar .desktop-menu-items .menu-card .spot-trading-menu-item .menu-card-title {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: bold;
  color: #f2f2f2;
  padding: 0rem 0rem 0.5rem 0rem;
}
.left-nav .desktop-menu-bar .desktop-menu-items .menu-card .convert-menu-item .menu-card-desc,
.left-nav .desktop-menu-bar .desktop-menu-items .menu-card .spot-trading-menu-item .menu-card-desc {
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.651);
}
.left-nav .desktop-menu-bar .desktop-menu-items .menu-card .convert-menu-item .convert-menu-item-nav,
.left-nav .desktop-menu-bar .desktop-menu-items .menu-card .convert-menu-item .spot-trading-menu-item-nav,
.left-nav .desktop-menu-bar .desktop-menu-items .menu-card .spot-trading-menu-item .convert-menu-item-nav,
.left-nav .desktop-menu-bar .desktop-menu-items .menu-card .spot-trading-menu-item .spot-trading-menu-item-nav {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
.left-nav .desktop-menu-bar .desktop-menu-items a .desktop-menu-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  fill: #747474;
  stroke: #747474;
}
.left-nav .desktop-menu-bar .desktop-menu-items a .desktop-menu-item.active {
  fill: #ffffff;
  stroke: #ffffff;
  margin: 0px 10px;
  background-color: #2f80ed;
  border-radius: 20px;
}
.left-nav .desktop-menu-bar .desktop-menu-items a .desktop-menu-item.active .item {
  color: #ffffff;
  font-weight: bold;
}
.left-nav .desktop-menu-bar .desktop-menu-items a .desktop-menu-item svg {
  padding-top: 7px;
  height: 30px;
}
.left-nav .desktop-menu-bar .desktop-menu-items a .desktop-menu-item .item {
  padding: 10px 0px;
  font-size: 12px;
  color: #747474;
  text-transform: capitalize;
}
.left-nav .color-switch {
  width: 100%;
  position: relative;
  background: #ffffff;
  bottom: 0;
  padding: 25px 3px;
  border-top: 1px solid #d7d7d6;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.left-nav .color-switch input[type=checkbox] {
  position: relative;
  width: 40px;
  height: 12px;
  -webkit-appearance: none;
  background: #ffffff;
  outline: none;
  border: 2px solid #6c6c6e;
  border-radius: 20px;
  transition: 0.7s;
}
.left-nav .color-switch input[type=checkbox]::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  top: -13.5px;
  left: -10px;
  background: #333333;
  border: 5px solid #ffffff;
  transform: scale(0.7);
  transition: 0.5s;
}
.left-nav .color-switch input:checked[type=checkbox]:before {
  left: 10px;
}

.header-bottom-navigation {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 10px 10px;
  width: 90%;
  border-bottom: 1px solid #d7d7d6;
  background: #ffffff;
  border-radius: 0;
  padding-top: 0.5rem;
  position: -webkit-sticky;
  position: sticky;
  top: 12%;
  z-index: 10;
}
.header-bottom-navigation .navigation {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
.header-bottom-navigation .navigation .nav {
  margin: -15px 20px 0 20px;
  padding: 10px 8px;
  line-height: 28px;
  color: #2c2c2c;
}
.header-bottom-navigation .navigation .nav .nav-link {
  background: none;
  outline: none;
  border: none;
}
.header-bottom-navigation .navigation .active {
  font-weight: bold;
  border-radius: 3px;
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #2f80ed;
  border-left: 4px solid transparent;
}
.header-bottom-navigation .navigation .active .nav-link {
  color: #2f80ed;
}

.menu-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 100;
}
.menu-bar.active {
  display: block;
}
.menu-bar .menu-items {
  margin: 1rem;
  padding: 2rem 2rem 3rem 2rem;
  top: 0;
  left: 0;
  background-color: #ffffff;
  border-radius: 10px;
  border-bottom: 1px solid #343434;
}
.menu-bar .menu-items .close-btn {
  margin-bottom: 3rem;
}
.menu-bar .menu-items .menu-card {
  display: flex;
  justify-content: space-between;
}
.menu-bar .menu-items .menu-card .nav {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 3rem;
}
.menu-bar .menu-items .menu-card .nav .nav-item a {
  text-decoration: none;
  text-transform: capitalize;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  font-size: 14px;
  color: #333333;
}
.menu-bar .menu-items .section-nav {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid grey;
}
.menu-bar .menu-items .section-nav .nav-item a {
  font-size: 14px;
  color: #343434;
  text-decoration: none;
  text-transform: capitalize;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.menu-bar .menu-items .section-nav .nav {
  display: flex;
  justify-content: space-between;
  padding: 3rem 0rem;
}
.menu-bar .menu-items .section-nav .nav svg {
  stroke: #8f8faf;
}

.notification-pop-up {
  display: none !important;
}
.notification-pop-up.active {
  display: block !important;
}
.notification-pop-up .popup-arrow-top {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #ffffff;
  position: absolute;
  top: 4.2rem;
  right: 5.2rem;
  z-index: 999;
  transform: rotate(45deg);
}
.notification-pop-up .notification-box {
  position: absolute;
  z-index: 200;
  background-color: #ffffff;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  top: 5rem;
  right: 0.5rem;
  max-width: 21.5rem;
  max-height: 60%;
  overflow-y: scroll;
  transition: all 0.5s ease-in-out;
}
.notification-pop-up .notification-box .notification-title {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #ffffff;
}
.notification-pop-up .notification-box .notifications {
  position: relative;
  display: none;
}
.notification-pop-up .notification-box .notifications.active {
  display: block;
}
.notification-pop-up .notification-box .notifications .notification-for {
  text-transform: capitalize;
  padding: 1rem 1rem 0 1rem;
}
.notification-pop-up .notification-box .notifications .notification-list .notif {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin: 1rem;
  padding: 0.5rem;
  background: #eaf1fe;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  max-width: 90%;
}
.notification-pop-up .notification-box .notifications .notification-list .notif .icon {
  margin-right: 1rem;
}
.notification-pop-up .notification-box .notifications .notification-list .notif .notif-text .notif-title {
  text-transform: capitalize;
  font-size: 16px;
  line-height: 28px;
  color: #23262f;
  margin-bottom: 0.5rem;
}
.notification-pop-up .notification-box .notifications .notification-list .notif .notif-text .notif-message {
  font-size: 12px;
  line-height: 14px;
  color: #777e90;
}
.notification-pop-up .notification-box .notifications .notification-list .notif .notif-text .notif-time {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 10px;
  line-height: 28px;
  color: #777e90;
}
.notification-pop-up .notification-box .no-notification {
  display: none;
  padding: 5rem;
  text-transform: capitalize;
  color: #777e90;
}
.notification-pop-up .notification-box .no-notification.active {
  display: block;
}
.notification-pop-up .notification-box .clear-notification {
  position: -webkit-sticky;
  position: sticky;
  background: #ffffff;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #e0e0e0;
  padding: 1rem;
}
.notification-pop-up .notification-box .clear-notification .clear {
  outline: none;
  background: none;
  border: none;
  color: #777e90;
  font-size: 14px;
  cursor: pointer;
}

.main-form {
  padding: 7rem 2rem;
}
.main-form .form {
  max-width: 675px;
}
.main-form .form .purchase-div .purchase-info {
  padding: 0 0.5rem;
}
.main-form .form .purchase-div .purchase-info .title {
  font-size: 28px;
  line-height: 30px;
  text-align: center;
  color: #000000;
  text-transform: capitalize;
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.main-form .form .purchase-div .purchase-info .info {
  font-size: 18px;
  line-height: 34px;
  text-align: center;
  color: #747474;
}
.main-form .form .purchase-div .purchase-info .info a {
  color: #2f80ed;
}
.main-form .form .purchase-div .purchase-action-btn a {
  display: inline-block;
  border: none;
  padding: 16px 24px;
  width: 100%;
  background: #2f80ed;
  border-radius: 10px;
  color: #fcfcfd;
  text-align: center;
  margin-top: 1rem;
  line-height: 16px;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

@media (min-width: 800px) {
  .back-to-top {
    right: 2%;
  }

  .left-nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    height: 100%;
    z-index: 20;
    overflow: auto;
  }
  .left-nav::-webkit-scrollbar {
    display: none;
  }

  .right-content {
    margin-left: 114px;
  }

  .navbar {
    padding: 0.67rem 0 0.67rem 1.5rem;
    border-bottom: 1px solid #d7d7d6;
    border-radius: 0;
    z-index: 10;
  }
  .navbar .menu {
    margin: 0.5rem 0;
  }
  .navbar .menu ul {
    display: flex;
    margin-right: 0;
  }
  .navbar .menu ul .nav-item {
    cursor: pointer;
    padding: 5px 25px;
    height: 36px;
    border-right: 1px solid #e3e3e3;
  }
  .navbar .menu ul .nav-item:first-child .notification-dot {
    display: none;
    position: absolute;
    margin-left: -10px;
    border: 6px solid #ff0000;
    border-radius: 50%;
  }
  .navbar .menu ul .nav-item:first-child .notification-dot.active {
    display: inline-block;
  }
  .navbar .menu ul .nav-item:last-child {
    border-right: none;
    margin-top: 5px;
  }
  .navbar .menu ul .nav-item span.avatar {
    align-items: center;
    margin-top: 15px;
    padding: 10px;
    background: #64acef;
    border: 1px solid #2f80ed;
    font-style: "normal";
    font-weight: bold;
    font-size: 13px;
    text-align: center;
    color: #001b7a;
  }
  .navbar .menu ul .nav-item img.span {
    position: absolute;
    height: 15px;
    width: 15px;
    background-color: #ff0000;
    border-radius: 50%;
  }
  .navbar .menu .title {
    margin-top: 0;
    line-height: 41px;
  }
  .navbar .menu .hamburger {
    display: none;
  }

  .header-bottom-navigation {
    width: 75%;
    border-bottom: 1px solid #d7d7d6;
    background: #ffffff;
    border-radius: 0;
    margin-top: 0;
    padding: 0;
    top: 10.9%;
  }
  .header-bottom-navigation .navigation {
    width: 100%;
  }
  .header-bottom-navigation .navigation .nav {
    margin: 0;
    width: 100%;
    max-width: 168px;
  }

  .notification-pop-up .popup-arrow-top {
    top: 4.2rem;
    right: 7rem;
  }
  .notification-pop-up .notification-box {
    right: 5rem;
  }

  .main-form {
    padding: 9rem 0;
  }
}
.main-form {
  padding: 2rem 1rem;
}
.main-form .pagination .pagination-title {
  height: 42px;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  color: #000000;
}
.main-form .pagination .form-step {
  /*marking active/completed steps green*/
  /*The number of the step and the connector before it = white*/
}
.main-form .pagination .form-step #progressbar {
  padding-bottom: 1rem;
  overflow: hidden;
  text-align: center;
  margin-top: 10px;
  /*CSS counters to number the steps*/
  counter-reset: step;
  /*progressbar connectors*/
  /*connector not needed before the first step*/
}
.main-form .pagination .form-step #progressbar li {
  list-style-type: none;
  color: #4f4f4f;
  text-transform: capitalize;
  font-size: 12px;
  line-height: 20px;
  width: 50% !important;
  float: left;
  position: relative;
}
.main-form .pagination .form-step #progressbar li::before {
  text-align: center;
  content: counter(step);
  counter-increment: step;
  width: 25px;
  height: 25px;
  border: 1px solid #d6d6d6;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #333333;
  background: #ffffff;
  border-radius: 3px;
  margin: 0 auto 5px auto;
}
.main-form .pagination .form-step #progressbar li::after {
  content: "";
  width: 100% !important;
  height: 2px;
  background: #d6d6d6;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1;
  /*put it behind the numbers*/
}
.main-form .pagination .form-step #progressbar :first-child::after {
  content: none;
}
.main-form .pagination .form-step #progressbar li.active:before,
.main-form .pagination .form-step #progressbar li.active:after {
  background: #eaf1fe;
  color: #333333;
  border: none;
}
.main-form .price-definer {
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #777e90;
}
.main-form .form {
  max-width: 475px;
  margin-top: 3rem;
}
.main-form .form .wrapper-pay .custom-select ul li:hover,
.main-form .form .wrapper-receive .custom-select ul li:hover,
.main-form .form .wrapper-card .custom-select ul li:hover {
  background-color: #d6d6d6;
}
.main-form .form .wrapper-receive .custom-select ul .search-field:hover {
  background-color: #ffffff !important;
}
.main-form .form .review {
  position: relative;
  padding: 23px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #ffffff;
}
.main-form .form .review label {
  position: absolute;
  top: -6px;
  text-transform: capitalize;
  font-size: 12px;
  left: 15px;
  color: #777e90;
  background: #ffffff;
  padding: 0px 10px;
}
.main-form .form .review .review-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.main-form .form .review .review-details li {
  padding: 23px 0px;
}
.main-form .form .review .review-details .review-info-title {
  text-transform: capitalize;
  text-align: left;
}
.main-form .form .review .review-details .review-info-title li {
  font-size: 16px;
  color: #747474;
}
.main-form .form .review .review-details .review-info-details {
  text-transform: capitalize;
  text-align: right;
}
.main-form .form .review .review-details .review-info-details li {
  font-size: 16px;
  color: #25272c;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.main-form .form .review .review-details .review-info-details li img {
  display: none;
  padding: 0.5rem;
}
.main-form .form .review-action-btn {
  padding: 35px 0px;
  display: grid;
  gap: 2rem;
  grid-template-rows: 100%;
  grid-template-columns: 1fr 1fr;
  text-transform: capitalize;
}
.main-form .form .review-action-btn a span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.main-form .form .review-action-btn .back-btn {
  background: #f2f2f2;
  max-width: 173px;
  width: 100%;
  padding: 18px 10px;
  border-radius: 10px;
  font-size: 16px;
  color: #333333;
}
.main-form .form .review-action-btn .confirm-btn {
  justify-self: end;
  background: #2f80ed;
  max-width: 173px;
  width: 100%;
  padding: 18px 10px;
  border-radius: 10px;
  font-size: 16px;
  color: #ffffff;
}
.main-form .form input[type=submit] {
  border: none;
  padding: 16px 24px;
  width: 330px;
  right: 52px;
  top: calc(50% - 48px / 2 + 131px);
  background: #2f80ed;
  border-radius: 7px;
  color: #fcfcfd;
  text-align: center;
  margin-top: 35px;
  margin-bottom: 20px;
  line-height: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

@media (min-width: 800px) {
  .main-form {
    padding: 6rem 0;
  }
  .main-form .review .review-info-details img {
    display: block !important;
  }
}
.main-form {
  padding: 2rem 1rem;
}
.main-form .bg-blob {
  display: none !important;
}
.main-form .form {
  max-width: 475px;
  margin-top: 3rem;
}
.main-form .form .pay,
.main-form .form .receive {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding-bottom: 1rem;
}
.main-form .form .pay .custom-select .dropdown,
.main-form .form .receive .custom-select .dropdown {
  list-style: none;
  padding: 0;
  display: none;
}
.main-form .form .pay .dropdown .img-wrapper,
.main-form .form .pay .placeholder .img-wrapper,
.main-form .form .receive .dropdown .img-wrapper,
.main-form .form .receive .placeholder .img-wrapper {
  display: inline-block;
  width: 30px;
}
.main-form .form .pay .dropdown .img-wrapper .open-arrow-1,
.main-form .form .pay .placeholder .img-wrapper .open-arrow-1,
.main-form .form .receive .dropdown .img-wrapper .open-arrow-1,
.main-form .form .receive .placeholder .img-wrapper .open-arrow-1 {
  display: inline-block;
}
.main-form .form .pay .dropdown .img-wrapper .close-arrow-2,
.main-form .form .pay .placeholder .img-wrapper .close-arrow-2,
.main-form .form .receive .dropdown .img-wrapper .close-arrow-2,
.main-form .form .receive .placeholder .img-wrapper .close-arrow-2 {
  display: none;
}
.main-form .form .pay .dropdown .img-wrapper .open-arrow-3,
.main-form .form .pay .placeholder .img-wrapper .open-arrow-3,
.main-form .form .receive .dropdown .img-wrapper .open-arrow-3,
.main-form .form .receive .placeholder .img-wrapper .open-arrow-3 {
  display: inline-block;
}
.main-form .form .pay .dropdown .img-wrapper .close-arrow-4,
.main-form .form .pay .placeholder .img-wrapper .close-arrow-4,
.main-form .form .receive .dropdown .img-wrapper .close-arrow-4,
.main-form .form .receive .placeholder .img-wrapper .close-arrow-4 {
  display: none;
}
.main-form .form .pay .dropdown img,
.main-form .form .receive .dropdown img {
  max-width: 100%;
}
.main-form .form .pay .placeholder,
.main-form .form .receive .placeholder {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  position: relative;
  margin-top: 0.5rem;
}
.main-form .form .pay .placeholder img,
.main-form .form .receive .placeholder img {
  max-width: 100%;
  min-width: 10px !important;
}
.main-form .form .pay .placeholder .text,
.main-form .form .receive .placeholder .text {
  text-transform: capitalize;
  padding: 0px 5px;
  font-size: 16px;
  color: #25272c;
}
.main-form .form .pay .custom-select.active,
.main-form .form .receive .custom-select.active {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.main-form .form .pay .custom-select.active .placeholder::after,
.main-form .form .receive .custom-select.active .placeholder::after {
  right: 0px;
}
.main-form .form .pay .custom-select.active .placeholder::before,
.main-form .form .receive .custom-select.active .placeholder::before {
  right: -8px;
}
.main-form .form .pay .custom-select.active .dropdown,
.main-form .form .receive .custom-select.active .dropdown {
  z-index: 10;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 70px;
  width: calc(100vw - 32px);
  max-width: 473px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  height: 200px;
  overflow-y: scroll;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}
.main-form .form .pay .custom-select.active .dropdown .search-field,
.main-form .form .receive .custom-select.active .dropdown .search-field {
  position: -webkit-sticky;
  position: sticky;
}
.main-form .form .pay .custom-select.active .dropdown .search-field input[type=text],
.main-form .form .receive .custom-select.active .dropdown .search-field input[type=text] {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  width: 100%;
  height: 47px;
}
.main-form .form .pay .custom-select.active .dropdown .search-field .search-icon,
.main-form .form .receive .custom-select.active .dropdown .search-field .search-icon {
  margin-left: 12px;
  position: absolute;
}
.main-form .form .pay .custom-select.active .dropdown .search-field .search,
.main-form .form .receive .custom-select.active .dropdown .search-field .search {
  padding-left: 30px;
}
.main-form .form .pay .dropdown li,
.main-form .form .receive .dropdown li {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 15px 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.main-form .form .pay .dropdown li:not(:last-child),
.main-form .form .receive .dropdown li:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
.main-form .form .pay .dropdown li .img-wrapper,
.main-form .form .receive .dropdown li .img-wrapper {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.main-form .form .pay .dropdown li .text,
.main-form .form .receive .dropdown li .text {
  text-transform: capitalize;
  font-size: 16px;
  color: #25272c;
  padding: 0px 10px;
}
.main-form .form .pay .dropdown li:first-child,
.main-form .form .receive .dropdown li:first-child {
  top: 0;
  left: 0;
  width: 100%;
}
.main-form .form .pay .custom-select,
.main-form .form .receive .custom-select {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 66px;
  border-left: 1px solid #e3e3e3;
}
.main-form .form .pay input,
.main-form .form .receive input {
  border: 0;
  outline: none;
  box-shadow: none;
  width: 100%;
  display: inline-block;
  height: 30px;
  text-align: left;
  padding: 0px 10px;
  font-size: 16px;
  color: #25272c;
}
.main-form .form .pay input::-moz-placeholder, .main-form .form .receive input::-moz-placeholder {
  font-size: 16px;
  color: #747474;
}
.main-form .form .pay input:-ms-input-placeholder, .main-form .form .receive input:-ms-input-placeholder {
  font-size: 16px;
  color: #747474;
}
.main-form .form .pay input::placeholder,
.main-form .form .receive input::placeholder {
  font-size: 16px;
  color: #747474;
}
.main-form .form .pay .wrapper-pay,
.main-form .form .pay .wrapper-receive,
.main-form .form .receive .wrapper-pay,
.main-form .form .receive .wrapper-receive {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  align-items: center;
  height: 66px;
  width: 100%;
  box-sizing: border-box;
}
.main-form .form .pay .wrapper-pay .input-field:not(:-moz-placeholder-shown) ~ .input-label, .main-form .form .pay .wrapper-receive .input-field:not(:-moz-placeholder-shown) ~ .input-label, .main-form .form .receive .wrapper-pay .input-field:not(:-moz-placeholder-shown) ~ .input-label, .main-form .form .receive .wrapper-receive .input-field:not(:-moz-placeholder-shown) ~ .input-label {
  transform: translateY(-30px);
  font-size: 12px;
}
.main-form .form .pay .wrapper-pay .input-field:not(:-ms-input-placeholder) ~ .input-label, .main-form .form .pay .wrapper-receive .input-field:not(:-ms-input-placeholder) ~ .input-label, .main-form .form .receive .wrapper-pay .input-field:not(:-ms-input-placeholder) ~ .input-label, .main-form .form .receive .wrapper-receive .input-field:not(:-ms-input-placeholder) ~ .input-label {
  transform: translateY(-30px);
  font-size: 12px;
}
.main-form .form .pay .wrapper-pay .input-field:focus ~ .input-label,
.main-form .form .pay .wrapper-pay .input-field:not(:placeholder-shown) ~ .input-label,
.main-form .form .pay .wrapper-receive .input-field:focus ~ .input-label,
.main-form .form .pay .wrapper-receive .input-field:not(:placeholder-shown) ~ .input-label,
.main-form .form .receive .wrapper-pay .input-field:focus ~ .input-label,
.main-form .form .receive .wrapper-pay .input-field:not(:placeholder-shown) ~ .input-label,
.main-form .form .receive .wrapper-receive .input-field:focus ~ .input-label,
.main-form .form .receive .wrapper-receive .input-field:not(:placeholder-shown) ~ .input-label {
  transform: translateY(-30px);
  font-size: 12px;
}
.main-form .form .pay .input-label,
.main-form .form .receive .input-label {
  pointer-events: none;
  position: absolute;
  background-color: #ffffff;
  display: inline-block;
  left: 10px;
  padding: 0 10px;
  font-size: 16px;
  color: #747474;
}
.main-form .form .pay .input-label,
.main-form .form .pay .input-field,
.main-form .form .receive .input-label,
.main-form .form .receive .input-field {
  transition: ease-in-out 0.2s all;
}
.main-form .form .form-card {
  display: flex;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.main-form .form .form-card .wrapper-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  align-items: center;
  height: 66px;
  box-sizing: border-box;
  width: 100%;
}
.main-form .form .form-card .wrapper-card .input-label {
  top: -6px;
  left: 10px;
  font-size: 12px;
  pointer-events: none;
  position: absolute;
  background-color: #ffffff;
  display: inline-block;
  left: 10px;
  padding: 0 10px;
  color: #747474;
}
.main-form .form .form-card .custom-select {
  flex-direction: column;
  position: relative;
  margin-top: 1.3rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 66px;
}
.main-form .form .form-card .placeholder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
  position: relative;
  padding: 0 1rem 0 1rem;
}
.main-form .form .form-card .placeholder img {
  max-width: 100%;
}
.main-form .form .form-card .placeholder .select {
  display: flex;
}
.main-form .form .form-card .placeholder .text {
  text-transform: capitalize;
  font-size: 16px;
  color: #25272c;
}
.main-form .form .form-card .custom-select .dropdown-card {
  list-style: none;
  padding: 0;
  display: none;
}
.main-form .form .form-card .dropdown-card .img-wrapper,
.main-form .form .form-card .placeholder .img-wrapper {
  display: inline-block;
  padding: 0px 5px 0px 0px;
}
.main-form .form .form-card .dropdown-card .img-wrapper .open-arrow-5,
.main-form .form .form-card .placeholder .img-wrapper .open-arrow-5 {
  display: inline-block;
}
.main-form .form .form-card .dropdown-card .img-wrapper .close-arrow-6,
.main-form .form .form-card .placeholder .img-wrapper .close-arrow-6 {
  display: none;
}
.main-form .form .form-card .dropdown-card img {
  max-width: 100%;
}
.main-form .form .form-card .custom-select.active {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.main-form .form .form-card .custom-select.active .placeholder::after {
  right: -27px;
}
.main-form .form .form-card .custom-select.active .placeholder::before {
  right: -35px;
}
.main-form .form .form-card .custom-select.active .dropdown-card {
  z-index: 100;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50px;
  right: 0px;
  left: 0px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  height: 105px;
  overflow-y: scroll;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}
.main-form .form .form-card .dropdown-card li {
  text-align: right;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: #ffffff;
  padding: 15px 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.main-form .form .form-card .dropdown-card li:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
.main-form .form .form-card .dropdown-card li .img-wrapper {
  width: 50px;
  height: 21px;
  margin-right: 5px;
}
.main-form .form .form-card .dropdown-card li .text {
  text-transform: capitalize;
  padding: 0px 20px 0px 10px;
  font-size: 16px;
  color: #25272c;
  font-size: 16px;
  color: #25272c;
}
.main-form .form .form-card input {
  border: 0;
  outline: none;
  box-shadow: none;
  width: 0px;
  display: inline-block;
  height: 30px;
  text-align: left;
  font-size: 16px;
  color: #25272c;
}
.main-form .form .form-card input::-moz-placeholder {
  font-size: 16px;
  color: #747474;
}
.main-form .form .form-card input:-ms-input-placeholder {
  font-size: 16px;
  color: #747474;
}
.main-form .form .form-card input::placeholder {
  font-size: 16px;
  color: #747474;
}
.main-form .form input[type=submit] {
  border: none;
  padding: 16px 24px;
  width: 100%;
  background: #2f80ed;
  border-radius: 7px;
  color: #fcfcfd;
  line-height: 16px;
  cursor: pointer;
  margin-bottom: 3rem;
}
.main-form .form a.submit {
  text-transform: capitalize;
  display: inline-block;
  border: none;
  padding: 16px 24px;
  width: 100%;
  background: #2f80ed;
  border-radius: 8px;
  color: #fcfcfd;
  margin-top: 32px;
  line-height: 16px;
  font-family: "DM Sans", "Helvetics", "Roboto", "Arial", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 800px) {
  .main-form {
    padding: 6rem 0;
  }
  .main-form .bg-blob {
    display: block !important;
    top: 13rem;
    position: absolute;
    height: 480px;
    width: 100%;
    overflow-y: visible;
    left: 20rem;
  }
  .main-form .bg-blob .right-blob {
    background: rgba(255, 61, 0, 0.1);
    filter: blur(200px);
  }
  .main-form .bg-blob .left-blob {
    background: rgba(0, 117, 255, 0.1);
    filter: blur(200px);
  }
  .main-form .pay .wrapper-pay .input-field {
    width: 300px;
  }
  .main-form .receive .wrapper-receive .input-field {
    width: 300px;
  }
}
section {
  padding: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 18px;
  color: #222529;
  font-weight: normal;
}

.modal-wrapper,
.modal-wrapper-deposit,
.modal-wrapper-withdraw {
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
  width: 100%;
  height: 100vh;
}
.modal-wrapper .modal,
.modal-wrapper-deposit .modal,
.modal-wrapper-withdraw .modal {
  max-width: 800px;
  background-color: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}
.modal-wrapper .modal #close,
.modal-wrapper-deposit .modal #close,
.modal-wrapper-withdraw .modal #close {
  cursor: pointer;
}
.modal-wrapper .modal .modal-heading,
.modal-wrapper-deposit .modal .modal-heading,
.modal-wrapper-withdraw .modal .modal-heading {
  padding: 1.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d7d7d6;
}
.modal-wrapper .modal .modal-heading h1,
.modal-wrapper-deposit .modal .modal-heading h1,
.modal-wrapper-withdraw .modal .modal-heading h1 {
  margin-bottom: 0;
  font-weight: bold;
}
.modal-wrapper .modal .modal-content,
.modal-wrapper-deposit .modal .modal-content,
.modal-wrapper-withdraw .modal .modal-content {
  padding: 2rem 3rem;
}
.modal-wrapper .modal .modal-content .form-step,
.modal-wrapper-deposit .modal .modal-content .form-step,
.modal-wrapper-withdraw .modal .modal-content .form-step {
  /*marking active/completed steps white*/
  /*The number of the step and the connector before it = white*/
}
.modal-wrapper .modal .modal-content .form-step #progressbar,
.modal-wrapper .modal .modal-content .form-step #progressbar-withdraw,
.modal-wrapper-deposit .modal .modal-content .form-step #progressbar,
.modal-wrapper-deposit .modal .modal-content .form-step #progressbar-withdraw,
.modal-wrapper-withdraw .modal .modal-content .form-step #progressbar,
.modal-wrapper-withdraw .modal .modal-content .form-step #progressbar-withdraw {
  margin-bottom: 30px;
  overflow: hidden;
  text-align: center;
  margin-top: 11px;
  /*CSS counters to number the steps*/
  counter-reset: step;
  /*progressbar connectors*/
  /*connector not needed before the first step*/
}
.modal-wrapper .modal .modal-content .form-step #progressbar li,
.modal-wrapper .modal .modal-content .form-step #progressbar-withdraw li,
.modal-wrapper-deposit .modal .modal-content .form-step #progressbar li,
.modal-wrapper-deposit .modal .modal-content .form-step #progressbar-withdraw li,
.modal-wrapper-withdraw .modal .modal-content .form-step #progressbar li,
.modal-wrapper-withdraw .modal .modal-content .form-step #progressbar-withdraw li {
  list-style-type: none;
  color: #4f4f4f;
  text-transform: capitalize;
  font-size: 12px;
  line-height: 20px;
  width: 50% !important;
  float: left;
  position: relative;
}
.modal-wrapper .modal .modal-content .form-step #progressbar li::before,
.modal-wrapper .modal .modal-content .form-step #progressbar-withdraw li::before,
.modal-wrapper-deposit .modal .modal-content .form-step #progressbar li::before,
.modal-wrapper-deposit .modal .modal-content .form-step #progressbar-withdraw li::before,
.modal-wrapper-withdraw .modal .modal-content .form-step #progressbar li::before,
.modal-wrapper-withdraw .modal .modal-content .form-step #progressbar-withdraw li::before {
  text-align: center;
  content: counter(step);
  counter-increment: step;
  width: 25px;
  height: 25px;
  border: 1px solid #d6d6d6;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #333333;
  background: #ffffff;
  border-radius: 3px;
  margin: 0 auto 5px auto;
}
.modal-wrapper .modal .modal-content .form-step #progressbar li::after,
.modal-wrapper .modal .modal-content .form-step #progressbar-withdraw li::after,
.modal-wrapper-deposit .modal .modal-content .form-step #progressbar li::after,
.modal-wrapper-deposit .modal .modal-content .form-step #progressbar-withdraw li::after,
.modal-wrapper-withdraw .modal .modal-content .form-step #progressbar li::after,
.modal-wrapper-withdraw .modal .modal-content .form-step #progressbar-withdraw li::after {
  content: "";
  width: 100% !important;
  height: 4px;
  background: #d6d6d6;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1;
  /*put it behind the numbers*/
}
.modal-wrapper .modal .modal-content .form-step #progressbar :first-child::after,
.modal-wrapper .modal .modal-content .form-step #progressbar-withdraw :first-child::after,
.modal-wrapper-deposit .modal .modal-content .form-step #progressbar :first-child::after,
.modal-wrapper-deposit .modal .modal-content .form-step #progressbar-withdraw :first-child::after,
.modal-wrapper-withdraw .modal .modal-content .form-step #progressbar :first-child::after,
.modal-wrapper-withdraw .modal .modal-content .form-step #progressbar-withdraw :first-child::after {
  content: none;
}
.modal-wrapper .modal .modal-content .form-step #progressbar-withdraw li,
.modal-wrapper-deposit .modal .modal-content .form-step #progressbar-withdraw li,
.modal-wrapper-withdraw .modal .modal-content .form-step #progressbar-withdraw li {
  width: 33.33% !important;
}
.modal-wrapper .modal .modal-content .form-step #progressbar li.active:before,
.modal-wrapper .modal .modal-content .form-step #progressbar-withdraw li.active:before,
.modal-wrapper .modal .modal-content .form-step #progressbar li.active:before,
.modal-wrapper .modal .modal-content .form-step #progressbar-withdraw li.active:after,
.modal-wrapper-deposit .modal .modal-content .form-step #progressbar li.active:before,
.modal-wrapper-deposit .modal .modal-content .form-step #progressbar-withdraw li.active:before,
.modal-wrapper-deposit .modal .modal-content .form-step #progressbar li.active:before,
.modal-wrapper-deposit .modal .modal-content .form-step #progressbar-withdraw li.active:after,
.modal-wrapper-withdraw .modal .modal-content .form-step #progressbar li.active:before,
.modal-wrapper-withdraw .modal .modal-content .form-step #progressbar-withdraw li.active:before,
.modal-wrapper-withdraw .modal .modal-content .form-step #progressbar li.active:before,
.modal-wrapper-withdraw .modal .modal-content .form-step #progressbar-withdraw li.active:after {
  background: #eaf1fe;
  color: #333333;
  border: none;
}
.modal-wrapper .modal .modal-content .icon,
.modal-wrapper-deposit .modal .modal-content .icon,
.modal-wrapper-withdraw .modal .modal-content .icon {
  text-align: center;
}
.modal-wrapper .modal .modal-content p,
.modal-wrapper-deposit .modal .modal-content p,
.modal-wrapper-withdraw .modal .modal-content p {
  color: #4f4f4f;
  text-align: center;
  margin: 2em auto;
  font-weight: bold;
}
.modal-wrapper .modal .modal-content ol,
.modal-wrapper-deposit .modal .modal-content ol,
.modal-wrapper-withdraw .modal .modal-content ol {
  list-style-type: disc;
  padding: 0 3rem;
  text-align: left;
}
.modal-wrapper .modal .modal-content ol li,
.modal-wrapper-deposit .modal .modal-content ol li,
.modal-wrapper-withdraw .modal .modal-content ol li {
  display: list-item;
  line-height: 28px;
  color: #747474;
  margin: 1em auto;
}
.modal-wrapper .modal .modal-content #step-one-btn,
.modal-wrapper-deposit .modal .modal-content #step-one-btn,
.modal-wrapper-withdraw .modal .modal-content #step-one-btn {
  background-color: #2f80ed;
}
.modal-wrapper .modal .modal-content button,
.modal-wrapper-deposit .modal .modal-content button,
.modal-wrapper-withdraw .modal .modal-content button {
  width: 100%;
  color: #ffffff;
  padding: 18px 25px;
  border-radius: 10px;
  line-height: 10px;
  border: none;
  margin: 1em auto;
}
.modal-wrapper .modal .modal-content .step2,
.modal-wrapper-deposit .modal .modal-content .step2,
.modal-wrapper-withdraw .modal .modal-content .step2 {
  display: none;
}
.modal-wrapper .modal .modal-content .step-two-btns,
.modal-wrapper-deposit .modal .modal-content .step-two-btns,
.modal-wrapper-withdraw .modal .modal-content .step-two-btns {
  display: flex;
  gap: 12em;
}
.modal-wrapper .modal .modal-content .step-two-btns #step-two-back,
.modal-wrapper-deposit .modal .modal-content .step-two-btns #step-two-back,
.modal-wrapper-withdraw .modal .modal-content .step-two-btns #step-two-back {
  color: #333333;
}
.modal-wrapper .modal .modal-content .step-two-btns #step-two-done,
.modal-wrapper-deposit .modal .modal-content .step-two-btns #step-two-done,
.modal-wrapper-withdraw .modal .modal-content .step-two-btns #step-two-done {
  background-color: #2f80ed;
}
.modal-wrapper .modal .modal-content .step3,
.modal-wrapper-deposit .modal .modal-content .step3,
.modal-wrapper-withdraw .modal .modal-content .step3 {
  display: none;
}
.modal-wrapper .modal .modal-content .step3 .review,
.modal-wrapper-deposit .modal .modal-content .step3 .review,
.modal-wrapper-withdraw .modal .modal-content .step3 .review {
  width: 100%;
  position: relative;
  padding: 23px;
  margin-top: 35px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #ffffff;
}
.modal-wrapper .modal .modal-content .step3 .review label,
.modal-wrapper-deposit .modal .modal-content .step3 .review label,
.modal-wrapper-withdraw .modal .modal-content .step3 .review label {
  position: absolute;
  top: -6px;
  text-transform: capitalize;
  font-size: 12px;
  left: 15px;
  color: #777e90;
  background: #ffffff;
  padding: 0px 10px;
}
.modal-wrapper .modal .modal-content .step3 .review .review-details,
.modal-wrapper-deposit .modal .modal-content .step3 .review .review-details,
.modal-wrapper-withdraw .modal .modal-content .step3 .review .review-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.modal-wrapper .modal .modal-content .step3 .review .review-details li,
.modal-wrapper-deposit .modal .modal-content .step3 .review .review-details li,
.modal-wrapper-withdraw .modal .modal-content .step3 .review .review-details li {
  padding: 23px 0px;
}
.modal-wrapper .modal .modal-content .step3 .review .review-details .review-info-title,
.modal-wrapper-deposit .modal .modal-content .step3 .review .review-details .review-info-title,
.modal-wrapper-withdraw .modal .modal-content .step3 .review .review-details .review-info-title {
  text-transform: capitalize;
  text-align: left;
}
.modal-wrapper .modal .modal-content .step3 .review .review-details .review-info-title li,
.modal-wrapper-deposit .modal .modal-content .step3 .review .review-details .review-info-title li,
.modal-wrapper-withdraw .modal .modal-content .step3 .review .review-details .review-info-title li {
  font-size: 16px;
  color: #747474;
}
.modal-wrapper .modal .modal-content .step3 .review .review-details .review-info-details,
.modal-wrapper-deposit .modal .modal-content .step3 .review .review-details .review-info-details,
.modal-wrapper-withdraw .modal .modal-content .step3 .review .review-details .review-info-details {
  text-transform: capitalize;
  text-align: right;
}
.modal-wrapper .modal .modal-content .step3 .review .review-details .review-info-details span,
.modal-wrapper-deposit .modal .modal-content .step3 .review .review-details .review-info-details span,
.modal-wrapper-withdraw .modal .modal-content .step3 .review .review-details .review-info-details span {
  color: #777e90;
}
.modal-wrapper .modal .modal-content .step3 .review .review-details .review-info-details li,
.modal-wrapper-deposit .modal .modal-content .step3 .review .review-details .review-info-details li,
.modal-wrapper-withdraw .modal .modal-content .step3 .review .review-details .review-info-details li {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  font-size: 16px;
  color: #25272c;
  text-align: right;
}
.modal-wrapper .modal .modal-content .step3 .review .review-details .review-info-details li img,
.modal-wrapper-deposit .modal .modal-content .step3 .review .review-details .review-info-details li img,
.modal-wrapper-withdraw .modal .modal-content .step3 .review .review-details .review-info-details li img {
  padding: 0px 15px;
}
.modal-wrapper .modal .modal-content .step3 .verification,
.modal-wrapper-deposit .modal .modal-content .step3 .verification,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification {
  position: relative;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #ffffff;
  margin: 10% 0%;
}
.modal-wrapper .modal .modal-content .step3 .verification #verification-label,
.modal-wrapper-deposit .modal .modal-content .step3 .verification #verification-label,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification #verification-label {
  position: absolute;
  top: -6px;
  text-transform: capitalize;
  font-size: 12px;
  left: 15px;
  color: #777e90;
  background: #ffffff;
  padding: 0px 10px;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper {
  max-width: 305px;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form {
  align-items: center;
  padding: 4rem 0;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .form-title,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .form-title,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .form-title {
  margin-bottom: 31px;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  color: #23262f;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code-title,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code-title,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code-title,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code-title,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code-title,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code-title,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code-title,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code-title,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code-title {
  font-size: 16px;
  line-height: 28px;
  color: #6c6c6e;
  margin-bottom: 5px;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code {
  width: 500px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5 ease-in-out;
  margin-bottom: 28px;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .sms-otp,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .email-otp,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .google-otp,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .sms-otp,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .email-otp,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .google-otp,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .sms-otp,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .email-otp,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .google-otp,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .sms-otp,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .email-otp,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .google-otp,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .sms-otp,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .email-otp,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .google-otp,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .sms-otp,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .email-otp,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .google-otp,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .sms-otp,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .email-otp,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .google-otp,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .sms-otp,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .email-otp,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .google-otp,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .sms-otp,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .email-otp,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .google-otp {
  width: 45px;
  height: 45px;
  outline: none;
  border: none;
  border-radius: 4px;
  background-color: #e3e3e3;
  text-align: center;
  font-size: 14px;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .sms-otp:focus,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .email-otp:focus,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .google-otp:focus,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .sms-otp:focus,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .email-otp:focus,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .google-otp:focus,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .sms-otp:focus,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .email-otp:focus,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .google-otp:focus,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .sms-otp:focus,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .email-otp:focus,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .google-otp:focus,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .sms-otp:focus,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .email-otp:focus,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .google-otp:focus,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .sms-otp:focus,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .email-otp:focus,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .google-otp:focus,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .sms-otp:focus,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .email-otp:focus,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .google-otp:focus,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .sms-otp:focus,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .email-otp:focus,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .google-otp:focus,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .sms-otp:focus,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .email-otp:focus,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .google-otp:focus {
  border: 1px solid #2f80ed;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form #visibility-off,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form #visibility-off,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form #visibility-off {
  display: none;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form #confim-visibility-off,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form #confim-visibility-off,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form #confim-visibility-off {
  display: none;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form input[type=submit],
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form input[type=submit],
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form input[type=submit] {
  border: none;
  padding: 16px 24px;
  width: 305px;
  right: 52px;
  top: calc(50% - 48px / 2 + 131px);
  background: #2f80ed;
  border-radius: 7px;
  color: #fcfcfd;
  text-align: center;
  margin-top: 32px;
  line-height: 16px;
  font-size: 16px;
  font-style: normal;
  font-family: "DM Sans", "Helvetics", "Roboto", "Arial", sans-serif;
  font-weight: 700;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form a.submit,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form a.submit,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form a.submit {
  display: inline-block;
  border: none;
  padding: 16px 24px;
  width: 305px;
  right: 52px;
  top: calc(50% - 48px / 2 + 131px);
  background: #2f80ed;
  border-radius: 7px;
  color: #fcfcfd;
  text-align: center;
  margin-top: 32px;
  line-height: 16px;
  font-size: 16px;
  font-style: normal;
  font-family: "DM Sans", "Helvetics", "Roboto", "Arial", sans-serif;
  font-weight: 700;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form input:focus,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form input:focus,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form input:focus {
  outline: none !important;
  border: 1px solid #2f80ed;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .user-check,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .user-check,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .user-check {
  align-items: center;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .user-check .user-terms,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .user-check .user-terms,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .user-check .user-terms {
  width: 268px;
  text-align: left;
  padding-left: 21px;
  font-size: 14px;
  line-height: 24px;
  color: #777e90;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .user-check .user-terms a.user-agreements,
.modal-wrapper-deposit .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .user-check .user-terms a.user-agreements,
.modal-wrapper-withdraw .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .user-check .user-terms a.user-agreements {
  color: #2f80ed;
}
.modal-wrapper .modal .modal-content #review-verification,
.modal-wrapper-deposit .modal .modal-content #review-verification,
.modal-wrapper-withdraw .modal .modal-content #review-verification {
  max-height: 520px;
  overflow-y: scroll;
}
.modal-wrapper .modal .modal-content .step4,
.modal-wrapper-deposit .modal .modal-content .step4,
.modal-wrapper-withdraw .modal .modal-content .step4 {
  display: none;
  align-items: center;
}
.modal-wrapper .modal .modal-content .step4 p,
.modal-wrapper-deposit .modal .modal-content .step4 p,
.modal-wrapper-withdraw .modal .modal-content .step4 p {
  color: #4f4f4f;
  text-align: center;
  font-size: 28px;
  margin: 10px;
  line-height: 60px;
  font-weight: bold;
}
.modal-wrapper .modal .modal-content .step4 .success-message,
.modal-wrapper-deposit .modal .modal-content .step4 .success-message,
.modal-wrapper-withdraw .modal .modal-content .step4 .success-message {
  font-size: 18px;
  font-weight: normal;
  line-height: 34px;
  text-align: center;
  color: #747474;
}
.modal-wrapper .modal .modal-content .step4 ul,
.modal-wrapper-deposit .modal .modal-content .step4 ul,
.modal-wrapper-withdraw .modal .modal-content .step4 ul {
  text-align: center;
}
.modal-wrapper .modal .modal-content .step4 ul li,
.modal-wrapper-deposit .modal .modal-content .step4 ul li,
.modal-wrapper-withdraw .modal .modal-content .step4 ul li {
  color: #747474;
  line-height: 28px;
}
.modal-wrapper .modal .modal-content .step4 a.user-agreements,
.modal-wrapper-deposit .modal .modal-content .step4 a.user-agreements,
.modal-wrapper-withdraw .modal .modal-content .step4 a.user-agreements {
  color: #2f80ed;
}
.modal-wrapper .modal .modal-content .form-asset,
.modal-wrapper .modal .modal-content .form-bcn,
.modal-wrapper .modal .modal-content .form-address,
.modal-wrapper .modal .modal-content .form-process-time,
.modal-wrapper-deposit .modal .modal-content .form-asset,
.modal-wrapper-deposit .modal .modal-content .form-bcn,
.modal-wrapper-deposit .modal .modal-content .form-address,
.modal-wrapper-deposit .modal .modal-content .form-process-time,
.modal-wrapper-withdraw .modal .modal-content .form-asset,
.modal-wrapper-withdraw .modal .modal-content .form-bcn,
.modal-wrapper-withdraw .modal .modal-content .form-address,
.modal-wrapper-withdraw .modal .modal-content .form-process-time {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: 100%;
}
.modal-wrapper .modal .modal-content .form-asset .custom-select .dropdown-card,
.modal-wrapper .modal .modal-content .form-bcn .custom-select .dropdown-card,
.modal-wrapper .modal .modal-content .form-address .custom-select .dropdown-card,
.modal-wrapper .modal .modal-content .form-process-time .custom-select .dropdown-card,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select .dropdown-card,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select .dropdown-card,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select .dropdown-card,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select .dropdown-card,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select .dropdown-card,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select .dropdown-card,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select .dropdown-card,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select .dropdown-card {
  list-style: none;
  padding: 0;
  display: none;
}
.modal-wrapper .modal .modal-content .form-asset .custom-select-deposit .dropdown-card,
.modal-wrapper .modal .modal-content .form-bcn .custom-select-deposit .dropdown-card,
.modal-wrapper .modal .modal-content .form-address .custom-select-deposit .dropdown-card,
.modal-wrapper .modal .modal-content .form-process-time .custom-select-deposit .dropdown-card,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select-deposit .dropdown-card,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select-deposit .dropdown-card,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select-deposit .dropdown-card,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select-deposit .dropdown-card,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select-deposit .dropdown-card,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select-deposit .dropdown-card,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select-deposit .dropdown-card,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select-deposit .dropdown-card {
  list-style: none;
  padding: 0;
  display: none;
}
.modal-wrapper .modal .modal-content .form-asset .dropdown-card .img-wrapper,
.modal-wrapper .modal .modal-content .form-asset .placeholder .img-wrapper,
.modal-wrapper .modal .modal-content .form-bcn .dropdown-card .img-wrapper,
.modal-wrapper .modal .modal-content .form-bcn .placeholder .img-wrapper,
.modal-wrapper .modal .modal-content .form-address .dropdown-card .img-wrapper,
.modal-wrapper .modal .modal-content .form-address .placeholder .img-wrapper,
.modal-wrapper .modal .modal-content .form-process-time .dropdown-card .img-wrapper,
.modal-wrapper .modal .modal-content .form-process-time .placeholder .img-wrapper,
.modal-wrapper-deposit .modal .modal-content .form-asset .dropdown-card .img-wrapper,
.modal-wrapper-deposit .modal .modal-content .form-asset .placeholder .img-wrapper,
.modal-wrapper-deposit .modal .modal-content .form-bcn .dropdown-card .img-wrapper,
.modal-wrapper-deposit .modal .modal-content .form-bcn .placeholder .img-wrapper,
.modal-wrapper-deposit .modal .modal-content .form-address .dropdown-card .img-wrapper,
.modal-wrapper-deposit .modal .modal-content .form-address .placeholder .img-wrapper,
.modal-wrapper-deposit .modal .modal-content .form-process-time .dropdown-card .img-wrapper,
.modal-wrapper-deposit .modal .modal-content .form-process-time .placeholder .img-wrapper,
.modal-wrapper-withdraw .modal .modal-content .form-asset .dropdown-card .img-wrapper,
.modal-wrapper-withdraw .modal .modal-content .form-asset .placeholder .img-wrapper,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .dropdown-card .img-wrapper,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .placeholder .img-wrapper,
.modal-wrapper-withdraw .modal .modal-content .form-address .dropdown-card .img-wrapper,
.modal-wrapper-withdraw .modal .modal-content .form-address .placeholder .img-wrapper,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .dropdown-card .img-wrapper,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .placeholder .img-wrapper {
  display: inline-block;
  padding: 0px 5px 0px 0px;
}
.modal-wrapper .modal .modal-content .form-asset .dropdown-card img,
.modal-wrapper .modal .modal-content .form-bcn .dropdown-card img,
.modal-wrapper .modal .modal-content .form-address .dropdown-card img,
.modal-wrapper .modal .modal-content .form-process-time .dropdown-card img,
.modal-wrapper-deposit .modal .modal-content .form-asset .dropdown-card img,
.modal-wrapper-deposit .modal .modal-content .form-bcn .dropdown-card img,
.modal-wrapper-deposit .modal .modal-content .form-address .dropdown-card img,
.modal-wrapper-deposit .modal .modal-content .form-process-time .dropdown-card img,
.modal-wrapper-withdraw .modal .modal-content .form-asset .dropdown-card img,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .dropdown-card img,
.modal-wrapper-withdraw .modal .modal-content .form-address .dropdown-card img,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .dropdown-card img {
  max-width: 100%;
}
.modal-wrapper .modal .modal-content .form-asset .placeholder,
.modal-wrapper .modal .modal-content .form-asset .placeholder-bcn,
.modal-wrapper .modal .modal-content .form-bcn .placeholder,
.modal-wrapper .modal .modal-content .form-bcn .placeholder-bcn,
.modal-wrapper .modal .modal-content .form-address .placeholder,
.modal-wrapper .modal .modal-content .form-address .placeholder-bcn,
.modal-wrapper .modal .modal-content .form-process-time .placeholder,
.modal-wrapper .modal .modal-content .form-process-time .placeholder-bcn,
.modal-wrapper-deposit .modal .modal-content .form-asset .placeholder,
.modal-wrapper-deposit .modal .modal-content .form-asset .placeholder-bcn,
.modal-wrapper-deposit .modal .modal-content .form-bcn .placeholder,
.modal-wrapper-deposit .modal .modal-content .form-bcn .placeholder-bcn,
.modal-wrapper-deposit .modal .modal-content .form-address .placeholder,
.modal-wrapper-deposit .modal .modal-content .form-address .placeholder-bcn,
.modal-wrapper-deposit .modal .modal-content .form-process-time .placeholder,
.modal-wrapper-deposit .modal .modal-content .form-process-time .placeholder-bcn,
.modal-wrapper-withdraw .modal .modal-content .form-asset .placeholder,
.modal-wrapper-withdraw .modal .modal-content .form-asset .placeholder-bcn,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .placeholder,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .placeholder-bcn,
.modal-wrapper-withdraw .modal .modal-content .form-address .placeholder,
.modal-wrapper-withdraw .modal .modal-content .form-address .placeholder-bcn,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .placeholder,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .placeholder-bcn {
  display: flex;
  align-items: center;
  padding: 10px 25px 10px 10px;
  cursor: pointer;
  position: relative;
}
.modal-wrapper .modal .modal-content .form-asset .placeholder img,
.modal-wrapper .modal .modal-content .form-asset .placeholder-bcn img,
.modal-wrapper .modal .modal-content .form-bcn .placeholder img,
.modal-wrapper .modal .modal-content .form-bcn .placeholder-bcn img,
.modal-wrapper .modal .modal-content .form-address .placeholder img,
.modal-wrapper .modal .modal-content .form-address .placeholder-bcn img,
.modal-wrapper .modal .modal-content .form-process-time .placeholder img,
.modal-wrapper .modal .modal-content .form-process-time .placeholder-bcn img,
.modal-wrapper-deposit .modal .modal-content .form-asset .placeholder img,
.modal-wrapper-deposit .modal .modal-content .form-asset .placeholder-bcn img,
.modal-wrapper-deposit .modal .modal-content .form-bcn .placeholder img,
.modal-wrapper-deposit .modal .modal-content .form-bcn .placeholder-bcn img,
.modal-wrapper-deposit .modal .modal-content .form-address .placeholder img,
.modal-wrapper-deposit .modal .modal-content .form-address .placeholder-bcn img,
.modal-wrapper-deposit .modal .modal-content .form-process-time .placeholder img,
.modal-wrapper-deposit .modal .modal-content .form-process-time .placeholder-bcn img,
.modal-wrapper-withdraw .modal .modal-content .form-asset .placeholder img,
.modal-wrapper-withdraw .modal .modal-content .form-asset .placeholder-bcn img,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .placeholder img,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .placeholder-bcn img,
.modal-wrapper-withdraw .modal .modal-content .form-address .placeholder img,
.modal-wrapper-withdraw .modal .modal-content .form-address .placeholder-bcn img,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .placeholder img,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .placeholder-bcn img {
  max-width: 100%;
}
.modal-wrapper .modal .modal-content .form-asset .placeholder::before, .modal-wrapper .modal .modal-content .form-asset .placeholder::after,
.modal-wrapper .modal .modal-content .form-asset .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-asset .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-bcn .placeholder::before,
.modal-wrapper .modal .modal-content .form-bcn .placeholder::after,
.modal-wrapper .modal .modal-content .form-bcn .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-bcn .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-address .placeholder::before,
.modal-wrapper .modal .modal-content .form-address .placeholder::after,
.modal-wrapper .modal .modal-content .form-address .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-address .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-process-time .placeholder::before,
.modal-wrapper .modal .modal-content .form-process-time .placeholder::after,
.modal-wrapper .modal .modal-content .form-process-time .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-process-time .placeholder-bcn::after,
.modal-wrapper-deposit .modal .modal-content .form-asset .placeholder::before,
.modal-wrapper-deposit .modal .modal-content .form-asset .placeholder::after,
.modal-wrapper-deposit .modal .modal-content .form-asset .placeholder-bcn::before,
.modal-wrapper-deposit .modal .modal-content .form-asset .placeholder-bcn::after,
.modal-wrapper-deposit .modal .modal-content .form-bcn .placeholder::before,
.modal-wrapper-deposit .modal .modal-content .form-bcn .placeholder::after,
.modal-wrapper-deposit .modal .modal-content .form-bcn .placeholder-bcn::before,
.modal-wrapper-deposit .modal .modal-content .form-bcn .placeholder-bcn::after,
.modal-wrapper-deposit .modal .modal-content .form-address .placeholder::before,
.modal-wrapper-deposit .modal .modal-content .form-address .placeholder::after,
.modal-wrapper-deposit .modal .modal-content .form-address .placeholder-bcn::before,
.modal-wrapper-deposit .modal .modal-content .form-address .placeholder-bcn::after,
.modal-wrapper-deposit .modal .modal-content .form-process-time .placeholder::before,
.modal-wrapper-deposit .modal .modal-content .form-process-time .placeholder::after,
.modal-wrapper-deposit .modal .modal-content .form-process-time .placeholder-bcn::before,
.modal-wrapper-deposit .modal .modal-content .form-process-time .placeholder-bcn::after,
.modal-wrapper-withdraw .modal .modal-content .form-asset .placeholder::before,
.modal-wrapper-withdraw .modal .modal-content .form-asset .placeholder::after,
.modal-wrapper-withdraw .modal .modal-content .form-asset .placeholder-bcn::before,
.modal-wrapper-withdraw .modal .modal-content .form-asset .placeholder-bcn::after,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .placeholder::before,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .placeholder::after,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .placeholder-bcn::before,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .placeholder-bcn::after,
.modal-wrapper-withdraw .modal .modal-content .form-address .placeholder::before,
.modal-wrapper-withdraw .modal .modal-content .form-address .placeholder::after,
.modal-wrapper-withdraw .modal .modal-content .form-address .placeholder-bcn::before,
.modal-wrapper-withdraw .modal .modal-content .form-address .placeholder-bcn::after,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .placeholder::before,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .placeholder::after,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .placeholder-bcn::before,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .placeholder-bcn::after {
  content: "";
  display: inline-block;
  height: 1px;
  width: 12px;
  background-color: #000000;
  position: absolute;
  right: 0;
}
.modal-wrapper .modal .modal-content .form-asset .placeholder::before,
.modal-wrapper .modal .modal-content .form-asset .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-bcn .placeholder::before,
.modal-wrapper .modal .modal-content .form-bcn .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-address .placeholder::before,
.modal-wrapper .modal .modal-content .form-address .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-process-time .placeholder::before,
.modal-wrapper .modal .modal-content .form-process-time .placeholder-bcn::before,
.modal-wrapper-deposit .modal .modal-content .form-asset .placeholder::before,
.modal-wrapper-deposit .modal .modal-content .form-asset .placeholder-bcn::before,
.modal-wrapper-deposit .modal .modal-content .form-bcn .placeholder::before,
.modal-wrapper-deposit .modal .modal-content .form-bcn .placeholder-bcn::before,
.modal-wrapper-deposit .modal .modal-content .form-address .placeholder::before,
.modal-wrapper-deposit .modal .modal-content .form-address .placeholder-bcn::before,
.modal-wrapper-deposit .modal .modal-content .form-process-time .placeholder::before,
.modal-wrapper-deposit .modal .modal-content .form-process-time .placeholder-bcn::before,
.modal-wrapper-withdraw .modal .modal-content .form-asset .placeholder::before,
.modal-wrapper-withdraw .modal .modal-content .form-asset .placeholder-bcn::before,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .placeholder::before,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .placeholder-bcn::before,
.modal-wrapper-withdraw .modal .modal-content .form-address .placeholder::before,
.modal-wrapper-withdraw .modal .modal-content .form-address .placeholder-bcn::before,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .placeholder::before,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .placeholder-bcn::before {
  transform: rotate(45deg);
  right: -26px;
}
.modal-wrapper .modal .modal-content .form-asset .placeholder::after,
.modal-wrapper .modal .modal-content .form-asset .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-bcn .placeholder::after,
.modal-wrapper .modal .modal-content .form-bcn .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-address .placeholder::after,
.modal-wrapper .modal .modal-content .form-address .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-process-time .placeholder::after,
.modal-wrapper .modal .modal-content .form-process-time .placeholder-bcn::after,
.modal-wrapper-deposit .modal .modal-content .form-asset .placeholder::after,
.modal-wrapper-deposit .modal .modal-content .form-asset .placeholder-bcn::after,
.modal-wrapper-deposit .modal .modal-content .form-bcn .placeholder::after,
.modal-wrapper-deposit .modal .modal-content .form-bcn .placeholder-bcn::after,
.modal-wrapper-deposit .modal .modal-content .form-address .placeholder::after,
.modal-wrapper-deposit .modal .modal-content .form-address .placeholder-bcn::after,
.modal-wrapper-deposit .modal .modal-content .form-process-time .placeholder::after,
.modal-wrapper-deposit .modal .modal-content .form-process-time .placeholder-bcn::after,
.modal-wrapper-withdraw .modal .modal-content .form-asset .placeholder::after,
.modal-wrapper-withdraw .modal .modal-content .form-asset .placeholder-bcn::after,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .placeholder::after,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .placeholder-bcn::after,
.modal-wrapper-withdraw .modal .modal-content .form-address .placeholder::after,
.modal-wrapper-withdraw .modal .modal-content .form-address .placeholder-bcn::after,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .placeholder::after,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .placeholder-bcn::after {
  transform: rotate(-45deg);
  right: -34px;
}
.modal-wrapper .modal .modal-content .form-asset .placeholder .text,
.modal-wrapper .modal .modal-content .form-asset .placeholder-bcn .text,
.modal-wrapper .modal .modal-content .form-bcn .placeholder .text,
.modal-wrapper .modal .modal-content .form-bcn .placeholder-bcn .text,
.modal-wrapper .modal .modal-content .form-address .placeholder .text,
.modal-wrapper .modal .modal-content .form-address .placeholder-bcn .text,
.modal-wrapper .modal .modal-content .form-process-time .placeholder .text,
.modal-wrapper .modal .modal-content .form-process-time .placeholder-bcn .text,
.modal-wrapper-deposit .modal .modal-content .form-asset .placeholder .text,
.modal-wrapper-deposit .modal .modal-content .form-asset .placeholder-bcn .text,
.modal-wrapper-deposit .modal .modal-content .form-bcn .placeholder .text,
.modal-wrapper-deposit .modal .modal-content .form-bcn .placeholder-bcn .text,
.modal-wrapper-deposit .modal .modal-content .form-address .placeholder .text,
.modal-wrapper-deposit .modal .modal-content .form-address .placeholder-bcn .text,
.modal-wrapper-deposit .modal .modal-content .form-process-time .placeholder .text,
.modal-wrapper-deposit .modal .modal-content .form-process-time .placeholder-bcn .text,
.modal-wrapper-withdraw .modal .modal-content .form-asset .placeholder .text,
.modal-wrapper-withdraw .modal .modal-content .form-asset .placeholder-bcn .text,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .placeholder .text,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .placeholder-bcn .text,
.modal-wrapper-withdraw .modal .modal-content .form-address .placeholder .text,
.modal-wrapper-withdraw .modal .modal-content .form-address .placeholder-bcn .text,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .placeholder .text,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .placeholder-bcn .text {
  text-transform: capitalize;
  padding: 0px 5px;
  font-size: 16px;
  color: #25272c;
  width: 580px;
}
.modal-wrapper .modal .modal-content .form-asset .placeholder-bcn,
.modal-wrapper .modal .modal-content .form-bcn .placeholder-bcn,
.modal-wrapper .modal .modal-content .form-address .placeholder-bcn,
.modal-wrapper .modal .modal-content .form-process-time .placeholder-bcn,
.modal-wrapper-deposit .modal .modal-content .form-asset .placeholder-bcn,
.modal-wrapper-deposit .modal .modal-content .form-bcn .placeholder-bcn,
.modal-wrapper-deposit .modal .modal-content .form-address .placeholder-bcn,
.modal-wrapper-deposit .modal .modal-content .form-process-time .placeholder-bcn,
.modal-wrapper-withdraw .modal .modal-content .form-asset .placeholder-bcn,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .placeholder-bcn,
.modal-wrapper-withdraw .modal .modal-content .form-address .placeholder-bcn,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .placeholder-bcn {
  padding: 10px 50px 10px 10px;
}
.modal-wrapper .modal .modal-content .form-asset .custom-select.active,
.modal-wrapper .modal .modal-content .form-asset .custom-select-deposit.active,
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active,
.modal-wrapper .modal .modal-content .form-bcn .custom-select-deposit.active,
.modal-wrapper .modal .modal-content .form-address .custom-select.active,
.modal-wrapper .modal .modal-content .form-address .custom-select-deposit.active,
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active,
.modal-wrapper .modal .modal-content .form-process-time .custom-select-deposit.active,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select.active,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select-deposit.active,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select.active,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select-deposit.active,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select.active,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select-deposit.active,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select.active,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select-deposit.active,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select.active,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select-deposit.active,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select.active,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select-deposit.active,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select.active,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select-deposit.active,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select.active,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select-deposit.active {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.modal-wrapper .modal .modal-content .form-asset .custom-select.active .placeholder::after,
.modal-wrapper .modal .modal-content .form-asset .custom-select.active .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-asset .custom-select-deposit.active .placeholder::after,
.modal-wrapper .modal .modal-content .form-asset .custom-select-deposit.active .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active .placeholder::after,
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-bcn .custom-select-deposit.active .placeholder::after,
.modal-wrapper .modal .modal-content .form-bcn .custom-select-deposit.active .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-address .custom-select.active .placeholder::after,
.modal-wrapper .modal .modal-content .form-address .custom-select.active .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-address .custom-select-deposit.active .placeholder::after,
.modal-wrapper .modal .modal-content .form-address .custom-select-deposit.active .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active .placeholder::after,
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-process-time .custom-select-deposit.active .placeholder::after,
.modal-wrapper .modal .modal-content .form-process-time .custom-select-deposit.active .placeholder-bcn::after,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select.active .placeholder::after,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select.active .placeholder-bcn::after,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select-deposit.active .placeholder::after,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select-deposit.active .placeholder-bcn::after,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select.active .placeholder::after,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select.active .placeholder-bcn::after,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select-deposit.active .placeholder::after,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select-deposit.active .placeholder-bcn::after,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select.active .placeholder::after,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select.active .placeholder-bcn::after,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select-deposit.active .placeholder::after,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select-deposit.active .placeholder-bcn::after,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select.active .placeholder::after,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select.active .placeholder-bcn::after,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select-deposit.active .placeholder::after,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select-deposit.active .placeholder-bcn::after,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select.active .placeholder::after,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select.active .placeholder-bcn::after,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select-deposit.active .placeholder::after,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select-deposit.active .placeholder-bcn::after,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select.active .placeholder::after,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select.active .placeholder-bcn::after,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select-deposit.active .placeholder::after,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select-deposit.active .placeholder-bcn::after,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select.active .placeholder::after,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select.active .placeholder-bcn::after,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select-deposit.active .placeholder::after,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select-deposit.active .placeholder-bcn::after,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select.active .placeholder::after,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select.active .placeholder-bcn::after,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select-deposit.active .placeholder::after,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select-deposit.active .placeholder-bcn::after {
  right: -27px;
}
.modal-wrapper .modal .modal-content .form-asset .custom-select.active .placeholder::before,
.modal-wrapper .modal .modal-content .form-asset .custom-select.active .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-asset .custom-select-deposit.active .placeholder::before,
.modal-wrapper .modal .modal-content .form-asset .custom-select-deposit.active .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active .placeholder::before,
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-bcn .custom-select-deposit.active .placeholder::before,
.modal-wrapper .modal .modal-content .form-bcn .custom-select-deposit.active .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-address .custom-select.active .placeholder::before,
.modal-wrapper .modal .modal-content .form-address .custom-select.active .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-address .custom-select-deposit.active .placeholder::before,
.modal-wrapper .modal .modal-content .form-address .custom-select-deposit.active .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active .placeholder::before,
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-process-time .custom-select-deposit.active .placeholder::before,
.modal-wrapper .modal .modal-content .form-process-time .custom-select-deposit.active .placeholder-bcn::before,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select.active .placeholder::before,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select.active .placeholder-bcn::before,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select-deposit.active .placeholder::before,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select-deposit.active .placeholder-bcn::before,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select.active .placeholder::before,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select.active .placeholder-bcn::before,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select-deposit.active .placeholder::before,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select-deposit.active .placeholder-bcn::before,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select.active .placeholder::before,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select.active .placeholder-bcn::before,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select-deposit.active .placeholder::before,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select-deposit.active .placeholder-bcn::before,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select.active .placeholder::before,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select.active .placeholder-bcn::before,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select-deposit.active .placeholder::before,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select-deposit.active .placeholder-bcn::before,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select.active .placeholder::before,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select.active .placeholder-bcn::before,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select-deposit.active .placeholder::before,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select-deposit.active .placeholder-bcn::before,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select.active .placeholder::before,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select.active .placeholder-bcn::before,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select-deposit.active .placeholder::before,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select-deposit.active .placeholder-bcn::before,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select.active .placeholder::before,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select.active .placeholder-bcn::before,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select-deposit.active .placeholder::before,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select-deposit.active .placeholder-bcn::before,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select.active .placeholder::before,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select.active .placeholder-bcn::before,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select-deposit.active .placeholder::before,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select-deposit.active .placeholder-bcn::before {
  right: -35px;
}
.modal-wrapper .modal .modal-content .form-asset .custom-select.active .dropdown-card,
.modal-wrapper .modal .modal-content .form-asset .custom-select-deposit.active .dropdown-card,
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active .dropdown-card,
.modal-wrapper .modal .modal-content .form-bcn .custom-select-deposit.active .dropdown-card,
.modal-wrapper .modal .modal-content .form-address .custom-select.active .dropdown-card,
.modal-wrapper .modal .modal-content .form-address .custom-select-deposit.active .dropdown-card,
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active .dropdown-card,
.modal-wrapper .modal .modal-content .form-process-time .custom-select-deposit.active .dropdown-card,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select.active .dropdown-card,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select-deposit.active .dropdown-card,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select.active .dropdown-card,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select-deposit.active .dropdown-card,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select.active .dropdown-card,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select-deposit.active .dropdown-card,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select.active .dropdown-card,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select-deposit.active .dropdown-card,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select.active .dropdown-card,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select-deposit.active .dropdown-card,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select.active .dropdown-card,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select-deposit.active .dropdown-card,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select.active .dropdown-card,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select-deposit.active .dropdown-card,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select.active .dropdown-card,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select-deposit.active .dropdown-card {
  z-index: 100;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 0px;
  left: 0px;
  width: 698px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  height: 105px;
  overflow-y: scroll;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}
.modal-wrapper .modal .modal-content .form-asset .custom-select.active .dropdown,
.modal-wrapper .modal .modal-content .form-asset .custom-select-deposit.active .dropdown,
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active .dropdown,
.modal-wrapper .modal .modal-content .form-bcn .custom-select-deposit.active .dropdown,
.modal-wrapper .modal .modal-content .form-address .custom-select.active .dropdown,
.modal-wrapper .modal .modal-content .form-address .custom-select-deposit.active .dropdown,
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active .dropdown,
.modal-wrapper .modal .modal-content .form-process-time .custom-select-deposit.active .dropdown,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select.active .dropdown,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select-deposit.active .dropdown,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select.active .dropdown,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select-deposit.active .dropdown,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select.active .dropdown,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select-deposit.active .dropdown,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select.active .dropdown,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select-deposit.active .dropdown,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select.active .dropdown,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select-deposit.active .dropdown,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select.active .dropdown,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select-deposit.active .dropdown,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select.active .dropdown,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select-deposit.active .dropdown,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select.active .dropdown,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select-deposit.active .dropdown {
  text-align: left;
  z-index: 100;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 40px;
  left: -230px;
  min-width: 330px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  height: 200px;
  overflow-y: scroll;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}
.modal-wrapper .modal .modal-content .form-asset .custom-select.active .dropdown .search-field,
.modal-wrapper .modal .modal-content .form-asset .custom-select-deposit.active .dropdown .search-field,
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field,
.modal-wrapper .modal .modal-content .form-bcn .custom-select-deposit.active .dropdown .search-field,
.modal-wrapper .modal .modal-content .form-address .custom-select.active .dropdown .search-field,
.modal-wrapper .modal .modal-content .form-address .custom-select-deposit.active .dropdown .search-field,
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field,
.modal-wrapper .modal .modal-content .form-process-time .custom-select-deposit.active .dropdown .search-field,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select.active .dropdown .search-field,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select-deposit.active .dropdown .search-field,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select-deposit.active .dropdown .search-field,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select.active .dropdown .search-field,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select-deposit.active .dropdown .search-field,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select-deposit.active .dropdown .search-field,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select.active .dropdown .search-field,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select-deposit.active .dropdown .search-field,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select-deposit.active .dropdown .search-field,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select.active .dropdown .search-field,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select-deposit.active .dropdown .search-field,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select-deposit.active .dropdown .search-field {
  position: -webkit-sticky;
  position: sticky;
}
.modal-wrapper .modal .modal-content .form-asset .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper .modal .modal-content .form-asset .custom-select-deposit.active .dropdown .search-field input[type=text],
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper .modal .modal-content .form-bcn .custom-select-deposit.active .dropdown .search-field input[type=text],
.modal-wrapper .modal .modal-content .form-address .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper .modal .modal-content .form-address .custom-select-deposit.active .dropdown .search-field input[type=text],
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper .modal .modal-content .form-process-time .custom-select-deposit.active .dropdown .search-field input[type=text],
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select-deposit.active .dropdown .search-field input[type=text],
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select-deposit.active .dropdown .search-field input[type=text],
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select-deposit.active .dropdown .search-field input[type=text],
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select-deposit.active .dropdown .search-field input[type=text],
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select-deposit.active .dropdown .search-field input[type=text],
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select-deposit.active .dropdown .search-field input[type=text],
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select-deposit.active .dropdown .search-field input[type=text],
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select-deposit.active .dropdown .search-field input[type=text] {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  width: 300px;
  height: 47px;
}
.modal-wrapper .modal .modal-content .form-asset .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper .modal .modal-content .form-asset .custom-select-deposit.active .dropdown .search-field .search-icon,
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper .modal .modal-content .form-bcn .custom-select-deposit.active .dropdown .search-field .search-icon,
.modal-wrapper .modal .modal-content .form-address .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper .modal .modal-content .form-address .custom-select-deposit.active .dropdown .search-field .search-icon,
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper .modal .modal-content .form-process-time .custom-select-deposit.active .dropdown .search-field .search-icon,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select-deposit.active .dropdown .search-field .search-icon,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select-deposit.active .dropdown .search-field .search-icon,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select-deposit.active .dropdown .search-field .search-icon,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select-deposit.active .dropdown .search-field .search-icon,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select-deposit.active .dropdown .search-field .search-icon,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select-deposit.active .dropdown .search-field .search-icon,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select-deposit.active .dropdown .search-field .search-icon,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select-deposit.active .dropdown .search-field .search-icon {
  margin-left: 12px;
  position: absolute;
}
.modal-wrapper .modal .modal-content .form-asset .custom-select.active .dropdown .search-field .search,
.modal-wrapper .modal .modal-content .form-asset .custom-select-deposit.active .dropdown .search-field .search,
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field .search,
.modal-wrapper .modal .modal-content .form-bcn .custom-select-deposit.active .dropdown .search-field .search,
.modal-wrapper .modal .modal-content .form-address .custom-select.active .dropdown .search-field .search,
.modal-wrapper .modal .modal-content .form-address .custom-select-deposit.active .dropdown .search-field .search,
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field .search,
.modal-wrapper .modal .modal-content .form-process-time .custom-select-deposit.active .dropdown .search-field .search,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select.active .dropdown .search-field .search,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select-deposit.active .dropdown .search-field .search,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field .search,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select-deposit.active .dropdown .search-field .search,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select.active .dropdown .search-field .search,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select-deposit.active .dropdown .search-field .search,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field .search,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select-deposit.active .dropdown .search-field .search,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select.active .dropdown .search-field .search,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select-deposit.active .dropdown .search-field .search,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field .search,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select-deposit.active .dropdown .search-field .search,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select.active .dropdown .search-field .search,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select-deposit.active .dropdown .search-field .search,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field .search,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select-deposit.active .dropdown .search-field .search {
  padding-left: 30px;
}
.modal-wrapper .modal .modal-content .form-asset .dropdown-card li,
.modal-wrapper .modal .modal-content .form-bcn .dropdown-card li,
.modal-wrapper .modal .modal-content .form-address .dropdown-card li,
.modal-wrapper .modal .modal-content .form-process-time .dropdown-card li,
.modal-wrapper-deposit .modal .modal-content .form-asset .dropdown-card li,
.modal-wrapper-deposit .modal .modal-content .form-bcn .dropdown-card li,
.modal-wrapper-deposit .modal .modal-content .form-address .dropdown-card li,
.modal-wrapper-deposit .modal .modal-content .form-process-time .dropdown-card li,
.modal-wrapper-withdraw .modal .modal-content .form-asset .dropdown-card li,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .dropdown-card li,
.modal-wrapper-withdraw .modal .modal-content .form-address .dropdown-card li,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .dropdown-card li {
  text-align: right;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: #ffffff;
  padding: 15px 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.modal-wrapper .modal .modal-content .form-asset .dropdown-card li:not(:last-child),
.modal-wrapper .modal .modal-content .form-bcn .dropdown-card li:not(:last-child),
.modal-wrapper .modal .modal-content .form-address .dropdown-card li:not(:last-child),
.modal-wrapper .modal .modal-content .form-process-time .dropdown-card li:not(:last-child),
.modal-wrapper-deposit .modal .modal-content .form-asset .dropdown-card li:not(:last-child),
.modal-wrapper-deposit .modal .modal-content .form-bcn .dropdown-card li:not(:last-child),
.modal-wrapper-deposit .modal .modal-content .form-address .dropdown-card li:not(:last-child),
.modal-wrapper-deposit .modal .modal-content .form-process-time .dropdown-card li:not(:last-child),
.modal-wrapper-withdraw .modal .modal-content .form-asset .dropdown-card li:not(:last-child),
.modal-wrapper-withdraw .modal .modal-content .form-bcn .dropdown-card li:not(:last-child),
.modal-wrapper-withdraw .modal .modal-content .form-address .dropdown-card li:not(:last-child),
.modal-wrapper-withdraw .modal .modal-content .form-process-time .dropdown-card li:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
.modal-wrapper .modal .modal-content .form-asset .dropdown-card li .img-wrapper,
.modal-wrapper .modal .modal-content .form-bcn .dropdown-card li .img-wrapper,
.modal-wrapper .modal .modal-content .form-address .dropdown-card li .img-wrapper,
.modal-wrapper .modal .modal-content .form-process-time .dropdown-card li .img-wrapper,
.modal-wrapper-deposit .modal .modal-content .form-asset .dropdown-card li .img-wrapper,
.modal-wrapper-deposit .modal .modal-content .form-bcn .dropdown-card li .img-wrapper,
.modal-wrapper-deposit .modal .modal-content .form-address .dropdown-card li .img-wrapper,
.modal-wrapper-deposit .modal .modal-content .form-process-time .dropdown-card li .img-wrapper,
.modal-wrapper-withdraw .modal .modal-content .form-asset .dropdown-card li .img-wrapper,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .dropdown-card li .img-wrapper,
.modal-wrapper-withdraw .modal .modal-content .form-address .dropdown-card li .img-wrapper,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .dropdown-card li .img-wrapper {
  width: 50px;
  height: 21px;
  margin-right: 5px;
}
.modal-wrapper .modal .modal-content .form-asset .dropdown-card li .text,
.modal-wrapper .modal .modal-content .form-bcn .dropdown-card li .text,
.modal-wrapper .modal .modal-content .form-address .dropdown-card li .text,
.modal-wrapper .modal .modal-content .form-process-time .dropdown-card li .text,
.modal-wrapper-deposit .modal .modal-content .form-asset .dropdown-card li .text,
.modal-wrapper-deposit .modal .modal-content .form-bcn .dropdown-card li .text,
.modal-wrapper-deposit .modal .modal-content .form-address .dropdown-card li .text,
.modal-wrapper-deposit .modal .modal-content .form-process-time .dropdown-card li .text,
.modal-wrapper-withdraw .modal .modal-content .form-asset .dropdown-card li .text,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .dropdown-card li .text,
.modal-wrapper-withdraw .modal .modal-content .form-address .dropdown-card li .text,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .dropdown-card li .text {
  text-transform: capitalize;
  padding: 0px 20px 0px 10px;
  font-size: 16px;
  color: #25272c;
  font-size: 16px;
  color: #25272c;
}
.modal-wrapper .modal .modal-content .form-asset .custom-select,
.modal-wrapper .modal .modal-content .form-asset .custom-select-deposit,
.modal-wrapper .modal .modal-content .form-bcn .custom-select,
.modal-wrapper .modal .modal-content .form-bcn .custom-select-deposit,
.modal-wrapper .modal .modal-content .form-address .custom-select,
.modal-wrapper .modal .modal-content .form-address .custom-select-deposit,
.modal-wrapper .modal .modal-content .form-process-time .custom-select,
.modal-wrapper .modal .modal-content .form-process-time .custom-select-deposit,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select,
.modal-wrapper-deposit .modal .modal-content .form-asset .custom-select-deposit,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select,
.modal-wrapper-deposit .modal .modal-content .form-bcn .custom-select-deposit,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select,
.modal-wrapper-deposit .modal .modal-content .form-address .custom-select-deposit,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select,
.modal-wrapper-deposit .modal .modal-content .form-process-time .custom-select-deposit,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select,
.modal-wrapper-withdraw .modal .modal-content .form-asset .custom-select-deposit,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .custom-select-deposit,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select,
.modal-wrapper-withdraw .modal .modal-content .form-address .custom-select-deposit,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .custom-select-deposit {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  align-items: flex-end;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 66px;
}
.modal-wrapper .modal .modal-content .form-asset input,
.modal-wrapper .modal .modal-content .form-bcn input,
.modal-wrapper .modal .modal-content .form-address input,
.modal-wrapper .modal .modal-content .form-process-time input,
.modal-wrapper-deposit .modal .modal-content .form-asset input,
.modal-wrapper-deposit .modal .modal-content .form-bcn input,
.modal-wrapper-deposit .modal .modal-content .form-address input,
.modal-wrapper-deposit .modal .modal-content .form-process-time input,
.modal-wrapper-withdraw .modal .modal-content .form-asset input,
.modal-wrapper-withdraw .modal .modal-content .form-bcn input,
.modal-wrapper-withdraw .modal .modal-content .form-address input,
.modal-wrapper-withdraw .modal .modal-content .form-process-time input {
  border: 0;
  outline: none;
  box-shadow: none;
  width: 0px;
  display: inline-block;
  height: 30px;
  text-align: left;
  font-size: 16px;
  color: #25272c;
}
.modal-wrapper .modal .modal-content .form-asset input::-moz-placeholder, .modal-wrapper .modal .modal-content .form-bcn input::-moz-placeholder, .modal-wrapper .modal .modal-content .form-address input::-moz-placeholder, .modal-wrapper .modal .modal-content .form-process-time input::-moz-placeholder, .modal-wrapper-deposit .modal .modal-content .form-asset input::-moz-placeholder, .modal-wrapper-deposit .modal .modal-content .form-bcn input::-moz-placeholder, .modal-wrapper-deposit .modal .modal-content .form-address input::-moz-placeholder, .modal-wrapper-deposit .modal .modal-content .form-process-time input::-moz-placeholder, .modal-wrapper-withdraw .modal .modal-content .form-asset input::-moz-placeholder, .modal-wrapper-withdraw .modal .modal-content .form-bcn input::-moz-placeholder, .modal-wrapper-withdraw .modal .modal-content .form-address input::-moz-placeholder, .modal-wrapper-withdraw .modal .modal-content .form-process-time input::-moz-placeholder {
  font-size: 16px;
  color: #747474;
}
.modal-wrapper .modal .modal-content .form-asset input:-ms-input-placeholder, .modal-wrapper .modal .modal-content .form-bcn input:-ms-input-placeholder, .modal-wrapper .modal .modal-content .form-address input:-ms-input-placeholder, .modal-wrapper .modal .modal-content .form-process-time input:-ms-input-placeholder, .modal-wrapper-deposit .modal .modal-content .form-asset input:-ms-input-placeholder, .modal-wrapper-deposit .modal .modal-content .form-bcn input:-ms-input-placeholder, .modal-wrapper-deposit .modal .modal-content .form-address input:-ms-input-placeholder, .modal-wrapper-deposit .modal .modal-content .form-process-time input:-ms-input-placeholder, .modal-wrapper-withdraw .modal .modal-content .form-asset input:-ms-input-placeholder, .modal-wrapper-withdraw .modal .modal-content .form-bcn input:-ms-input-placeholder, .modal-wrapper-withdraw .modal .modal-content .form-address input:-ms-input-placeholder, .modal-wrapper-withdraw .modal .modal-content .form-process-time input:-ms-input-placeholder {
  font-size: 16px;
  color: #747474;
}
.modal-wrapper .modal .modal-content .form-asset input::placeholder,
.modal-wrapper .modal .modal-content .form-bcn input::placeholder,
.modal-wrapper .modal .modal-content .form-address input::placeholder,
.modal-wrapper .modal .modal-content .form-process-time input::placeholder,
.modal-wrapper-deposit .modal .modal-content .form-asset input::placeholder,
.modal-wrapper-deposit .modal .modal-content .form-bcn input::placeholder,
.modal-wrapper-deposit .modal .modal-content .form-address input::placeholder,
.modal-wrapper-deposit .modal .modal-content .form-process-time input::placeholder,
.modal-wrapper-withdraw .modal .modal-content .form-asset input::placeholder,
.modal-wrapper-withdraw .modal .modal-content .form-bcn input::placeholder,
.modal-wrapper-withdraw .modal .modal-content .form-address input::placeholder,
.modal-wrapper-withdraw .modal .modal-content .form-process-time input::placeholder {
  font-size: 16px;
  color: #747474;
}
.modal-wrapper .modal .modal-content .form-asset .wrapper-card,
.modal-wrapper .modal .modal-content .form-asset .wrapper-asset,
.modal-wrapper .modal .modal-content .form-asset .wrapper-bcn,
.modal-wrapper .modal .modal-content .form-asset .wrapper-address,
.modal-wrapper .modal .modal-content .form-asset .wrapper-process-time,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-card,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-asset,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-bcn,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-address,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-process-time,
.modal-wrapper .modal .modal-content .form-address .wrapper-card,
.modal-wrapper .modal .modal-content .form-address .wrapper-asset,
.modal-wrapper .modal .modal-content .form-address .wrapper-bcn,
.modal-wrapper .modal .modal-content .form-address .wrapper-address,
.modal-wrapper .modal .modal-content .form-address .wrapper-process-time,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-card,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-asset,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-bcn,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-address,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-process-time,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-card,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-asset,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-bcn,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-address,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-process-time,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-card,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-asset,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-bcn,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-address,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-process-time,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-card,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-asset,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-bcn,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-address,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-process-time,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-card,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-asset,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-bcn,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-address,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-process-time,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-card,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-asset,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-bcn,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-address,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-process-time,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-card,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-asset,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-bcn,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-address,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-process-time,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-card,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-asset,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-bcn,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-address,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-process-time,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-card,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-asset,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-bcn,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-address,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-process-time {
  display: inline-flex;
  position: relative;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  align-items: center;
  height: 66px;
  width: 700px;
  box-sizing: border-box;
}
.modal-wrapper .modal .modal-content .form-asset .wrapper-card .input-label,
.modal-wrapper .modal .modal-content .form-asset .wrapper-asset .input-label,
.modal-wrapper .modal .modal-content .form-asset .wrapper-bcn .input-label,
.modal-wrapper .modal .modal-content .form-asset .wrapper-address .input-label,
.modal-wrapper .modal .modal-content .form-asset .wrapper-process-time .input-label,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-card .input-label,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-asset .input-label,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-bcn .input-label,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-address .input-label,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-process-time .input-label,
.modal-wrapper .modal .modal-content .form-address .wrapper-card .input-label,
.modal-wrapper .modal .modal-content .form-address .wrapper-asset .input-label,
.modal-wrapper .modal .modal-content .form-address .wrapper-bcn .input-label,
.modal-wrapper .modal .modal-content .form-address .wrapper-address .input-label,
.modal-wrapper .modal .modal-content .form-address .wrapper-process-time .input-label,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-card .input-label,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-asset .input-label,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-bcn .input-label,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-address .input-label,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-process-time .input-label,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-card .input-label,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-asset .input-label,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-bcn .input-label,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-address .input-label,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-process-time .input-label,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-card .input-label,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-asset .input-label,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-bcn .input-label,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-address .input-label,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-process-time .input-label,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-card .input-label,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-asset .input-label,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-bcn .input-label,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-address .input-label,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-process-time .input-label,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-card .input-label,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-asset .input-label,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-bcn .input-label,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-address .input-label,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-process-time .input-label,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-card .input-label,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-asset .input-label,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-bcn .input-label,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-address .input-label,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-process-time .input-label,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-card .input-label,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-asset .input-label,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-bcn .input-label,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-address .input-label,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-process-time .input-label,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-card .input-label,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-asset .input-label,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-bcn .input-label,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-address .input-label,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-process-time .input-label,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-card .input-label,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-asset .input-label,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-bcn .input-label,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-address .input-label,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-process-time .input-label {
  top: -6px;
  left: 10px;
  font-size: 12px;
  pointer-events: none;
  position: absolute;
  background-color: #ffffff;
  display: inline-block;
  left: 10px;
  padding: 0 10px;
  color: #747474;
}
.modal-wrapper .modal .modal-content .form-asset .wrapper-card .processing-time,
.modal-wrapper .modal .modal-content .form-asset .wrapper-asset .processing-time,
.modal-wrapper .modal .modal-content .form-asset .wrapper-bcn .processing-time,
.modal-wrapper .modal .modal-content .form-asset .wrapper-address .processing-time,
.modal-wrapper .modal .modal-content .form-asset .wrapper-process-time .processing-time,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-card .processing-time,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-asset .processing-time,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-bcn .processing-time,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-address .processing-time,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-process-time .processing-time,
.modal-wrapper .modal .modal-content .form-address .wrapper-card .processing-time,
.modal-wrapper .modal .modal-content .form-address .wrapper-asset .processing-time,
.modal-wrapper .modal .modal-content .form-address .wrapper-bcn .processing-time,
.modal-wrapper .modal .modal-content .form-address .wrapper-address .processing-time,
.modal-wrapper .modal .modal-content .form-address .wrapper-process-time .processing-time,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-card .processing-time,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-asset .processing-time,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-bcn .processing-time,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-address .processing-time,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-process-time .processing-time,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-card .processing-time,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-asset .processing-time,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-bcn .processing-time,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-address .processing-time,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-process-time .processing-time,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-card .processing-time,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-asset .processing-time,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-bcn .processing-time,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-address .processing-time,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-process-time .processing-time,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-card .processing-time,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-asset .processing-time,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-bcn .processing-time,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-address .processing-time,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-process-time .processing-time,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-card .processing-time,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-asset .processing-time,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-bcn .processing-time,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-address .processing-time,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-process-time .processing-time,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-card .processing-time,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-asset .processing-time,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-bcn .processing-time,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-address .processing-time,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-process-time .processing-time,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-card .processing-time,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-asset .processing-time,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-bcn .processing-time,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-address .processing-time,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-process-time .processing-time,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-card .processing-time,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-asset .processing-time,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-bcn .processing-time,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-address .processing-time,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-process-time .processing-time,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-card .processing-time,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-asset .processing-time,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-bcn .processing-time,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-address .processing-time,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-process-time .processing-time {
  margin-left: 1em;
}
.modal-wrapper .modal .modal-content .form-asset .wrapper-card .toast,
.modal-wrapper .modal .modal-content .form-asset .wrapper-asset .toast,
.modal-wrapper .modal .modal-content .form-asset .wrapper-bcn .toast,
.modal-wrapper .modal .modal-content .form-asset .wrapper-address .toast,
.modal-wrapper .modal .modal-content .form-asset .wrapper-process-time .toast,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-card .toast,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-asset .toast,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-bcn .toast,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-address .toast,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-process-time .toast,
.modal-wrapper .modal .modal-content .form-address .wrapper-card .toast,
.modal-wrapper .modal .modal-content .form-address .wrapper-asset .toast,
.modal-wrapper .modal .modal-content .form-address .wrapper-bcn .toast,
.modal-wrapper .modal .modal-content .form-address .wrapper-address .toast,
.modal-wrapper .modal .modal-content .form-address .wrapper-process-time .toast,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-card .toast,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-asset .toast,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-bcn .toast,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-address .toast,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-process-time .toast,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-card .toast,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-asset .toast,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-bcn .toast,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-address .toast,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-process-time .toast,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-card .toast,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-asset .toast,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-bcn .toast,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-address .toast,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-process-time .toast,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-card .toast,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-asset .toast,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-bcn .toast,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-address .toast,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-process-time .toast,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-card .toast,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-asset .toast,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-bcn .toast,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-address .toast,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-process-time .toast,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-card .toast,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-asset .toast,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-bcn .toast,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-address .toast,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-process-time .toast,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-card .toast,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-asset .toast,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-bcn .toast,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-address .toast,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-process-time .toast,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-card .toast,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-asset .toast,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-bcn .toast,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-address .toast,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-process-time .toast,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-card .toast,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-asset .toast,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-bcn .toast,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-address .toast,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-process-time .toast {
  display: none;
  color: #ffffff;
  text-transform: capitalize;
  position: absolute;
  right: 0px;
  top: -20px;
  background: #000000;
  padding: 10px;
  font-size: 13px;
  border-radius: 10px;
}
.modal-wrapper .modal .modal-content .form-asset .wrapper-card .toast.active,
.modal-wrapper .modal .modal-content .form-asset .wrapper-asset .toast.active,
.modal-wrapper .modal .modal-content .form-asset .wrapper-bcn .toast.active,
.modal-wrapper .modal .modal-content .form-asset .wrapper-address .toast.active,
.modal-wrapper .modal .modal-content .form-asset .wrapper-process-time .toast.active,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-card .toast.active,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-asset .toast.active,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-bcn .toast.active,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-address .toast.active,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-process-time .toast.active,
.modal-wrapper .modal .modal-content .form-address .wrapper-card .toast.active,
.modal-wrapper .modal .modal-content .form-address .wrapper-asset .toast.active,
.modal-wrapper .modal .modal-content .form-address .wrapper-bcn .toast.active,
.modal-wrapper .modal .modal-content .form-address .wrapper-address .toast.active,
.modal-wrapper .modal .modal-content .form-address .wrapper-process-time .toast.active,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-card .toast.active,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-asset .toast.active,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-bcn .toast.active,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-address .toast.active,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-process-time .toast.active,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-card .toast.active,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-asset .toast.active,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-bcn .toast.active,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-address .toast.active,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-process-time .toast.active,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-card .toast.active,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-asset .toast.active,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-bcn .toast.active,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-address .toast.active,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-process-time .toast.active,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-card .toast.active,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-asset .toast.active,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-bcn .toast.active,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-address .toast.active,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-process-time .toast.active,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-card .toast.active,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-asset .toast.active,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-bcn .toast.active,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-address .toast.active,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-process-time .toast.active,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-card .toast.active,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-asset .toast.active,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-bcn .toast.active,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-address .toast.active,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-process-time .toast.active,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-card .toast.active,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-asset .toast.active,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-bcn .toast.active,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-address .toast.active,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-process-time .toast.active,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-card .toast.active,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-asset .toast.active,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-bcn .toast.active,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-address .toast.active,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-process-time .toast.active,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-card .toast.active,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-asset .toast.active,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-bcn .toast.active,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-address .toast.active,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-process-time .toast.active {
  display: block;
}
.modal-wrapper .modal .modal-content .form-asset .wrapper-card .copy-icon,
.modal-wrapper .modal .modal-content .form-asset .wrapper-asset .copy-icon,
.modal-wrapper .modal .modal-content .form-asset .wrapper-bcn .copy-icon,
.modal-wrapper .modal .modal-content .form-asset .wrapper-address .copy-icon,
.modal-wrapper .modal .modal-content .form-asset .wrapper-process-time .copy-icon,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-card .copy-icon,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-asset .copy-icon,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-bcn .copy-icon,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-address .copy-icon,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-process-time .copy-icon,
.modal-wrapper .modal .modal-content .form-address .wrapper-card .copy-icon,
.modal-wrapper .modal .modal-content .form-address .wrapper-asset .copy-icon,
.modal-wrapper .modal .modal-content .form-address .wrapper-bcn .copy-icon,
.modal-wrapper .modal .modal-content .form-address .wrapper-address .copy-icon,
.modal-wrapper .modal .modal-content .form-address .wrapper-process-time .copy-icon,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-card .copy-icon,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-asset .copy-icon,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-bcn .copy-icon,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-address .copy-icon,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-process-time .copy-icon,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-card .copy-icon,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-asset .copy-icon,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-bcn .copy-icon,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-address .copy-icon,
.modal-wrapper-deposit .modal .modal-content .form-asset .wrapper-process-time .copy-icon,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-card .copy-icon,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-asset .copy-icon,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-bcn .copy-icon,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-address .copy-icon,
.modal-wrapper-deposit .modal .modal-content .form-bcn .wrapper-process-time .copy-icon,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-card .copy-icon,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-asset .copy-icon,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-bcn .copy-icon,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-address .copy-icon,
.modal-wrapper-deposit .modal .modal-content .form-address .wrapper-process-time .copy-icon,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-card .copy-icon,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-asset .copy-icon,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-bcn .copy-icon,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-address .copy-icon,
.modal-wrapper-deposit .modal .modal-content .form-process-time .wrapper-process-time .copy-icon,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-card .copy-icon,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-asset .copy-icon,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-bcn .copy-icon,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-address .copy-icon,
.modal-wrapper-withdraw .modal .modal-content .form-asset .wrapper-process-time .copy-icon,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-card .copy-icon,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-asset .copy-icon,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-bcn .copy-icon,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-address .copy-icon,
.modal-wrapper-withdraw .modal .modal-content .form-bcn .wrapper-process-time .copy-icon,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-card .copy-icon,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-asset .copy-icon,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-bcn .copy-icon,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-address .copy-icon,
.modal-wrapper-withdraw .modal .modal-content .form-address .wrapper-process-time .copy-icon,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-card .copy-icon,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-asset .copy-icon,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-bcn .copy-icon,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-address .copy-icon,
.modal-wrapper-withdraw .modal .modal-content .form-process-time .wrapper-process-time .copy-icon {
  position: absolute;
  right: 25px;
  cursor: pointer;
}

.balance-wrapper {
  padding: 1rem;
  padding-top: 0;
  padding-bottom: 18%;
  background: #f5f6fc;
  border-radius: 0px 0px 10px 10px;
}
.balance-wrapper .balance {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 18px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #747474;
}
.balance-wrapper .balance h2 {
  font-weight: bold;
  color: #000000;
}
.balance-wrapper .balance .text-green {
  color: #27ae60;
  font-weight: 600;
}
.balance-wrapper .greeting {
  font-size: 24px;
  padding: 1rem;
}

.slideshow {
  /* Fading animation */
}
.slideshow .slideshow-container {
  border-radius: 20px;
  margin-top: -19%;
}
.slideshow .mySlides {
  display: none;
}
.slideshow .mySlides img {
  width: 100%;
}
.slideshow .dot {
  margin: 0 3px;
  display: inline-block;
  transition: background-color 0.6s ease;
  position: relative;
  width: 12.5px;
  height: 12.5px;
  background: #ebebff;
  border-radius: 4px;
  margin-top: 1rem;
}
.slideshow .active,
.slideshow .dot:hover {
  background-color: #b5b5ff;
}
.slideshow .fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.card-list {
  max-width: 100%;
  position: relative;
}
.card-list h3 {
  font-weight: normal;
  font-size: 24px;
}
.card-list span {
  display: none;
  position: absolute;
  top: 53%;
  cursor: pointer;
  z-index: 1;
  width: 7px;
  height: 15px;
}
.card-list span:nth-of-type(1) {
  left: 12px;
}
.card-list span:nth-of-type(2) {
  right: 12px;
}
.card-list .cl-section {
  max-width: 100%;
  display: flex;
  overflow-x: scroll;
}
.card-list .cl-section::-webkit-scrollbar {
  display: none;
}
.card-list .cl-card {
  position: relative;
  min-width: 56%;
  margin-right: 2%;
  transition: 0.5s;
  left: 0;
  box-sizing: border-box;
  border-radius: 20px;
}
.card-list .cl-card img {
  width: 100%;
}

#watchlist .cl-card {
  min-width: 60%;
}

#bg-imgs {
  background-image: url("../../_assets/images/creative/bg-blobs.png");
  background-size: cover;
  background-position: center;
}

.referral-program .referral-card {
  border: 1px solid #d7d7d6;
  box-sizing: border-box;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 38px;
}
.referral-program .referral-card img.gift {
  width: 50px;
  margin: 0 auto;
  display: block;
  margin-top: 1rem;
}
.referral-program .referral-card p {
  line-height: 36px;
  color: #23262f;
  padding: 2rem 1.5rem 0 1.5rem;
}
.referral-program .referral-card h4 {
  line-height: 60px;
  color: #777e90;
  margin-bottom: 0;
  padding: 1rem 1.5rem 0 1.5rem;
}
.referral-program .referral-card .link-box {
  position: relative;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin: 0 1rem 1rem 1rem;
}
.referral-program .referral-card .link-box input {
  width: 100%;
  line-height: 60px;
  display: flex;
  align-items: center;
  text-align: left;
  color: #23262f;
  border: none;
  background: none;
  outline: none;
  padding: 0px 10px;
}
.referral-program .referral-card .link-box .copy-icon {
  width: 20px;
  margin-right: 10px;
}
.referral-program .toast {
  display: none;
  color: #ffffff;
  text-transform: capitalize;
  position: absolute;
  right: 0px;
  top: -20px;
  background: #000000;
  padding: 10px;
  font-size: 13px;
  border-radius: 10px;
}
.referral-program .toast.active {
  display: block;
}
.referral-program .copy-icon {
  right: 25px;
  cursor: pointer;
}

.homepage .left-nav {
  display: none;
  background: #ffffff;
  border-right: 1px solid #d7d7d6;
  z-index: 20;
}
.homepage .left-nav .desktop-menu-bar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.homepage .left-nav .desktop-menu-bar .desktop-menu-logo {
  background: #ffffff;
  padding: 29px 20px;
  border-bottom: 1px solid #d7d7d6;
}
.homepage .left-nav .desktop-menu-bar .desktop-menu-items {
  margin-top: 10px;
}
.homepage .left-nav .desktop-menu-bar .desktop-menu-items .trade-menu:hover + div {
  visibility: visible;
  opacity: 1;
}
.homepage .left-nav .desktop-menu-bar .desktop-menu-items .menu-card:hover {
  visibility: visible;
  opacity: 1;
}
.homepage .left-nav .desktop-menu-bar .desktop-menu-items a .desktop-menu-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  fill: #747474;
  stroke: #747474;
}
.homepage .left-nav .desktop-menu-bar .desktop-menu-items a .desktop-menu-item.active {
  fill: #ffffff;
  stroke: #ffffff;
  margin: 0px 10px;
  background-color: #2f80ed;
  border-radius: 20px;
}
.homepage .left-nav .desktop-menu-bar .desktop-menu-items a .desktop-menu-item.active .item {
  color: #ffffff;
  font-weight: bold;
}
.homepage .left-nav .desktop-menu-bar .desktop-menu-items a .desktop-menu-item svg {
  padding-top: 7px;
  height: 30px;
}
.homepage .left-nav .desktop-menu-bar .desktop-menu-items a .desktop-menu-item .item {
  padding: 10px 0px;
  font-size: 12px;
  color: #747474;
  text-transform: capitalize;
}
.homepage .left-nav .desktop-menu-bar .desktop-menu-items .menu-card {
  visibility: hidden;
  position: fixed;
  margin-left: 7.2rem;
  width: 267px;
  background-color: #2f80ed;
  padding: 1.5rem;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.homepage .left-nav .desktop-menu-bar .desktop-menu-items .menu-card.active {
  display: block !important;
}
.homepage .left-nav .desktop-menu-bar .desktop-menu-items .menu-card svg {
  stroke: #ffffff;
}
.homepage .left-nav .desktop-menu-bar .desktop-menu-items .menu-card .convert {
  width: 45px;
  height: 30px;
  stroke: #ffffff;
}
.homepage .left-nav .desktop-menu-bar .desktop-menu-items .menu-card .convert-menu-item,
.homepage .left-nav .desktop-menu-bar .desktop-menu-items .menu-card .spot-trading-menu-item {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0rem;
  color: #ffffff;
}
.homepage .left-nav .desktop-menu-bar .desktop-menu-items .menu-card .convert-menu-item .menu-card-title,
.homepage .left-nav .desktop-menu-bar .desktop-menu-items .menu-card .spot-trading-menu-item .menu-card-title {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: bold;
  color: #f2f2f2;
  padding: 0rem 0rem 0.5rem 0rem;
}
.homepage .left-nav .desktop-menu-bar .desktop-menu-items .menu-card .convert-menu-item .menu-card-desc,
.homepage .left-nav .desktop-menu-bar .desktop-menu-items .menu-card .spot-trading-menu-item .menu-card-desc {
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.651);
}
.homepage .left-nav .desktop-menu-bar .desktop-menu-items .menu-card .convert-menu-item .convert-menu-item-nav,
.homepage .left-nav .desktop-menu-bar .desktop-menu-items .menu-card .convert-menu-item .spot-trading-menu-item-nav,
.homepage .left-nav .desktop-menu-bar .desktop-menu-items .menu-card .spot-trading-menu-item .convert-menu-item-nav,
.homepage .left-nav .desktop-menu-bar .desktop-menu-items .menu-card .spot-trading-menu-item .spot-trading-menu-item-nav {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
.homepage .left-nav .color-switch {
  width: 100%;
  position: relative;
  background: #ffffff;
  bottom: 0;
  padding: 25px 3px;
  border-top: 1px solid #d7d7d6;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.homepage .left-nav .color-switch input[type=checkbox] {
  position: relative;
  width: 40px;
  height: 12px;
  -webkit-appearance: none;
  background: #ffffff;
  outline: none;
  border: 2px solid #6c6c6e;
  border-radius: 20px;
  transition: 0.7s;
}
.homepage .left-nav .color-switch input[type=checkbox]::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  top: -13.5px;
  left: -10px;
  background: #333333;
  border: 5px solid #ffffff;
  transform: scale(0.7);
  transition: 0.5s;
}
.homepage .left-nav .color-switch input:checked[type=checkbox]:before {
  left: 10px;
}
.homepage .right-content {
  flex: 1;
}
.homepage .right-content #chartdiv {
  width: 100%;
  height: 300px;
}
.homepage .homepage-content-wrapper .right-side-section {
  display: none;
}

@media (min-width: 1024px) {
  section {
    padding: 2rem;
  }

  .homepage {
    display: flex;
  }
  .homepage .left-nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    height: 100%;
    z-index: 20;
    overflow: auto;
  }
  .homepage .left-nav::-webkit-scrollbar {
    display: none;
  }
  .homepage .right-content {
    margin-left: 114px;
  }
  .homepage .navbar {
    padding: 0.67rem 0 0.67rem 1.5rem;
    border-bottom: 1px solid #d7d7d6;
  }
  .homepage .navbar .menu {
    margin: 0.5rem 0;
  }
  .homepage .navbar .menu ul {
    display: flex;
  }
  .homepage .navbar .menu ul .nav-item {
    cursor: pointer;
    padding: 5px 25px;
    height: 36px;
    border-right: 1px solid #e3e3e3;
  }
  .homepage .navbar .menu ul .nav-item:first-child .notification-dot {
    display: none;
    position: absolute;
    margin-left: -10px;
    border: 6px solid #ff0000;
    border-radius: 50%;
  }
  .homepage .navbar .menu ul .nav-item:first-child .notification-dot.active {
    display: inline-block;
  }
  .homepage .navbar .menu ul .nav-item:last-child {
    border-right: none;
    margin-top: 5px;
  }
  .homepage .navbar .menu ul .nav-item span.avatar {
    align-items: center;
    margin-top: 15px;
    padding: 10px;
    background: #64acef;
    border: 1px solid #3f74da;
    font-weight: bold;
    font-size: 13px;
    text-align: center;
    color: #001b7a;
  }
  .homepage .navbar .menu ul .nav-item img.span {
    position: absolute;
    height: 15px;
    width: 15px;
    background-color: #ff0000;
    border-radius: 50%;
  }
  .homepage .navbar .menu .title {
    margin-top: 0;
    line-height: 41px;
  }
  .homepage .navbar .menu .hamburger {
    display: none;
  }
  .homepage .menu-bar {
    display: none !important;
  }
  .homepage .homepage-content-wrapper {
    display: flex;
  }
  .homepage .homepage-content-wrapper .left-side .balance-wrapper {
    background-color: #ffffff;
    margin-top: 1rem;
  }
  .homepage .homepage-content-wrapper .left-side .balance-wrapper .balance {
    display: none;
  }
  .homepage .homepage-content-wrapper .left-side .balance-wrapper .greeting {
    font-size: 28px;
    padding: 1rem 1rem 0 1rem;
  }
  .homepage .homepage-content-wrapper .left-side .card-list span {
    display: block;
  }
  .homepage .homepage-content-wrapper .left-side .cl-card {
    min-width: 30%;
  }
  .homepage .homepage-content-wrapper .left-side #watchlist .cl-card {
    min-width: 31.5%;
  }
  .homepage .homepage-content-wrapper .left-side .referral-program .referral-card {
    padding: 0 1em;
    height: 310px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .homepage .homepage-content-wrapper .left-side .referral-program .referral-card .card-img {
    padding: 3rem;
  }
  .homepage .homepage-content-wrapper .left-side .referral-program .referral-card .card-img img {
    width: 11em;
  }
  .homepage .homepage-content-wrapper .left-side .referral-program .referral-card .card-content {
    padding: 1rem;
  }
  .homepage .homepage-content-wrapper .left-side .referral-program .referral-card .card-content h4 {
    font-size: 18px;
    padding: 0;
    padding-top: 0.5rem;
  }
  .homepage .homepage-content-wrapper .left-side .referral-program .referral-card .card-content p {
    font-size: 19px;
    line-height: 35px;
    padding: 0;
  }
  .homepage .homepage-content-wrapper .left-side .referral-program .referral-card .card-content .link-box {
    margin: 0;
  }
  .homepage .homepage-content-wrapper .left-side .referral-program .referral-card .card-content .link-box input {
    font-size: large;
  }
  .homepage .homepage-content-wrapper .right-side-section {
    position: relative;
    display: block;
    border-left: 1px solid #d7d7d6;
    padding: 1.5rem;
    text-align: center;
  }
  .homepage .homepage-content-wrapper .right-side-section .total {
    color: #4f4f4f;
    margin: 10px 0px;
  }
  .homepage .homepage-content-wrapper .right-side-section .total-action-btn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    text-transform: capitalize;
  }
  .homepage .homepage-content-wrapper .right-side-section .total-action-btn a span {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .homepage .homepage-content-wrapper .right-side-section .total-action-btn .deposit-btn {
    width: 90%;
    background: #2f80ed;
    color: #ffffff;
    padding: 25px 50px;
    border-radius: 10px;
    line-height: 0px;
    font-size: 16px;
    font-weight: normal;
  }
  .homepage .homepage-content-wrapper .right-side-section .total-action-btn .withdraw-btn {
    width: 90%;
    background: #f2f2f2;
    padding: 25px 50px;
    border-radius: 10px;
    color: #333333;
    line-height: 0px;
    margin-left: 5px;
  }
  .homepage .homepage-content-wrapper .transaction-history-list {
    background-color: #ffffff;
  }
  .homepage .homepage-content-wrapper .transaction-history-list .list-1,
.homepage .homepage-content-wrapper .transaction-history-list .list-2,
.homepage .homepage-content-wrapper .transaction-history-list .list-3 {
    background-color: #ffffff;
    padding: 0px 5px;
    margin: 10px 0px 30px 0px;
  }
  .homepage .homepage-content-wrapper .transaction-history-list .list-1 .date-title,
.homepage .homepage-content-wrapper .transaction-history-list .list-2 .date-title,
.homepage .homepage-content-wrapper .transaction-history-list .list-3 .date-title {
    margin-top: 15px;
    width: 100%;
    text-align: left;
    text-transform: capitalize;
    padding: 8px 0px;
    font-size: 14px;
    border-bottom: 1px solid #a8a8a8;
    font-size: 18px;
    line-height: 20px;
    color: #000000;
    font-weight: normal;
  }
  .homepage .homepage-content-wrapper .transaction-history-list .list-1 ul li,
.homepage .homepage-content-wrapper .transaction-history-list .list-2 ul li,
.homepage .homepage-content-wrapper .transaction-history-list .list-3 ul li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    border-bottom: 1px solid #e0e0e0;
  }
  .homepage .homepage-content-wrapper .transaction-history-list .list-1 ul li:last-child,
.homepage .homepage-content-wrapper .transaction-history-list .list-2 ul li:last-child,
.homepage .homepage-content-wrapper .transaction-history-list .list-3 ul li:last-child {
    border-bottom: none;
  }
  .homepage .homepage-content-wrapper .transaction-history-list .list-1 ul li .time-date-info,
.homepage .homepage-content-wrapper .transaction-history-list .list-2 ul li .time-date-info,
.homepage .homepage-content-wrapper .transaction-history-list .list-3 ul li .time-date-info {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
  }
  .homepage .homepage-content-wrapper .transaction-history-list .list-1 ul li .time-date-info img,
.homepage .homepage-content-wrapper .transaction-history-list .list-2 ul li .time-date-info img,
.homepage .homepage-content-wrapper .transaction-history-list .list-3 ul li .time-date-info img {
    width: 50px;
    height: 50px;
    padding: 0px 10px;
  }
  .homepage .homepage-content-wrapper .transaction-history-list .list-1 ul li .time-date-info p,
.homepage .homepage-content-wrapper .transaction-history-list .list-2 ul li .time-date-info p,
.homepage .homepage-content-wrapper .transaction-history-list .list-3 ul li .time-date-info p {
    line-height: 25px;
    color: #4f4f4f;
  }
  .homepage .homepage-content-wrapper .transaction-history-list .list-1 ul li .time-date-info p .bought,
.homepage .homepage-content-wrapper .transaction-history-list .list-2 ul li .time-date-info p .bought,
.homepage .homepage-content-wrapper .transaction-history-list .list-3 ul li .time-date-info p .bought {
    color: #27ae60;
  }
  .homepage .homepage-content-wrapper .transaction-history-list .list-1 ul li .time-date-info p .sold,
.homepage .homepage-content-wrapper .transaction-history-list .list-2 ul li .time-date-info p .sold,
.homepage .homepage-content-wrapper .transaction-history-list .list-3 ul li .time-date-info p .sold {
    color: #ff0000;
  }
  .homepage .homepage-content-wrapper .transaction-history-list .list-1 ul li .time-date-info p .time,
.homepage .homepage-content-wrapper .transaction-history-list .list-2 ul li .time-date-info p .time,
.homepage .homepage-content-wrapper .transaction-history-list .list-3 ul li .time-date-info p .time {
    font-size: 12px;
    color: #747474;
  }
  .homepage .homepage-content-wrapper .transaction-history-list .list-1 ul li .rate-info,
.homepage .homepage-content-wrapper .transaction-history-list .list-2 ul li .rate-info,
.homepage .homepage-content-wrapper .transaction-history-list .list-3 ul li .rate-info {
    text-align: right;
  }
  .homepage .homepage-content-wrapper .transaction-history-list .list-1 ul li .rate-info .uppercase,
.homepage .homepage-content-wrapper .transaction-history-list .list-2 ul li .rate-info .uppercase,
.homepage .homepage-content-wrapper .transaction-history-list .list-3 ul li .rate-info .uppercase {
    text-transform: uppercase;
  }
  .homepage .homepage-content-wrapper .transaction-history-list .list-1 ul li .rate-info p,
.homepage .homepage-content-wrapper .transaction-history-list .list-2 ul li .rate-info p,
.homepage .homepage-content-wrapper .transaction-history-list .list-3 ul li .rate-info p {
    padding: 8px 0;
    font-size: 12px;
    color: #4f4f4f;
  }
  .homepage .homepage-content-wrapper .transaction-history-list .list-1 ul li .rate-info p img,
.homepage .homepage-content-wrapper .transaction-history-list .list-2 ul li .rate-info p img,
.homepage .homepage-content-wrapper .transaction-history-list .list-3 ul li .rate-info p img {
    padding: 0px 0px 0px 10px;
  }
  .homepage .homepage-content-wrapper .transaction-history-list .list-1 ul li .rate-info .bought,
.homepage .homepage-content-wrapper .transaction-history-list .list-2 ul li .rate-info .bought,
.homepage .homepage-content-wrapper .transaction-history-list .list-3 ul li .rate-info .bought {
    color: #27ae60;
    font-size: 16px;
  }
  .homepage .homepage-content-wrapper .transaction-history-list .list-1 ul li .rate-info .sold,
.homepage .homepage-content-wrapper .transaction-history-list .list-2 ul li .rate-info .sold,
.homepage .homepage-content-wrapper .transaction-history-list .list-3 ul li .rate-info .sold {
    color: #ff0000;
    font-size: 16px;
  }
  .homepage .homepage-content-wrapper .show-more {
    position: absolute;
    background-color: #ffffff;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 25px;
  }
  .homepage .homepage-content-wrapper .show-more a {
    font-size: 18px;
    color: #2f80ed;
  }
}
.main-form {
  padding: 2rem 1rem;
}
.main-form .pagination .pagination-title {
  height: 42px;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  color: #000000;
}
.main-form .form {
  max-width: 475px;
  margin-top: 3rem;
}
.main-form .form .pay,
.main-form .form .receive {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding-bottom: 1rem;
}
.main-form .form .pay .custom-select .dropdown,
.main-form .form .receive .custom-select .dropdown {
  list-style: none;
  padding: 0;
  display: none;
}
.main-form .form .pay .dropdown .img-wrapper,
.main-form .form .pay .placeholder .img-wrapper,
.main-form .form .receive .dropdown .img-wrapper,
.main-form .form .receive .placeholder .img-wrapper {
  display: inline-block;
  width: 30px;
}
.main-form .form .pay .dropdown img,
.main-form .form .receive .dropdown img {
  max-width: 100%;
}
.main-form .form .pay .placeholder,
.main-form .form .receive .placeholder {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  position: relative;
  margin-top: 0.5rem;
}
.main-form .form .pay .placeholder img,
.main-form .form .receive .placeholder img {
  max-width: 100%;
  min-width: 10px !important;
}
.main-form .form .pay .placeholder .text,
.main-form .form .receive .placeholder .text {
  text-transform: capitalize;
  padding: 0px 5px;
  font-size: 16px;
  color: #25272c;
}
.main-form .form .pay .custom-select.active,
.main-form .form .receive .custom-select.active {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.main-form .form .pay .custom-select.active .placeholder::after,
.main-form .form .receive .custom-select.active .placeholder::after {
  right: 0px;
}
.main-form .form .pay .custom-select.active .placeholder::before,
.main-form .form .receive .custom-select.active .placeholder::before {
  right: -8px;
}
.main-form .form .pay .custom-select.active .dropdown,
.main-form .form .receive .custom-select.active .dropdown {
  z-index: 10;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 70px;
  width: calc(100vw - 32px);
  max-width: 473px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  height: 200px;
  overflow-y: scroll;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}
.main-form .form .pay .custom-select.active .dropdown .search-field,
.main-form .form .receive .custom-select.active .dropdown .search-field {
  position: -webkit-sticky;
  position: sticky;
}
.main-form .form .pay .custom-select.active .dropdown .search-field input[type=text],
.main-form .form .receive .custom-select.active .dropdown .search-field input[type=text] {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  width: 100%;
  height: 47px;
}
.main-form .form .pay .custom-select.active .dropdown .search-field .search-icon,
.main-form .form .receive .custom-select.active .dropdown .search-field .search-icon {
  margin-left: 12px;
  position: absolute;
}
.main-form .form .pay .custom-select.active .dropdown .search-field .search,
.main-form .form .receive .custom-select.active .dropdown .search-field .search {
  padding-left: 30px;
}
.main-form .form .pay .dropdown li,
.main-form .form .receive .dropdown li {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 15px 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.main-form .form .pay .dropdown li:not(:last-child),
.main-form .form .receive .dropdown li:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
.main-form .form .pay .dropdown li .img-wrapper,
.main-form .form .receive .dropdown li .img-wrapper {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.main-form .form .pay .dropdown li .text,
.main-form .form .receive .dropdown li .text {
  text-transform: capitalize;
  font-size: 16px;
  color: #25272c;
  padding: 0px 10px;
}
.main-form .form .pay .dropdown li:first-child,
.main-form .form .receive .dropdown li:first-child {
  top: 0;
  left: 0;
  width: 100%;
}
.main-form .form .pay .custom-select,
.main-form .form .receive .custom-select {
  flex-direction: column;
  position: relative;
  align-items: flex-end;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 66px;
  border-left: 1px solid #e3e3e3;
}
.main-form .form .pay input,
.main-form .form .receive input {
  border: 0;
  outline: none;
  box-shadow: none;
  width: 100%;
  display: inline-block;
  height: 30px;
  text-align: left;
  padding: 0px 10px;
  font-size: 16px;
  color: #25272c;
}
.main-form .form .pay input::-moz-placeholder, .main-form .form .receive input::-moz-placeholder {
  font-size: 16px;
  color: #747474;
}
.main-form .form .pay input:-ms-input-placeholder, .main-form .form .receive input:-ms-input-placeholder {
  font-size: 16px;
  color: #747474;
}
.main-form .form .pay input::placeholder,
.main-form .form .receive input::placeholder {
  font-size: 16px;
  color: #747474;
}
.main-form .form .pay .wrapper-pay,
.main-form .form .pay .wrapper-receive,
.main-form .form .receive .wrapper-pay,
.main-form .form .receive .wrapper-receive {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  height: 66px;
  width: 100%;
  box-sizing: border-box;
}
.main-form .form .pay .wrapper-pay .input-field:not(:-moz-placeholder-shown) ~ .input-label, .main-form .form .pay .wrapper-receive .input-field:not(:-moz-placeholder-shown) ~ .input-label, .main-form .form .receive .wrapper-pay .input-field:not(:-moz-placeholder-shown) ~ .input-label, .main-form .form .receive .wrapper-receive .input-field:not(:-moz-placeholder-shown) ~ .input-label {
  transform: translateY(-30px);
  font-size: 12px;
}
.main-form .form .pay .wrapper-pay .input-field:not(:-ms-input-placeholder) ~ .input-label, .main-form .form .pay .wrapper-receive .input-field:not(:-ms-input-placeholder) ~ .input-label, .main-form .form .receive .wrapper-pay .input-field:not(:-ms-input-placeholder) ~ .input-label, .main-form .form .receive .wrapper-receive .input-field:not(:-ms-input-placeholder) ~ .input-label {
  transform: translateY(-30px);
  font-size: 12px;
}
.main-form .form .pay .wrapper-pay .input-field:focus ~ .input-label,
.main-form .form .pay .wrapper-pay .input-field:not(:placeholder-shown) ~ .input-label,
.main-form .form .pay .wrapper-receive .input-field:focus ~ .input-label,
.main-form .form .pay .wrapper-receive .input-field:not(:placeholder-shown) ~ .input-label,
.main-form .form .receive .wrapper-pay .input-field:focus ~ .input-label,
.main-form .form .receive .wrapper-pay .input-field:not(:placeholder-shown) ~ .input-label,
.main-form .form .receive .wrapper-receive .input-field:focus ~ .input-label,
.main-form .form .receive .wrapper-receive .input-field:not(:placeholder-shown) ~ .input-label {
  transform: translateY(-30px);
  font-size: 12px;
}
.main-form .form .pay .wrapper-pay .balance-display,
.main-form .form .pay .wrapper-receive .balance-display,
.main-form .form .receive .wrapper-pay .balance-display,
.main-form .form .receive .wrapper-receive .balance-display {
  pointer-events: none;
  position: absolute;
  display: inline-block;
  top: -20px;
  color: #747474;
  width: 100%;
  text-align: right;
  font-size: 14px;
}
.main-form .form .pay .wrapper-pay button.max-balance,
.main-form .form .pay .wrapper-pay .discard-max-balance,
.main-form .form .pay .wrapper-receive button.max-balance,
.main-form .form .pay .wrapper-receive .discard-max-balance,
.main-form .form .receive .wrapper-pay button.max-balance,
.main-form .form .receive .wrapper-pay .discard-max-balance,
.main-form .form .receive .wrapper-receive button.max-balance,
.main-form .form .receive .wrapper-receive .discard-max-balance {
  outline: none;
  border: none;
  background-color: #eaf1fe;
  text-transform: capitalize;
  border-radius: 10px;
  padding: 10px;
  margin-right: 8px;
  color: #777e90;
  font-size: 13px;
  width: 8rem;
  cursor: pointer;
}
.main-form .form .pay .input-label,
.main-form .form .receive .input-label {
  pointer-events: none;
  position: absolute;
  background-color: #ffffff;
  display: inline-block;
  left: 10px;
  padding: 0 10px;
  font-size: 16px;
  color: #747474;
}
.main-form .form .pay .input-label,
.main-form .form .pay .input-field,
.main-form .form .receive .input-label,
.main-form .form .receive .input-field {
  transition: ease-in-out 0.2s all;
}
.main-form .form .form-card {
  display: flex;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.main-form .form .form-card .wrapper-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  align-items: center;
  height: 66px;
  box-sizing: border-box;
  width: 100%;
}
.main-form .form .form-card .wrapper-card .input-label {
  top: -6px;
  left: 10px;
  font-size: 12px;
  pointer-events: none;
  position: absolute;
  background-color: #ffffff;
  display: inline-block;
  left: 10px;
  padding: 0 10px;
  color: #747474;
}
.main-form .form .form-card .custom-select {
  flex-direction: column;
  position: relative;
  margin-top: 1.3rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 66px;
}
.main-form .form .form-card .placeholder {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding: 0 1rem 0 1rem;
}
.main-form .form .form-card .placeholder img {
  max-width: 100%;
}
.main-form .form .form-card .placeholder .select {
  display: flex;
}
.main-form .form .form-card .placeholder .text {
  text-transform: capitalize;
  font-size: 16px;
  color: #25272c;
}
.main-form .form .form-card .custom-select .dropdown-card {
  list-style: none;
  padding: 0;
  display: none;
}
.main-form .form .form-card .dropdown-card .img-wrapper,
.main-form .form .form-card .placeholder .img-wrapper {
  display: inline-block;
  padding: 0px 10px 0px 0px;
}
.main-form .form .form-card .dropdown-card img {
  max-width: 100%;
}
.main-form .form .form-card .custom-select.active {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.main-form .form .form-card .custom-select.active .placeholder::after {
  right: -27px;
}
.main-form .form .form-card .custom-select.active .placeholder::before {
  right: -35px;
}
.main-form .form .form-card .custom-select.active .dropdown-card {
  z-index: 100;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50px;
  right: 0px;
  left: 0px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  height: 105px;
  overflow-y: scroll;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}
.main-form .form .form-card .dropdown-card li {
  text-align: right;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: #ffffff;
  padding: 15px 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.main-form .form .form-card .dropdown-card li:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
.main-form .form .form-card .dropdown-card li .img-wrapper {
  width: 50px;
  height: 21px;
  margin-right: 5px;
}
.main-form .form .form-card .dropdown-card li .text {
  text-transform: capitalize;
  padding: 0px 20px 0px 10px;
  font-size: 16px;
  color: #25272c;
  font-size: 16px;
  color: #25272c;
}
.main-form .form .form-card input {
  border: 0;
  outline: none;
  box-shadow: none;
  width: 0px;
  display: inline-block;
  height: 30px;
  text-align: left;
  font-size: 16px;
  color: #25272c;
}
.main-form .form .form-card input::-moz-placeholder {
  font-size: 16px;
  color: #747474;
}
.main-form .form .form-card input:-ms-input-placeholder {
  font-size: 16px;
  color: #747474;
}
.main-form .form .form-card input::placeholder {
  font-size: 16px;
  color: #747474;
}
.main-form .form input[type=submit] {
  border: none;
  padding: 16px 24px;
  width: 100%;
  background: #2f80ed;
  border-radius: 7px;
  color: #fcfcfd;
  line-height: 16px;
  cursor: pointer;
  margin-bottom: 1rem;
}
.main-form .form .convert {
  font-size: 14px;
  line-height: 24px;
  color: #777e90;
}
.main-form .form .convert .convert-redirect {
  color: #2f80ed;
}

@media (min-width: 800px) {
  .main-form {
    padding: 6rem 0;
  }
  .main-form .pagination .pagination-title {
    font-size: 28px;
  }
  .main-form .pay .wrapper-pay .input-field {
    width: 300px;
  }
  .main-form .receive .wrapper-receive .input-field {
    width: 300px;
  }
}
.body-bg {
  padding: 2.5rem 2.3rem;
  position: relative;
}

header .logo-wrapper {
  padding-bottom: 3rem;
}
header .logo-wrapper .logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 131.27px;
  height: 38px;
}

.content .title {
  font-weight: bolder;
  padding: 1.5rem 0 0.8rem 0 !important;
  line-height: 2.5rem !important;
  text-align: center;
  font-size: 36px;
}
.content p {
  color: #777e90;
  margin-bottom: 26px;
  text-align: center;
}

form {
  padding: 0 1rem;
}
form .url-verifier {
  background-color: #f2f6ff;
  border-radius: 10px;
  margin-bottom: 24px;
}
form .url-verifier p {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 12px 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: #23262f;
  word-break: break-word;
}
form .url-verifier p .ssl-icon {
  padding: 0px 5px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
form .url-verifier p .ssl-certificate {
  color: #27ae60;
}
form .wrapper {
  position: relative;
}
form .wrapper .input-field:not(:-moz-placeholder-shown) ~ .input-label {
  transform: translateY(-30px);
  font-size: 12px;
}
form .wrapper .input-field:not(:-ms-input-placeholder) ~ .input-label {
  transform: translateY(-30px);
  font-size: 12px;
}
form .wrapper .input-field:focus ~ .input-label,
form .wrapper .input-field:not(:placeholder-shown) ~ .input-label {
  transform: translateY(-30px);
  font-size: 12px;
}
form .wrapper input[type=email],
form .wrapper input[type=password],
form .wrapper input[type=text] {
  position: relative;
  margin-bottom: 1rem;
  width: 100%;
  height: 3rem;
  padding-left: 1rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  transition: ease-in-out 0.2s all;
}
form .wrapper input[type=email]:focus,
form .wrapper input[type=password]:focus,
form .wrapper input[type=text]:focus {
  outline: none !important;
  border: 1px solid #2f80ed;
}
form .wrapper .input-label {
  pointer-events: none;
  position: absolute;
  background-color: #ffffff;
  display: inline-block;
  left: 10px;
  top: 1rem;
  padding: 0 10px;
  color: #747474;
  transition: ease-in-out 0.2s all;
}
form .wrapper .email-icon,
form .wrapper .password-eye,
form .wrapper .confirm-password-eye {
  position: absolute;
  right: 1.5rem;
  padding-top: 0.7rem;
  cursor: pointer;
}
form .wrapper #visibility-off {
  display: none;
}
form .wrapper #confim-visibility-off {
  display: none;
}
form input[type=checkbox] {
  background: #ffffff;
  margin-top: 7px;
}
form a.links {
  color: #2f80ed;
}
form .forgot-password {
  padding-left: 8px;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 12px;
}
form .read-text {
  padding-left: 8px;
  font-size: 14px;
  line-height: 28px;
  color: #777e90;
}
form input::-moz-placeholder {
  line-height: 28px;
  color: #777e90;
}
form input:-ms-input-placeholder {
  line-height: 28px;
  color: #777e90;
}
form input::placeholder {
  line-height: 28px;
  color: #777e90;
}
form a.submit {
  display: inline-block;
  border: none;
  padding: 16px 24px;
  width: 100%;
  background: #2f80ed;
  border-radius: 7px;
  color: #fcfcfd;
  text-align: center;
  margin-top: 36px;
  line-height: 16px;
  font-family: "DM Sans", "Helvetics", "Roboto", "Arial", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}
form input:focus {
  outline: none !important;
  border: 1px solid #2f80ed;
}

@media (min-width: 800px) {
  header .logo-wrapper {
    padding-left: 18px;
  }
  header .logo-wrapper .logo {
    margin-left: 0;
  }

  .content {
    max-width: 510px;
    margin: 0 auto;
  }
  .content .title {
    font-weight: bolder;
    font-size: 36px;
  }
  .content form {
    padding: 0 5rem;
  }
}
.content .title {
  padding: 1.2rem 0 1rem 0;
  line-height: 28px;
  text-align: center;
}
.content p {
  color: #777e90;
  margin-bottom: 30px;
  text-align: center;
  line-height: 28px;
}

form .wrapper {
  position: relative;
  margin-bottom: 0 !important;
}
form .wrapper .input-field:not(:-moz-placeholder-shown) ~ .input-label {
  transform: translateY(-30px);
  font-size: 12px;
}
form .wrapper .input-field:not(:-ms-input-placeholder) ~ .input-label {
  transform: translateY(-30px);
  font-size: 12px;
}
form .wrapper .input-field:focus ~ .input-label,
form .wrapper .input-field:not(:placeholder-shown) ~ .input-label {
  transform: translateY(-30px);
  font-size: 12px;
}
form .wrapper input[type=email],
form .wrapper input[type=password],
form .wrapper input[type=text] {
  position: relative;
  width: 100%;
  height: 3rem;
  padding-left: 1rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  transition: ease-in-out 0.2s all;
}
form .wrapper .input-label {
  pointer-events: none;
  position: absolute;
  background-color: #ffffff;
  display: inline-block;
  left: 10px;
  top: 1rem;
  padding: 0 10px;
  color: #747474;
  transition: ease-in-out 0.2s all;
}
form .wrapper .email-icon {
  position: absolute;
  right: 1.5rem;
  padding-top: 0.9rem;
}
form a.links {
  color: #2f80ed;
}
form .anchor-text {
  padding-left: 8px;
  font-size: 16px;
  line-height: 28px;
  color: #777e90;
  text-align: center;
}
form input::-moz-placeholder {
  line-height: 28px;
  color: #777e90;
}
form input:-ms-input-placeholder {
  line-height: 28px;
  color: #777e90;
}
form input::placeholder {
  line-height: 28px;
  color: #777e90;
}
form a.submit {
  display: inline-block;
  border: none;
  padding: 16px 24px;
  width: 100%;
  background: #2f80ed;
  border-radius: 7px;
  color: #fcfcfd;
  text-align: center;
  line-height: 16px;
  font-family: "DM Sans", "Helvetics", "Roboto", "Arial", sans-serif;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 19px;
}
form input:focus {
  outline: none !important;
  border: 1px solid #2f80ed;
}

@media (min-width: 800px) {
  header .logo-wrapper {
    padding-left: 18px;
  }
  header .logo-wrapper .logo {
    margin-left: 0;
  }

  .content {
    max-width: 510px;
    margin: 0 auto;
  }
  .content .title {
    font-size: 36px;
    line-height: 48px;
    padding-bottom: 24px;
  }
  .content p {
    margin-bottom: 25px;
  }
  .content form {
    padding: 0 3rem;
  }
  .content form .wrapper {
    margin-bottom: 33px;
  }
  .content form a.submit {
    margin-bottom: 1rem;
  }
}
.content .title {
  padding: 1.2rem 0 2.5rem 0;
  line-height: 28px;
  text-align: center;
}

form {
  padding: 0 0.5rem;
}
form .sms-code-title,
form .email-code-title,
form .google-code-title {
  line-height: 28px;
  color: #2c2c2c;
  margin-bottom: 8px;
}
form .sms-code,
form .email-code,
form .google-code {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5 ease-in-out;
  margin-bottom: 1.5rem;
}
form .sms-code .sms-otp,
form .sms-code .email-otp,
form .sms-code .google-otp,
form .email-code .sms-otp,
form .email-code .email-otp,
form .email-code .google-otp,
form .google-code .sms-otp,
form .google-code .email-otp,
form .google-code .google-otp {
  width: 10.5vw;
  height: 10.5vw;
  outline: none;
  border: none;
  border-radius: 4px;
  background-color: #e2e2e2;
  text-align: center;
  font-size: 14px;
}
form .sms-code .sms-otp:focus,
form .sms-code .email-otp:focus,
form .sms-code .google-otp:focus,
form .email-code .sms-otp:focus,
form .email-code .email-otp:focus,
form .email-code .google-otp:focus,
form .google-code .sms-otp:focus,
form .google-code .email-otp:focus,
form .google-code .google-otp:focus {
  border: 1px solid #2f80ed;
}
form .user-check {
  align-items: baseline;
  margin-top: -0.5rem;
}
form .user-check .user-terms {
  text-align: left;
  padding-left: 8px;
  font-size: 16px;
  line-height: 28px;
  color: #777e90;
}
form .user-check .user-terms a.user-agreements {
  color: #2f80ed;
}
form a.submit {
  display: inline-block;
  border: none;
  padding: 16px 24px;
  width: 100%;
  background: #2f80ed;
  border-radius: 7px;
  color: #fcfcfd;
  text-align: center;
  margin-top: 16px;
  line-height: 16px;
  font-family: "DM Sans", "Helvetics", "Roboto", "Arial", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 800px) {
  .content {
    max-width: 510px;
    margin: 0 auto;
    margin-top: 0.5rem;
  }
  .content .title {
    font-size: 36px;
    line-height: 48px;
  }
  .content form {
    padding: 0 4rem;
  }
  .content form .sms-code .sms-otp,
.content form .sms-code .email-otp,
.content form .sms-code .google-otp,
.content form .email-code .sms-otp,
.content form .email-code .email-otp,
.content form .email-code .google-otp,
.content form .google-code .sms-otp,
.content form .google-code .email-otp,
.content form .google-code .google-otp {
    width: 50px;
    height: 50px;
  }
}
.main-form-history {
  padding: 0.5rem 1rem;
}
.main-form-history .form {
  text-align: center;
  justify-content: center;
  align-items: center;
}
.main-form-history .form .search-field {
  position: relative;
  margin-top: 16px;
  z-index: -1;
}
.main-form-history .form .search-field input[type=text] {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  width: 100%;
  height: 40px;
}
.main-form-history .form .search-field .search-icon {
  top: 8px;
  left: 10px;
  position: absolute;
}
.main-form-history .form .search-field .search {
  padding-left: 40px;
  font-size: 14px;
  line-height: 80px;
  color: #4f4f4f;
}
.main-form-history .form .search-field .search:focus {
  outline: none;
  border: 1px solid #2f80ed;
}
.main-form-history .form .transaction-history-list {
  background-color: #ffffff;
}
.main-form-history .form .transaction-history-list .list-1,
.main-form-history .form .transaction-history-list .list-2,
.main-form-history .form .transaction-history-list .list-3 {
  background-color: #ffffff;
  padding: 0px 5px;
  margin: 0;
}
.main-form-history .form .transaction-history-list .list-1 .date-title,
.main-form-history .form .transaction-history-list .list-2 .date-title,
.main-form-history .form .transaction-history-list .list-3 .date-title {
  margin-top: 15px;
  width: 100%;
  text-align: left;
  text-transform: capitalize;
  padding: 8px 0px;
  font-size: 14px;
  border-bottom: 1px solid #a8a8a8;
  font-size: 18px;
  line-height: 60px;
  color: #000000;
  font-weight: normal;
}
.main-form-history .form .transaction-history-list .list-1 ul li,
.main-form-history .form .transaction-history-list .list-2 ul li,
.main-form-history .form .transaction-history-list .list-3 ul li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  border-bottom: 1px solid #e0e0e0;
}
.main-form-history .form .transaction-history-list .list-1 ul li:last-child,
.main-form-history .form .transaction-history-list .list-2 ul li:last-child,
.main-form-history .form .transaction-history-list .list-3 ul li:last-child {
  border-bottom: none;
}
.main-form-history .form .transaction-history-list .list-1 ul li .time-date-info,
.main-form-history .form .transaction-history-list .list-2 ul li .time-date-info,
.main-form-history .form .transaction-history-list .list-3 ul li .time-date-info {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}
.main-form-history .form .transaction-history-list .list-1 ul li .time-date-info img,
.main-form-history .form .transaction-history-list .list-2 ul li .time-date-info img,
.main-form-history .form .transaction-history-list .list-3 ul li .time-date-info img {
  width: 50px;
  height: 50px;
  padding: 0px 10px;
}
.main-form-history .form .transaction-history-list .list-1 ul li .time-date-info p,
.main-form-history .form .transaction-history-list .list-2 ul li .time-date-info p,
.main-form-history .form .transaction-history-list .list-3 ul li .time-date-info p {
  font-size: 13px;
  color: #4f4f4f;
}
.main-form-history .form .transaction-history-list .list-1 ul li .time-date-info p .bought,
.main-form-history .form .transaction-history-list .list-2 ul li .time-date-info p .bought,
.main-form-history .form .transaction-history-list .list-3 ul li .time-date-info p .bought {
  color: #2dc471;
}
.main-form-history .form .transaction-history-list .list-1 ul li .time-date-info p .sold,
.main-form-history .form .transaction-history-list .list-2 ul li .time-date-info p .sold,
.main-form-history .form .transaction-history-list .list-3 ul li .time-date-info p .sold {
  color: #ff5a5a;
}
.main-form-history .form .transaction-history-list .list-1 ul li .time-date-info p .time,
.main-form-history .form .transaction-history-list .list-2 ul li .time-date-info p .time,
.main-form-history .form .transaction-history-list .list-3 ul li .time-date-info p .time {
  font-size: 14px;
  color: #4f4f4f;
  line-height: 22px;
}
.main-form-history .form .transaction-history-list .list-1 ul li .rate-info p,
.main-form-history .form .transaction-history-list .list-2 ul li .rate-info p,
.main-form-history .form .transaction-history-list .list-3 ul li .rate-info p {
  padding: 8px 0px;
  font-size: 14px;
}
.main-form-history .form .transaction-history-list .list-1 ul li .rate-info p img,
.main-form-history .form .transaction-history-list .list-2 ul li .rate-info p img,
.main-form-history .form .transaction-history-list .list-3 ul li .rate-info p img {
  padding-right: 10px;
}
.main-form-history .form .transaction-history-list .list-1 ul li .rate-info p .bought-wallet,
.main-form-history .form .transaction-history-list .list-2 ul li .rate-info p .bought-wallet,
.main-form-history .form .transaction-history-list .list-3 ul li .rate-info p .bought-wallet {
  padding-right: 20px;
}
.main-form-history .form .transaction-history-list .list-1 ul li .rate-info p .arrow,
.main-form-history .form .transaction-history-list .list-2 ul li .rate-info p .arrow,
.main-form-history .form .transaction-history-list .list-3 ul li .rate-info p .arrow {
  padding-left: 10px;
}
.main-form-history .form .transaction-history-list .list-1 ul li .rate-info .bought,
.main-form-history .form .transaction-history-list .list-2 ul li .rate-info .bought,
.main-form-history .form .transaction-history-list .list-3 ul li .rate-info .bought {
  color: #2dc471;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.main-form-history .form .transaction-history-list .list-1 ul li .rate-info .sold,
.main-form-history .form .transaction-history-list .list-2 ul li .rate-info .sold,
.main-form-history .form .transaction-history-list .list-3 ul li .rate-info .sold {
  color: #ff5a5a;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.main-form-history .form .pagination {
  margin: 0;
  padding: 0;
  text-align: center;
  margin: 20px 0px;
}
.main-form-history .form .pagination li {
  display: inline;
}
.main-form-history .form .pagination li .page-link {
  display: inline-block;
  text-decoration: none;
  padding: 5px 13px;
  color: #000000;
  font-size: 18px;
  line-height: 32px;
  cursor: pointer;
}
.main-form-history .form .pagination li .active {
  background-color: #f5f5fb;
  border-radius: 8px;
}
.main-form-history .form .pagination li .disable {
  color: #cccccc;
  pointer-events: none;
  cursor: default;
}

@media (min-width: 800px) {
  .main-form-history {
    padding: 3.5rem 0;
    max-width: 70%;
    margin: 0 auto;
  }
  .main-form-history .search-field {
    margin-bottom: 41px;
  }
  .main-form-history .search-field input[type=text] {
    height: 53px !important;
  }
  .main-form-history .search-field .search-icon {
    top: 14px !important;
  }
  .main-form-history .transaction-history-list {
    margin-left: 0px;
  }
  .main-form-history .transaction-history-list .list-1 ul li .time-date-info img,
.main-form-history .transaction-history-list .list-2 ul li .time-date-info img,
.main-form-history .transaction-history-list .list-3 ul li .time-date-info img {
    width: 60px;
    height: 60px;
  }
  .main-form-history .transaction-history-list .list-1 ul li .time-date-info p,
.main-form-history .transaction-history-list .list-2 ul li .time-date-info p,
.main-form-history .transaction-history-list .list-3 ul li .time-date-info p {
    display: flex !important;
    align-items: baseline;
    font-size: 16px !important;
    line-height: 25px;
    color: #4f4f4f;
  }
  .main-form-history .transaction-history-list .list-1 ul li .time-date-info p .bought,
.main-form-history .transaction-history-list .list-1 ul li .time-date-info p .sold,
.main-form-history .transaction-history-list .list-2 ul li .time-date-info p .bought,
.main-form-history .transaction-history-list .list-2 ul li .time-date-info p .sold,
.main-form-history .transaction-history-list .list-3 ul li .time-date-info p .bought,
.main-form-history .transaction-history-list .list-3 ul li .time-date-info p .sold {
    padding: 0px 5px;
  }
  .main-form-history .transaction-history-list .list-1 ul li .time-date-info p .time,
.main-form-history .transaction-history-list .list-2 ul li .time-date-info p .time,
.main-form-history .transaction-history-list .list-3 ul li .time-date-info p .time {
    padding-left: 5px;
    font-size: 14px;
    color: #747474;
  }
  .main-form-history .transaction-history-list .list-1 ul li .rate-info,
.main-form-history .transaction-history-list .list-2 ul li .rate-info,
.main-form-history .transaction-history-list .list-3 ul li .rate-info {
    text-align: right;
  }
  .main-form-history .transaction-history-list .list-1 ul li .rate-info p,
.main-form-history .transaction-history-list .list-2 ul li .rate-info p,
.main-form-history .transaction-history-list .list-3 ul li .rate-info p {
    padding: 8px 10px;
    font-size: 16px;
  }
  .main-form-history .pagination {
    margin: 0;
    padding: 0;
    text-align: center;
    margin: 20px 0px;
  }
  .main-form-history .pagination li {
    display: inline;
  }
  .main-form-history .pagination li .page-link {
    padding: 5px 25px;
  }
}
.right-content {
  flex: 1;
}
.right-content .content-wrapper {
  padding: 1.5rem;
}
.right-content .content-wrapper .left-side .primary-title {
  text-transform: capitalize;
  font-size: 16px;
  line-height: 28px;
  color: #23262f;
  padding-bottom: 0.5rem;
}
.right-content .content-wrapper .left-side .secondary-title {
  font-size: 14px;
  line-height: 24px;
  color: #777e90;
}
.right-content .content-wrapper .left-side .secondary-title span {
  color: #2dc471;
}
.right-content .content-wrapper .left-side .search-bar {
  padding: 1rem 0;
  position: relative;
}
.right-content .content-wrapper .left-side .search-bar .search-bar-field {
  outline: none;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  height: 40px;
  width: 100%;
  padding: 0 2.5rem;
}
.right-content .content-wrapper .left-side .search-bar .search-bar-field:focus {
  outline: none;
  border-color: #2f80ed;
}
.right-content .content-wrapper .left-side .search-bar .search-bar-field::-moz-placeholder {
  font-size: 16px;
  line-height: 28px;
  color: #777e90;
}
.right-content .content-wrapper .left-side .search-bar .search-bar-field:-ms-input-placeholder {
  font-size: 16px;
  line-height: 28px;
  color: #777e90;
}
.right-content .content-wrapper .left-side .search-bar .search-bar-field::placeholder {
  font-size: 16px;
  line-height: 28px;
  color: #777e90;
}
.right-content .content-wrapper .left-side .search-bar .search-icon {
  position: absolute;
  left: 10px;
  top: 25px;
  width: 1.5rem;
}
.right-content .content-wrapper .left-side .price-table .desktop-col {
  display: none !important;
}
.right-content .content-wrapper .left-side .price-table .border-bottom {
  border-bottom: 1px solid #d6d6d6;
}
.right-content .content-wrapper .left-side .price-table .table-head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.right-content .content-wrapper .left-side .price-table .table-head .sold {
  color: #ff5a5a !important;
}
.right-content .content-wrapper .left-side .price-table .table-head .bought {
  color: #27ae60 !important;
}
.right-content .content-wrapper .left-side .price-table .table-head .table-data {
  text-transform: capitalize;
  font-size: 16px;
  line-height: 60px;
  color: #23262f;
  width: 100%;
  max-width: 10rem;
  text-align: left;
  display: flex;
  align-items: center;
}
.right-content .content-wrapper .left-side .price-table .table-head .table-data .amchart {
  width: 100%;
  max-width: 10rem;
  height: 50px;
  margin: 5px 0;
}
.right-content .content-wrapper .left-side .price-table .table-head .table-data svg {
  cursor: pointer;
}
.right-content .content-wrapper .left-side .price-table .table-head .table-data img {
  padding: 0 10px 0 0;
}
.right-content .content-wrapper .left-side .price-table .small-col {
  width: 3rem !important;
}
.right-content .content-wrapper .left-side .price-table .price-table-list:nth-child(odd) .table-head:nth-child(odd) {
  background-color: #f5f5fb !important;
  border-radius: 10px;
}
.right-content .content-wrapper .right-side {
  display: none;
}

@media (min-width: 800px) {
  section {
    padding: 2rem;
  }

  .right-content {
    margin-left: 114px;
  }
  .right-content .content-wrapper .left-side .opening-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .right-content .content-wrapper .left-side .price-table .desktop-col {
    display: block !important;
  }
  .right-content .content-wrapper .left-side .price-table .table-head {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }
}
.top-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.top-section .amount-display {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
}
.top-section .amount-display .price {
  font-weight: normal;
  font-size: 28px;
  line-height: 60px;
  text-align: center;
  padding: 0.5rem;
}
.top-section .amount-display .hr {
  width: 3.5rem;
  border: 1px solid #e0e0e0;
}
.top-section .amount-display .percent-rate {
  font-size: 16px;
  padding: 1rem;
}
.top-section .amount-display .bought {
  color: #2dc471;
}
.top-section .main-chart {
  width: 100%;
  margin: 1rem 0;
}

.bg-blob-price-details {
  display: none !important;
}

.content-wrapper .timeline-selector {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.content-wrapper .timeline-selector .selector {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin: 1rem 0;
  width: 20rem;
}
.content-wrapper .timeline-selector .selector .option {
  font-size: 14px;
  color: #747474;
  width: 100%;
  padding: 0.5rem;
  cursor: pointer;
}
.content-wrapper .timeline-selector .selector .active {
  color: #fcfcfd;
  background-color: #2f80ed;
  border-radius: 8px;
}
.content-wrapper .info-block {
  margin: 1rem 0;
}
.content-wrapper .info-block .info-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.content-wrapper .info-block .info-box .box {
  background-color: #f9f9f9;
  padding: 1rem;
  border-radius: 10px;
  width: 9rem;
}
.content-wrapper .info-block .info-box .box .title {
  text-transform: capitalize;
  font-size: 12px;
  line-height: 1rem;
  margin-bottom: 0.5rem;
  color: #2c2c2c;
}
.content-wrapper .info-block .info-box .box .info {
  font-size: 18px;
}
.content-wrapper .left-side .about-section .about-title {
  text-transform: capitalize;
  font-size: 18px;
  line-height: 60px;
  color: #2c2c2c;
}
.content-wrapper .left-side .about-section .about-desc {
  font-size: 14px;
  line-height: 24px;
  color: #777e90;
}
.content-wrapper .left-side .resources-section {
  margin: 1rem 0;
}
.content-wrapper .left-side .resources-section .resource-title {
  text-transform: capitalize;
  font-size: 18px;
  line-height: 60px;
  color: #2c2c2c;
}
.content-wrapper .left-side .resources-section .resources {
  text-transform: capitalize;
  font-size: 16px;
}
.content-wrapper .left-side .resources-section .resources p {
  padding: 0.5rem 0;
  color: #2f80ed;
  display: inline-block;
}
.content-wrapper .left-side .resources-section .resources p img {
  margin-right: 0.5rem;
}

@media (min-width: 800px) {
  .top-section {
    padding: 1.5rem !important;
  }
  .top-section .amount-display {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    border: none;
  }
  .top-section .amount-display .price {
    padding: 0;
  }
  .top-section .amount-display .percent-rate {
    padding: 0;
  }
  .top-section .amount-display .hr {
    transform: rotate(90deg);
    width: 2rem;
  }

  .bg-blob-price-details {
    display: block !important;
    position: absolute;
    z-index: -1;
    right: 0;
  }

  .content-wrapper .timeline-selector {
    position: absolute;
    top: 6.5rem;
    right: 1.5rem;
  }
  .content-wrapper .info-block .info-box {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .content-wrapper .info-block .info-box .box {
    width: 18rem;
  }
  .content-wrapper .info-block .info-box .box .title {
    font-size: 14px;
    margin-bottom: 1rem;
  }
  .content-wrapper .info-block .info-box .box .info {
    font-size: 20px;
  }
  .content-wrapper .left-side .about-section {
    max-width: 35rem;
  }
}
.modal-wrapper {
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
  width: 100%;
  height: 100vh;
}
.modal-wrapper .modal {
  max-width: 412px;
  background-color: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}
.modal-wrapper .modal #close {
  cursor: pointer;
}
.modal-wrapper .modal .modal-heading {
  padding: 1.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
}
.modal-wrapper .modal .modal-heading h1 {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 20px;
}
.modal-wrapper .modal .modal-content {
  text-align: center;
  padding: 1rem 1rem;
}
.modal-wrapper .modal .modal-content .form-step {
  /*marking active/completed steps white*/
  /*The number of the step and the connector before it = white*/
}
.modal-wrapper .modal .modal-content .form-step #progressbar,
.modal-wrapper .modal .modal-content .form-step #progressbar-order {
  margin-bottom: 30px;
  overflow: hidden;
  text-align: center;
  margin-top: 11px;
  /*CSS counters to number the steps*/
  counter-reset: step;
  /*progressbar connectors*/
  /*connector not needed before the first step*/
}
.modal-wrapper .modal .modal-content .form-step #progressbar li,
.modal-wrapper .modal .modal-content .form-step #progressbar-order li {
  list-style-type: none;
  color: #4f4f4f;
  text-transform: capitalize;
  font-size: 10px;
  line-height: 20px;
  width: 50% !important;
  float: left;
  position: relative;
}
.modal-wrapper .modal .modal-content .form-step #progressbar li::before,
.modal-wrapper .modal .modal-content .form-step #progressbar-order li::before {
  text-align: center;
  content: counter(step);
  counter-increment: step;
  width: 25px;
  height: 25px;
  border: 1px solid #d6d6d6;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #333333;
  background: #ffffff;
  border-radius: 3px;
  margin: 0 auto 5px auto;
}
.modal-wrapper .modal .modal-content .form-step #progressbar li::after,
.modal-wrapper .modal .modal-content .form-step #progressbar-order li::after {
  content: "";
  width: 100% !important;
  height: 4px;
  background: #d6d6d6;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1;
  /*put it behind the numbers*/
}
.modal-wrapper .modal .modal-content .form-step #progressbar :first-child::after,
.modal-wrapper .modal .modal-content .form-step #progressbar-order :first-child::after {
  content: none;
}
.modal-wrapper .modal .modal-content .form-step #progressbar-order li {
  width: 33.33% !important;
}
.modal-wrapper .modal .modal-content .form-step #progressbar li.active:before,
.modal-wrapper .modal .modal-content .form-step #progressbar-order li.active:before,
.modal-wrapper .modal .modal-content .form-step #progressbar li.active:before,
.modal-wrapper .modal .modal-content .form-step #progressbar-order li.active:after {
  background: #eaf1fe;
  color: #333333;
  border: none;
}
.modal-wrapper .modal .modal-content .icon {
  text-align: center;
}
.modal-wrapper .modal .modal-content p {
  color: #4f4f4f;
  text-align: center;
  margin: 2em auto;
  font-weight: bold;
}
.modal-wrapper .modal .modal-content ol {
  list-style-type: disc;
  padding: 0 3rem;
}
.modal-wrapper .modal .modal-content ol li {
  display: list-item;
  line-height: 28px;
  color: #747474;
  margin: 1em auto;
}
.modal-wrapper .modal .modal-content #step-one-btn {
  background-color: #2f80ed;
}
.modal-wrapper .modal .modal-content button {
  width: 100%;
  color: #ffffff;
  padding: 18px 25px;
  border-radius: 10px;
  line-height: 10px;
  border: none;
  margin: 1em auto;
  font-size: 14px;
}
.modal-wrapper .modal .modal-content embed {
  width: 100%;
  max-width: 250px;
}
.modal-wrapper .modal .modal-content .step2 {
  display: none;
}
.modal-wrapper .modal .modal-content .step-two-btns {
  display: flex;
  gap: 1em;
}
.modal-wrapper .modal .modal-content .step-two-btns #step-two-back {
  color: #333333;
}
.modal-wrapper .modal .modal-content .step-two-btns #step-two-done {
  background-color: #2f80ed;
}
.modal-wrapper .modal .modal-content .step3 {
  display: none;
}
.modal-wrapper .modal .modal-content .step3 .review {
  width: 100%;
  position: relative;
  padding: 23px;
  margin-top: 35px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #ffffff;
}
.modal-wrapper .modal .modal-content .step3 .review label {
  position: absolute;
  top: -6px;
  text-transform: capitalize;
  font-size: 12px;
  left: 15px;
  color: #777e90;
  background: #ffffff;
  padding: 0px 10px;
}
.modal-wrapper .modal .modal-content .step3 .review .review-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.modal-wrapper .modal .modal-content .step3 .review .review-details li {
  padding: 13px 0px;
}
.modal-wrapper .modal .modal-content .step3 .review .review-details .review-info-title {
  text-transform: capitalize;
  text-align: left;
}
.modal-wrapper .modal .modal-content .step3 .review .review-details .review-info-title li {
  font-size: 13px;
  color: #747474;
}
.modal-wrapper .modal .modal-content .step3 .review .review-details .review-info-details {
  text-transform: capitalize;
  text-align: right;
}
.modal-wrapper .modal .modal-content .step3 .review .review-details .review-info-details span {
  color: #777e90;
}
.modal-wrapper .modal .modal-content .step3 .review .review-details .review-info-details li {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  font-size: 13px;
  color: #25272c;
  text-align: right;
}
.modal-wrapper .modal .modal-content .step3 .review .review-details .review-info-details li img {
  padding: 0px 15px;
}
.modal-wrapper .modal .modal-content .step3 .verification {
  position: relative;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #ffffff;
  margin: 10% 0%;
}
.modal-wrapper .modal .modal-content .step3 .verification #verification-label {
  position: absolute;
  top: -6px;
  text-transform: capitalize;
  font-size: 12px;
  left: 15px;
  color: #777e90;
  background: #ffffff;
  padding: 0px 10px;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper {
  max-width: 305px;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form {
  align-items: center;
  padding: 4rem 0;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .form-title {
  margin-bottom: 31px;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  color: #23262f;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code-title,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code-title,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code-title {
  font-size: 16px;
  line-height: 28px;
  color: #3f3c49;
  margin-bottom: 5px;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code {
  width: 500px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5 ease-in-out;
  margin-bottom: 28px;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .sms-otp,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .email-otp,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .google-otp,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .sms-otp,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .email-otp,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .google-otp,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .sms-otp,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .email-otp,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .google-otp {
  width: 45px;
  height: 45px;
  outline: none;
  border: none;
  border-radius: 4px;
  background-color: #f3f3f3;
  text-align: center;
  font-size: 14px;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .sms-otp:focus,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .email-otp:focus,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .google-otp:focus,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .sms-otp:focus,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .email-otp:focus,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .google-otp:focus,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .sms-otp:focus,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .email-otp:focus,
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .google-otp:focus {
  border: 1px solid #2f80ed;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form #visibility-off {
  display: none;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form #confim-visibility-off {
  display: none;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form input[type=submit] {
  border: none;
  padding: 16px 24px;
  width: 305px;
  right: 52px;
  top: calc(50% - 48px / 2 + 131px);
  background: #2f80ed;
  border-radius: 7px;
  color: #fcfcfd;
  text-align: center;
  margin-top: 32px;
  line-height: 16px;
  font-size: 16px;
  font-style: normal;
  font-family: "DM Sans", "Helvetics", "Roboto", "Arial", sans-serif;
  font-weight: 700;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form a.submit {
  display: inline-block;
  border: none;
  padding: 16px 24px;
  width: 305px;
  right: 52px;
  top: calc(50% - 48px / 2 + 131px);
  background: #2f80ed;
  border-radius: 8px;
  color: #fcfcfd;
  text-align: center;
  margin-top: 32px;
  line-height: 16px;
  font-size: 16px;
  font-style: normal;
  font-family: "DM Sans", "Helvetics", "Roboto", "Arial", sans-serif;
  font-weight: 700;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form input:focus {
  outline: none !important;
  border: 1px solid #2f80ed;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .user-check {
  align-items: center;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .user-check .user-terms {
  width: 268px;
  text-align: left;
  padding-left: 21px;
  font-size: 14px;
  line-height: 24px;
  color: #777e90;
}
.modal-wrapper .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .user-check .user-terms a.user-agreements {
  color: #2f80ed;
}
.modal-wrapper .modal .modal-content #review-verification {
  max-height: 520px;
}
.modal-wrapper .modal .modal-content .step4 {
  display: none;
  align-items: center;
  padding-top: 5rem;
}
.modal-wrapper .modal .modal-content .step4 .done-btn {
  display: inline-block;
  border: none;
  padding: 16px 24px;
  width: 200px;
  height: 48px;
  background: #2f80ed;
  border-radius: 10px;
  color: #fcfcfd;
  margin-top: 2rem;
  line-height: 16px;
  margin-bottom: 2rem;
  font-family: DM Sans;
  font-weight: 700;
}
.modal-wrapper .modal .modal-content .step4 p {
  color: #4f4f4f;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 1rem;
  margin-top: 24px;
}
.modal-wrapper .modal .modal-content .step4 .success-message {
  font-size: 14px;
  font-weight: normal;
  line-height: 28px;
  text-align: center;
  color: #747474;
  margin: 0;
  padding-bottom: 5rem;
}
.modal-wrapper .modal .modal-content .step4 ul {
  text-align: center;
}
.modal-wrapper .modal .modal-content .step4 ul li {
  color: #747474;
  line-height: 28px;
}
.modal-wrapper .modal .modal-content .step4 a.user-agreements {
  color: #2f80ed;
}
.modal-wrapper .modal .modal-content .form-asset,
.modal-wrapper .modal .modal-content .form-bcn,
.modal-wrapper .modal .modal-content .form-address,
.modal-wrapper .modal .modal-content .form-process-time {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: 100%;
}
.modal-wrapper .modal .modal-content .form-asset .input-field-wrapper,
.modal-wrapper .modal .modal-content .form-bcn .input-field-wrapper,
.modal-wrapper .modal .modal-content .form-address .input-field-wrapper,
.modal-wrapper .modal .modal-content .form-process-time .input-field-wrapper {
  width: 100%;
  position: relative;
  align-items: center;
  box-sizing: border-box;
}
.modal-wrapper .modal .modal-content .form-asset .input-field-wrapper .form-control-input,
.modal-wrapper .modal .modal-content .form-bcn .input-field-wrapper .form-control-input,
.modal-wrapper .modal .modal-content .form-address .input-field-wrapper .form-control-input,
.modal-wrapper .modal .modal-content .form-process-time .input-field-wrapper .form-control-input {
  width: 100%;
  padding: 0 10px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  align-items: center;
  height: 50px;
  box-sizing: border-box;
  text-transform: capitalize;
}
.modal-wrapper .modal .modal-content .form-asset .input-field-wrapper .form-control-label,
.modal-wrapper .modal .modal-content .form-bcn .input-field-wrapper .form-control-label,
.modal-wrapper .modal .modal-content .form-address .input-field-wrapper .form-control-label,
.modal-wrapper .modal .modal-content .form-process-time .input-field-wrapper .form-control-label {
  transition: ease-in-out 0.2s all;
  padding: 0 10px;
  color: #747474;
  position: absolute;
  left: 0.5rem;
  top: 1rem;
  background-color: #ffffff;
}
.modal-wrapper .modal .modal-content .form-asset .input-field-wrapper .form-control-input:not(:-moz-placeholder-shown) ~ .form-control-label, .modal-wrapper .modal .modal-content .form-bcn .input-field-wrapper .form-control-input:not(:-moz-placeholder-shown) ~ .form-control-label, .modal-wrapper .modal .modal-content .form-address .input-field-wrapper .form-control-input:not(:-moz-placeholder-shown) ~ .form-control-label, .modal-wrapper .modal .modal-content .form-process-time .input-field-wrapper .form-control-input:not(:-moz-placeholder-shown) ~ .form-control-label {
  transform: translateY(-20px);
  left: 0.5rem;
  font-size: 12px;
}
.modal-wrapper .modal .modal-content .form-asset .input-field-wrapper .form-control-input:not(:-ms-input-placeholder) ~ .form-control-label, .modal-wrapper .modal .modal-content .form-bcn .input-field-wrapper .form-control-input:not(:-ms-input-placeholder) ~ .form-control-label, .modal-wrapper .modal .modal-content .form-address .input-field-wrapper .form-control-input:not(:-ms-input-placeholder) ~ .form-control-label, .modal-wrapper .modal .modal-content .form-process-time .input-field-wrapper .form-control-input:not(:-ms-input-placeholder) ~ .form-control-label {
  transform: translateY(-20px);
  left: 0.5rem;
  font-size: 12px;
}
.modal-wrapper .modal .modal-content .form-asset .input-field-wrapper .form-control-input:focus ~ .form-control-label,
.modal-wrapper .modal .modal-content .form-asset .input-field-wrapper .form-control-input:not(:placeholder-shown) ~ .form-control-label,
.modal-wrapper .modal .modal-content .form-bcn .input-field-wrapper .form-control-input:focus ~ .form-control-label,
.modal-wrapper .modal .modal-content .form-bcn .input-field-wrapper .form-control-input:not(:placeholder-shown) ~ .form-control-label,
.modal-wrapper .modal .modal-content .form-address .input-field-wrapper .form-control-input:focus ~ .form-control-label,
.modal-wrapper .modal .modal-content .form-address .input-field-wrapper .form-control-input:not(:placeholder-shown) ~ .form-control-label,
.modal-wrapper .modal .modal-content .form-process-time .input-field-wrapper .form-control-input:focus ~ .form-control-label,
.modal-wrapper .modal .modal-content .form-process-time .input-field-wrapper .form-control-input:not(:placeholder-shown) ~ .form-control-label {
  transform: translateY(-20px);
  left: 0.5rem;
  font-size: 12px;
}
.modal-wrapper .modal .modal-content .form-asset .custom-select .dropdown-card,
.modal-wrapper .modal .modal-content .form-bcn .custom-select .dropdown-card,
.modal-wrapper .modal .modal-content .form-address .custom-select .dropdown-card,
.modal-wrapper .modal .modal-content .form-process-time .custom-select .dropdown-card {
  list-style: none;
  padding: 0;
  display: none;
}
.modal-wrapper .modal .modal-content .form-asset .dropdown-card .img-wrapper,
.modal-wrapper .modal .modal-content .form-asset .placeholder .img-wrapper,
.modal-wrapper .modal .modal-content .form-bcn .dropdown-card .img-wrapper,
.modal-wrapper .modal .modal-content .form-bcn .placeholder .img-wrapper,
.modal-wrapper .modal .modal-content .form-address .dropdown-card .img-wrapper,
.modal-wrapper .modal .modal-content .form-address .placeholder .img-wrapper,
.modal-wrapper .modal .modal-content .form-process-time .dropdown-card .img-wrapper,
.modal-wrapper .modal .modal-content .form-process-time .placeholder .img-wrapper {
  display: inline-block;
  padding: 0px 5px 0px 0px;
}
.modal-wrapper .modal .modal-content .form-asset .dropdown-card img,
.modal-wrapper .modal .modal-content .form-bcn .dropdown-card img,
.modal-wrapper .modal .modal-content .form-address .dropdown-card img,
.modal-wrapper .modal .modal-content .form-process-time .dropdown-card img {
  max-width: 100%;
}
.modal-wrapper .modal .modal-content .form-asset .placeholder,
.modal-wrapper .modal .modal-content .form-asset .placeholder-bcn,
.modal-wrapper .modal .modal-content .form-bcn .placeholder,
.modal-wrapper .modal .modal-content .form-bcn .placeholder-bcn,
.modal-wrapper .modal .modal-content .form-address .placeholder,
.modal-wrapper .modal .modal-content .form-address .placeholder-bcn,
.modal-wrapper .modal .modal-content .form-process-time .placeholder,
.modal-wrapper .modal .modal-content .form-process-time .placeholder-bcn {
  display: flex;
  align-items: center;
  padding: 10px 25px 10px 10px;
  cursor: pointer;
  position: relative;
}
.modal-wrapper .modal .modal-content .form-asset .placeholder img,
.modal-wrapper .modal .modal-content .form-asset .placeholder-bcn img,
.modal-wrapper .modal .modal-content .form-bcn .placeholder img,
.modal-wrapper .modal .modal-content .form-bcn .placeholder-bcn img,
.modal-wrapper .modal .modal-content .form-address .placeholder img,
.modal-wrapper .modal .modal-content .form-address .placeholder-bcn img,
.modal-wrapper .modal .modal-content .form-process-time .placeholder img,
.modal-wrapper .modal .modal-content .form-process-time .placeholder-bcn img {
  max-width: 100%;
}
.modal-wrapper .modal .modal-content .form-asset .placeholder::before, .modal-wrapper .modal .modal-content .form-asset .placeholder::after,
.modal-wrapper .modal .modal-content .form-asset .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-asset .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-bcn .placeholder::before,
.modal-wrapper .modal .modal-content .form-bcn .placeholder::after,
.modal-wrapper .modal .modal-content .form-bcn .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-bcn .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-address .placeholder::before,
.modal-wrapper .modal .modal-content .form-address .placeholder::after,
.modal-wrapper .modal .modal-content .form-address .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-address .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-process-time .placeholder::before,
.modal-wrapper .modal .modal-content .form-process-time .placeholder::after,
.modal-wrapper .modal .modal-content .form-process-time .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-process-time .placeholder-bcn::after {
  content: "";
  display: inline-block;
  height: 1px;
  width: 12px;
  background-color: #000000;
  position: absolute;
  right: 0;
}
.modal-wrapper .modal .modal-content .form-asset .placeholder::before,
.modal-wrapper .modal .modal-content .form-asset .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-bcn .placeholder::before,
.modal-wrapper .modal .modal-content .form-bcn .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-address .placeholder::before,
.modal-wrapper .modal .modal-content .form-address .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-process-time .placeholder::before,
.modal-wrapper .modal .modal-content .form-process-time .placeholder-bcn::before {
  transform: rotate(45deg);
  right: -26px;
}
.modal-wrapper .modal .modal-content .form-asset .placeholder::after,
.modal-wrapper .modal .modal-content .form-asset .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-bcn .placeholder::after,
.modal-wrapper .modal .modal-content .form-bcn .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-address .placeholder::after,
.modal-wrapper .modal .modal-content .form-address .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-process-time .placeholder::after,
.modal-wrapper .modal .modal-content .form-process-time .placeholder-bcn::after {
  transform: rotate(-45deg);
  right: -34px;
}
.modal-wrapper .modal .modal-content .form-asset .placeholder .text,
.modal-wrapper .modal .modal-content .form-asset .placeholder-bcn .text,
.modal-wrapper .modal .modal-content .form-bcn .placeholder .text,
.modal-wrapper .modal .modal-content .form-bcn .placeholder-bcn .text,
.modal-wrapper .modal .modal-content .form-address .placeholder .text,
.modal-wrapper .modal .modal-content .form-address .placeholder-bcn .text,
.modal-wrapper .modal .modal-content .form-process-time .placeholder .text,
.modal-wrapper .modal .modal-content .form-process-time .placeholder-bcn .text {
  text-transform: capitalize;
  padding: 0px 5px;
  font-size: 16px;
  color: #25272c;
  width: 580px;
}
.modal-wrapper .modal .modal-content .form-asset .placeholder-bcn,
.modal-wrapper .modal .modal-content .form-bcn .placeholder-bcn,
.modal-wrapper .modal .modal-content .form-address .placeholder-bcn,
.modal-wrapper .modal .modal-content .form-process-time .placeholder-bcn {
  padding: 10px 50px 10px 10px;
}
.modal-wrapper .modal .modal-content .form-asset .custom-select.active,
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active,
.modal-wrapper .modal .modal-content .form-address .custom-select.active,
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.modal-wrapper .modal .modal-content .form-asset .custom-select.active .placeholder::after,
.modal-wrapper .modal .modal-content .form-asset .custom-select.active .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active .placeholder::after,
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-address .custom-select.active .placeholder::after,
.modal-wrapper .modal .modal-content .form-address .custom-select.active .placeholder-bcn::after,
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active .placeholder::after,
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active .placeholder-bcn::after {
  right: -27px;
}
.modal-wrapper .modal .modal-content .form-asset .custom-select.active .placeholder::before,
.modal-wrapper .modal .modal-content .form-asset .custom-select.active .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active .placeholder::before,
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-address .custom-select.active .placeholder::before,
.modal-wrapper .modal .modal-content .form-address .custom-select.active .placeholder-bcn::before,
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active .placeholder::before,
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active .placeholder-bcn::before {
  right: -35px;
}
.modal-wrapper .modal .modal-content .form-asset .custom-select.active .dropdown-card,
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active .dropdown-card,
.modal-wrapper .modal .modal-content .form-address .custom-select.active .dropdown-card,
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active .dropdown-card {
  z-index: 100;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 0px;
  left: 0px;
  width: 698px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  height: 105px;
  overflow-y: scroll;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}
.modal-wrapper .modal .modal-content .form-asset .custom-select.active .dropdown,
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active .dropdown,
.modal-wrapper .modal .modal-content .form-address .custom-select.active .dropdown,
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active .dropdown {
  text-align: left;
  z-index: 100;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 40px;
  left: -230px;
  min-width: 330px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  height: 200px;
  overflow-y: scroll;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}
.modal-wrapper .modal .modal-content .form-asset .custom-select.active .dropdown .search-field,
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field,
.modal-wrapper .modal .modal-content .form-address .custom-select.active .dropdown .search-field,
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field {
  position: -webkit-sticky;
  position: sticky;
}
.modal-wrapper .modal .modal-content .form-asset .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper .modal .modal-content .form-address .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field input[type=text] {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  width: 300px;
  height: 47px;
}
.modal-wrapper .modal .modal-content .form-asset .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper .modal .modal-content .form-address .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field .search-icon {
  margin-left: 12px;
  position: absolute;
}
.modal-wrapper .modal .modal-content .form-asset .custom-select.active .dropdown .search-field .search,
.modal-wrapper .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field .search,
.modal-wrapper .modal .modal-content .form-address .custom-select.active .dropdown .search-field .search,
.modal-wrapper .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field .search {
  padding-left: 30px;
}
.modal-wrapper .modal .modal-content .form-asset .dropdown-card li,
.modal-wrapper .modal .modal-content .form-bcn .dropdown-card li,
.modal-wrapper .modal .modal-content .form-address .dropdown-card li,
.modal-wrapper .modal .modal-content .form-process-time .dropdown-card li {
  text-align: right;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: #ffffff;
  padding: 15px 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.modal-wrapper .modal .modal-content .form-asset .dropdown-card li:not(:last-child),
.modal-wrapper .modal .modal-content .form-bcn .dropdown-card li:not(:last-child),
.modal-wrapper .modal .modal-content .form-address .dropdown-card li:not(:last-child),
.modal-wrapper .modal .modal-content .form-process-time .dropdown-card li:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
.modal-wrapper .modal .modal-content .form-asset .dropdown-card li .img-wrapper,
.modal-wrapper .modal .modal-content .form-bcn .dropdown-card li .img-wrapper,
.modal-wrapper .modal .modal-content .form-address .dropdown-card li .img-wrapper,
.modal-wrapper .modal .modal-content .form-process-time .dropdown-card li .img-wrapper {
  width: 50px;
  height: 21px;
  margin-right: 5px;
}
.modal-wrapper .modal .modal-content .form-asset .dropdown-card li .text,
.modal-wrapper .modal .modal-content .form-bcn .dropdown-card li .text,
.modal-wrapper .modal .modal-content .form-address .dropdown-card li .text,
.modal-wrapper .modal .modal-content .form-process-time .dropdown-card li .text {
  text-transform: capitalize;
  padding: 0px 20px 0px 10px;
  font-size: 16px;
  color: #25272c;
  font-size: 16px;
  color: #25272c;
}
.modal-wrapper .modal .modal-content .form-asset .custom-select,
.modal-wrapper .modal .modal-content .form-bcn .custom-select,
.modal-wrapper .modal .modal-content .form-address .custom-select,
.modal-wrapper .modal .modal-content .form-process-time .custom-select {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  align-items: flex-end;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 66px;
}
.modal-wrapper .modal .modal-content .form-asset input,
.modal-wrapper .modal .modal-content .form-bcn input,
.modal-wrapper .modal .modal-content .form-address input,
.modal-wrapper .modal .modal-content .form-process-time input {
  border: 0;
  outline: none;
  box-shadow: none;
  width: 0px;
  display: inline-block;
  height: 30px;
  text-align: left;
  font-size: 16px;
  color: #25272c;
}
.modal-wrapper .modal .modal-content .form-asset input::-moz-placeholder, .modal-wrapper .modal .modal-content .form-bcn input::-moz-placeholder, .modal-wrapper .modal .modal-content .form-address input::-moz-placeholder, .modal-wrapper .modal .modal-content .form-process-time input::-moz-placeholder {
  font-size: 16px;
  color: #747474;
}
.modal-wrapper .modal .modal-content .form-asset input:-ms-input-placeholder, .modal-wrapper .modal .modal-content .form-bcn input:-ms-input-placeholder, .modal-wrapper .modal .modal-content .form-address input:-ms-input-placeholder, .modal-wrapper .modal .modal-content .form-process-time input:-ms-input-placeholder {
  font-size: 16px;
  color: #747474;
}
.modal-wrapper .modal .modal-content .form-asset input::placeholder,
.modal-wrapper .modal .modal-content .form-bcn input::placeholder,
.modal-wrapper .modal .modal-content .form-address input::placeholder,
.modal-wrapper .modal .modal-content .form-process-time input::placeholder {
  font-size: 16px;
  color: #747474;
}
.modal-wrapper .modal .modal-content .form-asset .wrapper-verify,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-verify,
.modal-wrapper .modal .modal-content .form-address .wrapper-verify,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-verify {
  display: inline-flex;
  position: relative;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  align-items: center;
  box-sizing: border-box;
  font-size: 13px;
}
.modal-wrapper .modal .modal-content .form-asset .wrapper-verify form,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-verify form,
.modal-wrapper .modal .modal-content .form-address .wrapper-verify form,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-verify form {
  padding: 1rem 2rem;
}
.modal-wrapper .modal .modal-content .form-asset .wrapper-verify .input-label,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-verify .input-label,
.modal-wrapper .modal .modal-content .form-address .wrapper-verify .input-label,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-verify .input-label {
  top: -6px;
  left: 10px;
  font-size: 12px;
  pointer-events: none;
  position: absolute;
  background-color: #ffffff;
  display: inline-block;
  left: 10px;
  padding: 0 10px;
  color: #747474;
}
.modal-wrapper .modal .modal-content .form-asset .wrapper-verify .processing-time, .modal-wrapper .modal .modal-content .form-asset .wrapper-verify .text,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-verify .processing-time,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-verify .text,
.modal-wrapper .modal .modal-content .form-address .wrapper-verify .processing-time,
.modal-wrapper .modal .modal-content .form-address .wrapper-verify .text,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-verify .processing-time,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-verify .text {
  margin-left: 1em;
}
.modal-wrapper .modal .modal-content .form-asset .wrapper-verify .toast,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-verify .toast,
.modal-wrapper .modal .modal-content .form-address .wrapper-verify .toast,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-verify .toast {
  display: none;
  color: #ffffff;
  text-transform: capitalize;
  position: absolute;
  right: 0px;
  top: -20px;
  background: #000000;
  padding: 10px;
  font-size: 13px;
  border-radius: 10px;
}
.modal-wrapper .modal .modal-content .form-asset .wrapper-verify .toast.active,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-verify .toast.active,
.modal-wrapper .modal .modal-content .form-address .wrapper-verify .toast.active,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-verify .toast.active {
  display: block;
}
.modal-wrapper .modal .modal-content .form-asset .wrapper-verify .copy-icon,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-verify .copy-icon,
.modal-wrapper .modal .modal-content .form-address .wrapper-verify .copy-icon,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-verify .copy-icon {
  position: absolute;
  right: 25px;
  cursor: pointer;
}
.modal-wrapper .modal .modal-content .form-asset .wrapper-card,
.modal-wrapper .modal .modal-content .form-asset .wrapper-asset,
.modal-wrapper .modal .modal-content .form-asset .wrapper-bcn,
.modal-wrapper .modal .modal-content .form-asset .wrapper-address,
.modal-wrapper .modal .modal-content .form-asset .wrapper-process-time,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-card,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-asset,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-bcn,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-address,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-process-time,
.modal-wrapper .modal .modal-content .form-address .wrapper-card,
.modal-wrapper .modal .modal-content .form-address .wrapper-asset,
.modal-wrapper .modal .modal-content .form-address .wrapper-bcn,
.modal-wrapper .modal .modal-content .form-address .wrapper-address,
.modal-wrapper .modal .modal-content .form-address .wrapper-process-time,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-card,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-asset,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-bcn,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-address,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-process-time {
  display: inline-flex;
  position: relative;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  align-items: center;
  height: 55px;
  width: 700px;
  box-sizing: border-box;
  font-size: 13px;
}
.modal-wrapper .modal .modal-content .form-asset .wrapper-card .input-label,
.modal-wrapper .modal .modal-content .form-asset .wrapper-asset .input-label,
.modal-wrapper .modal .modal-content .form-asset .wrapper-bcn .input-label,
.modal-wrapper .modal .modal-content .form-asset .wrapper-address .input-label,
.modal-wrapper .modal .modal-content .form-asset .wrapper-process-time .input-label,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-card .input-label,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-asset .input-label,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-bcn .input-label,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-address .input-label,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-process-time .input-label,
.modal-wrapper .modal .modal-content .form-address .wrapper-card .input-label,
.modal-wrapper .modal .modal-content .form-address .wrapper-asset .input-label,
.modal-wrapper .modal .modal-content .form-address .wrapper-bcn .input-label,
.modal-wrapper .modal .modal-content .form-address .wrapper-address .input-label,
.modal-wrapper .modal .modal-content .form-address .wrapper-process-time .input-label,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-card .input-label,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-asset .input-label,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-bcn .input-label,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-address .input-label,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-process-time .input-label {
  top: -6px;
  left: 10px;
  font-size: 12px;
  pointer-events: none;
  position: absolute;
  background-color: #ffffff;
  display: inline-block;
  left: 10px;
  padding: 0 10px;
  color: #747474;
}
.modal-wrapper .modal .modal-content .form-asset .wrapper-card .processing-time, .modal-wrapper .modal .modal-content .form-asset .wrapper-card .text,
.modal-wrapper .modal .modal-content .form-asset .wrapper-asset .processing-time,
.modal-wrapper .modal .modal-content .form-asset .wrapper-asset .text,
.modal-wrapper .modal .modal-content .form-asset .wrapper-bcn .processing-time,
.modal-wrapper .modal .modal-content .form-asset .wrapper-bcn .text,
.modal-wrapper .modal .modal-content .form-asset .wrapper-address .processing-time,
.modal-wrapper .modal .modal-content .form-asset .wrapper-address .text,
.modal-wrapper .modal .modal-content .form-asset .wrapper-process-time .processing-time,
.modal-wrapper .modal .modal-content .form-asset .wrapper-process-time .text,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-card .processing-time,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-card .text,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-asset .processing-time,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-asset .text,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-bcn .processing-time,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-bcn .text,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-address .processing-time,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-address .text,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-process-time .processing-time,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-process-time .text,
.modal-wrapper .modal .modal-content .form-address .wrapper-card .processing-time,
.modal-wrapper .modal .modal-content .form-address .wrapper-card .text,
.modal-wrapper .modal .modal-content .form-address .wrapper-asset .processing-time,
.modal-wrapper .modal .modal-content .form-address .wrapper-asset .text,
.modal-wrapper .modal .modal-content .form-address .wrapper-bcn .processing-time,
.modal-wrapper .modal .modal-content .form-address .wrapper-bcn .text,
.modal-wrapper .modal .modal-content .form-address .wrapper-address .processing-time,
.modal-wrapper .modal .modal-content .form-address .wrapper-address .text,
.modal-wrapper .modal .modal-content .form-address .wrapper-process-time .processing-time,
.modal-wrapper .modal .modal-content .form-address .wrapper-process-time .text,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-card .processing-time,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-card .text,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-asset .processing-time,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-asset .text,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-bcn .processing-time,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-bcn .text,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-address .processing-time,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-address .text,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-process-time .processing-time,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-process-time .text {
  margin-left: 1em;
}
.modal-wrapper .modal .modal-content .form-asset .wrapper-card .toast,
.modal-wrapper .modal .modal-content .form-asset .wrapper-asset .toast,
.modal-wrapper .modal .modal-content .form-asset .wrapper-bcn .toast,
.modal-wrapper .modal .modal-content .form-asset .wrapper-address .toast,
.modal-wrapper .modal .modal-content .form-asset .wrapper-process-time .toast,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-card .toast,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-asset .toast,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-bcn .toast,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-address .toast,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-process-time .toast,
.modal-wrapper .modal .modal-content .form-address .wrapper-card .toast,
.modal-wrapper .modal .modal-content .form-address .wrapper-asset .toast,
.modal-wrapper .modal .modal-content .form-address .wrapper-bcn .toast,
.modal-wrapper .modal .modal-content .form-address .wrapper-address .toast,
.modal-wrapper .modal .modal-content .form-address .wrapper-process-time .toast,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-card .toast,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-asset .toast,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-bcn .toast,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-address .toast,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-process-time .toast {
  display: none;
  color: #ffffff;
  text-transform: capitalize;
  position: absolute;
  right: 0px;
  top: -20px;
  background: #000000;
  padding: 10px;
  font-size: 13px;
  border-radius: 10px;
}
.modal-wrapper .modal .modal-content .form-asset .wrapper-card .toast.active,
.modal-wrapper .modal .modal-content .form-asset .wrapper-asset .toast.active,
.modal-wrapper .modal .modal-content .form-asset .wrapper-bcn .toast.active,
.modal-wrapper .modal .modal-content .form-asset .wrapper-address .toast.active,
.modal-wrapper .modal .modal-content .form-asset .wrapper-process-time .toast.active,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-card .toast.active,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-asset .toast.active,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-bcn .toast.active,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-address .toast.active,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-process-time .toast.active,
.modal-wrapper .modal .modal-content .form-address .wrapper-card .toast.active,
.modal-wrapper .modal .modal-content .form-address .wrapper-asset .toast.active,
.modal-wrapper .modal .modal-content .form-address .wrapper-bcn .toast.active,
.modal-wrapper .modal .modal-content .form-address .wrapper-address .toast.active,
.modal-wrapper .modal .modal-content .form-address .wrapper-process-time .toast.active,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-card .toast.active,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-asset .toast.active,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-bcn .toast.active,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-address .toast.active,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-process-time .toast.active {
  display: block;
}
.modal-wrapper .modal .modal-content .form-asset .wrapper-card .copy-icon,
.modal-wrapper .modal .modal-content .form-asset .wrapper-asset .copy-icon,
.modal-wrapper .modal .modal-content .form-asset .wrapper-bcn .copy-icon,
.modal-wrapper .modal .modal-content .form-asset .wrapper-address .copy-icon,
.modal-wrapper .modal .modal-content .form-asset .wrapper-process-time .copy-icon,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-card .copy-icon,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-asset .copy-icon,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-bcn .copy-icon,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-address .copy-icon,
.modal-wrapper .modal .modal-content .form-bcn .wrapper-process-time .copy-icon,
.modal-wrapper .modal .modal-content .form-address .wrapper-card .copy-icon,
.modal-wrapper .modal .modal-content .form-address .wrapper-asset .copy-icon,
.modal-wrapper .modal .modal-content .form-address .wrapper-bcn .copy-icon,
.modal-wrapper .modal .modal-content .form-address .wrapper-address .copy-icon,
.modal-wrapper .modal .modal-content .form-address .wrapper-process-time .copy-icon,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-card .copy-icon,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-asset .copy-icon,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-bcn .copy-icon,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-address .copy-icon,
.modal-wrapper .modal .modal-content .form-process-time .wrapper-process-time .copy-icon {
  position: absolute;
  right: 25px;
  cursor: pointer;
}
.modal-wrapper .modal .modal-content form {
  padding: 0 0.5rem;
}
.modal-wrapper .modal .modal-content form .sms-code-title,
.modal-wrapper .modal .modal-content form .email-code-title,
.modal-wrapper .modal .modal-content form .google-code-title {
  line-height: 28px;
  color: #3f3c49;
  margin-bottom: 8px;
}
.modal-wrapper .modal .modal-content form .sms-code,
.modal-wrapper .modal .modal-content form .email-code,
.modal-wrapper .modal .modal-content form .google-code {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5 ease-in-out;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
.modal-wrapper .modal .modal-content form .sms-code .sms-otp,
.modal-wrapper .modal .modal-content form .sms-code .email-otp,
.modal-wrapper .modal .modal-content form .sms-code .google-otp,
.modal-wrapper .modal .modal-content form .email-code .sms-otp,
.modal-wrapper .modal .modal-content form .email-code .email-otp,
.modal-wrapper .modal .modal-content form .email-code .google-otp,
.modal-wrapper .modal .modal-content form .google-code .sms-otp,
.modal-wrapper .modal .modal-content form .google-code .email-otp,
.modal-wrapper .modal .modal-content form .google-code .google-otp {
  width: 8.5vw;
  height: 8.5vw;
  outline: none;
  border: none;
  border-radius: 4px;
  background-color: #f3f3f3;
  text-align: center;
  font-size: 14px;
}
.modal-wrapper .modal .modal-content form .sms-code .sms-otp:focus,
.modal-wrapper .modal .modal-content form .sms-code .email-otp:focus,
.modal-wrapper .modal .modal-content form .sms-code .google-otp:focus,
.modal-wrapper .modal .modal-content form .email-code .sms-otp:focus,
.modal-wrapper .modal .modal-content form .email-code .email-otp:focus,
.modal-wrapper .modal .modal-content form .email-code .google-otp:focus,
.modal-wrapper .modal .modal-content form .google-code .sms-otp:focus,
.modal-wrapper .modal .modal-content form .google-code .email-otp:focus,
.modal-wrapper .modal .modal-content form .google-code .google-otp:focus {
  border: 1px solid #2f80ed;
}
.modal-wrapper .modal .modal-content form .user-check {
  align-items: baseline;
  margin-top: -0.5rem;
}
.modal-wrapper .modal .modal-content form .user-check .user-terms {
  text-align: left;
  padding-left: 8px;
  font-size: 16px;
  line-height: 28px;
  color: #777e90;
}
.modal-wrapper .modal .modal-content form .user-check .user-terms a.user-agreements {
  color: #2f80ed;
}
.modal-wrapper .modal .modal-content form a.submit {
  display: inline-block;
  border: none;
  padding: 16px 24px;
  width: 100%;
  background: #2f80ed;
  border-radius: 7px;
  color: #fcfcfd;
  text-align: center;
  margin-top: 16px;
  line-height: 16px;
  font-family: "DM Sans", "Helvetics", "Roboto", "Arial", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.main {
  text-align: center;
  padding: 0 1rem;
}
.main .bg-blob-card {
  display: none !important;
}
.main h2 {
  font-weight: 400;
  line-height: 48px;
  padding-top: 31px;
  margin-bottom: 26px;
}
.main h3 {
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 26px;
}
.main .info {
  padding: 0 40px;
  color: #777e90;
  line-height: 28px;
}
.main .action-btn a {
  display: inline-block;
  border: none;
  padding: 16px 24px;
  width: 200px;
  height: 48px;
  background: #2f80ed;
  border-radius: 10px;
  color: #fcfcfd;
  margin-top: 2rem;
  line-height: 16px;
  margin-bottom: 2rem;
  font-family: DM Sans;
  font-weight: 700;
}
.main embed {
  margin-bottom: 3rem;
}
.main .features-container {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin-bottom: 2rem;
}
.main .features-container > div {
  width: 50%;
  padding: 0.5rem 0;
  flex: 1 1 9em;
  border-top: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  margin-top: -1px;
  margin-left: -1px;
}
.main .features-container > div img {
  margin-bottom: 13.6px;
  width: 42px;
  height: 49px;
}
.main .features-container > div h4 {
  color: #23262f;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
}
.main .features-container > div p {
  font-size: 12px;
  line-height: 28px;
  color: #777e90;
  padding: 0 1rem;
}

@media (min-width: 800px) {
  .modal-wrapper .modal {
    max-width: 800px;
  }
  .modal-wrapper .modal .modal-heading h1 {
    font-size: 28px;
  }
  .modal-wrapper .modal .modal-content {
    padding: 2rem 3rem;
  }
  .modal-wrapper .modal .modal-content .form-step #progressbar-order li {
    font-size: 12px;
  }
  .modal-wrapper .modal .modal-content .form-bcn, .modal-wrapper .modal .modal-content .form-address {
    margin-top: 47px;
  }
  .modal-wrapper .modal .modal-content .form-asset {
    margin-top: 47px;
  }
  .modal-wrapper .modal .modal-content .form-asset .wrapper-asset {
    font-size: 14px;
  }
  .modal-wrapper .modal .modal-content .form-asset .wrapper-asset .text {
    font-size: 14px;
  }
  .modal-wrapper .modal .modal-content button {
    font-size: 16px;
  }
  .modal-wrapper .modal .modal-content .step-two-btns {
    gap: 12em;
    margin-top: 67px;
  }
  .modal-wrapper .modal .modal-content .step3 .review {
    max-width: 482px;
  }
  .modal-wrapper .modal .modal-content .step3 .review .review-details .review-info-title li, .modal-wrapper .modal .modal-content .step3 .review .review-details .review-info-details li {
    font-size: 16px;
  }
  .modal-wrapper .modal .modal-content .step4 {
    padding-bottom: 6rem;
  }
  .modal-wrapper .modal .modal-content .step4 p {
    font-size: 28px;
  }
  .modal-wrapper .modal .modal-content .step4 .success-message {
    font-size: 18px;
    padding: 0 5rem 1rem 5rem;
  }
  .modal-wrapper .modal .modal-content .step4 button {
    font-size: 16px;
    width: 100%;
    max-width: 174px;
  }
  .modal-wrapper .modal .modal-content form {
    padding: 0 4rem;
  }
  .modal-wrapper .modal .modal-content form .sms-code .sms-otp,
.modal-wrapper .modal .modal-content form .sms-code .email-otp,
.modal-wrapper .modal .modal-content form .sms-code .google-otp,
.modal-wrapper .modal .modal-content form .email-code .sms-otp,
.modal-wrapper .modal .modal-content form .email-code .email-otp,
.modal-wrapper .modal .modal-content form .email-code .google-otp,
.modal-wrapper .modal .modal-content form .google-code .sms-otp,
.modal-wrapper .modal .modal-content form .google-code .email-otp,
.modal-wrapper .modal .modal-content form .google-code .google-otp {
    width: 50px;
    height: 50px;
  }

  .right-content {
    margin-left: 114px;
  }
  .right-content .main .bg-blob-card {
    display: block !important;
    top: 13rem;
    position: absolute;
    height: 580px;
    width: 100%;
    overflow-y: visible;
    z-index: -1;
    transform: rotate(85deg);
    left: 20rem;
  }
  .right-content .main .bg-blob-card .right-blob {
    background: rgba(255, 61, 0, 0.1);
    filter: blur(200px);
  }
  .right-content .main .bg-blob-card .left-blob {
    background: rgba(0, 117, 255, 0.1);
    filter: blur(200px);
  }
  .right-content .main h2 {
    font-size: 36px;
  }
  .right-content .main h3 {
    font-size: 28px;
  }
  .right-content .main .info {
    padding: 0 16rem;
  }
  .right-content .main embed {
    background-color: #ffffff;
    margin-bottom: 86px;
    width: 30rem;
    box-shadow: 0px 15px 15px -8px #c9c9c9;
    border-radius: 30px;
  }
  .right-content .main .action-btn a {
    font-size: 18px;
    margin-top: 28px;
    margin-bottom: 51px;
  }
  .right-content .main .features-container {
    padding: 0 50px;
  }
  .right-content .main .features-container > div:first-child {
    border-left: 0;
  }
  .right-content .main .features-container > div {
    width: 25%;
    border-top: 0;
    padding: 0 12px;
  }
  .right-content .main .features-container > div h4 {
    font-size: 18px;
    line-height: 60px;
  }
  .right-content .main .features-container > div p {
    font-size: 16px;
  }
}
.modal-wrapper-freeze,
.modal-wrapper-reset {
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
  width: 100%;
  height: 100vh;
}
.modal-wrapper-freeze .modal,
.modal-wrapper-reset .modal {
  max-width: 412px;
  background-color: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}
.modal-wrapper-freeze .modal #close,
.modal-wrapper-reset .modal #close {
  cursor: pointer;
}
.modal-wrapper-freeze .modal .modal-heading,
.modal-wrapper-reset .modal .modal-heading {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e0e0e0;
}
.modal-wrapper-freeze .modal .modal-heading h1,
.modal-wrapper-reset .modal .modal-heading h1 {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 20px;
}
.modal-wrapper-freeze .modal .modal-content,
.modal-wrapper-reset .modal .modal-content {
  text-align: center;
  padding: 1rem 1rem;
}
.modal-wrapper-freeze .modal .modal-content .form-step,
.modal-wrapper-reset .modal .modal-content .form-step {
  /*marking active/completed steps white*/
  /*The number of the step and the connector before it = white*/
}
.modal-wrapper-freeze .modal .modal-content .form-step #progressbar,
.modal-wrapper-freeze .modal .modal-content .form-step #progressbar-order,
.modal-wrapper-reset .modal .modal-content .form-step #progressbar,
.modal-wrapper-reset .modal .modal-content .form-step #progressbar-order {
  margin-bottom: 30px;
  overflow: hidden;
  text-align: center;
  margin-top: 11px;
  /*CSS counters to number the steps*/
  counter-reset: step;
  /*progressbar connectors*/
  /*connector not needed before the first step*/
}
.modal-wrapper-freeze .modal .modal-content .form-step #progressbar li,
.modal-wrapper-freeze .modal .modal-content .form-step #progressbar-order li,
.modal-wrapper-reset .modal .modal-content .form-step #progressbar li,
.modal-wrapper-reset .modal .modal-content .form-step #progressbar-order li {
  list-style-type: none;
  color: #4f4f4f;
  text-transform: capitalize;
  font-size: 10px;
  line-height: 20px;
  width: 50% !important;
  float: left;
  position: relative;
}
.modal-wrapper-freeze .modal .modal-content .form-step #progressbar li::before,
.modal-wrapper-freeze .modal .modal-content .form-step #progressbar-order li::before,
.modal-wrapper-reset .modal .modal-content .form-step #progressbar li::before,
.modal-wrapper-reset .modal .modal-content .form-step #progressbar-order li::before {
  text-align: center;
  content: counter(step);
  counter-increment: step;
  width: 25px;
  height: 25px;
  border: 1px solid #e0e0e0;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #333333;
  background: #ffffff;
  border-radius: 3px;
  margin: 0 auto 5px auto;
}
.modal-wrapper-freeze .modal .modal-content .form-step #progressbar li::after,
.modal-wrapper-freeze .modal .modal-content .form-step #progressbar-order li::after,
.modal-wrapper-reset .modal .modal-content .form-step #progressbar li::after,
.modal-wrapper-reset .modal .modal-content .form-step #progressbar-order li::after {
  content: "";
  width: 100% !important;
  height: 4px;
  background: #d6d6d6;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1;
  /*put it behind the numbers*/
}
.modal-wrapper-freeze .modal .modal-content .form-step #progressbar :first-child::after,
.modal-wrapper-freeze .modal .modal-content .form-step #progressbar-order :first-child::after,
.modal-wrapper-reset .modal .modal-content .form-step #progressbar :first-child::after,
.modal-wrapper-reset .modal .modal-content .form-step #progressbar-order :first-child::after {
  content: none;
}
.modal-wrapper-freeze .modal .modal-content .form-step #progressbar-order li,
.modal-wrapper-reset .modal .modal-content .form-step #progressbar-order li {
  width: 33.33% !important;
}
.modal-wrapper-freeze .modal .modal-content .form-step #progressbar li.active:before,
.modal-wrapper-freeze .modal .modal-content .form-step #progressbar-order li.active:before,
.modal-wrapper-freeze .modal .modal-content .form-step #progressbar li.active:before,
.modal-wrapper-freeze .modal .modal-content .form-step #progressbar-order li.active:after,
.modal-wrapper-reset .modal .modal-content .form-step #progressbar li.active:before,
.modal-wrapper-reset .modal .modal-content .form-step #progressbar-order li.active:before,
.modal-wrapper-reset .modal .modal-content .form-step #progressbar li.active:before,
.modal-wrapper-reset .modal .modal-content .form-step #progressbar-order li.active:after {
  background: #eaf1fe;
  color: #333333;
  border: none;
}
.modal-wrapper-freeze .modal .modal-content .icon,
.modal-wrapper-reset .modal .modal-content .icon {
  text-align: center;
}
.modal-wrapper-freeze .modal .modal-content p,
.modal-wrapper-reset .modal .modal-content p {
  color: #4f4f4f;
  text-align: center;
  margin: 2em auto;
  font-weight: bold;
}
.modal-wrapper-freeze .modal .modal-content ol,
.modal-wrapper-reset .modal .modal-content ol {
  list-style-type: disc;
  padding: 0 3rem;
}
.modal-wrapper-freeze .modal .modal-content ol li,
.modal-wrapper-reset .modal .modal-content ol li {
  display: list-item;
  line-height: 28px;
  color: #747474;
  margin: 1em auto;
}
.modal-wrapper-freeze .modal .modal-content #step-one-btn,
.modal-wrapper-reset .modal .modal-content #step-one-btn {
  background-color: #2f80ed;
}
.modal-wrapper-freeze .modal .modal-content button,
.modal-wrapper-reset .modal .modal-content button {
  width: 100%;
  color: #ffffff;
  padding: 18px 25px;
  border-radius: 10px;
  line-height: 10px;
  border: none;
  margin: 1em auto;
  font-size: 14px;
}
.modal-wrapper-freeze .modal .modal-content embed,
.modal-wrapper-reset .modal .modal-content embed {
  width: 100%;
  max-width: 250px;
  background-color: #ffffff;
}
.modal-wrapper-freeze .modal .modal-content .step2,
.modal-wrapper-reset .modal .modal-content .step2 {
  display: none;
}
.modal-wrapper-freeze .modal .modal-content .step-two-btns,
.modal-wrapper-reset .modal .modal-content .step-two-btns {
  display: flex;
  gap: 1em;
}
.modal-wrapper-freeze .modal .modal-content .step-two-btns #step-two-back,
.modal-wrapper-reset .modal .modal-content .step-two-btns #step-two-back {
  color: #333333;
}
.modal-wrapper-freeze .modal .modal-content .step-two-btns #step-two-done,
.modal-wrapper-reset .modal .modal-content .step-two-btns #step-two-done {
  background-color: #2f80ed;
}
.modal-wrapper-freeze .modal .modal-content .step3,
.modal-wrapper-reset .modal .modal-content .step3 {
  display: none;
}
.modal-wrapper-freeze .modal .modal-content .step3 .review,
.modal-wrapper-reset .modal .modal-content .step3 .review {
  width: 100%;
  position: relative;
  padding: 23px;
  margin-top: 35px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #ffffff;
}
.modal-wrapper-freeze .modal .modal-content .step3 .review label,
.modal-wrapper-reset .modal .modal-content .step3 .review label {
  position: absolute;
  top: -6px;
  text-transform: capitalize;
  font-size: 12px;
  left: 15px;
  color: #777e90;
  background: #ffffff;
  padding: 0px 10px;
}
.modal-wrapper-freeze .modal .modal-content .step3 .review .review-details,
.modal-wrapper-reset .modal .modal-content .step3 .review .review-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.modal-wrapper-freeze .modal .modal-content .step3 .review .review-details li,
.modal-wrapper-reset .modal .modal-content .step3 .review .review-details li {
  padding: 13px 0px;
}
.modal-wrapper-freeze .modal .modal-content .step3 .review .review-details .review-info-title,
.modal-wrapper-reset .modal .modal-content .step3 .review .review-details .review-info-title {
  text-transform: capitalize;
  text-align: left;
}
.modal-wrapper-freeze .modal .modal-content .step3 .review .review-details .review-info-title li,
.modal-wrapper-reset .modal .modal-content .step3 .review .review-details .review-info-title li {
  font-size: 13px;
  color: #747474;
}
.modal-wrapper-freeze .modal .modal-content .step3 .review .review-details .review-info-details,
.modal-wrapper-reset .modal .modal-content .step3 .review .review-details .review-info-details {
  text-transform: capitalize;
  text-align: right;
}
.modal-wrapper-freeze .modal .modal-content .step3 .review .review-details .review-info-details span,
.modal-wrapper-reset .modal .modal-content .step3 .review .review-details .review-info-details span {
  color: #777e90;
}
.modal-wrapper-freeze .modal .modal-content .step3 .review .review-details .review-info-details li,
.modal-wrapper-reset .modal .modal-content .step3 .review .review-details .review-info-details li {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  font-size: 13px;
  color: #25272c;
  text-align: right;
}
.modal-wrapper-freeze .modal .modal-content .step3 .review .review-details .review-info-details li img,
.modal-wrapper-reset .modal .modal-content .step3 .review .review-details .review-info-details li img {
  padding: 0px 15px;
}
.modal-wrapper-freeze .modal .modal-content .step3 .verification,
.modal-wrapper-reset .modal .modal-content .step3 .verification {
  position: relative;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #ffffff;
  margin: 10% 0%;
}
.modal-wrapper-freeze .modal .modal-content .step3 .verification #verification-label,
.modal-wrapper-reset .modal .modal-content .step3 .verification #verification-label {
  position: absolute;
  top: -6px;
  text-transform: capitalize;
  font-size: 12px;
  left: 15px;
  color: #777e90;
  background: #ffffff;
  padding: 0px 10px;
}
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper {
  max-width: 305px;
}
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form {
  align-items: center;
  padding: 4rem 0;
}
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .form-title,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .form-title {
  margin-bottom: 31px;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  color: #23262f;
}
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code-title,
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code-title,
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code-title,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code-title,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code-title,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code-title {
  font-size: 16px;
  line-height: 28px;
  color: #3f3c49;
  margin-bottom: 5px;
}
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code,
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code,
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code {
  width: 500px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5 ease-in-out;
  margin-bottom: 28px;
}
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .sms-otp,
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .email-otp,
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .google-otp,
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .sms-otp,
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .email-otp,
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .google-otp,
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .sms-otp,
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .email-otp,
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .google-otp,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .sms-otp,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .email-otp,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .google-otp,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .sms-otp,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .email-otp,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .google-otp,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .sms-otp,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .email-otp,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .google-otp {
  width: 45px;
  height: 45px;
  outline: none;
  border: none;
  border-radius: 4px;
  background-color: #f3f3f3;
  text-align: center;
  font-size: 14px;
}
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .sms-otp:focus,
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .email-otp:focus,
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .google-otp:focus,
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .sms-otp:focus,
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .email-otp:focus,
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .google-otp:focus,
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .sms-otp:focus,
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .email-otp:focus,
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .google-otp:focus,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .sms-otp:focus,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .email-otp:focus,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .sms-code .google-otp:focus,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .sms-otp:focus,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .email-otp:focus,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .email-code .google-otp:focus,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .sms-otp:focus,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .email-otp:focus,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .google-code .google-otp:focus {
  border: 1px solid #2f80ed;
}
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form #visibility-off,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form #visibility-off {
  display: none;
}
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form #confim-visibility-off,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form #confim-visibility-off {
  display: none;
}
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form input[type=submit],
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form input[type=submit] {
  border: none;
  padding: 16px 24px;
  width: 305px;
  right: 52px;
  top: calc(50% - 48px / 2 + 131px);
  background: #2f80ed;
  border-radius: 7px;
  color: #fcfcfc;
  text-align: center;
  margin-top: 32px;
  line-height: 16px;
  font-size: 16px;
  font-style: normal;
  font-family: "DM Sans", "Helvetics", "Roboto", "Arial", sans-serif;
  font-weight: 700;
}
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form a.submit,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form a.submit {
  display: inline-block;
  border: none;
  padding: 16px 24px;
  width: 305px;
  right: 52px;
  top: calc(50% - 48px / 2 + 131px);
  background: #2f80ed;
  border-radius: 7px;
  color: #fcfcfc;
  text-align: center;
  margin-top: 32px;
  line-height: 16px;
  font-size: 16px;
  font-style: normal;
  font-family: "DM Sans", "Helvetics", "Roboto", "Arial", sans-serif;
  font-weight: 700;
}
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form input:focus,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form input:focus {
  outline: none !important;
  border: 1px solid #2f80ed;
}
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .user-check,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .user-check {
  align-items: center;
}
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .user-check .user-terms,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .user-check .user-terms {
  width: 268px;
  text-align: left;
  padding-left: 21px;
  font-size: 14px;
  line-height: 24px;
  color: #777e90;
}
.modal-wrapper-freeze .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .user-check .user-terms a.user-agreements,
.modal-wrapper-reset .modal .modal-content .step3 .verification .form-wrapper .sign-up-form .user-check .user-terms a.user-agreements {
  color: #2f80ed;
}
.modal-wrapper-freeze .modal .modal-content #review-verification,
.modal-wrapper-reset .modal .modal-content #review-verification {
  max-height: 520px;
}
.modal-wrapper-freeze .modal .modal-content .step4,
.modal-wrapper-reset .modal .modal-content .step4 {
  display: none;
  align-items: center;
  padding-top: 5rem;
}
.modal-wrapper-freeze .modal .modal-content .step4 p,
.modal-wrapper-reset .modal .modal-content .step4 p {
  color: #4f4f4f;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 1rem;
  margin-top: 24px;
}
.modal-wrapper-freeze .modal .modal-content .step4 .success-message,
.modal-wrapper-reset .modal .modal-content .step4 .success-message {
  font-size: 14px;
  font-weight: normal;
  line-height: 28px;
  text-align: center;
  color: #747474;
  margin: 0;
  padding-bottom: 5rem;
}
.modal-wrapper-freeze .modal .modal-content .step4 ul,
.modal-wrapper-reset .modal .modal-content .step4 ul {
  text-align: center;
}
.modal-wrapper-freeze .modal .modal-content .step4 ul li,
.modal-wrapper-reset .modal .modal-content .step4 ul li {
  color: #747474;
  line-height: 28px;
}
.modal-wrapper-freeze .modal .modal-content .step4 a.user-agreements,
.modal-wrapper-reset .modal .modal-content .step4 a.user-agreements {
  color: #2f80ed;
}
.modal-wrapper-freeze .modal .modal-content .form-asset,
.modal-wrapper-freeze .modal .modal-content .form-bcn,
.modal-wrapper-freeze .modal .modal-content .form-address,
.modal-wrapper-freeze .modal .modal-content .form-process-time,
.modal-wrapper-reset .modal .modal-content .form-asset,
.modal-wrapper-reset .modal .modal-content .form-bcn,
.modal-wrapper-reset .modal .modal-content .form-address,
.modal-wrapper-reset .modal .modal-content .form-process-time {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: 100%;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .custom-select .dropdown-card,
.modal-wrapper-freeze .modal .modal-content .form-bcn .custom-select .dropdown-card,
.modal-wrapper-freeze .modal .modal-content .form-address .custom-select .dropdown-card,
.modal-wrapper-freeze .modal .modal-content .form-process-time .custom-select .dropdown-card,
.modal-wrapper-reset .modal .modal-content .form-asset .custom-select .dropdown-card,
.modal-wrapper-reset .modal .modal-content .form-bcn .custom-select .dropdown-card,
.modal-wrapper-reset .modal .modal-content .form-address .custom-select .dropdown-card,
.modal-wrapper-reset .modal .modal-content .form-process-time .custom-select .dropdown-card {
  list-style: none;
  padding: 0;
  display: none;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .dropdown-card .img-wrapper,
.modal-wrapper-freeze .modal .modal-content .form-asset .placeholder .img-wrapper,
.modal-wrapper-freeze .modal .modal-content .form-bcn .dropdown-card .img-wrapper,
.modal-wrapper-freeze .modal .modal-content .form-bcn .placeholder .img-wrapper,
.modal-wrapper-freeze .modal .modal-content .form-address .dropdown-card .img-wrapper,
.modal-wrapper-freeze .modal .modal-content .form-address .placeholder .img-wrapper,
.modal-wrapper-freeze .modal .modal-content .form-process-time .dropdown-card .img-wrapper,
.modal-wrapper-freeze .modal .modal-content .form-process-time .placeholder .img-wrapper,
.modal-wrapper-reset .modal .modal-content .form-asset .dropdown-card .img-wrapper,
.modal-wrapper-reset .modal .modal-content .form-asset .placeholder .img-wrapper,
.modal-wrapper-reset .modal .modal-content .form-bcn .dropdown-card .img-wrapper,
.modal-wrapper-reset .modal .modal-content .form-bcn .placeholder .img-wrapper,
.modal-wrapper-reset .modal .modal-content .form-address .dropdown-card .img-wrapper,
.modal-wrapper-reset .modal .modal-content .form-address .placeholder .img-wrapper,
.modal-wrapper-reset .modal .modal-content .form-process-time .dropdown-card .img-wrapper,
.modal-wrapper-reset .modal .modal-content .form-process-time .placeholder .img-wrapper {
  display: inline-block;
  padding: 0px 5px 0px 0px;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .dropdown-card img,
.modal-wrapper-freeze .modal .modal-content .form-bcn .dropdown-card img,
.modal-wrapper-freeze .modal .modal-content .form-address .dropdown-card img,
.modal-wrapper-freeze .modal .modal-content .form-process-time .dropdown-card img,
.modal-wrapper-reset .modal .modal-content .form-asset .dropdown-card img,
.modal-wrapper-reset .modal .modal-content .form-bcn .dropdown-card img,
.modal-wrapper-reset .modal .modal-content .form-address .dropdown-card img,
.modal-wrapper-reset .modal .modal-content .form-process-time .dropdown-card img {
  max-width: 100%;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .placeholder,
.modal-wrapper-freeze .modal .modal-content .form-asset .placeholder-bcn,
.modal-wrapper-freeze .modal .modal-content .form-bcn .placeholder,
.modal-wrapper-freeze .modal .modal-content .form-bcn .placeholder-bcn,
.modal-wrapper-freeze .modal .modal-content .form-address .placeholder,
.modal-wrapper-freeze .modal .modal-content .form-address .placeholder-bcn,
.modal-wrapper-freeze .modal .modal-content .form-process-time .placeholder,
.modal-wrapper-freeze .modal .modal-content .form-process-time .placeholder-bcn,
.modal-wrapper-reset .modal .modal-content .form-asset .placeholder,
.modal-wrapper-reset .modal .modal-content .form-asset .placeholder-bcn,
.modal-wrapper-reset .modal .modal-content .form-bcn .placeholder,
.modal-wrapper-reset .modal .modal-content .form-bcn .placeholder-bcn,
.modal-wrapper-reset .modal .modal-content .form-address .placeholder,
.modal-wrapper-reset .modal .modal-content .form-address .placeholder-bcn,
.modal-wrapper-reset .modal .modal-content .form-process-time .placeholder,
.modal-wrapper-reset .modal .modal-content .form-process-time .placeholder-bcn {
  display: flex;
  align-items: center;
  padding: 10px 25px 10px 10px;
  cursor: pointer;
  position: relative;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .placeholder img,
.modal-wrapper-freeze .modal .modal-content .form-asset .placeholder-bcn img,
.modal-wrapper-freeze .modal .modal-content .form-bcn .placeholder img,
.modal-wrapper-freeze .modal .modal-content .form-bcn .placeholder-bcn img,
.modal-wrapper-freeze .modal .modal-content .form-address .placeholder img,
.modal-wrapper-freeze .modal .modal-content .form-address .placeholder-bcn img,
.modal-wrapper-freeze .modal .modal-content .form-process-time .placeholder img,
.modal-wrapper-freeze .modal .modal-content .form-process-time .placeholder-bcn img,
.modal-wrapper-reset .modal .modal-content .form-asset .placeholder img,
.modal-wrapper-reset .modal .modal-content .form-asset .placeholder-bcn img,
.modal-wrapper-reset .modal .modal-content .form-bcn .placeholder img,
.modal-wrapper-reset .modal .modal-content .form-bcn .placeholder-bcn img,
.modal-wrapper-reset .modal .modal-content .form-address .placeholder img,
.modal-wrapper-reset .modal .modal-content .form-address .placeholder-bcn img,
.modal-wrapper-reset .modal .modal-content .form-process-time .placeholder img,
.modal-wrapper-reset .modal .modal-content .form-process-time .placeholder-bcn img {
  max-width: 100%;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .placeholder::before, .modal-wrapper-freeze .modal .modal-content .form-asset .placeholder::after,
.modal-wrapper-freeze .modal .modal-content .form-asset .placeholder-bcn::before,
.modal-wrapper-freeze .modal .modal-content .form-asset .placeholder-bcn::after,
.modal-wrapper-freeze .modal .modal-content .form-bcn .placeholder::before,
.modal-wrapper-freeze .modal .modal-content .form-bcn .placeholder::after,
.modal-wrapper-freeze .modal .modal-content .form-bcn .placeholder-bcn::before,
.modal-wrapper-freeze .modal .modal-content .form-bcn .placeholder-bcn::after,
.modal-wrapper-freeze .modal .modal-content .form-address .placeholder::before,
.modal-wrapper-freeze .modal .modal-content .form-address .placeholder::after,
.modal-wrapper-freeze .modal .modal-content .form-address .placeholder-bcn::before,
.modal-wrapper-freeze .modal .modal-content .form-address .placeholder-bcn::after,
.modal-wrapper-freeze .modal .modal-content .form-process-time .placeholder::before,
.modal-wrapper-freeze .modal .modal-content .form-process-time .placeholder::after,
.modal-wrapper-freeze .modal .modal-content .form-process-time .placeholder-bcn::before,
.modal-wrapper-freeze .modal .modal-content .form-process-time .placeholder-bcn::after,
.modal-wrapper-reset .modal .modal-content .form-asset .placeholder::before,
.modal-wrapper-reset .modal .modal-content .form-asset .placeholder::after,
.modal-wrapper-reset .modal .modal-content .form-asset .placeholder-bcn::before,
.modal-wrapper-reset .modal .modal-content .form-asset .placeholder-bcn::after,
.modal-wrapper-reset .modal .modal-content .form-bcn .placeholder::before,
.modal-wrapper-reset .modal .modal-content .form-bcn .placeholder::after,
.modal-wrapper-reset .modal .modal-content .form-bcn .placeholder-bcn::before,
.modal-wrapper-reset .modal .modal-content .form-bcn .placeholder-bcn::after,
.modal-wrapper-reset .modal .modal-content .form-address .placeholder::before,
.modal-wrapper-reset .modal .modal-content .form-address .placeholder::after,
.modal-wrapper-reset .modal .modal-content .form-address .placeholder-bcn::before,
.modal-wrapper-reset .modal .modal-content .form-address .placeholder-bcn::after,
.modal-wrapper-reset .modal .modal-content .form-process-time .placeholder::before,
.modal-wrapper-reset .modal .modal-content .form-process-time .placeholder::after,
.modal-wrapper-reset .modal .modal-content .form-process-time .placeholder-bcn::before,
.modal-wrapper-reset .modal .modal-content .form-process-time .placeholder-bcn::after {
  content: "";
  display: inline-block;
  height: 1px;
  width: 12px;
  background-color: #000000;
  position: absolute;
  right: 0;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .placeholder::before,
.modal-wrapper-freeze .modal .modal-content .form-asset .placeholder-bcn::before,
.modal-wrapper-freeze .modal .modal-content .form-bcn .placeholder::before,
.modal-wrapper-freeze .modal .modal-content .form-bcn .placeholder-bcn::before,
.modal-wrapper-freeze .modal .modal-content .form-address .placeholder::before,
.modal-wrapper-freeze .modal .modal-content .form-address .placeholder-bcn::before,
.modal-wrapper-freeze .modal .modal-content .form-process-time .placeholder::before,
.modal-wrapper-freeze .modal .modal-content .form-process-time .placeholder-bcn::before,
.modal-wrapper-reset .modal .modal-content .form-asset .placeholder::before,
.modal-wrapper-reset .modal .modal-content .form-asset .placeholder-bcn::before,
.modal-wrapper-reset .modal .modal-content .form-bcn .placeholder::before,
.modal-wrapper-reset .modal .modal-content .form-bcn .placeholder-bcn::before,
.modal-wrapper-reset .modal .modal-content .form-address .placeholder::before,
.modal-wrapper-reset .modal .modal-content .form-address .placeholder-bcn::before,
.modal-wrapper-reset .modal .modal-content .form-process-time .placeholder::before,
.modal-wrapper-reset .modal .modal-content .form-process-time .placeholder-bcn::before {
  transform: rotate(45deg);
  right: -26px;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .placeholder::after,
.modal-wrapper-freeze .modal .modal-content .form-asset .placeholder-bcn::after,
.modal-wrapper-freeze .modal .modal-content .form-bcn .placeholder::after,
.modal-wrapper-freeze .modal .modal-content .form-bcn .placeholder-bcn::after,
.modal-wrapper-freeze .modal .modal-content .form-address .placeholder::after,
.modal-wrapper-freeze .modal .modal-content .form-address .placeholder-bcn::after,
.modal-wrapper-freeze .modal .modal-content .form-process-time .placeholder::after,
.modal-wrapper-freeze .modal .modal-content .form-process-time .placeholder-bcn::after,
.modal-wrapper-reset .modal .modal-content .form-asset .placeholder::after,
.modal-wrapper-reset .modal .modal-content .form-asset .placeholder-bcn::after,
.modal-wrapper-reset .modal .modal-content .form-bcn .placeholder::after,
.modal-wrapper-reset .modal .modal-content .form-bcn .placeholder-bcn::after,
.modal-wrapper-reset .modal .modal-content .form-address .placeholder::after,
.modal-wrapper-reset .modal .modal-content .form-address .placeholder-bcn::after,
.modal-wrapper-reset .modal .modal-content .form-process-time .placeholder::after,
.modal-wrapper-reset .modal .modal-content .form-process-time .placeholder-bcn::after {
  transform: rotate(-45deg);
  right: -34px;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .placeholder .text,
.modal-wrapper-freeze .modal .modal-content .form-asset .placeholder-bcn .text,
.modal-wrapper-freeze .modal .modal-content .form-bcn .placeholder .text,
.modal-wrapper-freeze .modal .modal-content .form-bcn .placeholder-bcn .text,
.modal-wrapper-freeze .modal .modal-content .form-address .placeholder .text,
.modal-wrapper-freeze .modal .modal-content .form-address .placeholder-bcn .text,
.modal-wrapper-freeze .modal .modal-content .form-process-time .placeholder .text,
.modal-wrapper-freeze .modal .modal-content .form-process-time .placeholder-bcn .text,
.modal-wrapper-reset .modal .modal-content .form-asset .placeholder .text,
.modal-wrapper-reset .modal .modal-content .form-asset .placeholder-bcn .text,
.modal-wrapper-reset .modal .modal-content .form-bcn .placeholder .text,
.modal-wrapper-reset .modal .modal-content .form-bcn .placeholder-bcn .text,
.modal-wrapper-reset .modal .modal-content .form-address .placeholder .text,
.modal-wrapper-reset .modal .modal-content .form-address .placeholder-bcn .text,
.modal-wrapper-reset .modal .modal-content .form-process-time .placeholder .text,
.modal-wrapper-reset .modal .modal-content .form-process-time .placeholder-bcn .text {
  text-transform: capitalize;
  padding: 0px 5px;
  font-size: 16px;
  color: #25272c;
  width: 580px;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .placeholder-bcn,
.modal-wrapper-freeze .modal .modal-content .form-bcn .placeholder-bcn,
.modal-wrapper-freeze .modal .modal-content .form-address .placeholder-bcn,
.modal-wrapper-freeze .modal .modal-content .form-process-time .placeholder-bcn,
.modal-wrapper-reset .modal .modal-content .form-asset .placeholder-bcn,
.modal-wrapper-reset .modal .modal-content .form-bcn .placeholder-bcn,
.modal-wrapper-reset .modal .modal-content .form-address .placeholder-bcn,
.modal-wrapper-reset .modal .modal-content .form-process-time .placeholder-bcn {
  padding: 10px 50px 10px 10px;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .custom-select.active,
.modal-wrapper-freeze .modal .modal-content .form-bcn .custom-select.active,
.modal-wrapper-freeze .modal .modal-content .form-address .custom-select.active,
.modal-wrapper-freeze .modal .modal-content .form-process-time .custom-select.active,
.modal-wrapper-reset .modal .modal-content .form-asset .custom-select.active,
.modal-wrapper-reset .modal .modal-content .form-bcn .custom-select.active,
.modal-wrapper-reset .modal .modal-content .form-address .custom-select.active,
.modal-wrapper-reset .modal .modal-content .form-process-time .custom-select.active {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .custom-select.active .placeholder::after,
.modal-wrapper-freeze .modal .modal-content .form-asset .custom-select.active .placeholder-bcn::after,
.modal-wrapper-freeze .modal .modal-content .form-bcn .custom-select.active .placeholder::after,
.modal-wrapper-freeze .modal .modal-content .form-bcn .custom-select.active .placeholder-bcn::after,
.modal-wrapper-freeze .modal .modal-content .form-address .custom-select.active .placeholder::after,
.modal-wrapper-freeze .modal .modal-content .form-address .custom-select.active .placeholder-bcn::after,
.modal-wrapper-freeze .modal .modal-content .form-process-time .custom-select.active .placeholder::after,
.modal-wrapper-freeze .modal .modal-content .form-process-time .custom-select.active .placeholder-bcn::after,
.modal-wrapper-reset .modal .modal-content .form-asset .custom-select.active .placeholder::after,
.modal-wrapper-reset .modal .modal-content .form-asset .custom-select.active .placeholder-bcn::after,
.modal-wrapper-reset .modal .modal-content .form-bcn .custom-select.active .placeholder::after,
.modal-wrapper-reset .modal .modal-content .form-bcn .custom-select.active .placeholder-bcn::after,
.modal-wrapper-reset .modal .modal-content .form-address .custom-select.active .placeholder::after,
.modal-wrapper-reset .modal .modal-content .form-address .custom-select.active .placeholder-bcn::after,
.modal-wrapper-reset .modal .modal-content .form-process-time .custom-select.active .placeholder::after,
.modal-wrapper-reset .modal .modal-content .form-process-time .custom-select.active .placeholder-bcn::after {
  right: -27px;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .custom-select.active .placeholder::before,
.modal-wrapper-freeze .modal .modal-content .form-asset .custom-select.active .placeholder-bcn::before,
.modal-wrapper-freeze .modal .modal-content .form-bcn .custom-select.active .placeholder::before,
.modal-wrapper-freeze .modal .modal-content .form-bcn .custom-select.active .placeholder-bcn::before,
.modal-wrapper-freeze .modal .modal-content .form-address .custom-select.active .placeholder::before,
.modal-wrapper-freeze .modal .modal-content .form-address .custom-select.active .placeholder-bcn::before,
.modal-wrapper-freeze .modal .modal-content .form-process-time .custom-select.active .placeholder::before,
.modal-wrapper-freeze .modal .modal-content .form-process-time .custom-select.active .placeholder-bcn::before,
.modal-wrapper-reset .modal .modal-content .form-asset .custom-select.active .placeholder::before,
.modal-wrapper-reset .modal .modal-content .form-asset .custom-select.active .placeholder-bcn::before,
.modal-wrapper-reset .modal .modal-content .form-bcn .custom-select.active .placeholder::before,
.modal-wrapper-reset .modal .modal-content .form-bcn .custom-select.active .placeholder-bcn::before,
.modal-wrapper-reset .modal .modal-content .form-address .custom-select.active .placeholder::before,
.modal-wrapper-reset .modal .modal-content .form-address .custom-select.active .placeholder-bcn::before,
.modal-wrapper-reset .modal .modal-content .form-process-time .custom-select.active .placeholder::before,
.modal-wrapper-reset .modal .modal-content .form-process-time .custom-select.active .placeholder-bcn::before {
  right: -35px;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .custom-select.active .dropdown-card,
.modal-wrapper-freeze .modal .modal-content .form-bcn .custom-select.active .dropdown-card,
.modal-wrapper-freeze .modal .modal-content .form-address .custom-select.active .dropdown-card,
.modal-wrapper-freeze .modal .modal-content .form-process-time .custom-select.active .dropdown-card,
.modal-wrapper-reset .modal .modal-content .form-asset .custom-select.active .dropdown-card,
.modal-wrapper-reset .modal .modal-content .form-bcn .custom-select.active .dropdown-card,
.modal-wrapper-reset .modal .modal-content .form-address .custom-select.active .dropdown-card,
.modal-wrapper-reset .modal .modal-content .form-process-time .custom-select.active .dropdown-card {
  z-index: 100;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 0px;
  left: 0px;
  width: 698px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  height: 105px;
  overflow-y: scroll;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}
.modal-wrapper-freeze .modal .modal-content .form-asset .custom-select.active .dropdown,
.modal-wrapper-freeze .modal .modal-content .form-bcn .custom-select.active .dropdown,
.modal-wrapper-freeze .modal .modal-content .form-address .custom-select.active .dropdown,
.modal-wrapper-freeze .modal .modal-content .form-process-time .custom-select.active .dropdown,
.modal-wrapper-reset .modal .modal-content .form-asset .custom-select.active .dropdown,
.modal-wrapper-reset .modal .modal-content .form-bcn .custom-select.active .dropdown,
.modal-wrapper-reset .modal .modal-content .form-address .custom-select.active .dropdown,
.modal-wrapper-reset .modal .modal-content .form-process-time .custom-select.active .dropdown {
  text-align: left;
  z-index: 100;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 40px;
  left: -230px;
  min-width: 330px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  height: 200px;
  overflow-y: scroll;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}
.modal-wrapper-freeze .modal .modal-content .form-asset .custom-select.active .dropdown .search-field,
.modal-wrapper-freeze .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field,
.modal-wrapper-freeze .modal .modal-content .form-address .custom-select.active .dropdown .search-field,
.modal-wrapper-freeze .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field,
.modal-wrapper-reset .modal .modal-content .form-asset .custom-select.active .dropdown .search-field,
.modal-wrapper-reset .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field,
.modal-wrapper-reset .modal .modal-content .form-address .custom-select.active .dropdown .search-field,
.modal-wrapper-reset .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field {
  position: -webkit-sticky;
  position: sticky;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper-freeze .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper-freeze .modal .modal-content .form-address .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper-freeze .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper-reset .modal .modal-content .form-asset .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper-reset .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper-reset .modal .modal-content .form-address .custom-select.active .dropdown .search-field input[type=text],
.modal-wrapper-reset .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field input[type=text] {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  width: 300px;
  height: 47px;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper-freeze .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper-freeze .modal .modal-content .form-address .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper-freeze .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper-reset .modal .modal-content .form-asset .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper-reset .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper-reset .modal .modal-content .form-address .custom-select.active .dropdown .search-field .search-icon,
.modal-wrapper-reset .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field .search-icon {
  margin-left: 12px;
  position: absolute;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .custom-select.active .dropdown .search-field .search,
.modal-wrapper-freeze .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field .search,
.modal-wrapper-freeze .modal .modal-content .form-address .custom-select.active .dropdown .search-field .search,
.modal-wrapper-freeze .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field .search,
.modal-wrapper-reset .modal .modal-content .form-asset .custom-select.active .dropdown .search-field .search,
.modal-wrapper-reset .modal .modal-content .form-bcn .custom-select.active .dropdown .search-field .search,
.modal-wrapper-reset .modal .modal-content .form-address .custom-select.active .dropdown .search-field .search,
.modal-wrapper-reset .modal .modal-content .form-process-time .custom-select.active .dropdown .search-field .search {
  padding-left: 30px;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .dropdown-card li,
.modal-wrapper-freeze .modal .modal-content .form-bcn .dropdown-card li,
.modal-wrapper-freeze .modal .modal-content .form-address .dropdown-card li,
.modal-wrapper-freeze .modal .modal-content .form-process-time .dropdown-card li,
.modal-wrapper-reset .modal .modal-content .form-asset .dropdown-card li,
.modal-wrapper-reset .modal .modal-content .form-bcn .dropdown-card li,
.modal-wrapper-reset .modal .modal-content .form-address .dropdown-card li,
.modal-wrapper-reset .modal .modal-content .form-process-time .dropdown-card li {
  text-align: right;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: #ffffff;
  padding: 15px 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .dropdown-card li:not(:last-child),
.modal-wrapper-freeze .modal .modal-content .form-bcn .dropdown-card li:not(:last-child),
.modal-wrapper-freeze .modal .modal-content .form-address .dropdown-card li:not(:last-child),
.modal-wrapper-freeze .modal .modal-content .form-process-time .dropdown-card li:not(:last-child),
.modal-wrapper-reset .modal .modal-content .form-asset .dropdown-card li:not(:last-child),
.modal-wrapper-reset .modal .modal-content .form-bcn .dropdown-card li:not(:last-child),
.modal-wrapper-reset .modal .modal-content .form-address .dropdown-card li:not(:last-child),
.modal-wrapper-reset .modal .modal-content .form-process-time .dropdown-card li:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .dropdown-card li .img-wrapper,
.modal-wrapper-freeze .modal .modal-content .form-bcn .dropdown-card li .img-wrapper,
.modal-wrapper-freeze .modal .modal-content .form-address .dropdown-card li .img-wrapper,
.modal-wrapper-freeze .modal .modal-content .form-process-time .dropdown-card li .img-wrapper,
.modal-wrapper-reset .modal .modal-content .form-asset .dropdown-card li .img-wrapper,
.modal-wrapper-reset .modal .modal-content .form-bcn .dropdown-card li .img-wrapper,
.modal-wrapper-reset .modal .modal-content .form-address .dropdown-card li .img-wrapper,
.modal-wrapper-reset .modal .modal-content .form-process-time .dropdown-card li .img-wrapper {
  width: 50px;
  height: 21px;
  margin-right: 5px;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .dropdown-card li .text,
.modal-wrapper-freeze .modal .modal-content .form-bcn .dropdown-card li .text,
.modal-wrapper-freeze .modal .modal-content .form-address .dropdown-card li .text,
.modal-wrapper-freeze .modal .modal-content .form-process-time .dropdown-card li .text,
.modal-wrapper-reset .modal .modal-content .form-asset .dropdown-card li .text,
.modal-wrapper-reset .modal .modal-content .form-bcn .dropdown-card li .text,
.modal-wrapper-reset .modal .modal-content .form-address .dropdown-card li .text,
.modal-wrapper-reset .modal .modal-content .form-process-time .dropdown-card li .text {
  text-transform: capitalize;
  padding: 0px 20px 0px 10px;
  font-size: 16px;
  color: #25272c;
  font-size: 16px;
  color: #25272c;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .custom-select,
.modal-wrapper-freeze .modal .modal-content .form-bcn .custom-select,
.modal-wrapper-freeze .modal .modal-content .form-address .custom-select,
.modal-wrapper-freeze .modal .modal-content .form-process-time .custom-select,
.modal-wrapper-reset .modal .modal-content .form-asset .custom-select,
.modal-wrapper-reset .modal .modal-content .form-bcn .custom-select,
.modal-wrapper-reset .modal .modal-content .form-address .custom-select,
.modal-wrapper-reset .modal .modal-content .form-process-time .custom-select {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  align-items: flex-end;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 66px;
}
.modal-wrapper-freeze .modal .modal-content .form-asset input,
.modal-wrapper-freeze .modal .modal-content .form-bcn input,
.modal-wrapper-freeze .modal .modal-content .form-address input,
.modal-wrapper-freeze .modal .modal-content .form-process-time input,
.modal-wrapper-reset .modal .modal-content .form-asset input,
.modal-wrapper-reset .modal .modal-content .form-bcn input,
.modal-wrapper-reset .modal .modal-content .form-address input,
.modal-wrapper-reset .modal .modal-content .form-process-time input {
  border: 0;
  outline: none;
  box-shadow: none;
  width: 0px;
  display: inline-block;
  height: 30px;
  text-align: left;
  font-size: 16px;
  color: #25272c;
}
.modal-wrapper-freeze .modal .modal-content .form-asset input::-moz-placeholder, .modal-wrapper-freeze .modal .modal-content .form-bcn input::-moz-placeholder, .modal-wrapper-freeze .modal .modal-content .form-address input::-moz-placeholder, .modal-wrapper-freeze .modal .modal-content .form-process-time input::-moz-placeholder, .modal-wrapper-reset .modal .modal-content .form-asset input::-moz-placeholder, .modal-wrapper-reset .modal .modal-content .form-bcn input::-moz-placeholder, .modal-wrapper-reset .modal .modal-content .form-address input::-moz-placeholder, .modal-wrapper-reset .modal .modal-content .form-process-time input::-moz-placeholder {
  font-size: 16px;
  color: #747474;
}
.modal-wrapper-freeze .modal .modal-content .form-asset input:-ms-input-placeholder, .modal-wrapper-freeze .modal .modal-content .form-bcn input:-ms-input-placeholder, .modal-wrapper-freeze .modal .modal-content .form-address input:-ms-input-placeholder, .modal-wrapper-freeze .modal .modal-content .form-process-time input:-ms-input-placeholder, .modal-wrapper-reset .modal .modal-content .form-asset input:-ms-input-placeholder, .modal-wrapper-reset .modal .modal-content .form-bcn input:-ms-input-placeholder, .modal-wrapper-reset .modal .modal-content .form-address input:-ms-input-placeholder, .modal-wrapper-reset .modal .modal-content .form-process-time input:-ms-input-placeholder {
  font-size: 16px;
  color: #747474;
}
.modal-wrapper-freeze .modal .modal-content .form-asset input::placeholder,
.modal-wrapper-freeze .modal .modal-content .form-bcn input::placeholder,
.modal-wrapper-freeze .modal .modal-content .form-address input::placeholder,
.modal-wrapper-freeze .modal .modal-content .form-process-time input::placeholder,
.modal-wrapper-reset .modal .modal-content .form-asset input::placeholder,
.modal-wrapper-reset .modal .modal-content .form-bcn input::placeholder,
.modal-wrapper-reset .modal .modal-content .form-address input::placeholder,
.modal-wrapper-reset .modal .modal-content .form-process-time input::placeholder {
  font-size: 16px;
  color: #747474;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-verify,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-verify,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-verify,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-verify,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-verify,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-verify,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-verify,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-verify {
  display: inline-flex;
  position: relative;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  align-items: center;
  box-sizing: border-box;
  font-size: 13px;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-verify form,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-verify form,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-verify form,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-verify form,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-verify form,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-verify form,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-verify form,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-verify form {
  padding: 1rem 2rem;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-verify .input-label,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-verify .input-label,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-verify .input-label,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-verify .input-label,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-verify .input-label,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-verify .input-label,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-verify .input-label,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-verify .input-label {
  top: -6px;
  left: 10px;
  font-size: 12px;
  pointer-events: none;
  position: absolute;
  background-color: #ffffff;
  display: inline-block;
  left: 10px;
  padding: 0 10px;
  color: #747474;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-verify .processing-time, .modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-verify .text,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-verify .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-verify .text,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-verify .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-verify .text,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-verify .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-verify .text,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-verify .processing-time,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-verify .text,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-verify .processing-time,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-verify .text,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-verify .processing-time,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-verify .text,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-verify .processing-time,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-verify .text {
  margin-left: 1em;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-verify .toast,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-verify .toast,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-verify .toast,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-verify .toast,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-verify .toast,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-verify .toast,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-verify .toast,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-verify .toast {
  display: none;
  color: #ffffff;
  text-transform: capitalize;
  position: absolute;
  right: 0px;
  top: -20px;
  background: #000000;
  padding: 10px;
  font-size: 13px;
  border-radius: 10px;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-verify .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-verify .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-verify .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-verify .toast.active,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-verify .toast.active,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-verify .toast.active,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-verify .toast.active,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-verify .toast.active {
  display: block;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-verify .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-verify .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-verify .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-verify .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-verify .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-verify .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-verify .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-verify .copy-icon {
  position: absolute;
  right: 25px;
  cursor: pointer;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-card,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-asset,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-bcn,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-address,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-process-time,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-card,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-asset,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-bcn,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-address,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-process-time,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-card,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-asset,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-bcn,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-address,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-process-time,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-card,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-asset,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-bcn,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-address,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-process-time,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-card,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-asset,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-bcn,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-address,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-process-time,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-card,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-asset,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-bcn,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-address,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-process-time,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-card,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-asset,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-bcn,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-address,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-process-time,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-card,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-asset,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-bcn,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-address,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-process-time {
  display: inline-flex;
  position: relative;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  align-items: center;
  height: 55px;
  width: 700px;
  box-sizing: border-box;
  font-size: 13px;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-card .input-label,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-asset .input-label,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-bcn .input-label,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-address .input-label,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-process-time .input-label,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-card .input-label,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-asset .input-label,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-bcn .input-label,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-address .input-label,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-process-time .input-label,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-card .input-label,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-asset .input-label,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-bcn .input-label,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-address .input-label,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-process-time .input-label,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-card .input-label,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-asset .input-label,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-bcn .input-label,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-address .input-label,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-process-time .input-label,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-card .input-label,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-asset .input-label,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-bcn .input-label,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-address .input-label,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-process-time .input-label,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-card .input-label,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-asset .input-label,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-bcn .input-label,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-address .input-label,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-process-time .input-label,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-card .input-label,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-asset .input-label,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-bcn .input-label,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-address .input-label,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-process-time .input-label,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-card .input-label,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-asset .input-label,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-bcn .input-label,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-address .input-label,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-process-time .input-label {
  top: -6px;
  left: 10px;
  font-size: 12px;
  pointer-events: none;
  position: absolute;
  background-color: #ffffff;
  display: inline-block;
  left: 10px;
  padding: 0 10px;
  color: #747474;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-card .processing-time, .modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-card .text,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-asset .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-asset .text,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-bcn .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-bcn .text,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-address .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-address .text,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-process-time .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-process-time .text,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-card .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-card .text,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-asset .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-asset .text,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-bcn .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-bcn .text,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-address .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-address .text,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-process-time .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-process-time .text,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-card .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-card .text,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-asset .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-asset .text,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-bcn .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-bcn .text,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-address .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-address .text,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-process-time .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-process-time .text,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-card .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-card .text,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-asset .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-asset .text,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-bcn .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-bcn .text,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-address .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-address .text,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-process-time .processing-time,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-process-time .text,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-card .processing-time,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-card .text,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-asset .processing-time,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-asset .text,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-bcn .processing-time,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-bcn .text,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-address .processing-time,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-address .text,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-process-time .processing-time,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-process-time .text,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-card .processing-time,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-card .text,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-asset .processing-time,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-asset .text,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-bcn .processing-time,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-bcn .text,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-address .processing-time,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-address .text,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-process-time .processing-time,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-process-time .text,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-card .processing-time,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-card .text,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-asset .processing-time,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-asset .text,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-bcn .processing-time,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-bcn .text,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-address .processing-time,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-address .text,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-process-time .processing-time,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-process-time .text,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-card .processing-time,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-card .text,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-asset .processing-time,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-asset .text,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-bcn .processing-time,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-bcn .text,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-address .processing-time,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-address .text,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-process-time .processing-time,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-process-time .text {
  margin-left: 1em;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-card .toast,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-asset .toast,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-bcn .toast,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-address .toast,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-process-time .toast,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-card .toast,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-asset .toast,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-bcn .toast,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-address .toast,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-process-time .toast,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-card .toast,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-asset .toast,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-bcn .toast,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-address .toast,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-process-time .toast,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-card .toast,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-asset .toast,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-bcn .toast,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-address .toast,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-process-time .toast,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-card .toast,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-asset .toast,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-bcn .toast,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-address .toast,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-process-time .toast,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-card .toast,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-asset .toast,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-bcn .toast,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-address .toast,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-process-time .toast,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-card .toast,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-asset .toast,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-bcn .toast,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-address .toast,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-process-time .toast,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-card .toast,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-asset .toast,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-bcn .toast,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-address .toast,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-process-time .toast {
  display: none;
  color: #ffffff;
  text-transform: capitalize;
  position: absolute;
  right: 0px;
  top: -20px;
  background: #000000;
  padding: 10px;
  font-size: 13px;
  border-radius: 10px;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-card .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-asset .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-bcn .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-address .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-process-time .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-card .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-asset .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-bcn .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-address .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-process-time .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-card .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-asset .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-bcn .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-address .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-process-time .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-card .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-asset .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-bcn .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-address .toast.active,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-process-time .toast.active,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-card .toast.active,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-asset .toast.active,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-bcn .toast.active,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-address .toast.active,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-process-time .toast.active,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-card .toast.active,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-asset .toast.active,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-bcn .toast.active,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-address .toast.active,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-process-time .toast.active,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-card .toast.active,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-asset .toast.active,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-bcn .toast.active,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-address .toast.active,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-process-time .toast.active,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-card .toast.active,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-asset .toast.active,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-bcn .toast.active,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-address .toast.active,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-process-time .toast.active {
  display: block;
}
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-card .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-asset .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-bcn .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-address .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-process-time .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-card .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-asset .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-bcn .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-address .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-bcn .wrapper-process-time .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-card .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-asset .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-bcn .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-address .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-address .wrapper-process-time .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-card .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-asset .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-bcn .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-address .copy-icon,
.modal-wrapper-freeze .modal .modal-content .form-process-time .wrapper-process-time .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-card .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-asset .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-bcn .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-address .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-process-time .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-card .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-asset .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-bcn .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-address .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-bcn .wrapper-process-time .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-card .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-asset .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-bcn .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-address .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-address .wrapper-process-time .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-card .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-asset .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-bcn .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-address .copy-icon,
.modal-wrapper-reset .modal .modal-content .form-process-time .wrapper-process-time .copy-icon {
  position: absolute;
  right: 25px;
  cursor: pointer;
}
.modal-wrapper-freeze .modal .modal-content form,
.modal-wrapper-reset .modal .modal-content form {
  padding: 0 0.5rem;
}
.modal-wrapper-freeze .modal .modal-content form .sms-code-title,
.modal-wrapper-freeze .modal .modal-content form .email-code-title,
.modal-wrapper-freeze .modal .modal-content form .google-code-title,
.modal-wrapper-reset .modal .modal-content form .sms-code-title,
.modal-wrapper-reset .modal .modal-content form .email-code-title,
.modal-wrapper-reset .modal .modal-content form .google-code-title {
  line-height: 28px;
  color: #3f3c49;
  margin-bottom: 8px;
}
.modal-wrapper-freeze .modal .modal-content form .sms-code,
.modal-wrapper-freeze .modal .modal-content form .email-code,
.modal-wrapper-freeze .modal .modal-content form .google-code,
.modal-wrapper-reset .modal .modal-content form .sms-code,
.modal-wrapper-reset .modal .modal-content form .email-code,
.modal-wrapper-reset .modal .modal-content form .google-code {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5 ease-in-out;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
.modal-wrapper-freeze .modal .modal-content form .sms-code .sms-otp,
.modal-wrapper-freeze .modal .modal-content form .sms-code .email-otp,
.modal-wrapper-freeze .modal .modal-content form .sms-code .google-otp,
.modal-wrapper-freeze .modal .modal-content form .email-code .sms-otp,
.modal-wrapper-freeze .modal .modal-content form .email-code .email-otp,
.modal-wrapper-freeze .modal .modal-content form .email-code .google-otp,
.modal-wrapper-freeze .modal .modal-content form .google-code .sms-otp,
.modal-wrapper-freeze .modal .modal-content form .google-code .email-otp,
.modal-wrapper-freeze .modal .modal-content form .google-code .google-otp,
.modal-wrapper-reset .modal .modal-content form .sms-code .sms-otp,
.modal-wrapper-reset .modal .modal-content form .sms-code .email-otp,
.modal-wrapper-reset .modal .modal-content form .sms-code .google-otp,
.modal-wrapper-reset .modal .modal-content form .email-code .sms-otp,
.modal-wrapper-reset .modal .modal-content form .email-code .email-otp,
.modal-wrapper-reset .modal .modal-content form .email-code .google-otp,
.modal-wrapper-reset .modal .modal-content form .google-code .sms-otp,
.modal-wrapper-reset .modal .modal-content form .google-code .email-otp,
.modal-wrapper-reset .modal .modal-content form .google-code .google-otp {
  width: 8.5vw;
  height: 8.5vw;
  outline: none;
  border: none;
  border-radius: 4px;
  background-color: #f3f3f3;
  text-align: center;
  font-size: 14px;
}
.modal-wrapper-freeze .modal .modal-content form .sms-code .sms-otp:focus,
.modal-wrapper-freeze .modal .modal-content form .sms-code .email-otp:focus,
.modal-wrapper-freeze .modal .modal-content form .sms-code .google-otp:focus,
.modal-wrapper-freeze .modal .modal-content form .email-code .sms-otp:focus,
.modal-wrapper-freeze .modal .modal-content form .email-code .email-otp:focus,
.modal-wrapper-freeze .modal .modal-content form .email-code .google-otp:focus,
.modal-wrapper-freeze .modal .modal-content form .google-code .sms-otp:focus,
.modal-wrapper-freeze .modal .modal-content form .google-code .email-otp:focus,
.modal-wrapper-freeze .modal .modal-content form .google-code .google-otp:focus,
.modal-wrapper-reset .modal .modal-content form .sms-code .sms-otp:focus,
.modal-wrapper-reset .modal .modal-content form .sms-code .email-otp:focus,
.modal-wrapper-reset .modal .modal-content form .sms-code .google-otp:focus,
.modal-wrapper-reset .modal .modal-content form .email-code .sms-otp:focus,
.modal-wrapper-reset .modal .modal-content form .email-code .email-otp:focus,
.modal-wrapper-reset .modal .modal-content form .email-code .google-otp:focus,
.modal-wrapper-reset .modal .modal-content form .google-code .sms-otp:focus,
.modal-wrapper-reset .modal .modal-content form .google-code .email-otp:focus,
.modal-wrapper-reset .modal .modal-content form .google-code .google-otp:focus {
  border: 1px solid #2f80ed;
}
.modal-wrapper-freeze .modal .modal-content form .user-check,
.modal-wrapper-reset .modal .modal-content form .user-check {
  align-items: baseline;
  margin-top: -0.5rem;
}
.modal-wrapper-freeze .modal .modal-content form .user-check .user-terms,
.modal-wrapper-reset .modal .modal-content form .user-check .user-terms {
  text-align: left;
  padding-left: 8px;
  font-size: 16px;
  line-height: 28px;
  color: #777e90;
}
.modal-wrapper-freeze .modal .modal-content form .user-check .user-terms a.user-agreements,
.modal-wrapper-reset .modal .modal-content form .user-check .user-terms a.user-agreements {
  color: #2f80ed;
}
.modal-wrapper-freeze .modal .modal-content form a.submit,
.modal-wrapper-reset .modal .modal-content form a.submit {
  display: inline-block;
  border: none;
  padding: 16px 24px;
  width: 100%;
  background: #2f80ed;
  border-radius: 7px;
  color: #fcfcfc;
  text-align: center;
  margin-top: 16px;
  line-height: 16px;
  font-family: "DM Sans", "Helvetics", "Roboto", "Arial", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.main-form-card {
  padding: 2rem 1rem;
  text-align: center;
}
.main-form-card .bg-blob-card {
  display: none !important;
  top: 10rem;
  position: absolute;
  height: 100px;
  width: 100%;
  overflow-y: visible;
  z-index: -1;
  transform: rotate(85deg);
  left: 30rem;
}
.main-form-card .bg-blob-card .right-blob {
  background: rgba(255, 61, 0, 0.1);
  filter: blur(200px);
}
.main-form-card .bg-blob-card .left-blob {
  background: rgba(0, 117, 255, 0.1);
  filter: blur(200px);
}
.main-form-card .balance {
  text-align: center;
  margin-bottom: 33px;
}
.main-form-card .balance p {
  color: #777e90;
  font-weight: 400;
  font-size: 18px;
  line-height: 2rem;
}
.main-form-card .balance h1 {
  font-size: 36px;
  line-height: 60px;
  font-weight: 400;
}
.main-form-card .balance #border {
  border-bottom: 1px solid #e0e0e0;
  width: 45px;
  margin: auto;
}
.main-form-card .balance h2 {
  font-size: 18px;
  line-height: 60px;
  font-weight: 400;
  color: #00CB56;
}
.main-form-card embed {
  width: 100%;
  max-width: 486px;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 20px;
}
.main-form-card .review-action-btn {
  background: #f5f5fb;
  padding: 16px 17px;
  display: grid;
  gap: 1rem;
  grid-template-rows: 100%;
  grid-template-columns: 1fr 1fr;
  text-transform: capitalize;
  max-width: 486px;
}
.main-form-card .review-action-btn a span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.main-form-card .review-action-btn .freeze-btn {
  background: #2f80ed;
  max-width: 190px;
  width: 100%;
  padding: 18px 10px;
  border-radius: 10px;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
}
.main-form-card .review-action-btn .reset-btn {
  justify-self: end;
  background: #27ae60;
  max-width: 190px;
  width: 100%;
  padding: 18px 10px;
  border-radius: 10px;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
}
.main-form-card .top-navigation {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.main-form-card .top-navigation .header-bottom-navigation {
  margin: 0;
  width: 25%;
  border: none;
  background: none;
}
.main-form-card .top-navigation .transfer-btn {
  display: none !important;
  background: #2f80ed;
  max-width: 190px;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
}
.main-form-card .search-field {
  display: none !important;
  position: relative;
  margin-top: 16px;
}
.main-form-card .search-field input[type=text] {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 10px;
  width: 100%;
  height: 40px;
}
.main-form-card .search-field .search-icon {
  top: 8px;
  left: 10px;
  position: absolute;
}
.main-form-card .search-field .search {
  padding-left: 40px;
  font-size: 14px;
  line-height: 80px;
  color: #4f4f4f;
}
.main-form-card .search-field .search:focus {
  outline: none;
  border: 1px solid #2f80ed;
}
.main-form-card .asset-list-mobile {
  display: block !important;
}
.main-form-card .asset-list-mobile .list .asset-list-item {
  margin: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.main-form-card .asset-list-mobile .list .asset-list-item .asset-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.main-form-card .asset-list-mobile .list .asset-list-item .asset-info .asset {
  display: flex;
  align-items: center;
  text-align: left;
}
.main-form-card .asset-list-mobile .list .asset-list-item .asset-info .asset .asset-avatar {
  padding: 0 0.5rem 0 0;
}
.main-form-card .asset-list-mobile .list .asset-list-item .asset-info .asset .asset-name .asset-title {
  text-transform: capitalize;
  font-size: 16px;
  color: #232627;
}
.main-form-card .asset-list-mobile .list .asset-list-item .asset-info .asset .asset-name .asset-sub-info {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 20px;
  color: #777e90;
}
.main-form-card .asset-list-mobile .list .asset-list-item .asset-info .asset-value {
  text-align: right;
}
.main-form-card .asset-list-mobile .list .asset-list-item .asset-info .asset-value .asset-title {
  text-transform: capitalize;
  font-size: 16px;
  color: #232627;
}
.main-form-card .asset-list-mobile .list .asset-list-item .asset-info .asset-value .asset-sub-info {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 20px;
  color: #777e90;
}
.main-form-card .asset-list-mobile .list .progress-btc {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 1.5rem 0;
  background: #d7d7d6;
  border-radius: 100px;
  position: relative;
  height: 10px;
  width: 95%;
}
.main-form-card .asset-list-mobile .list .progress-btc .progress-value-btc {
  -webkit-animation: load-btc 3s normal forwards;
          animation: load-btc 3s normal forwards;
  border-radius: 100px;
  background: #FF9F38;
  height: 10px;
  width: 0;
}
.main-form-card .asset-list-mobile .list .progress-btc .load-number-btc {
  font-size: 12px;
  color: #000000;
  position: absolute;
  right: -2rem;
  color: #000000;
}
@-webkit-keyframes load-btc {
  0% {
    width: 0;
  }
  100% {
    width: 61%;
  }
}
@keyframes load-btc {
  0% {
    width: 0;
  }
  100% {
    width: 61%;
  }
}
.main-form-card .asset-list-mobile .list .progress-eth {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 1.5rem 0;
  background: #d7d7d6;
  border-radius: 100px;
  position: relative;
  height: 10px;
  width: 95%;
}
.main-form-card .asset-list-mobile .list .progress-eth .progress-value-eth {
  -webkit-animation: load-eth 3s normal forwards;
          animation: load-eth 3s normal forwards;
  border-radius: 100px;
  background: #627EEA;
  height: 10px;
  width: 0;
}
.main-form-card .asset-list-mobile .list .progress-eth .load-number-eth {
  font-size: 12px;
  color: #000000;
  position: absolute;
  right: -2rem;
  color: #000000;
}
@-webkit-keyframes load-eth {
  0% {
    width: 0;
  }
  100% {
    width: 38%;
  }
}
@keyframes load-eth {
  0% {
    width: 0;
  }
  100% {
    width: 38%;
  }
}
.main-form-card .asset-list-mobile .list .progress-thr {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 1.5rem 0;
  background: #d7d7d6;
  border-radius: 100px;
  position: relative;
  height: 10px;
  width: 95%;
}
.main-form-card .asset-list-mobile .list .progress-thr .progress-value-thr {
  -webkit-animation: load-thr 3s normal forwards;
          animation: load-thr 3s normal forwards;
  border-radius: 100px;
  background: #27ae60;
  height: 10px;
  width: 0;
}
.main-form-card .asset-list-mobile .list .progress-thr .load-number-thr {
  font-size: 12px;
  color: #000000;
  position: absolute;
  right: -2rem;
  color: #000000;
}
@-webkit-keyframes load-thr {
  0% {
    width: 0;
  }
  100% {
    width: 71%;
  }
}
@keyframes load-thr {
  0% {
    width: 0;
  }
  100% {
    width: 71%;
  }
}
.main-form-card .asset-list-desktop {
  display: none !important;
  margin: 2rem 0;
}
.main-form-card .asset-list-desktop .desktop-col {
  display: none !important;
}
.main-form-card .asset-list-desktop .border-bottom {
  border-bottom: 1px solid #d6d6d6;
}
.main-form-card .asset-list-desktop .table-head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.main-form-card .asset-list-desktop .table-head .allocation {
  max-width: 30rem !important;
}
.main-form-card .asset-list-desktop .table-head .progress-btc {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 1.5rem 0;
  background: #d7d7d6;
  border-radius: 100px;
  position: relative;
  height: 10px;
  width: 75%;
}
.main-form-card .asset-list-desktop .table-head .progress-btc .progress-value-btc {
  -webkit-animation: load-btc 3s normal forwards;
          animation: load-btc 3s normal forwards;
  border-radius: 100px;
  background: #FF9F38;
  height: 10px;
  width: 0;
}
.main-form-card .asset-list-desktop .table-head .progress-btc .load-number-btc {
  font-size: 12px;
  color: #000000;
  position: absolute;
  right: -2rem;
  color: #000000;
}
@keyframes load-btc {
  0% {
    width: 0;
  }
  100% {
    width: 61%;
  }
}
.main-form-card .asset-list-desktop .table-head .progress-eth {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 1.5rem 0;
  background: #d7d7d6;
  border-radius: 100px;
  position: relative;
  height: 10px;
  width: 75%;
}
.main-form-card .asset-list-desktop .table-head .progress-eth .progress-value-eth {
  -webkit-animation: load-eth 3s normal forwards;
          animation: load-eth 3s normal forwards;
  border-radius: 100px;
  background: #627EEA;
  height: 10px;
  width: 0;
}
.main-form-card .asset-list-desktop .table-head .progress-eth .load-number-eth {
  font-size: 12px;
  color: #000000;
  position: absolute;
  right: -2rem;
  color: #000000;
}
@keyframes load-eth {
  0% {
    width: 0;
  }
  100% {
    width: 38%;
  }
}
.main-form-card .asset-list-desktop .table-head .progress-thr {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 1.5rem 0;
  background: #d7d7d6;
  border-radius: 100px;
  position: relative;
  height: 10px;
  width: 75%;
}
.main-form-card .asset-list-desktop .table-head .progress-thr .progress-value-thr {
  -webkit-animation: load-thr 3s normal forwards;
          animation: load-thr 3s normal forwards;
  border-radius: 100px;
  background: #27ae60;
  height: 10px;
  width: 0;
}
.main-form-card .asset-list-desktop .table-head .progress-thr .load-number-thr {
  font-size: 12px;
  color: #000000;
  position: absolute;
  right: -2rem;
  color: #000000;
}
@keyframes load-thr {
  0% {
    width: 0;
  }
  100% {
    width: 71%;
  }
}
.main-form-card .asset-list-desktop .table-head .table-data {
  text-transform: capitalize;
  font-size: 16px;
  line-height: 60px;
  color: #23262f;
  width: 100%;
  max-width: 10rem;
  text-align: left;
  display: flex;
  align-items: center;
}
.main-form-card .asset-list-desktop .table-head .table-data .amchart {
  width: 100%;
  max-width: 10rem;
  height: 50px;
  margin: 5px 0;
}
.main-form-card .asset-list-desktop .table-head .table-data svg {
  cursor: pointer;
}
.main-form-card .asset-list-desktop .table-head .table-data img {
  padding: 0 10px 0 0;
}
.main-form-card .asset-list-desktop .small-col {
  width: 3rem !important;
}
.main-form-card input[type=submit] {
  border: none;
  padding: 16px 24px;
  width: 330px;
  right: 52px;
  top: calc(50% - 48px / 2 + 131px);
  background: #2f80ed;
  border-radius: 7px;
  color: #fcfcfc;
  text-align: center;
  margin-top: 35px;
  margin-bottom: 20px;
  line-height: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

@media (min-width: 800px) {
  .modal-wrapper-freeze .modal,
.modal-wrapper-reset .modal {
    max-width: 800px;
  }
  .modal-wrapper-freeze .modal .modal-heading h1,
.modal-wrapper-reset .modal .modal-heading h1 {
    font-size: 28px;
  }
  .modal-wrapper-freeze .modal .modal-content,
.modal-wrapper-reset .modal .modal-content {
    padding: 2rem 3rem;
  }
  .modal-wrapper-freeze .modal .modal-content .form-step #progressbar-order li,
.modal-wrapper-reset .modal .modal-content .form-step #progressbar-order li {
    font-size: 12px;
  }
  .modal-wrapper-freeze .modal .modal-content .form-bcn, .modal-wrapper-freeze .modal .modal-content .form-address,
.modal-wrapper-reset .modal .modal-content .form-bcn,
.modal-wrapper-reset .modal .modal-content .form-address {
    margin-top: 47px;
  }
  .modal-wrapper-freeze .modal .modal-content .form-asset,
.modal-wrapper-reset .modal .modal-content .form-asset {
    margin-top: 47px;
  }
  .modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-asset,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-asset {
    font-size: 14px;
  }
  .modal-wrapper-freeze .modal .modal-content .form-asset .wrapper-asset .text,
.modal-wrapper-reset .modal .modal-content .form-asset .wrapper-asset .text {
    font-size: 14px;
  }
  .modal-wrapper-freeze .modal .modal-content button,
.modal-wrapper-reset .modal .modal-content button {
    font-size: 16px;
  }
  .modal-wrapper-freeze .modal .modal-content .step-two-btns,
.modal-wrapper-reset .modal .modal-content .step-two-btns {
    gap: 12em;
    margin-top: 67px;
  }
  .modal-wrapper-freeze .modal .modal-content .step3 .review,
.modal-wrapper-reset .modal .modal-content .step3 .review {
    max-width: 482px;
  }
  .modal-wrapper-freeze .modal .modal-content .step3 .review .review-details .review-info-title li, .modal-wrapper-freeze .modal .modal-content .step3 .review .review-details .review-info-details li,
.modal-wrapper-reset .modal .modal-content .step3 .review .review-details .review-info-title li,
.modal-wrapper-reset .modal .modal-content .step3 .review .review-details .review-info-details li {
    font-size: 16px;
  }
  .modal-wrapper-freeze .modal .modal-content .step4,
.modal-wrapper-reset .modal .modal-content .step4 {
    padding-bottom: 6rem;
  }
  .modal-wrapper-freeze .modal .modal-content .step4 p,
.modal-wrapper-reset .modal .modal-content .step4 p {
    font-size: 28px;
  }
  .modal-wrapper-freeze .modal .modal-content .step4 .success-message,
.modal-wrapper-reset .modal .modal-content .step4 .success-message {
    font-size: 18px;
    padding: 0 5rem 1rem 5rem;
  }
  .modal-wrapper-freeze .modal .modal-content .step4 button,
.modal-wrapper-reset .modal .modal-content .step4 button {
    font-size: 16px;
    width: 100%;
    max-width: 174px;
  }
  .modal-wrapper-freeze .modal .modal-content form,
.modal-wrapper-reset .modal .modal-content form {
    padding: 0 4rem;
  }
  .modal-wrapper-freeze .modal .modal-content form .sms-code .sms-otp,
.modal-wrapper-freeze .modal .modal-content form .sms-code .email-otp,
.modal-wrapper-freeze .modal .modal-content form .sms-code .google-otp,
.modal-wrapper-freeze .modal .modal-content form .email-code .sms-otp,
.modal-wrapper-freeze .modal .modal-content form .email-code .email-otp,
.modal-wrapper-freeze .modal .modal-content form .email-code .google-otp,
.modal-wrapper-freeze .modal .modal-content form .google-code .sms-otp,
.modal-wrapper-freeze .modal .modal-content form .google-code .email-otp,
.modal-wrapper-freeze .modal .modal-content form .google-code .google-otp,
.modal-wrapper-reset .modal .modal-content form .sms-code .sms-otp,
.modal-wrapper-reset .modal .modal-content form .sms-code .email-otp,
.modal-wrapper-reset .modal .modal-content form .sms-code .google-otp,
.modal-wrapper-reset .modal .modal-content form .email-code .sms-otp,
.modal-wrapper-reset .modal .modal-content form .email-code .email-otp,
.modal-wrapper-reset .modal .modal-content form .email-code .google-otp,
.modal-wrapper-reset .modal .modal-content form .google-code .sms-otp,
.modal-wrapper-reset .modal .modal-content form .google-code .email-otp,
.modal-wrapper-reset .modal .modal-content form .google-code .google-otp {
    width: 50px;
    height: 50px;
  }

  .main-form-card {
    padding: 3rem 2rem;
  }
  .main-form-card .bg-blob-card {
    display: block !important;
  }
  .main-form-card .balance #border {
    width: 57.86px;
  }
  .main-form-card embed {
    max-width: 486px;
    height: 305px;
  }
  .main-form-card .review-action-btn {
    padding: 22px 18px 25px 29px;
  }
  .main-form-card .review-action-btn .freeze-btn,
.main-form-card .review-action-btn .reset-btn {
    font-size: 18px;
  }
  .main-form-card .top-navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: none;
  }
  .main-form-card .top-navigation .transfer-btn {
    display: block !important;
  }
  .main-form-card .search-field {
    display: block !important;
  }
  .main-form-card .asset-list-mobile {
    display: none !important;
  }
  .main-form-card .asset-list-desktop {
    display: block !important;
  }
  .main-form-card .asset-list-desktop .desktop-col {
    display: block !important;
  }
  .main-form-card .asset-list-desktop .table-head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
/*# sourceMappingURL=main.css.map *//*# sourceMappingURL=main.css.map */