/*-----------------------------------=========Main-Style-Sheet=========----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
@font-face {
  font-family: 'MS UI Gothic';
  src: url('../webfonts/MS-UIGothic.woff2') format('woff2'),
      url('../webfonts/MS-UIGothic.woff') format('woff'),
      url('../webfonts/MS-UIGothic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MS Gothic';
  src: url('../webfonts/MS-Gothic.woff2') format('woff2'),
      url('../webfonts/MS-Gothic.woff') format('woff'),
      url('../webfonts/MS-Gothic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'OPTIAlpine-Primer';
  src: url('../webfonts/OPTIAlpine-Primer.woff2') format('woff2'),
      url('../webfonts/OPTIAlpine-Primer.woff') format('woff'),
      url('../webfonts/OPTIAlpine-Primer.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&family=Sue+Ellen+Francisco&display=swap');
:root {
  --theme__color1: #5ED5A8;
  --theme__color2: #DD4B4B;
  --font1: 'MS UI Gothic';
  --font1-alternate: 'OPTIAlpine-Primer';
  --font2: 'Poppins', sans-serif;
}
*,::before,::after {
  box-sizing: border-box;
}
body {
  font-size: 14px;
  line-height: 1.2;
  background-color: #070707;
  color: #777777;
  overflow-x: hidden;
  word-wrap: break-word;
  word-break: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-family: var(--font1);
}
body.bg2 {
  background: #1B232A;
}
a, a:active, a:active, a:hover {
  text-decoration:none !important;
  color: inherit;
}
input{
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
a:hover,
a:focus,
input:focus,
input:hover,
select:focus,
select:hover,
select:active,
textarea:focus,
textarea:hover,
button:focus {
  outline: none;
}
::placeholder {
  opacity: 1;
}
:focus::placeholder {
  opacity: 0;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed; /* Prevents HTML tables from becoming too wide */
  width: 100%;
}
img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
iframe {
  width: 100%;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
  font-weight: 400;
  letter-spacing: 0.6px;
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
p{
  line-height: 1.2;
  margin-bottom: 15px;
}
p:last-child{
  margin: 0;
}
.main-wrap {
  width: 100%;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}




/* header */
.header-section {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
/* header-end */





/* ---offcanvas-css--- */
.offcanvas-menu {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 200;
  transform: translateX(-105%);
  transition: 0.3s;
  background: #1B232A;
}
.offcanvas-menu.active {
  transform: translate(0);
}
.offcanvas-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.offcanvas-header {
  padding: 45px 25px 25px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.offcanvas-header::after {
	content: '';
	height: 144px;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	background: linear-gradient(180deg, rgba(27, 35, 42, 0) 0%, #5ED5A8 100%);
  opacity: 0.1;
	z-index: -1;
}
.offcanvas-header .top-row {
  display: flex;
  justify-content: space-between;
}
.offcanvas-header .top-row .back-button {
    font-size: 18px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}
.offcanvas-header .top-row .back-button i {
  font-size: 15px;
  margin: 0 16px;
  color: #777;
}
.offcanvas-header .top-row .profile-link {
  padding: 10px;
  display: block;
  margin-right: -10px;
}

.offcanvas-user {
  margin: 40px 0 0;
  display: flex;
  align-items: center;
}
.offcanvas-user .image {
  margin: 0 12px 0 0;
  height: 42px;
  width: 42px;
  position: relative;
}
.offcanvas-user .image .img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 1px solid #fff;
}
.offcanvas-user .image .elsp {
  height: 7px;
  width: 7px;
  display: block;
  background: #4AA8FF;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 1px solid #fff;
}
.offcanvas-user .text {

}
.offcanvas-user .text h3 {
  margin: 0 0 5px;
  font-size: 18px;
  color: #fff;
}
.offcanvas-user .text h5 {
  font-size: 14px;
  margin: 0;
}
.offcanvas-user .text h5 .txt {

}
.offcanvas-user .text h5 .copy-button {
  color: var(--theme__color1);
}

.offcanvas-body {
  padding: 25px 25px;
  height: 0;
  flex-grow: 1;
  overflow: auto;
}

.offmenu-group {
  padding: 13px 0;
}
.offmenu-group .title {
  padding: 0 0 15px;
  border-bottom: 1px solid #20272E;
}
.offmenu-group .title h4 {
  font-size: 18px;
  color: #C1C7CD;
}
.offmenu-group .grid-menu .menu-item {
  border: none !important;
}

/* ---offcanvas-css-end---*/

/* --preloader-- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999999999;
  overflow: hidden;
  background: #070707;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.preloader-bg {
  --top: 45%;
  position: absolute;
  top: var(--top);
  left: 0;
  transform: translate(0, calc(var(--top) * -1));
  width: 100%;
  z-index: -1;
}
.preloader-shape {
  --top: 45%;
  position: absolute;
  top: var(--top);
  left: 0;
  transform: translate(0, calc(var(--top) * -1));
  width: 100%;
  z-index: -1;
}


.preloader-content {
  margin-top: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.preloader-content .h-img {

}
.preloader-content h2 {
  font-size: 36px;
  font-weight: 700;
  font-family: var(--font2);
}

/* --preloader-end-- */


/* ---welcome-section--- */
.welcome-section {
  height: 100vh;
  width: 100vw;
  position: relative;
  z-index: 10;
}
.welcome-section-inner {
  height: 100%;
}


.welcome-screens {
  height: 100%;
}
.welcome-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.welcome-screen .shape {
  min-height: 100%;
  min-width: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  /* border: 1px solid red; */
  pointer-events: none;
}

.welcome-screen .image-part {
  padding: 7vh 25px 25px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  flex-shrink: 1;
  height: 0;
}
.welcome-screen .image-part .img {
  max-height: 100%;
}
.welcome-screen .image-part::after {
  content: '';
  height: 144px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  background: linear-gradient(180deg, rgba(27, 35, 42, 0) 0%, #1B232A 100%);
  z-index: -1;
}
.welcome-screen .image-part .step {
  display: none;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.welcome-screen .image-part .step.active {
  display: flex;
  animation: ZoomIn 0.3s forwards;
}
@keyframes ZoomIn {
  from { 
    opacity: 0; 
    transform: scale(0);
  }
    to { 
      opacity: 1; 
      transform: scale(1);
    }
}
.welcome-screen .image-part .img {

}
.welcome-screen .content-part {
  padding: 40px 25px 7vh;
  flex-shrink: 0;
  text-align: center;
}
.welcome-screen .content-part h2 {
  font-size: 32px;
  margin: 0 0 34px;
  color: #fff;
}
.welcome-screen .content-part h3 {
  font-size: 24px;
  margin: 0 0 34px;
  color: #fff;
}
.welcome-screen .content-part p {
  font-size: 18px;
  color: #777777;
  line-height: 1.7;
}
.welcome-screen .content-part .all-content .step {
  display: none;
}
.welcome-screen .content-part .all-content .step.active {
  display: block;
  transform: translate(0);
  animation: fadeLeft 0.3s forwards;
}
@keyframes fadeLeft {
  from { 
    opacity: 0; 
    transform: translate(100%,0);
  }
    to { 
      opacity: 1; 
      transform: translate(0);
    }
}
[step-progress="3"] .step-progress-next {
  pointer-events: none;
}
.welcome-screen .content-part .welcome-step {
  margin: 45px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.welcome-screen .content-part .welcome-step .step {
  height: 12px;
  width: 12px;
  margin-right: 20px;
  display: block;
  border-radius: 50%;
  background: #252E35;
  transition: 0.3s;
}
.welcome-screen .content-part .welcome-step .step:last-child {
  margin-right: 0;
}
.welcome-screen .content-part .welcome-step .step.current {
  background: #777777;
}
.welcome-screen .content-part .bottom-button {
  margin: 40px 0 0;
} 

/* ---welcome-section---end */


/* ---sign-section--- */
.sign-section {
  height: 100vh;
  width: 100vw;
  background: #131823;
}
.sign-section.sign-section--theme2 {
  background: url('../images/background/sign-in-shape.png') no-repeat center center/cover,#1B232A;
}
.sign-section-inner {
  overflow: auto;
  padding: 7vh 25px;
  height: 100%;
}
.sign-section-inner .top-close-button {
  color: #777777;
  font-size: 20px;
  margin: 0 0 40px;
  display: flex;
}
.sign-section-inner .top-icon-text-button {
  color: #A7AFB7;
  font-size: 18px;
  margin: 0 0 40px;
  display: flex;
  align-items: center;
}
.sign-section-inner .top-icon-text-button i {
  font-size: 14px;
  margin: 0 20px 0 0;
}
.sign-nav {
  margin: 0 0 40px;
  background: #0C1321;
  padding: 4px;
  border-radius: 12px;
}
.sign-nav .nav {

}
.sign-nav .nav li {
  width: 0;
  flex-grow: 1;
}
.sign-nav .nav li:last-child {

}
.sign-nav .nav li a {
  padding: 11px;
  font-size: 14px;
  color: #777777;
  display: flex;
  text-align: center;
  width: 100%;
  justify-content: center;
  transition: 0.3s;
  border-radius: 10px;
}
.sign-nav .nav li a.active {
  background: #1B232A;
  color: #C1C7CD;
}

.sign-form {

}
.sign-form-title {
  margin: 0 0  40px;
}
.sign-form-title h2 {
  font-size: 32px;
  color: #fff;
}
.sign-form-title p {
  line-height: 1.15;
  font-size: 14px;
  color: #A7AFB7;
}
.sign-form .submit-button {
  width: 100%;
}
.more-sign-options-label {
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.more-sign-options-label .line {
  background: #1F262D;
  height: 1px;
  flex-grow: 1;
}
.more-sign-options-label .txt {
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  padding: 0 15px;
}
.more-sign-buttons {
  margin: 20px 0 0;
  display: flex;
  justify-content: space-between;
}
/* ---sign-section---end */


/* --input-x-- */
.single-input-x {
  width: 100%;
  margin: 0 0 25px;
}
.single-input-x label,
.single-input-x .label {
  font-size: 14px;
  font-weight: 400;
  color: #777;
}
.x-label {
  margin: 0 0 11px;
}
.x-after-label {
  margin: 8px 0 0;
}
.input-x-outer {
  position: relative;
}
.input-x-outer .password-field-toggler {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0,-50%);
  color: #777;
}
.input-x {
  width: 100%;
  font-size: 18px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: #0C1321;
  color: #777777;
  font-size: 14px;
  font-weight: 400;
}

.input-x-code-outer {
  display: flex;
  justify-content: space-between;
}
.input-x-code-outer .input-x {
  font-size: 32px;
  width: 60px;
  height: 54px;
  text-align: center;
  padding: 0;
  color: #fff;
}
/* --input-x--end */


/* ---mobile-bar--- */
.mobile-bar {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0px 25px -1px;
  z-index: 300;
}
.mobile-bar.mobile-bar-s-full {
  padding: 0 10px 5px;
}
.mobile-bar-inner {
  /*border-radius: 20px;*/
  background: #1B232A;
}

.mobile-bar-menu {
  
}
.mobile-bar-menu ul {
  display: flex;
}
.mobile-bar-menu ul li {
  width: 20%;
}
.mobile-bar-menu ul li a {
  padding: 15px 0;
  font-size: 12px;
  color: #777777;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile-bar-menu ul li a .icon {
  height: 27px;
  width: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-bar-menu ul li a.active .icon {
  filter: drop-shadow(0px 5px 16px rgba(94, 213, 168, 0.25));
}
.mobile-bar-menu ul li a.active .icon [fill="#777777"] {
  fill: var(--theme__color1);
}
/* ---mobile-bar---end *


/* ---header-section--- */
.header-section {
  position: relative;
  z-index: 100;
}
.header-section-inner {
  padding: 25px 25px 17px;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #1B232A;
  box-shadow: 0px 12px 16px rgba(22, 28, 34, 0.5);
}

.header-user {
  
}
.header-user >  a {

}
.header-user >  a .image {

}
.header-user >  a .image .img {

}

.header-i-menu {

}
.header-i-menu ul {
  display: flex;
}
.header-i-menu ul li {
  margin-right: 27px;
}
.header-i-menu ul li:last-child {
  margin-right: 0;
}
.header-i-menu ul li a {

}
.header-i-menu ul li a .icon {

}
.header-i-menu ul li a .icon img {

}
/* ---header-section---end */


/* ---menu-section--- */
.menu-section {

}
.menu-section-inner {

}

.grid-menu {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.grid-menu .menu-item {
  --border: 1px solid #20272E;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border-left: var(--border);
  border-top: var(--border);
}
.grid-menu .menu-item:nth-child(4n+1) {
  border-left: none;
}
.grid-menu .menu-item:nth-child(-n+4) {
  border-top: none;
}
.grid-menu .menu-item .icon {
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grid-menu .menu-item .icon .img {

}
.grid-menu .menu-item h4 {
  font-size: 12px;
  font-weight: 400;
  color: #C1C7CD;
}
/* ---menu-section---end */


/* ---l-card-section--- */
.l-card-section {
  padding: 25px 25px;
}
.l-card-section-inner {

}

.l-card {
  padding: 11px;
  border-radius: 16px;
  background: #7F858B;
  margin: 0 0 16px;
  display: flex;
}
.l-card .image {
  border-radius: 10px;
  height: 52px;
  width: 52px;
  margin: 0 17px 0 0;
  flex-shrink: 0;
  background: url('../images/illustration/space.png') no-repeat center center/cover;
}
.l-card .image .img {

}
.l-card .content {
  display: flex;
  flex-grow: 1;
  align-items: center;
}
.l-card .text {
  flex-grow: 1;
}
.l-card .text h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #1B232A;
}
.l-card .text h4 {
  font-size: 14px;
  color: #A7AFB7;
  margin: 0;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  transition: .3s ease;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.l-card .button-arrow {
  height: 40px;
  width: 40px;
  font-size: 16px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #777777;
  background: #fff;
}
/* ---l-card-section---end */



/* ---crypto-card-section--- */
.crypto-card-section {
  padding: 25px 25px;
}
.crypto-card-section-inner {
  
}

.crypto-card-row {
  margin: 0 0 55px;
  display: flex;
  overflow: auto;

  --scrollbar-width: 0px;
  width: calc(100vw - var(--scrollbar-width));
  flex-shrink: 0;
  margin-left: calc(((100vw - var(--scrollbar-width)) - 100%) * -0.5);
  padding-left: calc(((100vw - var(--scrollbar-width)) - 100%) * 0.5);
}
.crypto-card {
  --theme: var(--theme__color1);
  padding: 10px 10px;
  width: 163px;
  flex-shrink: 0;
  margin-right: 8px;
  background: #fff;
  border-radius: 16px;
}
.crypto-card:first-child {

}
.crypto-card .tp-content {
  margin: 0 0 13px;
}
.crypto-card .tp-content .text {

}
.crypto-card .tp-content .text .h3 {
  margin: 0 0 5px;
  font-size: 16px;
  color: var(--theme);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.crypto-card .tp-content .text .h3 .txt {

}
.crypto-card .tp-content .text .h3 .l-logo {
  margin: -5px -5px 0 0;
}
.crypto-card .tp-content .text .h3 .l-logo .img {

}
.crypto-card .tp-content .text .h4 {
  margin: 0;
  font-size: 14px;
  color: #1B232A;
}
.crypto-card .tp-content .text .h4 .theme-text {
  color: var(--theme);
  font-size: 12px;
}
/* ---crypto-card-section---end */



/* ---full-page--- */
.f-true {
  padding-bottom: 0 !important;
}
.full-section {
  height: 0;
  flex-grow: 1;
  overflow: auto;
}
.full-section-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}
/* ---full-page---end */



/* ---notification-section--- */
.notification-section {
  padding: 25px;
}
.notification-section-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.s-title {
  padding: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #20272E;
}
.s-title h3 {
  font-size: 18px;
  color: #fff;
}
.s-title .right {

}
.s-title .right .a-btn {
  font-size: 14px;
  margin: 0 10px 0 0;
}
.s-title .right .icon-button {
  color: #fff;
  font-size: 18px;
}

.notifications-wrap {
  flex-grow: 1;
  height: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.single-notification {
  padding: 16px 0;
  border-bottom: 1px solid #20272E;
}
.single-notification h3 {
  font-size: 14px;
  color: #C1C7CD;
}
.single-notification h3 .dot {
  margin: 0 0 0 7px;
  transform: translate(0, 2px);
  height: 13px;
  width: 13px;
  background: #5ED5A8;
  border-radius: 50%;
  display: inline-block;
}
.single-notification h3 .dot.warning {
  background: #D5BB5E;
}
.single-notification h3 .dot.danger {
  background: #DD4B4B;
}
.single-notification p {
  font-size: 14px;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  transition: .3s ease;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.empty-notification-content {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.empty-notification-content .img {
  margin: 0 0 33px;
}
.empty-notification-content h4 {
  margin: 0 0 8px;
  font-size: 14px;
  color: #fff;
}
.empty-notification-content p {

}
/* ---notification-section---end */



/* ---my-qr-section--- */
.my-qr-section {

}
.my-qr-section-inner {

}
.section-title-erdo {
  padding: 27px 25px;
  position: relative;
  z-index: 1;
}
.section-title-erdo::after {
	content: '';
	height: 144px;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	background: linear-gradient(180deg, rgba(27, 35, 42, 0) 0%, #5ED5A8 100%);
	opacity: 0.1;
	z-index: -1;
}
.section-title-erdo h2 {
  text-align: center;
  color: #fff;
}
.section-title-erdo .mq-tp-nav {
  margin: 0 0 23px;
}
.mq-tp-nav {

}
.mq-tp-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mq-tp-nav ul li {
  margin-right: 20px;
}
.mq-tp-nav ul li:last-child {
  margin-right: 0;
}
.mq-tp-nav ul li a {
  font-size: 14px;
}
.mq-tp-nav ul li a.active {
  color: var(--theme__color1);
}


.my-qr-section-main {
  padding: 25px 25px;
  text-align: center;
}
.my-qr-section-main h3 {
  margin: 0 0 25px;
  font-size: 18px;
  color: #fff;
}
.my-qr-code {
  padding: 25px;
  border-radius: 16px;
  background: #fff;
  width: max-content;
  margin: auto;
}
.qr-address-wdfk {
  margin: 24px 0 0;
}
.qr-address-wdfk p {
  margin: 0 0 7px;
}
.address-show {
  padding: 10px 50px 10px 10px;
  position: relative;
  border-radius: 12px;
  background: #0C1321;
  text-align: left;
  overflow: hidden;
}
.address-show .text {

}
.address-show .copy-btn {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--theme__color1);
  background: #fff;
  height: 100%;
  padding: 0 12px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-qr-section-main .bottom-ctn {
  margin: 23px 0 0;
}
.my-qr-section-main .bottom-ctn p {
  margin: 0 0 24px;
}
.my-qr-section-main .bottom-ctn .button {
  width: 100%;
}
/* ---my-qr-section---end */



/* ---qr-scan-section--- */
.qr-scan-section {
  padding: 25px 25px;
}
.qr-scan-section-inner {

}

.section-title-kji {
  margin: 0 0 23px;
}
.section-title-kji h3 {
  font-size: 18px;
  margin: 0 0 6px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.section-title-kji h3 .camera {
  margin: 0 10px 0 0;
}
.section-title-kji p {
  line-height: 1.5;
  text-align: center;
}

.qr-scan-section-main {

}
.qr-scan-screen-outer {
  height: 350px;
  background: url('../images/background/background-camera.png') no-repeat center center/auto, linear-gradient(#0C1321,#0C1321);
  position: relative;
}
.qr-scan-screen-outer .cam-line {
  --border-width: 4px;
  height: 33px;
  width: 33px;
  position: absolute;
  transition: 0.3s;
}
.qr-scan-screen-outer .cam-line-tl {
  border-top: var(--border-width) solid #fff;
  border-left: var(--border-width) solid #fff;
  top: calc(var(--border-width) * -1);
  left: calc(var(--border-width) * -1);
}
.qr-scan-screen-outer .cam-line-tr {
  border-top: var(--border-width) solid #fff;
  border-right: var(--border-width) solid #fff;
  top: calc(var(--border-width) * -1);
  right: calc(var(--border-width) * -1);
}
.qr-scan-screen-outer .cam-line-bl {
  border-bottom: var(--border-width) solid #fff;
  border-left: var(--border-width) solid #fff;
  bottom: calc(var(--border-width) * -1);
  left: calc(var(--border-width) * -1);
}
.qr-scan-screen-outer .cam-line-br {
  border-bottom: var(--border-width) solid #fff;
  border-right: var(--border-width) solid #fff;
  bottom: calc(var(--border-width) * -1);
  right: calc(var(--border-width) * -1);
}

.qr-scan-section-main .bottom-buttons {
  margin: 25px 0 0;
}
.qr-scan-section-main .bottom-buttons .button {
  width: 100%;
  margin-bottom: 14px;
}
.qr-scan-section-main .bottom-buttons .button:last-child {
  margin-bottom: 0;
}
/* ---qr-scan-section---end */



/* ---trade-section--- */
.trade-section {

}
.trade-section-inner {

}
.trade-section-inner .top-nav {
  padding: 20px 25px;
  background: #1B2229;
}
.trade-graph {
  height: 0;
  flex-grow: 1;
  background: linear-gradient(180deg, #1B2229 0%, #161C22 100%);
  display: flex;
  flex-direction: column;
}
.trade-graph .row-main  {
  display: flex;
  height: 0;
  flex-grow: 1;
}
.trade-graph .row-main .m-side {
  flex-grow: 1;
  width: 0;
  display: flex;
  flex-direction: column;
}
.trade-graph .row-main .m-side .text-m  {
  margin: 0 0 25px 25px;
}
.trade-graph .row-main .m-side .text-m h3  {
  font-size: 28px;
  margin: 0 0 5px;
  color: #131823;
  display: flex;
  align-items: center;
}
.trade-graph .row-main .m-side .text-m h3 .small  {
  font-size: 14px;
  color: var(--theme__color1);
  margin: 0 0 4px 25px;
  transition: 0.3s;
}
.trade-graph .row-main .m-side .text-m h4  {
  font-size: 16px;
  color: #C1C7CD;
  margin: 0;
}
.trade-graph .row-main .m-side .text-m h4 img  {
  margin: 0 1px 0 0;
}
.trade-graph .row-main .m-side .graph-m  {
  height: 0;
  flex-grow: 1;
}
.trade-graph .row-main .m-side .graph-m .img  {
  width: 100%;
  max-height: 100%;
}
.trade-graph .row-main .r-side {
	width: 58px;
  margin: 0 25px 0 0;
	flex-shrink: 0;
}
.graph-r-range  {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.graph-r-range p  {
  font-size: 10px;
  margin: 0;
  text-align: right;
}
.trade-graph .row-rng {
  display: flex;
  width: 100%;
}
.trade-graph .row-rng.bg2 {
  background: #1B232A;
}
.trade-graph .row-rng .single {
  height: 38px;
  font-size: 10px;
  color: #777777;
  width: 10px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.trade-graph .row-rng .single.active {
  background: #252E35;
  color: #131823;
}
.trade-graph .row-rng .single a {

}


.trade-btn-row-er {
  display: flex;
}
.trade-btn-row-er a {
  color: #171D22;
  background-color: var(--theme__color2);
  width: 0;
  flex-grow: 1;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.trade-btn-row-er a.theme1 {
  background: var(--theme__color1);
}


.trade-table-wrap {
  height: 0;
  flex-grow: 1;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.trade-table-wrap .top-btn-row {

}
.trade-table-wrap .top-btn-row .nav {
  display: flex;
  border-bottom: 1px solid #F1F4F6;
}
.trade-table-wrap .top-btn-row .nav li {
  width: 0;
  flex-grow: 1;
}
.trade-table-wrap .top-btn-row .nav li a {
  height: 48px;
  color: #A7AFB7;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.trade-table-wrap .top-btn-row .nav li a.active { 
  color: #1B232A;
  background: #F1F4F6;
}
.trade-table {
  display: flex;
  flex-direction: column;
  height: 0;
  flex-grow: 1;
}
.trade-table .tr {
  display: grid;
  grid-template-columns: 50% 50%;
}
.trade-table .td {
  --theme: var(--theme__color2);
  padding: 10px 8px 10px 12px;
  border-left: 1px solid #F1F4F6;
}
.trade-table .td.theme1 {
  --theme: var(--theme__color1)
}
.trade-table .td:first-child {
  border-left: 0;
  padding-left: 25px;
}
.trade-table .td:last-child {
  padding-right: 25px;
}
.trade-table .thead .td {
  font-size: 12px;
  color: #A7AFB7;
  border-bottom: 1px solid #F1F4F6;
}
.trade-table .table-body {
  height: 0;
  flex-grow: 1;
  overflow: auto;
}
.trade-table .td .single {
  display: flex;
  justify-content: space-between;
}
.trade-table .td .single p {
  margin: 0;
  padding: 2px 0;
}
.trade-table .td .single .lp {
  font-size: 12px;
  color: #1B232A;
  flex-shrink: 0;
  margin: 0 15px 0 0;
}
.trade-table .td .single .rp {
  font-size: 12px;
  color: var(--theme);
  position: relative;
  z-index: 1;
  flex-grow: 1;
  text-align: right;
}
.trade-table .td .single .rp .fill {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  height: 100%;
  background: var(--theme);
  opacity: 0.1;
}



/* trade-action */
.trade-action-panel {
  background: #1B232A;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000000;
  border-radius: 18px 18px 0 0;
  transform: translateY(110%);
  transition: 0.3s;
}
.trade-action-panel.active {
  transform: translateY(0);
}
.trade-action-panel-inner {
  position: relative;
}
.trade-action-header {
  padding: 13px 25px 15px;
  display: flex;
  border-bottom: 1px solid #1F262D;
}
.trade-action-header .hide-button {
  height: 60px;
  width: 60px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  background: #1B232A;
  box-shadow: 0px 12px 16px rgba(22, 28, 34, 0.5);
  color: #fff;
  position: absolute;
  left: 25px;
  top: -30px;
}
.trade-action-header .m-c {
  margin-left: auto;
}
.trade-action-header .m-c p {
  display: flex;
  align-items: center;
}
.trade-action-header .m-c p a {
  font-size: 22px;
}


.trade-action-main {
  padding: 21px 25px;
}
.trade-action-main .sign-nav {
  margin: 0 0 8px;
}
.trd-sn-action {
  margin: 0 0 40px;
  margin-bottom: 40px;
  background: #0C1321;
  border-radius: 12px;
  margin: 0 0 8px;
}
.trd-sn-action .trd-sn-action-tp {
  padding: 4px;
  display: flex;
  align-items: center;
}
.trd-sn-action .trd-sn-action-tp p {
  width: 40%;
  padding: 0 0 0 13px;
  font-size: 12px;
  color: #A7AFB7;
  margin: 0;
}
.trd-sn-action .trd-sn-action-tp h4 {
  font-size: 14px;
  color: #fff;
  margin: 0;
  flex-grow: 1;
}
.trd-sn-action .trd-sn-action-tp .buttons {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.trd-sn-action .trd-sn-action-tp .buttons .button {
  height: 44px;
  width: 44px;
  font-size: 18px;
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777777;
}
.trd-sn-action .trd-sn-action-tp .buttons .button:last-child {
  margin-right: 0;
}
.trd-sn-action .trd-sn-action-tp .buttons .button.v-active {
  background: #1B232A;
}

.trade-slider {
  border-top: 1px solid #131B25;
  margin-top: 1px;
  padding: 23px 17px 70px !important;
}
.trade-slider #slider-range {
	margin-bottom: 0px;
	background: #1B232A;
	height: 2px;
}
.trade-slider .ui-slider .ui-slider-range {
  background: #3c4a55 !important;
}
.trade-slider #slider-range .steps-show .step {
  background: none;
}
.trade-slider .ui-widget-content .ui-state-default {
	height: 8px;
	width: 8px;
	border: none !important;
	margin-top: 2px;
  margin-left: 0px;
	background: #252E35;
}
.trade-slider #slider-range .steps-show .step .step-content {
  margin-top: 5px;
  color: #777;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.3s;
  border-radius: 50%;
  font-size: 12px;
}
.trade-slider #slider-range .steps-show .step.active .step-content {
  background: #1B232A;
}


.trade-action-panel .bt-row {
  padding: 12px 0 20px;
}
.trade-action-panel .bt-row h4 {
  margin: 0 0 33px;
  font-size: 14px;
  text-align: right;
}
.trade-action-panel .bt-row .button {
  width: 100%;
}

/* ---trade-section---end */



/* ---market-section--- */
.market-section {
  padding: 20px 25px 25px;
}
.market-section-inner {

}
.market-section-inner .top-nav {
  margin: 0 0 20px;
}


.markets-wrap {
  height: 0;
  flex-grow: 1;
  overflow: auto;
}
.market-single {
  padding: 17px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #20272E;
}
.market-single .left {
  display: flex;
}
.market-single .left .n-logo {
  height: 41px;
  width: 41px;
  margin: 0 13px 0 0;
}
.market-single .left .n-logo .img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.market-single .text {

}
.market-single .text h4 {
  font-size: 14px;
  margin: 0 0 3px;
  color: #fff;
}
.market-single .text h5 {
  font-size: 14px;
  margin: 0;
  color: #777;
}
.market-single .graf {
  width: 91px;
}
.market-single .graf img {

}
.market-single .right {
  text-align: right;
}
.market-single .right h4 {
  font-size: 14px;
  margin: 0 0 3px;
  color: #fff;
}
.market-single .right h5 {
  font-size: 14px;
  margin: 0;
}
.market-add-button {
  margin: 22px 0 0;
  font-size: 18px;
  padding: 16px;
  border: 2px dashed #3e474f80;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  color: #777;
  background: #1E272E;
}
.market-add-button i {
  margin: 0 10px 0 0;
}
/* ---market-section---end */


/* ---wallet-header--- */
.wallet-header {
  background: url('../images/background/wallet-header-Background.png') no-repeat center center/cover;
  padding: 35px 25px 27px;
}
.wallet-header-inner {

}
.wallet-header-inner .tp-row {
  display: flex;
  justify-content: space-between;
}
.wallet-header-inner .tp-row .left {

}
.wallet-header-inner .tp-row .left h3 {
  margin: 0 0 15px;
  font-size: 14px;
}
.wallet-header-inner .tp-row .left h2 {
  margin: 0 0 5px;
  font-size: 32px;
  color: #fff;
}
.wallet-header-inner .tp-row .left h4 {
  font-size: 14px;
  color: #A7AFB7;
  margin: 0;
}
.wallet-header-inner .tp-row .wallet-eye-button {
  height: 44px;
  width: 44px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  background: #1B232A;
}
.wallet-h-buttons {
  margin: 50px 0 0;
  display: flex;
  justify-content: space-between;
}
.wallet-h-buttons .button {
  min-width: initial;
  width: 32.2%;
  border-radius: 10px;
}
/* ---wallet-header---end */


/* ---wallet-section--- */
.wallet-section {
  padding: 25px;
}
/* ---wallet-section---end */


/* ---activity-section--- */
.activity-section {
  padding: 25px;
}
.activity-section-inner {

}

.activity-nav {
  margin: 0 0 22px;
}
.activity-nav .nav {
  border-radius: 12px;
  overflow: hidden;
  flex-direction: column;
}
.activity-nav .nav li {

}
.activity-nav .nav li a {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  background: #0C1321;
  color: #C1C7CD;
  border-bottom: 1px solid #131B25;
}
.activity-nav .nav li a .icon {
  height: 25px;
  width: 25px;
  margin: 0 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.activity-nav .nav li a .icon .img {

}
.activity-nav .nav li a .txt {

}
.activity-nav .nav li a .arrow-right {
  margin-left: auto;
}

.activity-main-wrap {

}
.activity-main-wrap .t-h3 {
  font-size: 18px;
  color: #fff;
}
.activity-wrap {

}
.activity-single {
  padding: 22px 0 20px;
  display: flex;
  border-bottom: 1px solid #20272E;
}
.activity-single .ellipse-text {
  flex-shrink: 0;
  height: 40px;
  width: 40px;
  margin: 0 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(94, 213, 167, 0.13);
  color: var(--theme__color1);
  border-radius: 50%;
}
.activity-single .ellipse-text.theme2 {
  background: rgba(221, 75, 75, 0.13);
  color: var(--theme__color2);
}
.activity-single .ellipse-text .tx {

}
.activity-single .m-text {
  flex-grow: 1;
}
.activity-single .m-text h3 {
  margin: 0 0 5px;
  font-size: 14px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.activity-single .m-text h3 .val {
  color: #777;
}
.activity-single .m-text h3 .val i {
  font-size: 12px;
}
.activity-single .m-text p {
  margin: 0 0 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.activity-single .m-text p .val {

}
.activity-single .m-text p:last-child {
  margin-bottom: 0;
}
/* ---activity-section---end */



/* ---settings-section--- */
.settings-section {
  padding: 7vh 25px;
}
.settings-section-inner {

}
.settings-section-inner .tp-back {
  color: #A7AFB7;
  font-size: 18px;
  margin: 0 0 40px;
  display: flex;
  align-items: center;
}
.settings-section-inner .tp-back i {
  font-size: 14px;
  margin: 0 20px 0 0;
}

.settings-wrap {

}
.setting-single {
  padding: 16px 0;
  border-bottom: 1px solid #20272E;
  display: flex;
  align-items: center;
}
.setting-single .icon {
  width: 31px;
  height: 28px;
  margin: 0 13px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #0C1321;
  border-radius: 50%;
  flex-shrink: 0;
}
.setting-single .icon img {

}
.setting-single .txt {
  color: #C1C7CD;
}
.setting-single .r-text {
  margin-left: auto;
  text-align: right;
}
.setting-single .r-text i {
  margin: 0 0 0 11px;
}
/* ---settings-section---end */


/* ---profile-section--- */
.profile-section {

}
.profile-section-inner {

}

.profile-header {
  padding: 7vh 25px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.profile-header::after {
	content: '';
	height: 144px;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 92px;
	display: block;
	background: linear-gradient(180deg, rgba(27, 35, 42, 0) 0%, #5ED5A8 100%);
	opacity: 0.1;
	z-index: -1;
}
.profile-header .tp-back {
  color: #fff;
  font-size: 18px;
  margin: 0 0 40px;
  display: flex;
  align-items: center;
  align-self: flex-start;
}
.profile-header .tp-back i {
  font-size: 14px;
  margin: 0 17px 0 0;
  color: #A7AFB7;
}
.profile-header .profile-img {
  position: relative;
  height: 110px;
  width: 110px;
}
.profile-header .profile-img .img {
  border: 1px solid #fff;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.profile-header .profile-img .edit-button {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 34px;
}
.profile-header .user-id {
  margin: 4px 0 0;
  padding: 8px 0;
  width: 120px;
  font-size: 18px;
  color: #fff;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.356);
  text-align: center;
}
.profile-main {
  margin: 20px 0 0;
  border-top: 1px solid #20272E;
  padding: 0px 25px;
}


.profile-form {
  padding: 28px 0 0;
}
.profile-form .single-input-x {
  margin: 0 0 18px;
}
.profile-form .x-label {
  margin: 0 0 10px;
}
.profile-form .input-x {
  padding: 10px 4px;
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid #20272E;
  transition: 0.3s;
  color: #fff;
}
.profile-form .input-x:focus {
  border-bottom-color: #fff;
}
.profile-form .bottom-buttons {
  margin: 45px 0 0;
  display: flex;
  justify-content: space-between;
}
.profile-form .bottom-buttons .button {
  min-width: calc((100vw - 60px) / 2);
}
/* ---profile-section---end */