/*--------------------------------------------------------------------------------------*/
/*General-Css-Here
/*--------------------------------------------------------------------------------------*/

:root {
  --bg: #071225;
  --border: #50504d;
  --black: #000;
  --white: #fff;
  --p: #706f6c;
  --green: #20cd50;
  --orange: #df7514;
  --yellow: #d8a80a;
  --red: #d80a0a;
  --light-yellow: #faf0c9;
  --dark-yellow: #3a2f0b;
  --light-gray: #f9f9f9;
  --light-gray2: #fafafa;
  --light-gray3: #e9e9e9;
  --light-gray4: #f5f5f5;
  --dark-gray: #34495f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-size: 16px;
  color: var(--black);
  font-family: "Plus Jakarta Sans", sans-serif;
  box-sizing: border-box;
  font-weight: 400;
}

html {
  scroll-padding-top: 10rem;
}

body {
  background: var(--white);
}

a {
  text-decoration: none;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  color: var(--sky-blue);
}

button {
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

.paddTop0 {
  padding-top: 0 !important;
}

.btn-group-box .btn {
  margin-right: 15px;
}

.btn-group-box .btn:last-child {
  margin-right: 0;
}

.section-padding {
  padding: 100px 0px;
}

.white {
  color: var(--white);
}

.btn {
  height: 48px;
  line-height: 46px;
  padding: 0px 25px;
  font-size: 16px;
  color: var(--black);
  font-weight: 600;
  border: none;
  border-radius: 5px;
  background: linear-gradient(262.55deg, #e9c02f 1.49%, #f9e971 99.31%);
}

.border-btn {
  background: var(--white);
  height: 42px;
  line-height: 41px;
  padding: 0px 15px;
  font-size: 15px;
  color: var(--dark-blue);
  font-weight: 600;
  border: solid 1px;
  border-color: var(--dark-blue);
  border-radius: 5px;
  display: inline-block;
  text-align: center;
}

.yellow-border-btn {
  background: transparent;
  height: 42px;
  line-height: 41px;
  padding: 0px 15px;
  font-size: 15px;
  color: var(--yellow);
  font-weight: 600;
  border: solid 1px;
  border-color: var(--yellow);
  border-radius: 5px;
  display: inline-block;
  text-align: center;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  color: var(--p);
  font-size: 18px;
  line-height: 28px;
}

.transform-scale-07 {
  transform: scale(0.7);
}

.transform-scale-08 {
  transform: scale(0.8);
}

.transform-scale-09 {
  transform: scale(0.9);
}

.transform-scale-1 {
  transform: scale(1);
}

.transform-scale-1-1 {
  transform: scale(1.1);
}

.transform-scale-1-2 {
  transform: scale(1.2);
}

.transform-scale-1-3 {
  transform: scale(1.3);
}

.transform-scale-1-4 {
  transform: scale(1.4);
}

.transform-scale-1-5 {
  transform: scale(1.5);
}

.mr-bot0 {
  margin-bottom: 0 !important;
}

.border0 {
  border: none !important;
}

.padd-left-35 {
  padding-left: 35px;
}

.mar-top50 {
  margin-top: 50px;
}

.mar-bot50 {
  margin-bottom: 50px;
}

.mar-top80 {
  margin-top: 80px;
}

.mar-left-right50 {
  margin-left: 50px;
  margin-right: 50px;
}

.mar-left-right80 {
  margin-left: 80px;
  margin-right: 80px;
}

.mar-top-bottom50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.mar-top-bottom30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.padd-top-bottom50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.mr-left-right45 {
  margin-left: 45px;
  margin-right: 45px;
}

.padd0 {
  padding: 0 !important;
}

.mr0 {
  margin: 0 !important;
}

.padd-top89 {
  padding-top: 89px !important;
}

hr {
  margin: 25px 0px;
}

.padd20 {
  padding: 20px;
}

.padd30 {
  padding: 30px;
}

.padd-bot0 {
  padding-bottom: 0;
}

.site-bg {
  padding-top: 86px;
}

.ml-50 {
  margin-left: 50px;
}

.white-bg {
  background: var(--white);
  border: 1px solid var(--light-gray3);
  border-radius: 20px;
}

.light-bg {
  background: var(--white) !important;
}

.marTop40 {
  margin-top: 40px;
}

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

/*--------------------------------------------------------------------------------------*/
/*header-css-Here
/*--------------------------------------------------------------------------------------*/

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  background: var(--white);
  border-bottom: solid 1px var(--light-gray3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px;
}

.btn.inquire-btn {
  background: var(--black);
  color: var(--white);
}

.inquire-login-btn a {
  margin-right: 15px;
}

.inquire-login-btn a:last-child {
  margin-right: 0;
}

.nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.navbar-nav li.nav-item {
  margin: 0px 5px;
}

/*--------------------------------------------------------------------------------------*/
/*home-page-css-Here
/*--------------------------------------------------------------------------------------*/

.slider-top-section .container {
  position: relative;
}

.slider-top-section {
  background: var(--light-gray) url(../images/grow-arrow.png) no-repeat left bottom;
}

.slider-top-section .row .col-md-6 {
  display: flex;
  align-items: center;
}

.slider-des {
  width: 100%;
  position: relative;
}

.slider-img {
  width: 100%;
  position: relative;
}

.slider-des h1 {
  font-size: 64px;
  color: var(--black);
  font-weight: 700;
  line-height: 64px;
  margin-bottom: 20px;
}

.slider-des h1 span {
  color: var(--yellow);
}

.ger-img1 {
  position: absolute;
  right: -175px;
  top: 315px;
  z-index: 9;
  animation: bounce 3s linear infinite alternate;
}

.ger-img1 img {
  width: auto !important;
  max-width: 290px;
}

.ger-img2 {
  position: absolute;
  top: 100px;
  right: 100px;
  animation: float 3s linear infinite alternate;
}

.ger-img3 {
  position: absolute;
  top: 60px;
  left: 300px;
  animation: spin 3s linear infinite alternate;
}

.ger-img4 {
  position: absolute;
  bottom: 80px;
  left: 550px;
  animation: float 4s linear infinite alternate;
}

.slider-top-section .owl-dots {
  position: absolute;
  left: 0;
  bottom: 115px;
}

.slider-top-section .owl-dots .owl-dot {
  width: 11px;
  height: 11px;
  background: rgba(0, 0, 0, 9%);
  border-radius: 50px;
  margin-right: 8px;
}

.slider-top-section .owl-dots .owl-dot:last-child {
  margin-right: 0;
}

.slider-top-section .owl-dots .owl-dot.active {
  background: var(--yellow);
}

.brand-section {
  background: var(--black);
  padding: 50px 0px;
}

.brand-section ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-section ul li {
  padding: 0px 10px;
}

.brand-section ul li a {
  opacity: 1;
}

.brand-section ul li a:hover {
  opacity: 0.7;
}

.most-trusted-section {
  background: url(../images/dot-bg.png) no-repeat left top;
}

.most-trusted-section .col-md-6 {
  display: flex;
  align-items: center;
}

.most-trusted-des {
  width: 100%;
}

.most-trusted-des h2 {
  font-size: 42px;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 20px;
}

.most-trusted-des ul li {
  background: url(../images/arrow.png) no-repeat left center;
  font-size: 18px;
  color: var(--black);
  font-weight: 600;
  padding-left: 45px;
  margin-bottom: 10px;
}

.most-trusted-des ul li:last-child {
  margin-bottom: 0;
}

.how-we-work-section {
  background: var(--light-gray2) url(../images/we-work-ger.png) no-repeat left 100px;
}

.how-we-work-section.light-bg {
  background: var(--white) url(../images/we-work-ger.png) no-repeat left 100px !important;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head h2 {
  font-size: 42px;
  color: var(--black);
  font-weight: bold;
}

.how-work-box {
  max-width: 380px;
  width: 100%;
  background: var(--white);
  border: solid 1px #ebe1e1;
  border-radius: 20px;
  padding: 15px;
  display: flex;
  margin-bottom: 30px;
}

.how-work-box figure {
  flex: 0 0 46px;
  max-width: 46px;
}

.how-work-box figcaption {
  padding-left: 20px;
}

.how-work-box figcaption h3 {
  font-size: 20px;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 10px;
}

.how-work-box figcaption p {
  margin: 0;
}

.work-girl-img {
  width: 100%;
  text-align: center;
}

.testimonials-box {
  background: url(../images/quotes.png) no-repeat right top;
  padding-top: 40px;
  padding-right: 25px;
}

.testimonials-box p {
  margin: 0;
}

.testimonials-user-box {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonials-user-box figure {
  margin: 0;
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  max-width: 60px;
  border-radius: 100px;
  overflow: hidden;
}

.testimonials-user-box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-user-box figcaption {
  font-size: 18px;
  color: var(--black);
  padding-left: 15px;
  font-weight: 700;
}

/*--------------------------------------------------------------------------------------*/
/*login-page-css-Here
/*--------------------------------------------------------------------------------------*/

.inner-page-warper {
  background: var(--light-gray);
}

.form-box {
  max-width: 629px;
  width: 100%;
  margin: auto;
  position: relative;
}

.form-box h2 {
  font-size: 42px;
  color: var(--black);
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

.form-box-inner {
  padding: 25px;
  position: relative;
  z-index: 1;
}

.form-group-inner {
  position: relative;
}

.fild-icon {
  background: url(../images/line.png) no-repeat right center;
  font-size: 25px;
  position: absolute;
  left: 10px;
  top: 0;
  padding-right: 10px;
  height: 45px;
  display: flex;
  align-items: center;
}

.form-control {
  height: 45px;
}

textarea.form-control {
  height: 145px;
  resize: none;
}

select.form-control {
  background: url(../images/drop-arrow.png) no-repeat right center;
  appearance: none;
}

.form-group {
  margin-bottom: 15px;
  width: 100%;
}

.form-group-inner .form-control {
  padding-left: 55px;
}

.form-group label {
  font-size: 15px;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

.eye-view-btn {
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 25px;
}

.password-fild-box .form-control {
  padding-right: 40px;
}

.form-check-input:checked {
  background-color: var(--yellow);
  border-color: var(--yellow);
}

.form-check .form-check-input {
  box-shadow: none;
}

.form-check .form-check-label {
  font-size: 15px;
  color: var(--black);
  font-weight: 600;
}

.form-check .form-check-label a {
  color: var(--yellow);
}

.form-submit-btn {
  margin-top: 20px;
}

.form-submit-btn .btn {
  width: 100%;
}

.forgot-btn {
  text-align: center;
  margin-top: 20px;
}

.forgot-btn a {
  font-size: 15px;
  font-weight: 600;
  color: var(--yellow);
}

.forgot-btn a:hover {
  color: var(--yellow);
}

.form-shape-box1 {
  position: absolute;
  bottom: 0;
  left: -80px;
}

.form-shape-box2 {
  position: absolute;
  top: 150px;
  right: -80px;
}

.form-shape-box3 {
  position: absolute;
  top: 130px;
  left: -80px;
}

.seed-phrases-head {
  margin-bottom: 10px;
}

.seed-phrases-head h3 {
  font-size: 18px;
  color: var(--black);
  font-weight: bold;
  margin: 0;
}

.seed-phrases-head p {
  margin: 0;
  font-size: 15px;
}

.seed-phrases-box .fild-icon {
  font-size: 20px;
  color: var(--p);
}

.seed-phrases-box .form-group-inner .form-control {
  padding-left: 42px;
}

/*--------------------------------------------------------------------------------------*/
/*about-page-css-Here
/*--------------------------------------------------------------------------------------*/

.about-top-section {
  text-align: center;
}

.about-top-section h2 {
  font-size: 55px;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  margin-bottom: 30px;
}

.about-top-section h2 span {
  color: var(--yellow);
}

.about-image-box img {
  width: 100%;
  border-radius: 20px;
}

.services-box {
  margin-bottom: 30px;
}

.services-box figure {
  height: 215px;
  overflow: hidden;
  border-radius: 20px;
  margin: 0;
}

.services-box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  color: var(--sky-blue);
}

.services-box:hover figure img {
  transform: scale(1.2);
}

.services-box figcaption {
  text-align: center;
  padding-top: 25px;
}

.services-box figcaption h3 {
  font-size: 20px;
  color: var(--black);
  font-weight: bold;
}

.services-box figcaption h3 a {
  color: var(--black);
}

.services-box figcaption p a {
  color: var(--p);
}

/*--------------------------------------------------------------------------------------*/
/*our-services-page-css-Here
/*--------------------------------------------------------------------------------------*/

.inner-page-head {
  background: url(../images/ser-shape1.png) no-repeat left center,
    url(../images/ser-shape2.png) no-repeat right center;
  text-align: center;
  padding: 60px 0px;
  background-color: var(--light-gray);
}

.inner-page-head h1 {
  font-size: 48px;
  color: var(--black);
  font-weight: 700;
}

.inner-page-head ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-page-head ul li {
  padding-right: 5px;
}

.inner-page-head ul li:last-child {
  padding-right: 0;
}

.inner-page-head ul li a {
  font-size: 16px;
  color: var(--black);
}

.inner-page-head ul li.home a {
  color: var(--yellow);
}

/*--------------------------------------------------------------------------------------*/
/*how-it-work-page-css-Here
/*--------------------------------------------------------------------------------------*/

.how-it-work .col-md-7,
.how-it-work .col-md-5 {
  display: flex;
  align-items: center;
}

.how-it-work .how-work-box {
  width: 100%;
  max-width: 100%;
}

/*--------------------------------------------------------------------------------------*/
/*pricing-page-css-Here
/*--------------------------------------------------------------------------------------*/

.priceing-list .col-md-4 {
  display: flex;
  padding: 0;
}

.price-box {
  background: var(--light-gray);
  padding: 25px;
  border-radius: 20px;
}

.price-head {
  border-bottom: solid 1px;
  border-color: var(--dark-gray);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.price-head h5 {
  font-size: 18px;
  color: var(--p);
}

.price-head h3 {
  margin: 0;
  font-size: 30px;
  font-weight: bold;
  color: var(--black);
}

.price-des-list ul {
  list-style: disc;
  padding-left: 15px;
}

.price-des-list ul li {
  font-size: 16px;
  color: var(--p);
  margin-bottom: 10px;
}

.price-des-list ul li:last-child {
  margin-bottom: 0;
}

.buy-now-btn {
  margin-top: 25px;
}

.buy-now-btn .btn {
  width: 100%;
}

.price-box.plan-active {
  background: var(--black);
}

.price-box.plan-active .price-head h5,
.price-box.plan-active .price-head h3,
.price-box.plan-active .price-des-list ul li {
  color: var(--white);
}

.apis-des h2 {
  font-size: 32px;
  color: var(--black);
  font-weight: bold;
  margin-bottom: 20px;
}

.apis-des h3 {
  font-size: 22px;
  color: var(--black);
  font-weight: bold;
}

/*--------------------------------------------------------------------------------------*/
/*inquire-page-css-Here
/*--------------------------------------------------------------------------------------*/

.inquire-des h3 {
  font-size: 42px;
  color: var(--black);
  font-weight: bold;
  margin-bottom: 30px;
}

.inquire-bg .row .col-md-6 {
  display: flex;
  align-items: center;
}

/*--------------------------------------------------------------------------------------*/
/*our-story-page-css-Here
/*--------------------------------------------------------------------------------------*/

.our-story-bg h3 {
  font-size: 22px;
  color: var(--black);
  font-weight: bold;
}

.story-img {
  height: 420px;
  overflow: hidden;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/*--------------------------------------------------------------------------------------*/
/*support-help-faq-page-css-Here
/*--------------------------------------------------------------------------------------*/

.support-help-bg .accordion {
  max-width: 940px;
  margin: auto;
}

.accordion-button {
  padding: 15px 0;
  box-shadow: none !important;
  background: none !important;
  font-size: 20px;
  color: var(--black);
  font-weight: bold;
}

.accordion-item {
  border: none;
  border-bottom: solid 1px var(--light-gray3);
}

.accordion-body {
  padding-left: 0;
  padding-right: 0;
}

.accordion-button:not(.collapsed) {
  color: var(--yellow);
}

.accordion-body p:last-child {
  margin: 0;
}

.accordion-button:after {
  background: url(../images/plus.png) no-repeat;
  width: 24px;
  height: 24px;
  border: none;
}

.accordion-button:not(.collapsed):after {
  background: url(../images/minus.png) no-repeat;
  width: 24px;
  height: 24px;
  border: none;
}

/*--------------------------------------------------------------------------------------*/
/*dashboard-page-css-Here
/*--------------------------------------------------------------------------------------*/

.dashborad-content-bg {
  background: var(--light-gray);
  min-height: calc(100vh - 87px);
  padding: 30px 30px 30px 270px;
  overflow-y: auto;
}

.sidebar {
  z-index: 99;
  background: linear-gradient(182.58deg, #070505 0%, #181717 100.58%);
  border-radius: 0px 20px 20px 0px;
  width: 240px;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  overflow: auto;
  padding: 20px;
}

.sidebar-logo {
  text-align: center;
  margin-bottom: 30px;
}

.sidebar-menu ul li {
  margin-bottom: 5px;
}

.sidebar-menu ul li:last-child {
  margin-bottom: 0;
}

.sidebar-menu ul li a {
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
  padding: 12px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.sidebar-menu ul li a i {
  font-size: 24px;
  margin-right: 10px;
}

.sidebar-menu ul li.active a {
  background: var(--yellow);
  color: var(--white);
}

.sidebar-menu ul li a:hover {
  background: var(--dark-yellow);
  color: var(--yellow);
}

.dashboard-header {
  padding: 21px 15px 21px 255px;
}

.dashboard-header .logo {
  display: none;
  margin-right: 15px;
}

.ashboard-header-left {
  display: flex;
  align-items: center;
}

.dashboard-header-left {
  display: flex;
  align-items: center;
}

.dashboard-header-left h2 {
  font-size: 24px;
  color: var(--black);
  font-weight: bold;
  margin: 0;
}

.dashboard-header-right figure {
  margin: 0;
  width: 44px;
  height: 44px;
  overflow: visible;
  border-radius: 50px;
}

.dashboard-header-right figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
}

.dashboard-header .header-inner {
  padding: 0;
}

.menu-toggal {
  width: 40px;
  margin-right: 15px;
  background: none;
  border: none;
  display: none;
}

.dashborad-warper h2 {
  font-size: 18px;
  color: var(--black);
  font-weight: 600;
  margin: 0 0 15px 0;
}

.statistics-payment-box .col-md-9,
.statistics-payment-box .col-md-3 {
  display: flex;
}

.dashborad-payment-bg {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.dashborad-payment-box {
  width: 100%;
  margin-bottom: 15px;
}

.dashborad-payment-box:last-child {
  margin-bottom: 0;
}

.dashborad-payment-box figure {
  width: 52px;
  height: 52px;
  margin: 0;
}

.dashborad-payment-box figcaption {
  padding-top: 20px;
}

.dashborad-payment-box figcaption h4 {
  font-size: 18px;
  color: var(--black);
  font-weight: 600;
}

.dashborad-payment-box figcaption p {
  font-size: 42px;
  color: var(--yellow);
  font-weight: 800;
}

.dashborad-payment-box figcaption p i {
  font-weight: bold;
}

.my-apps-content {
  font-size: 18px;
  color: var(--black);
  font-weight: 600;
  margin: 0 0 15px 0;
}

.my-apps-list ul {
  display: flex;
  flex-wrap: wrap;
}

.my-apps-list ul li {
  width: 306px;
  padding: 10px 10px 10px 0px;
}

.my-app-box {
  width: 100%;
  padding: 20px;
  background: var(--light-gray4);
  border-radius: 20px;
}

.my-app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.my-app-head h3 {
  font-size: 16px;
  color: var(--black);
  font-weight: 600;
}

.my-app-head span {
  font-size: 14px;
  color: var(--p);
  font-weight: normal;
}

.api-key-btn a i {
  font-size: 18px;
}

.api-key-btn a {
  background: var(--white);
  border: solid 1px var(--yellow);
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--yellow);
  font-weight: 600;
}

.transactions-list h2 {
  font-size: 18px;
  color: var(--black);
  font-weight: 600;
  margin: 0 0 15px 0;
}

.table-box {
  overflow: auto;
}

.table {
  font-weight: normal;
}

.table tr th {
  font-size: 14px;
  color: var(--black);
  font-weight: bold;
  padding: 10px 10px;
  vertical-align: middle;
}

.table tr td {
  font-size: 14px;
  color: var(--black);
  border: none;
  padding: 10px 10px;
  vertical-align: middle;
}

.table tr:nth-child(odd) td {
  background: var(--light-gray4);
}

.table-invoice {
  cursor: pointer;
  text-decoration: none;
  z-index: 1;
  text-decoration: none;
  color: white;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  /* transition: border-radius background-color 0.5s ease-in-out; */
}

.transaction-hash {
  transition: color cursor;
  transition-delay: 0.1s;
}

.transaction-hash:hover {
  cursor: pointer;
  color: rgb(79, 79, 79);
}

.table-invoice-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
  z-index: -1;
}

.table-invoice:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------------------------------*/
/*manage-cryptocurrencies-page-css-Here
/*--------------------------------------------------------------------------------------*/

.dashborad-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.breadcrumb-menu ul {
  display: flex;
  align-items: center;
}

.breadcrumb-menu ul li {
  padding-right: 5px;
}

.breadcrumb-menu ul li a {
  font-size: 15px;
  color: var(--black);
  font-weight: 600;
}

.breadcrumb-menu ul li.active a {
  color: var(--yellow);
}

.usd-select .form-control {
  width: 90px;
  height: 30px;
  padding: 0px 8px;
  font-size: 15px;
}

.entire-wallet-box td {
  background: var(--light-yellow);
  font-weight: bold;
}

.breadcrumb-menu p {
  margin: 0;
  color: var(--black);
}

/*--------------------------------------------------------------------------------------*/
/*apps-page-css-Here
/*--------------------------------------------------------------------------------------*/

.dashborad-search-box .form-control {
  background: url(../images/search.png) no-repeat 15px center var(--white);
  padding-left: 50px;
  border-radius: 50px;
  width: 365px;
}

.table-action-btn {
  display: flex;
  align-items: center;
}

.table-action-btn a {
  margin-right: 10px;
  padding: 7px 15px;
}

.table-action-btn a:last-child {
  margin-right: 0;
}

.pagination-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pagination-box ul {
  display: flex;
  align-items: center;
}

.pagination-box ul li {
  margin-right: 5px;
}

.pagination-box ul li:last-child {
  margin-right: 0;
}

.pagination-box ul li a {
  width: 36px;
  height: 36px;
  border-radius: 3px;
  font-size: 14px;
  color: var(--black);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray4);
}

.pagination-box ul li.active a {
  background: var(--yellow);
  color: var(--white);
}

.api-key-payment-box {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.api-key-payment-left h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.api-key-payment-left .api-key-btn a {
  display: flex;
  align-items: center;
}

.api-key-payment-right {
  display: flex;
  align-items: center;
}

.api-key-payment-right a {
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.api-key-payment-right a:last-child {
  margin-right: 0;
}

.api-key-payment-right a i {
  font-size: 24px;
  margin-right: 8px;
}

.search-filter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.filter-box .form-control {
  width: 148px;
  appearance: auto;
}

.value-box {
  display: flex;
  align-items: center;
}

.value-box span {
  margin-right: 15px;
}

.option-box .form-control {
  width: 105px;
  height: 34px;
  border: solid 1px var(--yellow);
  color: var(--yellow);
  font-size: 14px;
}

.option-box .dropdown-toggle {
  background: transparent;
  border: solid 1px var(--yellow);
  border-radius: 5px;
  padding: 8px 10px;
  font-size: 14px;
  color: var(--yellow);
  font-weight: 600;
}

.dropdown-toggle:after {
  width: 16px;
  height: 16px;
  background: url(../images/arrow01.png) no-repeat;
  border: none;
  position: relative;
  top: 6px;
  margin-left: 5px;
}

.edit-label-box p {
  margin: 0;
  color: var(--black);
}

.edit-label-box span {
  font-weight: 600;
}

/*--------------------------------------------------------------------------------------*/
/*deposit-history-page-css-Here
/*--------------------------------------------------------------------------------------*/

.dashborad-head-right {
  display: flex;
  align-items: center;
}

.year-select-box {
  margin-right: 10px;
}

.year-select-box .form-control {
  width: 217px;
}

.view-balances-btn .btn {
  margin-right: 10px;
}

.view-balances-btn .btn:last-child {
  margin-right: 0;
}

.status {
  border: none;
  padding: 5px 10px;
  display: inline-block;
  font-size: 14px;
  border-radius: 50px;
}

.status.success {
  background: rgba(32, 205, 80, 10%);
  color: var(--green);
}

.status.pending {
  background: rgba(223, 117, 20, 10%);
  color: var(--orange);
}

.status.error {
  background: rgba(226, 55, 55, 0.1);
  color: var(--red);
}

.modal-title {
  font-size: 22px;
  color: var(--black);
  font-weight: 600;
}

.modal-header {
  border: none;
}

.modal-body {
  padding-top: 0;
}

.modal-header .btn-close {
  opacity: 1;
}

.copy-code-btn {
  position: absolute;
  right: 10px;
  font-size: 25px;
  top: 5px;
  border: none;
  background: none;
}

.app-id-box .form-control {
  padding-right: 40px;
}

.api-key-modal .form-control {
  padding-left: 15px;
}

/*--------------------------------------------------------------------------------------*/
/*customer-support-page-css-Here
/*--------------------------------------------------------------------------------------*/

.customer-support-box {
  margin-bottom: 30px;
}

.customer-support-box figcaption {
  font-weight: normal;
}

/*--------------------------------------------------------------------------------------*/
/*send-withdraw-page-css-Here
/*--------------------------------------------------------------------------------------*/

.send-withdraw-list ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px;
  border-color: var(--light-gray3);
  padding: 15px 0px;
}

.send-withdraw-left {
  font-weight: normal;
  font-size: 15px;
  color: var(--black);
  font-weight: 600;
}

.send-withdraw-right {
  font-weight: normal;
  font-size: 15px;
  color: var(--black);
  font-weight: 600;
}

.send-withdraw-amount {
  display: flex;
  align-items: center;
}

.send-withdraw-amount .form-control {
  margin: 0px 10px;
  width: 150px;
}

.address-note-box {
  width: 100%;
  max-width: 500px;
}

.address-note-box .form-control {
  width: 100%;
  width: 500px;
}

.request-withdrawal-btn {
  margin-top: 30px;
}

/*--------------------------------------------------------------------------------------*/
/*pay-page-css-Here
/*--------------------------------------------------------------------------------------*/

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

.pay-header .header-inner {
  padding: 20px 0px;
  justify-content: center;
}

.pay-bg {
  min-height: calc(100vh - 88px);
}

.payment-information-bg {
  width: 794px;
  margin: auto;
}

.payment-information-bg h2 {
  font-size: 20px;
  color: var(--black);
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.payment-information li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
  border-bottom: solid 1px #ebe1e1;
}

.payment-left {
  font-weight: 600;
  color: var(--black);
  font-size: 15px;
}

.payment-right {
  font-size: 15px;
  color: var(--black);
}

.pay-now-btn {
  margin-top: 20px;
}

.pay-now-btn .btn {
  width: 100%;
}

/*--------------------------------------------------------------------------------------*/
/*footer-page-css-Here
/*--------------------------------------------------------------------------------------*/

footer {
  background: linear-gradient(86.72deg, #000000 -0.25%, #261f0b 101.13%);
}

.top-footer {
  padding: 50px 0px;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-des p {
  margin: 0;
  color: #fff;
}

footer h3 {
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 30px;
}

.quick-link-box {
  padding-left: 70px;
}

.quick-link-box ul li {
  margin-bottom: 15px;
}

.quick-link-box ul li:last-child {
  margin-bottom: 0;
}

.quick-link-box ul li a {
  font-size: 16px;
  color: var(--white);
}

.quick-link-box ul li a:hover {
  color: var(--white);
}

.social-btn {
  display: flex;
  align-items: center;
}

.social-btn a {
  max-width: 34px;
  margin-right: 10px;
}

.social-btn a:last-child {
  margin-right: 0;
}

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

.bottom-footer p {
  margin: 0;
  padding: 30px 0px;
  border-top: solid 1px var(--border);
}

/* / active class / */
.activee {
  color: #e9c02f;
}

.auth-active {
  background: var(--yellow);
}


/* API CSS */
.scrollspy-example h1 {
  font-weight: 700;
  font-size: 26px;
}

.scrollspy-example h4 {
  font-weight: 600;
  font-size: 22px;
}

.scrollspy-example h5,
.scrollspy-example p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.scrollspy-example .section {
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.swagger-ui .wrapper {
  padding: 0 !important;
}

.swagger-ui .scheme-container {
  padding: 0 !important;
  box-shadow: none !important;
}

#list-example {
  position: sticky;
  top: 100px;
}

.list-group-item.active {
  background: var(--yellow);
  color: var(--white);
  border-color: var(--yellow);
}

.list-group-item {
  font-weight: 600;
  padding: 15px;
}

/* API CSS */

/* Dark Theme */
body.dark-theme,
.dark-theme,
.dark-theme .site-bg,
.dark-theme .pay-header,
.dark-theme .pay-bg,
.dark-theme .inner-page-warper,
.dark-theme .container,
.dark-theme .payment-information-bg {
  background-color: #000000 !important;
  /* Proper dark background for full page */
  color: var(--white) !important;
}

.dark-theme .pay-header {
  background-color: #000000 !important;
  border-bottom: 1px solid var(--border);
}

.dark-theme .white-bg {
  background-color: #000000 !important;
  border: 1px solid var(--white) !important;
  /* Adding white border for contrast */
  color: var(--white) !important;
}

.dark-theme h2,
.dark-theme .payment-left,
.dark-theme .payment-right {
  color: var(--white) !important;
}

/* Theme Toggle Slider */
.theme-toggle-container {
  display: flex;
  align-items: center;
}

.checkbox {
  opacity: 0;
  position: absolute;
}

.label {
  width: 60px;
  height: 26px;
  background-color: #000;
  display: flex;
  border-radius: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  position: relative;
  cursor: pointer;
  margin-bottom: 0px;
}

.checkbox:checked+.label {
  background-color: #ebebeb;
}

.ball {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.2s linear;
  z-index: 10;
}

.checkbox:checked+.label .ball {
  transform: translateX(34px);
  background-color: #333;
}

.icon-sun {
  color: #333;
  position: absolute;
  left: 7px;
  opacity: 0;
  transition: opacity 0.2s;
}

.icon-moon {
  color: #fff;
  position: absolute;
  right: 7px;
  opacity: 1;
  transition: opacity 0.2s;
}

.checkbox:checked+.label .icon-sun {
  opacity: 1;
}

.checkbox:checked+.label .icon-moon {
  opacity: 0;
}

/*--------------------------------------------------------------------------------------*/
/*Loading-Button-Css-Here
/*--------------------------------------------------------------------------------------*/

.btn-loading {
  pointer-events: none;
  opacity: 0.8;
  cursor: not-allowed;
}

.btn-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-spinner .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: btn-spin 0.8s linear infinite;
}

@keyframes btn-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

/*--------------------------------------------------------------------------------------*/
/*testnet-environment-css-Here
/*--------------------------------------------------------------------------------------*/

/* Testnet top banner */
.testnet-banner {
  background: linear-gradient(90deg, #e9c02f 0%, #f97316 100%);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 2px 10px rgba(233, 192, 47, 0.35);
}

.testnet-banner__text {
  display: flex;
  align-items: center;
  gap: 6px;
}

.testnet-banner__badge {
  background: rgba(255, 255, 255, 0.25);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.testnet-banner__switch {
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
  padding: 5px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.testnet-banner__switch:hover {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  transform: translateY(-1px);
}

/* When testnet banner is present, push down the fixed header */
body.is-testnet header {
  top: 40px;
}

body.is-testnet .site-bg {
  padding-top: 126px;
}

/* Testnet login sandbox info box */
.testnet-info-box {
  background: var(--light-yellow);
  border: 1.5px solid var(--yellow);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testnet-info-box__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.testnet-info-box__desc {
  font-size: 14px;
  color: var(--p);
  line-height: 1.5;
  margin: 0;
}

/* Testnet switch link on mainnet login page */
.testnet-switch-link {
  text-align: center;
  margin-top: 16px;
}

.testnet-switch-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.2s;
}

.testnet-switch-link a:hover {
  background: var(--light-yellow);
  color: var(--yellow);
}

/* Mainnet header "Try Testnet" button */
.try-testnet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0px 20px;
  color: var(--black) !important;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
  border: 1px solid var(--black);
  border-radius: 5px;
  transition: all 0.2s;
  margin-right: 15px;
}

.try-testnet-btn:hover {
  background: var(--black);
  color: var(--white) !important;
}

/* Login Form Information Alert Box */
.login-info-alert {
  background: rgba(233, 192, 47, 0.08); /* slight yellow tint */
  border: 1px solid rgba(233, 192, 47, 0.4);
  border-left: 3px solid var(--yellow);
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 22px;
}

.login-info-alert p {
  margin: 0;
  font-size: 14px;
  color: var(--black);
  line-height: 1.5;
}

.login-info-alert strong {
  color: var(--yellow);
}

@media (max-width: 768px) {
  .testnet-banner {
    flex-direction: column;
    gap: 8px;
    padding: 8px 12px;
    font-size: 12px;
  }

  body.is-testnet header {
    top: 60px;
  }

  body.is-testnet .site-bg {
    padding-top: 146px;
  }

  .try-testnet-btn {
    display: none;
  }
}