* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  /* overflow-x:hidden; */
  font-family: 'Montserrat';
  position: relative;
}

*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 5px 5px 10px #0069FE, inset -5px -5px 10px #0069FE;
}

::selection {
  background: #0069FE;
  color: #000;
}

/* ===============header============================ */
.dash-header-profile{
  display: flex;
  align-items: center;
}
.dash-header-profile h2{
  margin-right: 15px
}
a:hover {
  color: #fff;
}

p {
  color: #ABABAB;
  font-size: 16px;
  margin: 0;
}

.theme-bg {
  background-color: #000;
}

.theme-bg-img {
  background-position: center;
  background-size: cover;
  width: 100%;
  background: linear-gradient(250deg, #E2EDFF 0%, #EFEFEF 100%);
}

.container {
  max-width: 1460px;
}

.navbar-toggler {
  border: 0px;
}

.navbar-toggler:focus {
  background: none;
  outline: 0;
}

.navbar-toggler span {
  display: block;
  width: 30px;
  height: 2px;
  margin: 6px auto;
  background: #fff;
  transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}

.navbar-toggler:hover span,
.navbar-toggler:focus span {
  background: #faf8f8;
}

.navbar-toggler[aria-expanded="true"] span:first-of-type {
  transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:last-of-type {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-toggler[aria-expanded="false"] span {
  transform: none;
  opacity: 1;
}

.navbar-expand-lg {
  background-color: transparent !important;
}

.nav-item .nav-link {
  font-size: 16px;
  font-style: normal;
  color: #ABABAB;
  font-weight: 500;
  line-height: normal;
  padding: 0px 28px !important;
  text-transform: uppercase;
}

.nav-item .active {
  color: #fff !important;
}

.navbar img {
  width: 189px;
  height: 62px;
  margin-right: 28px;
}

.head-btn {
  margin-left: 24px;
}

.theme-btn {
  padding: 15px 30px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.56px;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #0069FE;
}

.small-btn {
  border: 1px solid #0069FE;
  color: #0069FE;
  background-color: transparent;
  margin-left: 7px;
}

.navbar-expand-lg {
  margin-top: 10px;
}

.circle-shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

/* ======hero================ */
.hero-right-content h1 {
  color: #fff;
  font-weight: 700;
  font-size: 44px;
  margin-bottom: 23px;
  text-transform: capitalize;
}

.hero {
  padding: 48px 0px;
  position: relative;
  padding-bottom: 0px;
}

.join-btn {
  margin-top: 28px;
}

.hero-right-content h2 {
  color: #fff;
  font-size: 56px;
  margin-top: 43px;
  margin-bottom: 0px;
  padding-left: 34px;
  font-weight: 600;
}

.hero-right-content span {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 141.5%;
  text-transform: capitalize;
}

.dark-title h3 {
  color: #fff;
  font-size: 159px;
  font-weight: 700;
  opacity: 0.10000000149011612;
}

.dark-title h3:nth-child(1) {
  margin-bottom: -63px;
}

.dark-title {
  margin-bottom: -145px;
  margin-left: 189px;
}

.hero-right-content {
  position: relative;
}

.bg-circle img {
  width: 200px;
  height: 200px;
  top: 69px;
  left: -60px;
  z-index: -1;
  position: absolute;
}

.hero-right-img img {
  width: 100%;
}

.shape-left-circle {
  position: relative;
  top: -376px;
  z-index: -1;
}

.slide-bg-shape img {
  width: 100%;
}

.shape-left-circle img {
  width: 336px;
  opacity: 0.5;
  z-index: 999;
  top: 44%;
  position: absolute;
}

.slide-bg-shape {
  position: absolute;
  top: -370px;
  z-index: -1;
}

/* =====================logos slider=================== */
.marquees-wrapper {
  height: 100%;
  background-color: rgb(240 241 245);
  background-image: linear-gradient(rgb(210 213 219) 1px, transparent 1px), linear-gradient(to right, rgb(210 213 219) 1px, rgb(240 241 245) 1px);
  background-size: 20px 20px;
  overflow-x: hidden;
}

.marquees-wrapper::after {
  position: absolute;
  content: "";
  inset: 0;

}

.marquee {
  --gap: 1rem;
  margin-block: 10px;
  display: flex;
  gap: var(--gap);
  overflow: hidden;
  user-select: none;
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  min-width: 100%;
  align-items: center;
  gap: var(--gap);
}

.scroll {
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.marquee__content li {
  list-style: none;
  line-height: normal;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
}

.marquee-1 .scroll {
  animation: scroll 20s linear infinite;
}

.marquee-2 .scroll {
  animation: scroll 25s linear infinite reverse;
}

/* ===============about us ==========================*/
.about-img img {
  width: 100%;
}

.about-us {
  padding: 104px 0px;
  position: relative;
}

.about-content h3 {
  font-size: 16px;
  font-style: normal;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.about-content h2 {
  font-size: 44px;
  color: #fff;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.about-content h4 {
  font-size: 40px;
  color: #0069FE;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 29px;
  text-transform: capitalize;
}

.about-content {
  position: relative;
}

.about-content .bg-circle img {
  width: 200px;
  height: 200px;
  top: -61px;
  left: -93px;
  z-index: -1;
  position: absolute;
}

.view-btn .small-btn {
  margin-left: 0;
}

.view-btn {
  margin-top: 32px;
}

.about-us .shape-left-circle img {
  width: 259px;
}

.about-us .shape-left-circle {
  position: relative;
  top: -246px;
  left: -107px;
  z-index: -1;
}

/* ============liquidity================== */
.main-title h2 {
  color: #fff;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.main-title p {
  text-align: center;
}

.liquidity .bg-circle img {
  top: 13px;
  left: 36%;
}

.liquidity {
  position: relative;
  padding: 119px 0px 121px 0px;
  overflow-x: hidden;

}

.liquidity-box h2 {
  background: #000;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  text-align: center;
  margin-bottom: 23px;
  padding: 13px;
  font-weight: 400;
  box-shadow: 0px 0px 10px 2px rgba(0, 105, 254, 0.30);
}

.liquidity .main-title p {
  margin-top: 25px;
}

.liquidity-box h2:nth-child(3) {
  margin-bottom: 0px;
}

.liquidity-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.liquidity-button .theme-btn {
  border: none;
}

.liquidity-button::after {
  content: '';
  background-image: url('../img/liquidity_line.svg');
  background-size: contain;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 15px;
  left: 0;
  z-index: -1;
}

.liquidity .shape-right-circle {
  position: absolute;
  top: -139px;
  opacity: 0.3;
  right: -251px;
  z-index: -1;
}

.liquidity .shape-right-circle img {
  width: 600px;
}

/* ====================advantage================= */
.advantage {
  background-image: url('../img/advantage_bg.png');
  background-position: center;
  background-size: cover;
  width: 100%;
  padding: 150px 0px;
}

.advantage-block {
  background-color: #000;
  box-shadow: 0px 0px 10px 2px rgba(0, 105, 254, 0.30);
  padding: 18px;
}

.advantage-block h3 {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  line-height: 26px;
  letter-spacing: 0.24px;
  margin-bottom: 0;
  text-transform: capitalize;
}

.advantage-block img {
  margin-bottom: 11px;
}

.advantage-block-content h2 {
  font-size: 44px;
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
}

.advantage-block-content {
  padding-left: 80px;
}

.advantage-block-content p {
  color: #fff;
  font-weight: 300;
  padding-right: 34px;
  margin-top: 23px;
  margin-bottom: 45px;
}

.choose-us {
  padding: 203px 0px 114px 0px;
  position: relative;
}

.choose-us .bg-circle img {
  width: 180px;
  height: 180px;
  top: 120px;
  left: 31%;
  z-index: -1;
  position: absolute;
}

.choose-us-content {
  padding-left: 103px;
  padding-right: 89px;
}

.choose-us-content p:nth-child(1) {
  margin-bottom: 22px;
}

.our-solution {
  background-color: #0069FE;
  text-align: center;
  padding: 30px 144px;
  overflow: hidden;
  position: relative;
}

.our-solution h2 {
  font-size: 44px;
  font-style: normal;
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
}

.our-solution p {
  color: #fff;
  font-weight: 300;
}

.solution-bg-shape {
  height: 212px;
  width: 211px;
  border-radius: 201px;
  background: rgba(255, 255, 255, 0.26);
  position: absolute;
  right: -84px;
  top: -93px;
}

.choose-us-img img {
  padding-left: 54px;
}

.choose-us-main {
  position: relative;
}

.choose-bg-circle {
  position: absolute;
  top: 0;
  left: 34%;
  z-index: -1;
  opacity: 0.4;
}

.our-step-box {
  padding: 12px 20px 23px 20px;
  border-left: 2px solid #0069FE;
  position: relative;
  border-bottom: 2px solid #0069FE;
}

.our-solution-step {
  display: flex;
  margin-top: 56px;
}

.our-step {
  width: calc(55.33% - 100px);
}

.our-step-box h2,
.our-step-bottom h2 {
  color: #fff;
}

.our-step-box p,
.our-step-bottom p {
  color: #fff;
  font-weight: 300;
}

.our-step-bottom {
  width: calc(22.33% - 100px);
  border-bottom: none;
  padding: 23px 20px 23px 20px;
  border-left: 2px solid #0069FE;
  position: relative;
}

.choose-us .d-flex {
  justify-content: space-around;
}

.our-step-box::after {
  content: '';
  background-color: #0069FE;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  left: -8px;
  top: -4px;
  z-index: -1;
  position: absolute;
}

.our-step-bottom::after {
  content: '';
  background-color: #0069FE;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  left: -8px;
  bottom: -4px;
  z-index: -1;
  position: absolute;
}

.our-solution-info {
  position: relative;
}

.choose-bg-circle-two {
  position: absolute;
  top: -35px;
  left: -13%;
  z-index: -1;
  opacity: 0.4;
}

.choose-bg-circle-two img {
  max-width: 650px;
}

/* =============================reward-timer======================= */
.reward-timer {
  background-color: #fff;
  clip-path: polygon(0% 36.3%, 100% 0%, 100% 65.8%, 0.3% 100%);
  padding: 299px 0px;
  position: relative;
  height: 700px;
  overflow: hidden;
}

.select-dropdown select:focus-visible {
  border: none !important;
}

.reward-timer-box {
  text-align: center;
}

.reward-timer-box h2 {
  color: #0069FE;
  font-size: 44px;
  font-style: normal;
  margin-bottom: 0px;
  font-weight: 700;
}

.reward-timer-box p {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #121212;
}

.reward-left-circle img {
  position: absolute;
  left: -135px;
  top: 227px;
  width: 500px;
  opacity: 0.1;
  z-index: -1;
}

.reward-right-circle img {
  position: absolute;
  right: 0;
  top: -224px;
  width: 600px;
  opacity: 0.1;
  z-index: -1;
}

.management-info {
  padding: 100px 0px;
  position: relative;
}

.management-content h2 {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 30px;
  color: #fff;
}

.management-point {
  display: flex;
  margin-bottom: 7px;
}

.management-content p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #ABABAB;
}

.management-img img {
  width: 100%;
}

.management-content {
  padding: 60px 113px 60px 189px;
}

.management-point img {
  padding-right: 11px;
}

.management-img {
  padding: 0px;
}

.management-info .shape-left-circle {
  position: absolute;
  top: 36%;
  left: -115px;
  z-index: -1;
}

.management-info .shape-right-circle {
  position: absolute;
  top: -73px;
  opacity: 0.3;
  right: 0;
  z-index: -1;
}

.management-info .shape-right-circle img,
.shape-bottom-circle img {
  width: 500px;
}

.management-info .shape-bottom-circle {
  bottom: -20%;
  position: absolute;
  left: 40%;
  z-index: -1;
  opacity: 0.3;
}

/* <!-- =========our team slider============================== --> */
.testimonials-sec .inner-text-box {
  text-align: center;
}

.testimonial {
  text-align: center;
}

.testimonials-sec .heading-title {
  margin-bottom: 40px;
}

.testi-img-box {
  min-height: 300px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.img-common {
  border-radius: 50%;
  object-fit: cover;
  position: relative;

}

.img-common img {
  position: relative;
  text-align: center;
  display: initial;
  margin: auto;
}

.slick-slide img {
  display: initial;
  text-align: center;
}

.img-common.testi-img-1 img {
  max-width: 87px;
  height: 87px;
  animation: zoom-in-zoom-out 3s ease infinite;
}

button.slick-prev::before {
  content: "";
  background-image: url('../img/pre_arrow.svg');
  width: 100%;
  height: 100%;
  background-size: contain;
  position: absolute;
  background-repeat: no-repeat;
  cursor: pointer;
}

button.slick-next:after {
  content: "";
  background-image: url('../img/next_arrow.svg');
  width: 100%;
  height: 100%;
  background-size: contain;
  position: absolute;
  background-repeat: no-repeat;
  cursor: pointer;
}

.team-info-slider {
  background: #fff;
  padding: 108px 0px;
  position: relative;
}

.quotes-up {
  position: absolute;
  top: -44px;
}

.quotes-down {
  position: absolute;
  bottom: -40px;
  right: 8%;
}

.details h4 {
  color: #0069FE;
  margin-top: 23px;
  margin-bottom: 5px;
}

.details {
  padding: 0px 94px;
}

.details h5 {
  color: #000;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
}

.details p {
  color: #000 !important;
  font-weight: 400;
  margin-top: 23px;
  font-size: 16px;
}

/* ===============================FAQS============================== */
.faqs-data {
  padding: 100px 0px 50px 0px;
}

.accordion {
  padding-top: 35px;
}

.accordion-info {
  margin-bottom: 20px;
  border: 1px solid #121212;
}

.accordion-header {
  position: relative;
  padding: 16px 39px 16px 29px;
  cursor: pointer;
}

.accordion-header.active::before {
  transform: rotate(90deg);
}

.accordion-header::before {
  width: 3px;
  height: 15px;
  right: 17px;
  top: 19px;
}

.accordion-header::after {
  width: 15px;
  height: 3px;
  right: 11px;
  top: 25px;
}

.accordion-header::after,
.accordion-header::before {
  content: "";
  position: absolute;
  background: #fff;
  transition: .3s;
}

.accordion-header h5 {
  font-size: 17px;
  color: #fff;
  font-weight: 400;
}

.acco-content p,
.accordion-header h5,
.footer-bottom p,
.main-title h2,
.main-title h3,
.main-title h4 {
  margin-bottom: 0;
}

.acco-content {
  padding: 15px 44px;
  display: none;
}

/* ====================contact us============================= */
.contact-us {
  padding: 71px 0px;
}

.contact-info h3 {
  font-size: 16px;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 23px;
}

.contact-info h2 {
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 0px;
}

.contact-info h4 {
  font-size: 40px;
  font-style: normal;
  color: #0069FE;
  margin-bottom: 28px;
  font-weight: 500;
}

.contact-info p {
  margin-bottom: 21px;
}

.contact-info span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #0069FE;
  text-transform: uppercase;

}

.form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #0069FE;
  border-radius: 0px;
  padding-bottom: 11px;
  padding-left: 0;
  color: #fff;
}

.contact-input {
  margin-bottom: 30px;
}

.contact-input ::placeholder {
  color: #fff;
  opacity: 1;
  font-weight: 300 !important;
}

.form-control:focus {
  background-color: transparent;
  border: none;
  outline: 0;
  color: #fff;
  box-shadow: none;
  border-bottom: 1px solid #0069FE;
}

textarea.form-control {
  height: 44px;
}

.contact-btn .theme-btn {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  border: none;
}

.footer-menu a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-right: 32px;
  color: #fff;
  text-decoration: none;
}

.footer-terms a {
  text-decoration: none;
}

.footer-menu {
  margin-top: 25px;
}

.footer-menu .active {
  color: #0069FE;
}

.footer {
  padding: 50px 0px;
  box-shadow: 0px -4px 88px 0px rgba(0, 105, 254, 0.20);
}

.subs-box .subs-form-control {
  padding: 10px 80px 10px 10px;
}

.footer-menu-info {
  padding-bottom: 39px;
  margin-bottom: 44px;
  border-bottom: 1px solid #abababa8;
}

.subs-box .theme-btn {
  padding: 15px 21px;
  border: none;
  margin-left: 10px;
}

.subs-box h3 {
  color: #fff;
  font-weight: 400;
  margin-bottom: 31px;
  font-size: 17px;
  text-transform: uppercase;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
}

.footer-terms a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-left: 32px;
  color: #fff;
}
/* login page============================ */
.account-left{
  /* height: 100vh; */
  padding: 56px 84px;
  position: relative;
  border-radius: 0 50% 0px 0;
}
.copyright{
  margin-top: 19px;
}
.footer-links{
  padding: 9px 117px;                                                                                                                                                                                                                                                                                                                                              
}
.default-link{
  margin-bottom: 15px;
}
.account-main{
  width: 100%;
  max-width: 642px;
  margin: auto;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 52px 40px 38px 40px;
  height: 100vh;
}
.account-img h3{
  margin-bottom: 22px;
  font-size: 30px;
  line-height: 42px
}
.account-img p{ 
  margin-bottom: 8px;
  font-size: 17px;
}
.form-check-info{
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
} 
.account-img{
  text-align: center;
}
.account-img img{
  margin-bottom: 15px;
  margin-top: 20px;
}
.input-icons .input-icon-a {
  position: absolute;
  bottom: 7px;
  right: 0;
  color: #848291;
  height: 42px;
  line-height: 42px;
  width: 40px;
  border-radius: 4px;
  text-align: center;
  font-size: 16px;
}
.input-icons i {
  position: absolute;
  right: 0;
  }
  .input-icons {
  width: 100%;
  }
  .input-icons i  {
      padding: 15px;
      color: #0069FE;
      font-size: 20px;
  }
  .account-title{
    text-align: center;
  }
  .account-title h1{
    font-weight: 700;
    background: #0069FE;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
}
.account-title p{
  color: #fff;
  margin-bottom: 51px;
}
.main-banner{
  box-align:center;
  position: relative;
  -ms-flex-align:center;
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
}
.login-left{
  position: relative;
  padding: 60px;
}
.login-box{
  display: flex; 
  justify-content:center;
} 
.account-info{
  display:flex;   
  flex-direction:column;
  justify-content:center;
  position: relative;
  border-radius: 15px;
  overflow-x: hidden;
}
.text-center{
  display: flex;
  justify-content: space-between;
}
.form-control:focus{
  background-color:transparent !important;
  color: #fff !important;
  border-color:#0069FE !important;
  box-shadow: none !important;
}
.login_right .form-control:focus{
  color:#495057;
  background-color:transparent !important;
  border-color:#0069FE !important;
  outline:0;
}
.forgot-link {
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  padding-left: 9px;
}
.forgot-link:hover{
  color: #0069FE;
}
.create-new:hover{
  color: #fff;
}
.form-group {
  margin-bottom: 22px;
  position: relative;
}
.create-new {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 20px 0;
}
.create-new h5 {
  color:#fff;
  font-weight: 400;
  font-size: 17px;
  position: relative;
  margin-bottom: 0;
  width: 100%;
  text-align: center;
}
.create-new a {
  color: #0069FE;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px dashed #0069FE;
  transition: all .3s 0s;
  font-size: 17px;
}
.default-link:hover{
  color: #0069FE;
}
.forgot-pass .theme-btn{
  margin-top: 10px;
}
.btn-group .theme-btn{
  width: 100%;
  border: none;
  margin-top: 20px;
}
.form-group label{
  color: #fff;
}
.account-main .form-group{
  margin-bottom: 40px;
}
.account-main .form-group:nth-child(1){
  margin-bottom: 10px;
}
.form-check-label{
  color: #fff;
}
/* =====================dashboard=================== */
.dash-tabs .dash-tab-btn {
  background-color: #ffffffdb;
  padding: 8px 10px;
  justify-content: center;
  border-radius: 6px;
}

.pair-dropdown .dropdown-toggle {
  position: absolute;
  top: 5px;
  right: 13px;
  font-size: 27px;
  border-left: 0 !important;
  padding: 0 !important;
}

.pair-dropdown .dropdown-toggle i {
  color: #000;
}

.pair-dropdown .dropdown-toggle::after {
  display: none;
}

.dash-tabs {
  margin-top: 28px;
}

.dash-tabs .nav-item .nav-link {
  padding: 10px 28px !important;
  font-weight: 600;
  text-transform: capitalize;
  color: #3c3c3c;
}

.dashboard-header {
  padding: 5px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 2px 3px 2px #00000012;
}

.dash-header-profile h2 {
  color: #000;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 0px;
}

.dash-table .table {
  width: 100%;
  color: #fff;
}

.dash-main {
  margin-top: 10px;
  margin-bottom: 35px;
}

.table td a {
  color: #fff;
  text-decoration: underline;
}

.table td h2 {
  background-color: #0e274b;
  padding: 6px;
  font-size: 16px;
  border-radius: 4px;
  margin-bottom: 0;
}

.buy-btn {
  border: none;
  background-color: #0069fe;
  padding: 7px;
  font-size: 10px;
  border-radius: 4px;
}

.dash-title-left {
  color: #fff;
  background-color: #001b42;
  font-size: 14px;
  align-items: center;
  display: flex;
  border-radius: 7px;
}

.dash-title-left h4 {
  padding: 12px;
  font-size: 14px;
  color: #b7b7b7;
  margin-bottom: 0;
}

.dash-title-right {
  color: #fff;
  background-color: #001b42;
  font-size: 14px;
  align-items: center;
  display: flex;
  border-radius: 7px;
}

.dash-title-right h4 {
  padding: 12px;
  font-size: 14px;
  color: #b7b7b7;
  margin-bottom: 0;
}

.select-dropdown select {
  border: none;
  cursor: pointer;
}

.select-dropdown {
  padding: 8px 8px;
  display: flex;
  background: #fff;
  align-items: center;
  border-radius: 5px 0px 0px 5px;
}

.select-dropdown i {
  padding-right: 9px;
}

.zoom-in-icon {
  padding: 8px 11px;
  border-left: 1px solid #80808066;
  text-align: center;
  background: #fff;
  cursor: pointer;
  border-radius: 0px 5px 5px 0px;
}
.dropdown .dropdown-toggle {
  white-space: nowrap;
  padding: 7px 13px;
  margin-top: 0;
  background: white;
  border-left: 1px solid #80808066;
  border-radius: 0px 5px 5px 0px;
}
.border-left {
  border-left: none;
  border-radius: 5px 0px 0px 5px;
}
.chart-header{
  margin-bottom: 18px;
}
.chart-menu-icon {
  background: #fff;
  padding: 8px 8px;
  border-radius: 5px;
}
.chart-menu-icon i {
  padding-right: 6px;
  padding-left: 5px;
}
.right-chart-menu {
  margin-left: 13px;
  display: flex;
  padding: 0px 0px;
  align-items: center;
}
.dash-title-price {
  display: flex;
  justify-content: space-between;
  margin-top: 31px;
}
.dash-title-left span,
.dash-title-right span {
  color: #fff;
  font-weight: 700;
}
.real-volume {
  margin-top: 22px;
  padding: 11px;
  border-radius: 6px;
  background: #fff;
  color: #fff;
  box-shadow: 0px 1px 4px 2px #0000000f;
}
.table tr:nth-child(even) {
  background-color: #f1f1f1;
}
.left-chart-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.real-volume h2 {
  color: #000;
  margin-bottom: 0;
  font-size: 19px;
  font-weight: 700;
}
.volume-input .form-control {
  padding: 10px;
  border-bottom: none;
  background: #ededed66;
  border-radius: 7px;
  font-weight: 500;
  color: #000;
  box-shadow: 0px 1px 2px 1px #00000026;
  border: 1px solid #ffffff3d;
}
.volume-input label {
  color: #000;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 14px;
}
.dash-volume-title {
  margin-bottom: 17px;
  display: flex;
  border-bottom: 1px solid #8989894f;
  padding-top: 3px;
  padding-bottom: 12px;
  font-size: 28px;
  align-items: center;
  justify-content: center;
}
.checkbox-info input[type="checkbox"] {
  width: 59px;
  height: 28px;
  border-radius: 40px;
  background: #a7a7a7;
  box-shadow: 0px 2px 8px 2px #00000026;
  position: relative;
  border: 1px solid #ffffff3d;
  cursor: pointer;
  appearance: none;
}
.checkbox-info input[type="checkbox"]:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #0069fe;
  border-radius: 40px;
  transform-origin: 50% 50%;
  transform: scale(0);
  transition: all .35s;
}
.checkbox-info input[type="checkbox"]:after {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  background: #eee;
  border-radius: 50%;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  transition: all .35s;
}
.checkbox-info input[type="checkbox"]:checked:before {
  transform: scale(1);
}
.checkbox-info input[type="checkbox"]:checked:after {
  left: calc(100% - 25px);
}
.volume-input {
  margin-bottom: 28px;
}
.checkbox-info {
  padding: 8px 10px 1px 10px;
}
.volume-main-data label {
  color: #ffffffc7;
  margin-bottom: 5px;
}
.volume-input i {
  font-size: 14px;
  padding-left: 3px;
}
.save-btn {
  background-color: #0069fe;
  border: none;
  padding: 7px 15px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  color: #fff
}
.save-button {
  text-align: center;
}
.save-btn:hover {
  background-color: #0359d5;
}
.submit-button {
  text-align: center;
}
.submit-button .theme-btn {
  border: none;
  margin-top: 34px;
  border-radius: 5px;
}
.submit-button .theme-btn:hover {
  background-color: #0359d5;
}

.pair-data-info li {
  display: flex;
  justify-content: space-between;
  padding: 3px 8px;
  border-radius: 7px;
  font-size: 17px;
  align-items: center;
  border: 1px solid #2b2b2c;
  margin-bottom: 8px;
}

.pair-data-info {
  padding-left: 0;
  margin-bottom: 0;
}

.pair-data-info p {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
}

.pair-data-info span {
  color: #ffffffc7;
  font-size: 15px;
}

.pair-data-info li a {
  text-decoration: underline !important;
  color: #fff;
  font-weight: 600;
}

.order-price {
  padding-left: 0;
  margin-bottom: 0 !important;
}

.order-price li {
  display: flex;
  justify-content: space-between;
  padding: 21px 15px;
  border-radius: 6px;
  background: #fff;
  font-size: 17px;
  box-shadow: 0px 1px 4px 2px #0000000f;
  align-items: center;
  margin-bottom: 9px;
}

.order-price p {
  font-weight: 500;
  font-size: 17px;
  color: #000;
}

.order-price span {
  color: #000000;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px dashed #00000096;
}

.check-order {
  background-color: transparent !important;
  color: #000 !important;
}

.pair-name {
  background: #398bff2b;
  padding: 2px 10px;
}

.table {
  margin-bottom: 0;
}

.table tbody,
td,
tfoot,
th,
thead,
tr {
  border: none;
}

.table thead th {
  padding: 13px 10px;
  text-align: left;
  color: #fff;
  background: #373737;
}

.table tbody tr td {
  padding: 10px 9px;
  text-align: left;
  color: #000;
  font-size: 16px;
  vertical-align: middle;
  font-weight: 500;
}

.table-title {
  margin-bottom: 8px !important;
  display: flex;
  border-bottom: none !important;
  padding-top: 1px !important;
  padding-bottom: 2px !important;
  align-items: center;
  justify-content: center;
}

.table tbody {
  border: 1px solid #ffffff52
}

.dropdown,
.dropdown-center,
.dropend,
.dropstart,
.dropup,
.dropup-center {
  position: initial !important;
}

.pair-data {
  padding: 14px 7px;
  background: #fff;
  color: #fff;
  height: 112px;
  margin-bottom: 20px;
  position: relative !important;
  border-radius: 6px;
  box-shadow: 0px 1px 4px 2px #0000000f;
}

.pair-data h2 {
  font-size: 15px;
  margin-top: 7px;
  border-top: 1px solid #61707b4d;
  padding-top: 11px;
  margin-bottom: 0px;
  font-weight: 600;
  color: #000;
}

.pair-data p {
  color: #000;
  font-weight: 500;
  font-size: 22px;
}

.pair-data .dash-volume-title h3 {
  color: #000;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
}

.volume-balance {
  margin-bottom: 0px !important;
}

.volume-balance ul {
  padding-left: 0px;
  margin-bottom: 0;
}

.volume-balance ul li {
  display: flex;
  color: #000;
  padding: 10px;
  font-weight: 500;
  justify-content: space-between;
  border-bottom: 1px solid #00000038;
}

.volume-balance h4 {
  border-bottom: 1px solid #2b2b2c42;
  padding-bottom: 6px;
  font-weight: 700;
  color: #000;
}

.chart-img img {
  width: 100%;
  height: 207px;
}

.volume-balance {
  margin-top: 4px;
  background-color: #f3f3f3;
  padding: 7px;
}

.table .text-danger,
.text-success {
  font-size: 14px;
  font-weight: 400;
}
.update-btn {
  color: #084298;
  background-color: #cfe2ff;
  border-color: #b6d4fe;
  padding: 8px 17px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #b6d4fe;
}

.on-btn {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #d1e7dd;
  padding: 8px 17px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #d1e7dd;
}

.off-btn {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
  padding: 8px 17px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #f5c2c7;
}

.dropdown .dropdown-toggle:hover {
  border: 1px solid #fff;
  border-left: 1px solid #80808066;
}

.reload-btn {
  background: transparent;
  border: none;
}

.pair-data a:hover {
  color: #000;
}

.btn.show,
.btn:active {
  border-color: #fff !important;
}

/* =====hightchart========== */

.highcharts-figure,
.highcharts-data-table table {
  min-width: 310px;
  max-width: 800px;
  margin: 1em auto;
}

.highcharts-data-table table {
  border-collapse: collapse;
  border: 1px solid #ebebeb;
  margin: 10px auto;
  text-align: center;
  width: 100%;
  max-width: 500px;
}

.highcharts-data-table caption {
  padding: 1em 0;
  font-size: 1.2em;
  color: #555;
}

.highcharts-data-table th {
  font-weight: 600;
  padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
  padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
  background: #f8f8f8;
}

.highcharts-data-table tr:hover {
  background: #f1f7ff;
}

.min-max-slider {
  position: relative;
  width: 200px;
  text-align: center;
  margin-bottom: 50px;
}

.min-max-slider>label {
  display: none;
}

span.value {
  height: 1.7em;
  font-weight: bold;
  display: inline-block;
  color: #000;
}

span.value.lower::before {
  content: "€";
  display: inline-block;
}

span.value.upper::before {
  content: "- €";
  display: inline-block;
  margin-left: 0.4em;
}

.min-max-slider>.legend {
  display: flex;
  justify-content: space-between;
}

.min-max-slider>.legend>* {
  font-size: small;
  opacity: 0.25;
}

.min-max-slider>input {
  cursor: pointer;
  position: absolute;
}

.min-max-slider>input {
  -webkit-appearance: none;
  outline: none !important;
  background: transparent;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 30%, silver 30%, silver 60%, transparent 60%, transparent 100%);
}

.min-max-slider>input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  background: #eee;
  cursor: pointer;
  border: 1px solid gray;
  border-radius: 100%;
}

.min-max-slider>input::-webkit-slider-runnable-track {
  cursor: pointer;
}


/* =======================range bar======================== */
.min-max-slider {
  position: relative;
  width: 400px;
  text-align: center;
  margin-bottom: 50px;
}

.min-max-slider>label {
  display: none;
}

span.value {
  height: 1.7em;
  font-weight: bold;
  display: inline-block;
}

span.value.lower::before {
  content: "€";
  display: inline-block;
}

span.value.upper::before {
  content: "- €";
  display: inline-block;
  margin-left: 0.4em;
}

.min-max-slider>.legend {
  display: flex;
  justify-content: space-between;
}

.min-max-slider>.legend>* {
  font-size: small;
  opacity: 0.25;
}

.min-max-slider>input {
  cursor: pointer;
  position: absolute;
}

/* webkit specific styling */
.min-max-slider>input {
  -webkit-appearance: none;
  outline: none !important;
  background: transparent;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 30%, silver 30%, silver 60%, transparent 60%, transparent 100%);
}

.min-max-slider>input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  background: #eee;
  cursor: pointer;
  border: 1px solid gray;
  border-radius: 100%;
}

.min-max-slider>input::-webkit-slider-runnable-track {
  cursor: pointer;
}
/* ============range slider=============== */
.amount{
  color: #000;
  background: #ededed66;
  box-shadow: 0px 1px 2px 1px #00000026;
  border: 1px solid #ffffff3d;
  padding: 7px 11px;
  font-weight: 500;
  border-radius: 7px;

}
.ui-slider{
  width: 100%;
}
.ui-widget {
  font-size: 1.1em;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  border: 1px solid #d3d3d3;
  background: #ffffff;
  font-weight: normal;
  color: #555555;
  border-radius: 50%;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.4em;
  height: 1.4em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  border: 1px solid #005adb;
  background: #ffffff;
  font-weight: normal;
  color: #555555;
  cursor: pointer;
}
.volume-input .form-control:focus{
  color: #000 !important;
}
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}
.ui-slider-horizontal {
	height: .8em;
}

.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}
.ui-widget {
	font-size: 1.1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-size: 1em;
}
.ui-widget-content {
    border: 1px solid #aaaaaa;
    background: #efefef;
    color: #222222;
    border-radius: 5px;
	margin-top: 21px;
}
.ui-widget-content a {
	color: #222222;
}
.ui-widget-header {
	background: #0069fe;
    color: #222222;
    font-weight: bold;

}
.ui-widget-header a {
	color: #222222;
}