/********** Template CSS **********/
@import url("fonts.css");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;900&display=swap');
:root {
  --primary: #C89B42;
  --secondary: #17181E;
  --light: #999;
  --dark: #111116;
  --lighter: #707683
}
.text-lighter {
  color: var(--lighter) !important;
}
.box-shadow {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.box-shadow0 {
  box-shadow: inherit !important;
}
.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 999;
}
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}
#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Button ***/
.btn {
  transition: .5s;
}
.btn-square {
  width: 38px;
  height: 38px;
}
.btn-sm-square {
  width: 32px;
  height: 32px;
}
.btn-lg-square {
  width: 48px;
  height: 48px;
}
.btn-square, .btn-sm-square, .btn-lg-square {
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}
/*** Layout ***/
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 260px;
  height: 100vh;
  overflow-y: auto;
  background: var(--dark);
  transition: 0.5s;
  z-index: 999;
  overflow-x: hidden;
}
.content {
  margin-left: 260px;
  min-height: 100vh;
  background: var(--secondary);
  transition: 0.5s;
}
/*** Navbar ***/
.sidebar .navbar .navbar-nav .nav-link {
  padding: 14px 15px;
  color: var(--light);
  font-weight: 500;
  border-radius: 5px 0 0 5px;
  outline: none;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: flex;
}
.sidebar .navbar .navbar-nav .nav-link:hover, .sidebar .navbar .navbar-nav .nav-link.active {
  color: var(--bs-white);
  background: var(--primary);
}
.sidebar .navbar .navbar-nav .nav-link i {
  font-size: 20px;
}
.sidebar .navbar .navbar-nav .nav-link:hover i, .sidebar .navbar .navbar-nav .nav-link.active i {}
.sidebar .navbar .dropdown-toggle::after {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  content: "\f107";
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  transition: .5s;
}
.sidebar .navbar .dropdown-toggle[aria-expanded=true]::after {
  transform: rotate(-180deg);
}
.sidebar .navbar .dropdown-item {
  padding-left: 25px;
  border-radius: 0 30px 30px 0;
  color: var(--light);
}
.sidebar .navbar .dropdown-item:hover, .sidebar .navbar .dropdown-item.active {
  background: none;
  color: var(--primary);
}
.sidebar .dropdown-menu {
  font-size: 15px;
  margin-left: 28px;
  background: var(--secondary) !important;
  border-radius: 0 0 0 10px;
}
.content .navbar {
  padding-top: 12px;
  padding-bottom: 10px;
}
.content .navbar .navbar-nav .nav-link {
  margin-left: 1.25rem;
  padding: 0;
  color: var(--bs-white);
  outline: none;
}
.content .navbar .navbar-nav .nav-link:hover, .content .navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}
.content .navbar .sidebar-toggler, .content .navbar .navbar-nav .nav-link i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--bs-white);
  border-radius: 40px;
  font-size: 1.375rem;
}
.content .navbar .sidebar-toggler:hover, .content .navbar .navbar-nav .nav-link i:hover {
  background: var(--bs-success);
}
.content .navbar .sidebar-toggler {
  position: absolute;
  left: -22px;
}
.content.open .navbar .sidebar-toggler {
  left: 30px;
}
.content .navbar .dropdown-item {
  color: var(--light);
}
.content .navbar .dropdown-item:hover, .content .navbar .dropdown-item.active {
  background: var(--primary);
  color: var(--bs-white);
}
.content .navbar .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
  border: none;
  content: "\f107";
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  transition: .5s;
}
.content .navbar .dropdown-toggle[aria-expanded=true]::after {
  transform: rotate(-180deg);
}
.content .navbar .dropdown-arrow .dropdown-toggle::after {
  content: none;
}
.content .navbar .dropdown-arrow .dropdown-toggle i, .content .navbar .dropdown-arrow .dropdown-toggle i:hover {
  /*width: auto;
  height: auto;*/
  background: none;
}
.font-poppins {
  font-family: 'Poppins', sans-serif;
}
.font-gilroy {
  font-family: 'Gilroy';
}
.font-11 {
  font-size: 0.688rem !important;
}
.font-12 {
  font-size: 0.75rem !important;
}
.font-13 {
  font-size: 0.813rem !important;
}
.font-14 {
  font-size: 0.875rem !important;
}
.font-15 {
  font-size: 0.938rem !important;
}
.font-16 {
  font-size: 1rem !important;
}
.font-17 {
  font-size: 1.063rem !important;
}
.font-18 {
  font-size: 1.125rem !important;
}
.SignUpHead {
  position: relative;
  margin: 0;
  top: -10px;
}
.bg-img-login {
  background: no-repeat;
  background-size: cover;
  border-radius: 2.5rem 0 0 2.5rem;
}
.titel p {
  font-size: 1.25rem;
}
.footer {
  position: relative;
  z-index: 99;
  color: var(--light);
  font-size: 15px;
  font-weight: 500;
}
.sidebar-help {
  background: #21222A;
  border-radius: 8px;
  text-align: center;
  padding: 20px;
  margin: 60px 15px 10px 0;
  /*position: fixed;*/
  position: relative;
  bottom: 10px;
  width: 220px;
}
.sidebar-help i {
  color: var(--primary);
  top: -18px;
  font-size: 32px;
  left: 0;
  right: 0;
  position: absolute;
}
.sidebar-help p {
  margin: 5px 0 10px
}
@media (max-width: 575.98px) {
  .content .navbar .navbar-nav .nav-link {
    margin-left: 15px;
  }
}
/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
  top: auto !important;
}
.bootstrap-datetimepicker-widget .table * {
  border-bottom-width: 0px;
}
.bootstrap-datetimepicker-widget .table th {
  font-weight: 500;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
  padding: 10px;
  border-radius: 2px;
}
.bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover {
  background: var(--primary);
}
.bootstrap-datetimepicker-widget table td.today::before {
  border-bottom-color: var(--primary);
}
/*** Testimonial ***/
.progress .progress-bar {
  width: 0px;
  transition: 2s;
}
/*** Testimonial ***/
.testimonial-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border: 5px solid var(--primary);
  border-radius: 15px;
  transition: .5s;
}
.testimonial-carousel .owl-dot.active {
  background: var(--dark);
  border-color: var(--primary);
}
.icon-box .icon {
  width: 34px;
  height: 34px;
  align-items: center;
  border-radius: 50px;
  vertical-align: middle;
  display: flex;
  align-content: space-around;
  justify-content: center;
  background: var(--primary);
}
.icon-box .icon i {
  font-size: 1.125rem;
  color: var(--bs-white);
}
.icon-box h4 {
  margin-bottom: 0;
}
.table tbody th.id, .table tbody td.id {
  font-size: 0.938rem;
  font-weight: 600;
}
.lineh11 {
  line-height: 1.1 !important;
}
.lineh1 {
  line-height: 1 !important;
}
thead, tbody, tfoot, tr, td, th {
  border: 0;
}
.table.table-dark thead tr th:first-child {
  border-top-left-radius: 1rem;
}
.table.table-dark thead tr th:last-child {
  border-top-right-radius: 1rem;
}
.table.table-dark tbody tr:last-child td:first-child, .table.table-dark tbody tr:last-child th:first-child {
  /*border-bottom-left-radius: 1rem;*/
}
.table.table-dark tbody tr:last-child td:last-child {
  /*border-bottom-right-radius: 1rem;*/
}
.table.table-dark thead tr th.radius0:first-child {
  border-top-left-radius: 0rem;
}
.table.table-dark thead tr th.radius0:last-child {
  border-top-right-radius: 0rem;
}
.table.table-dark tbody tr:last-child td.radius0:first-child, .table.table-dark tbody tr:last-child th.radius0:first-child {
  border-bottom-left-radius: 0rem;
}
.table.table-dark tbody tr:last-child td.radius0:last-child {
  border-bottom-right-radius: 0rem;
}
.table.table-dark thead tr th.radius1:first-child {
  border-top-left-radius: 1rem;
}
.table.table-dark thead tr th.radius1:last-child {
  border-top-right-radius: 1rem;
}
.table.table-dark tbody tr:last-child td.radius1:first-child, .table.table-dark tbody tr:last-child th.radius1:first-child {
  border-bottom-left-radius: 1rem;
}
.table.table-dark tbody tr:last-child td.radius1:last-child {
  border-bottom-right-radius: 1rem;
}
.table td, .table th {
  vertical-align: middle;
  font-weight: normal;
  font-family: 'Poppins', sans-serif;
  padding: 0.875rem 1.125rem;
  font-size: 0.813rem;
}
.table th {
  padding: 1.125rem 1.125rem;
}
.table.table-sm td, .table.table-sm th {
  padding: 0.875rem 1rem;
}
.table.table-sm th {
  padding: 1.125rem 1rem;
}
.table th {
  color: rgba(255, 255, 255, 0.50);
  font-size: 0.813rem;
  font-weight: 400;
}
.table .form-check-input {
  margin: 0;
}
.table b, .table strong {
  font-weight: 500;
}
.ActivityLog-table {
  border-collapse: separate;
  border-spacing: 0 .75em;
}
.ActivityLog-table thead th, .ActivityLog-table tbody td, .ActivityLog-table tbody th {
  background: none;
  padding: 0.75rem 1.125rem;
  vertical-align: middle;
}
.table.ActivityLog-table > :not(caption) > * > * {
  background: var(--secondary);
  border: 0;
  box-shadow: inherit;
  color: var(--bs-white);
}
.table.ActivityLog-table thead th {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  color: rgba(255, 255, 255, 0.50)
}
.ActivityLog-table thead th:first-child, .ActivityLog-table tbody th:first-child {
  border-radius: 10px 0 0 10px;
}
.ActivityLog-table thead th:last-child, .ActivityLog-table tbody td:last-child {
  border-radius: 0 10px 10px 0;
}
.ActivityLog-table thead th {
  font-size: 0.813rem;
  font-weight: 400;
}
.ActivityLog-table tbody th {
  font-size: 0.813rem;
  font-weight: 600;
}
.ActivityLog-table tbody td {
  font-size: 0.813rem;
  font-weight: normal;
}
.ActivityLog-table thead th, .ActivityLog-table tbody td, .ActivityLog-table tbody th {
  background: none;
  padding: 0.75rem 1.125rem;
  vertical-align: middle;
}
.table-head {
  position: relative;
  z-index: 9;
}
.table-head form {
  position: relative;
  top: 15px;
}
.table-head .form-select {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 10 6' style='enable-background:new 0 0 10 6;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23C89B42;%7D%0A%3C/style%3E%3Cpath class='st0' d='M4.8,5.8L1.1,1.3C0.7,0.8,1,0,1.7,0l6.6,0c0.7,0,1,0.8,0.6,1.3L5.2,5.8C5.1,5.9,4.9,5.9,4.8,5.8z'/%3E%3C/svg%3E");
  color: var(--primary);
  background-color: inherit;
  border: 0;
  padding-right: 1.75rem;
}
.table-head .form-select:focus {
  box-shadow: inherit;
}
.table-head .form-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--bs-white);
}
.table-head .search {
  position: relative;
}
.table-head .search i {
  position: absolute;
  top: 6px;
  left: 5px;
  color: #979797;
  font-size: 1.125rem;
}
.table-head .form-control.form-control-sm {
  padding-left: 1.75rem;
  background: none;
  border: 0;
  width: 130px;
}
.table-head .form-select.dataTable-selector {
  display: inline;
  width: auto;
}
.table-head .dataTable-search:before {
  content: "\f002";
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  position: absolute;
  top: 7px;
  left: 6px;
  color: #979797;
}
.table.table-dark.dataTable-table thead tr th:first-child .dataTable-sorter::after {
  display: none;
}
.table-user {
  border-radius: 50px;
  margin-right: 10px;
  width: 24px;
  height: 24px;
}
.Referral-Link {
  background: var(--dark);
  border-radius: 8px;
  text-align: center;
  padding: 20px;
  position: relative;
}
.Referral-Link i {
  color: var(--white);
  top: -18px;
  font-size: 18px;
  left: 0;
  right: 0;
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50px;
  line-height: 40px;
  margin: 0 auto;
}
.Referral-Link p {
  margin: 5px 0 10px
}
.dropzone {
  height: 205px;
  position: relative;
  padding: 30px 15px;
}
.upload-icon {
  margin: 2px;
}
.upload-input {
  position: relative;
  top: -63px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  cursor: pointer;
}
.dropzone h6 {
  position: absolute;
  width: 100%;
  bottom: 58px;
  left: 0;
}
.dropzone p {
  position: absolute;
  width: 100%;
  bottom: 32px;
  margin: 0;
  color: #676767;
  font-size: 12px;
  font-weight: 500;
  left: 0;
}
.dropzone h6 sapn {}
.AccountBox {
  border: 4px solid var(--dark);
  -webkit-transition: 1s ease all;
  -o-transition: 1s ease all;
  -moz-transition: 1s ease all;
  -ms-transition: 1s ease all;
  transition: 1s ease all;
}
.AccountBox:hover, .AccountBox.active {
  border: 4px solid var(--primary);
}
.AccountBox h2 {
  color: #CACACA;
}
.AccountBox h2 strong {
  color: var(--bs-white);
}
.AccountBox hr {
  background-color: rgba(255, 255, 255, 0.40);
  margin: 15px 0;
}
.AccountBox .btn-sm {
  padding: .455rem 2.5rem
}
.user-details {}
.user-details .nav-tabs {
  border-bottom: 2px solid var(--primary);
  background: var(--dark);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.user-details .nav-tabs .nav-link {
  background: none;
  border: 0;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: .75rem 1.75rem;
  color: var(--bs-white);
}
.user-details .nav-tabs .nav-link.active, .user-details .nav-tabs .nav-item.show .nav-link {
  color: var(--bs-white);
  background-color: var(--primary);
  font-size: 1.25rem;
}
.user-details .nav-tabs .nav-link:hover, .user-details .nav-tabs .nav-link:focus {
  color: var(--bs-white);
  background-color: var(--primary);
}
.referral-tab .nav-tabs .nav-link {
  font-size: 0.938rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  line-height: 1.1;
  padding: .75rem 2.25rem;
}
.referral-tab .nav-tabs .nav-link.active, .referral-tab .nav-tabs .nav-item.show .nav-link {
  font-size: 0.938rem;
  font-weight: 500;
}
.referral-tab .nav-tabs .nav-link strong {
  font-weight: 600;
  display: block;
}
.referral-tab .nav-tabs .nav-link .tabNum {
  font-size: 38px;
  line-height: 34px;
  font-weight: 600;
  margin-left: 5px;
}
.MyInvestment {
  position: relative;
  top: 35px;
}
.deposit-box {}
.deposit-box .image-part {
  background: var(--dark);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 22px 22px 0px 0px;
  position: relative;
  z-index: 99;
}
.deposit-box .image-part h5 {
  font-weight: 500
}
.deposit-box .image-part h5 strong {
  font-weight: 600
}
.deposit-box .link {
  background: var(--primary);
  border-radius: 0px 0px 15px 15px;
  position: relative;
  -webkit-transition: 1s ease all;
  -o-transition: 1s ease all;
  -moz-transition: 1s ease all;
  -ms-transition: 1s ease all;
  transition: 1s ease all;
}
.deposit-box .link a {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bs-white);
  padding: 15px 0;
}
.deposit-box:hover .link {
  background: var(--bs-success);
}
.deposit-box .display-3 {
  line-height: 1.0665;
}
.deposit-box-sm .link a {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 12px 0;
}
.referral-tab .tab-content > .tab-pane {
  background: var(--dark);
  border-radius: 1rem;
  border-top-left-radius: 0;
  box-shadow: 3px 0px 11px rgb(0 0 0 / 25%);
  padding-bottom: 8px;
}
.referral-tab .table-head {
  border-bottom: 2px solid var(--secondary);
}
.wallet-history-box {
  border-bottom: 2px solid #17181E;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  width: max-content;
  position: absolute;
  top: -108px;
}
.news-box {
  -webkit-box-shadow: 5px 4px 9px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 5px 4px 9px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 5px 4px 9px 0px rgba(0, 0, 0, 0.5);
}
.news-img {
  position: relative;
  height: 127px;
}
.news-img img {
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-img p {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 18px 25px;
  margin: 0;
  color: var(--bs-white);
  font-size: 1rem;
  font-weight: bold;
  -webkit-transition: 1s ease all;
  -o-transition: 1s ease all;
  -moz-transition: 1s ease all;
  -ms-transition: 1s ease all;
  transition: 1s ease all;
}
.news-box:hover a p {
  color: var(--bs-primary);
}
.news-content {
  padding: 20px 25px;
}
.news-content p {
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 8px;
  color: #A8A8A8;
}
.news-content a {
  color: #A8A8A8;
  -webkit-transition: 1s ease all;
  -o-transition: 1s ease all;
  -moz-transition: 1s ease all;
  -ms-transition: 1s ease all;
  transition: 1s ease all;
}
.news-content:hover a {
  color: var(--bs-primary);
}
.home-blog .news-img {
  position: relative;
  height: 80px;
}
.home-blog .news-img p {
  font-size: 0.875rem;
  font-weight: bold;
  padding: 7px 10px;
}
.home-blog .news-content {
  padding: 10px;
}
.home-blog .news-content p {
  font-size: 11px;
  line-height: 14px;
  margin-bottom: 8px;
  color: #7C7C7C;
}
.home-blog .news-content a {
  font-size: 12px;
  font-weight: 400;
}
.home-blog img {
  border-radius: 8px 8px 0 0;
}
.btn-pdf {
  width: 90px;
  border-radius: 0.625rem;
  padding: 0.125rem 1.25rem;
}
@media (max-width: 1699px) {
  .table tbody th.id, .table tbody td.id, .table-head .form-label, .form-select, .form-control, .font-15, .home-blog .news-img p, .sidebar .navbar .navbar-nav .nav-link, .sidebar .dropdown-menu, .font-16, .form-label, .user-details .nav-tabs .nav-link, .dataTable-pagination li.pager a, .dataTable-pagination a, .news-img p, .dropdown-menu {
    font-size: 0.813rem !important;
  }
  .table td, .table th, .ActivityLog-table tbody td, body, p, .form-select-sm, .form-control-sm {
    font-size: 0.75rem;
  }
  .table-head .search i, .user-details .nav-tabs .nav-link.active, .user-details .nav-tabs .nav-item.show .nav-link {
    font-size: 1rem !important;
  }
  .content .navbar .sidebar-toggler, .content .navbar .navbar-nav .nav-link i {
    font-size: 1.125rem;
  }
  .sidebar .navbar .navbar-nav .nav-link {
    padding: 11px 15px;
  }
  .dropdown-item {
    padding: 0.25rem 1rem;
  }
  .btn-lg-square {
    width: 38px;
    height: 38px;
  }
  .content .navbar .sidebar-toggler, .content .navbar .navbar-nav .nav-link i {
    width: 32px;
    height: 32px;
  }
  .deposit-box .link a {
    font-size: 1.25rem;
  }
  .deposit-box-sm .link a {
    padding: 7px 0;
  }
  .referral-tab .nav-tabs .nav-link .tabNum {
    font-size: 34px;
    line-height: 30px;
  }
  .wallet-history-box {
    top: -102px;
  }
  .news-content p {
    font-size: 12px;
    line-height: 16px;
  }
  .sidebar .navbar .navbar-nav .nav-link i {
    font-size: 16px;
  }
}
@media (max-width: 1441px) {
  .ActivityLog-table tbody td, .table td {
    padding: 0.5rem 0.75rem;
  }
  .ActivityLog-table thead th, .ActivityLog-table tbody td, .ActivityLog-table tbody th {
    padding: 0.5rem 0.75rem;
  }
  .table .btn-xs, .table .btn-group-xs > .btn {
    padding: 0.25rem 0.875rem;
  }
  .table tbody th.id, .table tbody td.id, .table-head .form-label, .font-15, .home-blog .news-img p, .sidebar .navbar .navbar-nav .nav-link, .sidebar .dropdown-menu, .font-16, .dataTable-pagination li.pager a, .dataTable-pagination a {
    font-size: 0.75rem !important;
  }
  .table td, .ActivityLog-table tbody td, .form-select-sm, .form-control-sm {
    font-size: 0.688rem;
  }
  .btn-xs.font-15 {
    font-size: 0.938rem !important;
  }
  .Referral-Link {
    padding: 15px;
  }
  .sidebar {
    width: 230px;
  }
  .sidebar.ps-3 {
    padding-left: 0.688rem !important;
  }
  .sidebar .navbar-brand.m-4 {
    margin: 1rem !important;
  }
  .sidebar-help {
    width: 208px;
  }
  .content {
    width: calc(100% - 230px);
    margin-left: 230px;
  }
  .dataTable-pagination a {
    padding: 3px 2px;
  }
  .form-control-lg {
    padding: 0.75rem 1rem;
  }
  .table.table-sm td, .table.table-sm th {
    padding: 0.75rem 0.625rem;
  }
  .news-img p, .news-content {
    padding: 12px 15px;
  }
  .wallet-history-box {
    top: -89px;
  }
}
@media (max-width: 1280px) {
  .table td, .table th {
    padding: 0.875rem 0.75rem;
  }
  .table-dashboard.table .btn-xs, .table-dashboard.table .btn-group-xs > .btn {
    padding: 0.25rem 0.5rem;
  }
  .pie-chart {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .sidebar {
    margin-left: 0;
  }
  .sidebar.open {
    margin-left: -230px;
  }
  .content {
    width: calc(100% - 230px);
  }
  .content.open {
    width: 100%;
    margin-left: 0;
  }
}
@media (min-width: 1442px) {
  .sidebar.open {
    margin-left: -260px;
  }
  .content {
    width: calc(100% - 260px);
  }
}
@media (max-width: 1199.98px) {
  body, html {
    overflow-x: hidden;
  }
  .sidebar {
    margin-left: -230px;
  }
  .sidebar.open {
    margin-left: 0;
  }
  .content {
    width: 100%;
    margin-left: 0;
  }
  .content .navbar .sidebar-toggler, .content.open .navbar .sidebar-toggler {
    left: 15px;
  }
  .content .navbar {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .sidebar .navbar-dark .navbar-brand img {
    width: 160px;
  }
  .sidebar .navbar-brand.m-4 {
    margin: 3rem 0 0.5rem !important;
  }
  .bg-img-login {
    background-size: cover !important;
    background-position: inherit !important;
  }
}
@media (max-width: 992px) {
  .MyInvestment {
    top: 20px;
  }
  .deposit-box .image-part img {
    width: 100%;
  }
  .ActiveBox {
    width: 31%;
    float: left;
    margin: 0 1% !important;
  }
  .AccountBox {
    width: 80%;
    margin: 0 auto;
  }
  .bg-img-login {
    background-position: center right !important;
  }
  .wallet-history-box {
    position: inherit;
    top: inherit;
  }
}
@media (max-width: 568px) {
  .user-details .nav-tabs .nav-link {
    padding: 0.75rem;
    line-height: 1;
  }
  .deposit-box .image-part img {
    width: auto;
  }
  .ActiveBox {
    width: 90%;
    float: none;
    margin: 0 auto 20px !important;
  }
}
@media (max-width: 479px) {
  .deposit-box .image-part img {
    width: 100%;
  }
  .AccountBox {
    width: 92%;
  }
}
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-button { 
    background: #ccc
}
::-webkit-scrollbar-track-piece {
    background: #ccc
}
::-webkit-scrollbar-thumb {
    background: #C89B42
}
.required-mark {
    color: red;
}
.phoneinline {
    display: flex;
    width: 100%;
}
#phonecode {
    flex-basis: 0;
    flex-grow: 1;
    padding: 0 5px;
    width: 55px;
}
.eye-icon {
    float: right;
    margin-right: 10px;
    margin-top: -33px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    color: #C89B42;
}
.dataTables_processing {
    background: none !important;
    color: #C89B42 !important;
	border: none !important;
}
.table-p15 {
    padding: 15px;
}
li.page-item {
    padding: 0 !important;
}
li.page-item .page-link {
    background: #21222A !important;
    border-color: #21222A !important;
}
.page-item.active .page-link{
	background-color: #C89B42 !important;
    border-color: #C89B42 !important;
}
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_paginate {
    color: #999 !important;
}
.dataTables_length select {
    background: #21222A !important;
	color: #999 !important;
}
.dt-buttons {
    padding-left: 10px;
}
button.dt-button {
    background: #C89B42 !important;
    color: #fff !important;
    padding: 2px 15px;
    font-size: 12px;
    font-weight: bold;
}
.dataTables_wrapper .dataTables_filter input {
    color: #999 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #C89B42 !important;
    color: #fff !important;
    border-color: #C89B42 !important;
}
li.select2-selection__choice {
    background: transparent !important;
}
.select2.select2-container.select2-container--default{
    background: #17181e;
    min-height: calc(1.5em + 1rem + 2px);
    padding: 0.875rem 1.25rem;
    border-radius: 0.625rem;
}
.select2-selection {
    background: #17181e !important;
    border: none !important;
    height: unset !important;
}
.select2-selection__rendered {
    color: #fff !important;
    line-height: 1.5 !important;
    font-size: 0.813rem !important;
    font-weight: 500;
    font-family: Poppins,sans-serif;
    background-clip: padding-box;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: calc(1.5em + 1rem + 10px);
    padding: 0.875rem 1.25rem;
}
.select2-dropdown {
    background: #111116;
    border-color: #17181e;
}
.select2-search__field {
    background: #17181e;
    border-color: #17181e !important;
    color: #fff;
}
.select2-container--default .select2-results__option[aria-selected=true]{
	color: #111116;
}
.select2black .select2.select2-container.select2-container--default {
    background: #111116;
}
.select2black .select2-selection {
    background: #111116 !important;
}
.bg-black {
    background: #000;
}
input::file-selector-button {
    background: #000000 !important;
    color: #fff !important;
}
.width-50{
	width:50px;
}
.tcwidth-100 {
    max-width: 160px !important;
    word-wrap: break-word;
}
.stat {
    align-items: center;
    background: #17181e;
    border-radius: 50%;
    display: flex;
    height: 40px;
    justify-content: center;
    width: 40px;
}
.stat i {
    font-size: 18px;
}
.singleclient {
    margin-bottom: 20px;
}
.count {
    text-align: center;
    padding: 0 5px;
    font-size: 10px;
    align-items: center;
    display: flex;
    margin-left: 5px;
    border-radius: 5px;
}
.ck-editor__editable {
    min-height: 200px;
}
.ck.ck-editor__main>.ck-editor__editable {
    background: #17181E !important;
}
.depositdetails {
    font-size: 0.875rem;
    color: #999;
    font-weight: 500;
}
.depositdetails li {
    margin-bottom: 10px;
}
.depositdetailstable tr td, .depositdetailstable tr th {
    font-size: 0.875rem;
    color: #999;
    font-weight: 500;
}
.depositdetailstable tr th {
    padding-right: 10px;
}
.newsdetls img {
    width: 100%;
    margin-bottom: 15px;
}

.newsdetls {
    color: #A8A8A8;
}
.image-part .text-muted {
    padding-top: 5px;
}
.image-part .mb-0 {
    border-bottom: 2px solid #C89B42;
    padding-bottom: 4px;
}
#search .select2.select2-container.select2-container--default{
	border: 1px solid #999;
    height: 40px;
    line-height: 40px;
    padding: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
#search span.select2-selection__arrow {
    height: 40px !important;
    line-height: 40px !important;
    padding: 10px !important;
}
#search .searchbtn{
	border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
#searchajax{
	width:300px;
}
@media (max-width:767px){
	.hideonmobile{
		display:none;
	}
}
input#terms {
    height: 18px;
    width: 18px;
    line-height: 18px;
    vertical-align: middle;
}
.platformdownload {
    padding: 0;
    margin-bottom: 0;
}
.platformdownload li {
    display: inline-block;
}
.platformdownload li a {
    font-size: 22px;
    padding: 0 10px;
    line-height: 30px;
}
.table .btn-group-xs>.btn, .table .btn-xs {
    padding: 5px 10px;
}
.navbar.sticky-top .navbar-brand img {
    height: 45px;
}
.sidebar .navbar .navbar-brand img {
    width: 100%;
}
#closedtradetablefix {
    max-height: 500px;
    overflow-y: auto;
    margin-bottom: 15px;
}
#closedtradetablefix::-webkit-scrollbar {
    display: none;
}
.btnclosedtd {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    color: #C89B42;
}
.sidebar::-webkit-scrollbar {
    display: none;
}
.row .col-sm-6:last-child .single-profile {
    border-bottom: none !important;
}
.single-profile {
    border-bottom: 1px solid #323030;
    padding: 10px 0px;
}
.profile-label {
    font-size: 16px;
    margin-bottom: 7px;
    color: #888;
}
.profile-val {
    font-size: 16px;
}
.minw-100{
	min-width:100px;
}
.minw-200{
	min-width:200px;
}
.inlinettlbtn {
    display: flex;
    align-items: center;
    width: 100%;
}
.inlinettl, .inlinebtn {
    flex-grow: 1;
    flex-basis: 0;
}
.inlinebtn {
    text-align: end;
}
.ruleoperatorborder {
    display: inline-block;
    width: 100%;
    position: relative;
    font-size: 16px;
    text-align: center;
}
.ruleoperator {
    width: 100px;
    margin: 0 auto;
    z-index: 999;
    position: relative;
}
.ruleoperatorborder:before {
    position: absolute;
    content: '';
    width: 100%;
    top: 65%;
    border-top: 2px solid currentColor;
    left: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -65%);
    opacity: 0.25;
}