/* Common styles and basic components */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #000503;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Fade in animation */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Main container */
.main-container {
    display: flex;
    min-height: 100vh;
    flex-direction: row;
}

/* Sidebar styles */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 256px;
    height: 100vh;
    background-color: #0e0e0e;
    border-right: 1px solid rgba(0, 232, 137, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 40;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar.active {
    transform: translateX(0);
}

/* Logo area */
.logo-section {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #00e889, #067549);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation menu */
.nav-menu {
    flex: 1;
    padding: 16px;
    padding-top: 24px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-item:hover {
    background-color: rgba(0, 232, 137, 0.1);
    color: #00e889;
}

.nav-item.active,.nav-group-header.active {
    background-color: #00e889;
    color: #000000;
    font-weight: 600;
}

.nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Sidebar footer */
.sidebar-footer {
    padding: 16px 24px 24px;
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 14px;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background-color: rgba(0, 232, 137, 0.1);
    color: #00e889;
}

/* Mobile sidebar overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Main content area */
.main-content {
    flex: 1;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    transition: margin-left 0.3s ease;
    min-height: 100vh;
    overflow-y: auto;
}

/* Page content area */
.page-content {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0e0e0e 0%, #010101 100%);
    border-top: 1px solid rgba(0, 232, 137, 0.2);
    padding: 40px 0 20px;
    margin-top: auto;
    width: 100%;
}

/* Top navigation bar */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background-color: #0e0e0e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 20;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: block;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 4px;
}

.hamburger-icon {
    width: 24px;
    height: 24px;
}

.page-title {
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(135deg, #067549, #00e889);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Dropdown menu */
.dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-btn:hover {
    color: #00e889;
    background-color: rgba(0, 232, 137, 0.1);
}

.icon {
    width: 20px;
    height: 20px;
    color: #00e889;
}

.chevron {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.dropdown.active .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    min-width: 200px;
    background-color: #000503;
    border: 1px solid #00e889;
    border-radius: 8px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.2s ease;
    z-index: 50;
	color:#fff;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);    display: block;
}

.dropdown-item {
    display: block;
    padding: 8px 12px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: rgba(0, 232, 137, 0.1);
    color: #00e889;
}

.dropdown-divider {
    margin: 8px 0;
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Notification related */
.notification-btn {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #ef4444;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-menu {
    width: 320px;
}

.notification-header {
    font-weight: 600;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
}

.notification-item {
    padding: 12px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-item:hover {
    background-color: rgba(0, 232, 137, 0.1);
}

.notification-title {
    font-weight: 500;
    margin-bottom: 4px;
}

.notification-time {
    font-size: 12px;
    color: #9ca3af;
}

/* User menu */
.user-btn {
    padding: 8px 16px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #c084fc, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.user-email {
    font-size: 14px;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: none;
}

/* Common card styles */
.card {
    position: relative;
    background: linear-gradient(135deg, #0e0e0e 0%, #010101 100%);
    border: 1px solid rgba(0, 232, 137, 0.2);
    border-radius: 16px;
    padding: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(0, 232, 137, 0.4);
    transform: translateY(-2px);
}

.card-glow {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 232, 137, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.card:hover .card-glow {
    background: radial-gradient(circle, rgba(0, 232, 137, 0.2) 0%, transparent 70%);
}

/* Button styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #00e889, #067549);
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #067549, #00e889);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #00e889;
    border: 1px solid #00e889;
}

.btn-secondary:hover {
    background-color: rgba(0, 232, 137, 0.1);
}

/* Table styles */
.table-container {
    background: linear-gradient(135deg, #0e0e0e 0%, #010101 100%);
    border: 1px solid rgba(0, 232, 137, 0.2);
    border-radius: 16px;
    overflow: hidden;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background-color: rgba(0, 0, 0, 0.3);
    color: #d1d5db;
    padding: 16px;
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid rgba(54, 54, 54, 1);
}

.data-table td {
    padding: 16px;
    color: #ffffff;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.no-data {
    text-align: center;
    color: #6b7280;
    font-style: italic;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #0e0e0e 0%, #010101 100%);

    padding: 0;
    border: 1px solid rgba(0, 232, 137, 0.3);
    border-radius: 16px;

    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #00e889;
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
	text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;    height: 50px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00e889;
    background-color: rgba(0, 232, 137, 0.05);
}

/* Responsive design */
@media (min-width: 768px) {
    .user-email {
        display: block;
    }
}

@media (min-width: 1024px) {
    .sidebar {
        transform: translateX(0);
        position: fixed;
    }
    
    .main-content {
        margin-left: 256px;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .page-title {
        display: block;
    }
}

/* Dark scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #0e0e0e;
}

::-webkit-scrollbar-thumb {
    background: #00e889;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #067549;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #00e889 #0e0e0e;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation group styles */
.nav-group {
    margin-bottom: 8px;
}

.nav-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 24px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-group-header:hover {
    background-color: rgba(0, 232, 137, 0.1);
    color: #00e889;
}

.nav-chevron {
    width: 16px;
    height: 16px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.nav-group.expanded .nav-chevron {
    transform: rotate(180deg);
}

.nav-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-left: 16px;
}

.nav-group.expanded .nav-submenu {
    max-height: 200px;
}

.nav-subitem {
    padding-left: 28px !important;
    font-size: 13px !important;
    margin-bottom: 4px !important;
}

.nav-subitem .nav-icon {
    width: 16px !important;
    height: 16px !important;
}

/* Loading animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.custom--modal .modal-content {
  text-align: center;
  background-color: #111b28;
  border-radius: 10px !important;
}

.custom--modal .modal-body {
  padding: 0 25px 25px!important;
}

.custom--modal .modal-header {
  border-bottom: 1px solid #ffffff19;
  margin-bottom: 20px;
  padding: 20px 20px 15px 20px;
}

.custom--modal .modal-header .close {
    background: none;
    border: none;
    font-size: 24px;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.3s ease;
}

.custom--modal .modal-header .close:hover {

}

.custom--modal .modal-header .close:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.custom--modal .modal-icon i {
  font-size: 32px;
  color: rgb(var(--main));
  border: 3px solid rgb(var(--main));
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
}

.custom--modal .modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 25px 15px;
  border-top: 1px solid #ffffff19;
  justify-content: flex-end;
}


.custom--modal .list-group {
  margin: -9px 0 !important;
}

.custom--modal .list-group-item {
  border: 0;
  border-bottom: 1px solid #ffffff19;
  padding: 9px 0;
}

.custom--modal .list-group-item:last-child {
  border-bottom: 0;
}
.form--control {
  height: 50px;
  border-radius: 3px;
  color: #0E1621;
  font-weight: 400;
  outline: none;
  width: 100%;
  padding: 11px 15px;
  background-color: rgb(255 255 255 / 3%);
  border: 1px solid rgba(255, 255, 255, 0.03);
  color: #fff;
}

@media (max-width: 767px) {
  .form--control {
    padding: 10px 25px;
  }
}

@media (max-width: 575px) {
  .form--control {
    padding: 10px 20px;
  }
}

.form--control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.form--control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.form--control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.form--control::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.form--control:focus {
  border: 1px solid rgb(var(--main));
  border-radius: 3px;
  background-color: rgb(255 255 255 / 3%);
  color: #fff !important;
}

.form--control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: rgb(var(--main));
}

.form--control:disabled,
.form--control[readonly] {
  background-color: #55555582;
  color: rgb(255 255 255 / 78%);
  opacity: 1;
  border: 0;
}

.form--control[type="file"] {
  line-height: 48px;
  padding: 0;
  border-radius: 4px;
}

.form--control[type="file"]::-webkit-file-upload-button {
  background: #ffffff14 !important;
  padding: 5px 20px;
  color: #fff;
}

textarea.form--control {
  height: 150px;
  padding: 15px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff !important;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #fff !important;
}

.input--group {
  position: relative;
}

.input--icon {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: rgb(var(--main));
}

.password-show-hide {
  position: absolute;
  right: 20px;
  z-index: 3;
  cursor: pointer;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

input#send-amount::-webkit-outer-spin-button,
input#send-amount::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input#send-amount[type=number] {
  -moz-appearance: textfield;
}
.custom--select,.goog-te-combo {
  height: 30px;
  line-height: 30px;
  background-color: rgb(var(--main));
  color: #fff;
  background-color: rgb(255 255 255 / 3%);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border: 0;
  border-radius: 3px;
  -moz-appearance: auto;
  appearance: auto;
  -webkit-appearance: auto;
  padding: 3px 10px;
}

.custom--select:focus,.goog-te-combo:focus {
  border-color: rgb(var(--main)) !important;
}

.custom--select option,.goog-te-combo option {
  background-color: #0E1621;
}

.custom--select::-webkit-scrollbar,.goog-te-combo::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.btn--base{
	
background: linear-gradient(135deg, #00e889, #067549);
    color: #ffffff;
	
}
.list-group-item {
    background-color: transparent;
    color: #fff;
    border-color: rgb(255 255 255 / 19%);
}
.btn--base {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #00e889, #067549);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.input-group{
	
	    flex-wrap: nowrap;
}
.input-group-text{
	
}

.input-group-text{
	background-color: #212529;
    color: #fff;
    border: 1px solid #212529;
}


.table thead tr th:first-child {
  text-align: left;
  border-radius: 5px 0 0 0;
}

.table thead tr th:last-child {
  border-radius: 0 5px 0 0;
  text-align: right;
}

.table tbody {
  background-color: #080c13;
  border-top: 0;
}

.table tbody tr:nth-child(even) {
  background-color: #212529;
}

.table tbody tr:last-child {
  border-bottom: 0;
}

.table tbody tr td {
  vertical-align: middle;
  padding: 15px;
  border-width: 1px;
  border: 0;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

.table tbody tr td::before {
  content: attr(data-label);
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  display: none;
  width: 35% !important;
  text-align: left;
}

.table tbody tr td:first-child {
  text-align: left;
}

.table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 10px;
}

.table tbody tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}


.table tbody tr td:last-child {
  text-align: right;
}

@media (max-width: 767px) {
  .table--responsive--md thead {
    display: none;
  }

  .table--responsive--md tbody tr {
    display: block;
  }

  .table--responsive--md tbody tr td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 35px;
    text-align: right;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #c9c3c36b;
  }

  .table tbody tr td:first-child {
    text-align: right;
    border: 0;
  }

  .table--responsive--md tbody tr td:last-child {
    border: none;
  }

  .table--responsive--md tbody tr td::before {
    display: block;
  }
}

@media (max-width: 767px) {
  .table--responsive--md tbody tr td {
    border: 0 !important;
  }
}

@media (max-width: 991px) {
  .table--responsive--lg thead {
    display: none;
  }

  .table--responsive--lg tbody tr {
    display: block;
  }

  .table--responsive--lg tbody tr td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 35px;
    text-align: right;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #c9c3c36b;
  }

  .table tbody tr td:first-child {
    text-align: right;
    border: 0;
  }

  .table--responsive--lg tbody tr td:last-child {
    border: 0 !important;
  }

  .table--responsive--lg tbody tr td::before {
    display: block;
  }
}

@media (max-width: 991px) {
  .table--responsive--lg tbody tr td {
    border: 0 !important;
  }
}

@media (max-width: 1199px) {
  .table--responsive--xl thead {
    display: none;
  }

  .table--responsive--xl tbody tr {
    display: block;
  }

  .table--responsive--xl tbody tr td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 35px;
    text-align: right;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #c9c3c36b;
  }

  .table tbody tr td:first-child {
    text-align: right;
    border: 0;
  }

  .table--responsive--xl tbody tr td:last-child {
    border: none;
  }

  .table--responsive--xl tbody tr td::before {
    display: block;
  }
}

@media (max-width: 991px) {
  .table--responsive--xl tbody tr td {
    border: 0 !important;
  }
}

.dash-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 3px 8px;
    background: linear-gradient(135deg, #00e889, #067549);
	font-family: "Exo 2", sans-serif;
	color: #fff !important;
	font-size: 10px;
	font-weight: 700;
	border-radius: 3px;
	text-decoration: none;
}
.btn--xsm{
	
	    width: auto;
    font-size: 12px;
    margin: 0;
    padding: 3px 10px;
    font-weight: 550;
}
.status-active,.badge--success {
    background-color: rgba(0, 232, 137, 0.2);
    color: #00e889;
}
.badge--danger {
    background-color: transparent;
    border: 1px solid #f75959;
    color: #fff;
}
a,a:hover {
    color: #00e889;
}

.btn-danger,.btn-warning,.btn-success {
    padding: 0 5px;
    border-radius: 5px;
}

.review {
  position: fixed;
  right: 0px;
  bottom: 110px;
  color: #fff;
     background: linear-gradient(135deg, #00e889, #067549);
  width: 40px;
  height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 3px;
  font-size: 16px;
  z-index: 5;
  -webkit-transition: .5s;
  transition: .5s;
  cursor: pointer;
  visibility: visible;
  opacity: 1;
  bottom: 160px;
writing-mode: tb-rl;
   font-family: Verdana; 
    text-decoration: none;
    
    
    
    
}

@media (max-width: 767px) {
  .review {
    right: 0px;
  bottom: 110px;
    font-size: 15px;
  }
  
}

.review:hover {
  color: #fff;
  background-color: #f7a906;
}
    body {
        top: 0 !important;
    }

    iframe.skiptranslate {
        display: none;
        height: 0;
    }

    .VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q {
        background-color: inherit !important;
        box-shadow: inherit !important;
    }

    #goog-gt-vt,
    #goog-gt-tt {
        display: none !important;
    }

    .VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
        display: none !important;
    }
	

.goog-te-gadget{    height: 40px;
    overflow: hidden;}
	
	
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .section-heading {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .section-heading {
    margin-bottom: 30px;
  }
}

.section-heading.style-two {
  text-align: left;
}

.section-heading.style-two .section-heading__title::before {
  left: 0;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.section-heading.style-two .section-heading__title::after {
  left: 25px;
  -webkit-transform: translateX(0px) rotate(-45deg);
  transform: translateX(0px) rotate(-45deg);
}

.section-heading.style-two .section-heading__desc {
  max-width: 550px;
  margin-right: auto;
  margin-left: 0;
}

.section-heading__title {
  position: relative;
  margin-bottom: 5px;
  padding-bottom: 10px;
}

.section-heading__title::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: rgb(var(--main));
  bottom: 0;
  z-index: -1;
}

.section-heading__title::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
  background-color: rgb(var(--main));
  bottom: -4px;
  z-index: -1;
}

.section-heading__desc {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.panel{width: 100%;margin: auto; margin-top: 30px; border-radius:3px ; overflow: hidden;max-width: 768px;
	min-width: 320px;    border: 1px solid rgba(255, 255, 255, 0.15);}
.panel_zhong{ font-size: 16px; height: 44px; line-height: 44px; color: #fff;background: rgb(var(--main));}
.panel_center{ padding-left: 20px; font-size: 16px; height: 44px; line-height: 44px; color: #fff;}
.panel_xinxi{ width: 33%; float: left; height: 44px; text-align: center;}
.panel_xinxi:nth-child(1), .panel_xinxi:nth-child(2){border-right:1px solid rgba(255,255,255,0.3) ;}
.activity{width: 100%; margin: 0 auto; position: relative; overflow: hidden; height: 165px; text-align: center;background-color: #0E1621;}
.activity ul{top: -15px;padding: 0;position: relative;}
.activity li{height: 44px;padding:0;line-height: 44px;}



.activity li:nth-child(2n){
           background: #0E1621;
       }
.activity li:nth-child(2n+1){
           background: rgba(255, 255, 255, 0.04)
       }

.activity_div{ float: left; width: 33%; text-align: center; height: 44px;}
.pricing-item{
	 position: relative;
}
.custom--modal label{
	text-align: left;
    width: 100%;
	
}
.discount{    position: absolute;
    color: #fff;
    right: 3px;
    background-color: #ef6624;
    padding: 5px;
    border-radius: 5px;
    top: -25px;
	}
.section--padding img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.noticebody{
	
display:none;	
}
.accordion-body{
	    color: #000;
	
	
}
.mobile-nav{display: none;}
@media (max-width: 767px) {
.page-content {
    padding: 10px;
}
.mobile-nav {
    display: none; /* Hidden by default on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: #1e202f;
    border-top: 1px solid #31344e;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #8a91b4;
    text-decoration: none;
    font-size: 0.7rem;
    flex: 1;
    height: 100%;
    transition: color 0.3s ease;
}

.nav-link i {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.nav-link.active {
    color: #14dd8e;
    font-weight: 600;
}

.nav-link:hover {
    color: #ffffff;
}
}