@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --voltera-bg: #0A0F1C; /* Primary background (dark mode base) */
    --voltera-card: #131A28; /* Card backgrounds, sidebars */
    --voltera-blue: #00F0FF; /* Primary accent color – buttons, links, active states */
    --voltera-purple: #8A2BE2; /* Secondary accent – highlights, borders, gradients */
    --voltera-green: #00FFB2; /* Profit indicators, success states */
    --voltera-red: #FF4F6D; /* Loss indicators, error messages */
    --voltera-yellow: #FFD700; /* Optional highlights, attention grabs */
    --voltera-line: #2B2F3A; /* Dividers, soft shadows, borders */
    --voltera-white: #F1F5F9; /* Primary text, icons, foreground elements */
    --voltera-muted-text: #A1A6B1; /* Placeholder text, secondary labels */
}

body {
    background: var(--voltera-bg);
    font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--voltera-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--voltera-white);
}

h1 {
    font-size: 80px;
    font-weight: 700;
}
h2 {
    font-size: 64px;
    font-weight: 700;
}
h3 {
    font-size: 56px;
    font-weight: 700;
}
h4 {
    font-size: 46px;
    font-weight: 700;
}
h5 {
   font-size: 32px;
    font-weight: 700; 
}
h6 {
    font-size: 24px;
    font-weight: 500;
}
.text-gradiant {
    background: var(--voltera-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block; /* This is important for the gradient to apply correctly to the text */
}

.header {
    background: rgba(217,217,217,.1);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding: 10px 0;
    margin: 15px 15px 0;
}

.header .row {
    align-items: center;
}

.header .navbar-nav {
    margin: 0 15px 0 auto;
}

.navbrand-logo {
    width: 153px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}
.navbrand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: var(--voltera-white);
    opacity: .7;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link.active {
    opacity: 1;
    color: var(--voltera-white);
    border-color: var(--voltera-purple);
    background: var(--voltera-line);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}


.btn {
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    padding: 12px 24px;
    border: 1px solid transparent;
    text-transform: uppercase;
}

.btn-yellow {
    background: var(--voltera-blue);
    border-color: var(--voltera-blue);
    color: var(--voltera-white);
}
.btn-yellow:hover,
.btn-yellow:focus{
    background: var(--voltera-white);
    border-color: var(--voltera-blue);
    color: var(--voltera-blue);
}

.btn-transparent {
    background: transparent;
    border-color: transparent;
    color: var(--voltera-white);
}
.btn-transparent:hover,
.btn-transparent:focus{
    background: var(--voltera-white);
    border-color: var(--voltera-white);
    color: var(--voltera-blue);
}

.main-hero-wrapper {
    background: rgba(217,217,217,.1);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    margin: 0 15px 15px;
    position: relative;
}
.main-hero-wrapper > .container-fluid {
    padding: 0;
}
.main-hero-wrapper .row {
    align-items: center;
}
.carousel-inner {
    position: relative;
}
.carousel-inner::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 210px;
    z-index: 2;
    /*background: url('../img/hero-banner-gradiant.svg') no-repeat center top / cover;*/
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(44,44,44,0.65) 100%);

}

.carousel-caption {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: transparent;
    padding: 30px 0;
}
.carousel-caption h1,
.carousel-caption h2,
.carousel-caption h3,
.carousel-caption p {
    margin: 0;
}
.carousel-caption h1,
.carousel-caption h2,
.carousel-caption h3 {
    text-transform: uppercase;
}
.carousel-caption h1 {
    color: var(--voltera-white);
}

.carousel-caption .btn-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}


.radial-orange-background {
    position: absolute;
    right: 0;
    top: 0;
    /* margin-top: -150px; */
    /* max-width: 50%; */
    /* max-height: 50%; */
    width: 600px;
    height: 600px;
    display: block;
}
.radial-orange-background::before {
    content: '';
    width: 100%;
    height: 100%;
   
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50% 0 0 -50%;
    display: block;
    /*background: radial-gradient(ellipse at center,  rgba(250,188,63,0.65) 0%,rgba(232,92,13,0) 100%);*/
    background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.65) 0%, rgba(232, 92, 13, 0) 73%);

}

.block {
    position: relative;
    padding: 60px 0;
}

.block-content-wrapper,
.section-top-title,
.about-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
}
.section-top-title p {
    color: var(--voltera-white);
    margin: 0;
    font-weight: 500;
    font-size: 24px;
}
.block-content-wrapper .col-md-4 {
    margin-bottom: 30px;
}
.block-content-wrapper {
    gap: 48px;
}
.section-top-title {
    gap: 16px;
}
.about-card {
    gap: 32px;
    height: 100%;
}
.about-card h6 {
    margin: 0;
    color: var(--voltera-white);
    text-transform: capitalize;
}
.about-card-img-wrapper {
    border-radius: 50px;  
    overflow: hidden;
    display: flex;
    width: 100%;
    padding: 10px;
    background: var(--voltera-card);
}
.about-card-img {
    width: 100%;
    height: 350px;
    object-fit: contain;
}

.block-shape-future .row,
.block-share-dream .row {
    align-items: center;
}

.block-shape-future-content,
.block-share-dream-content {
    display: flex;
    flex-direction: column;
    text-align:left;
    align-items: flex-start;
}
.block-shape-future-content {
    gap: 32px;
}
.block-share-dream-content {
    gap: 8px;
}
.block-shape-future-content h3 span,
.block-share-dream-content h3 span {
     background: linear-gradient(to right, var(--voltera-white), var(--voltera-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.shape-future-img {
    width: 100%;
    max-width: 484px;
    margin: 0 auto;
    display: block;
}
.img-share-dream {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    display: block;
}

.block-share-dream-content h3,
.block-share-dream-content p {
    margin: 0;
}

.success-stories-content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 100px;
    background: rgba(217,217,217,.05);
    padding: 48px;
    gap: 32px;
}

.success-stories-content-wrapper h3 {
    display: block;
    text-align: center;
    font-weight: 700 !important;
}

.success-story-item {
    background: rgba(217,217,217,.05) url('../img/success-stories-quote.svg')  no-repeat 95% 90%;
    padding: 32px 32px 80px;
    border-radius: 40px;
}

.success-story-item h5,
.success-story-item p {
    color: var(--voltera-muted-text);
    margin: 0;
}

.success-story-item .col-md-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.story-user-img {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    width: 200px;
    height: 207px;
    overflow: hidden;
}
.story-user-img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.slick-arrow {
  position: absolute; 
  bottom: 16px;
  width: 60px;
  height: 60px;
  z-index: 99;
  padding: 0;
  border-radius: 100%;
  border: 0;
  text-indent: -9999px;
  overflow: hidden;
}
.slick-prev {
    background: url('../img/slick-prev.svg')  no-repeat center center / contain;
    left: 32px;
}
.slick-next {
   background: url('../img/slick-next.svg')  no-repeat center center / contain; 
   right: 32px;
}

.slick-arrow:focus {
    outline: none;
    box-shadow: 0;
    border: 0;
}

.block-success-stories .radial-orange-background {
    right: inherit;
    left: 100px;
    top: 0;
}

.footer {
    position: relative;
    padding: 80px 0;
}

.footer p,
.footer li,
.footer h6,
.footer a {
    color: #B8B7B6;
    margin: 0;
    padding: 0;
}
.footer p,
.footer li,
.footer a {
    font-size: 16px;
}

.footer h6 {
    font-size: 18px;
    font-weight: 600;
}
.footer-list,
.footer .col-md-12,
.footer .col-md-4 {
    display: flex;
    flex-direction: column;
}
.footer .col-md-12 {
    gap: 20px;
}
.footer-list,
.footer .col-md-4 {
    gap: 20px;
}

.footer .navbrand-logo img { 
    margin-left: -40px;
    filter: brightness(0) invert(1);
}

.login-main-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
}
.login-main-wrapper .radial-orange-background {
    right: 50%;
    top: 50%;
    margin: -300px -300px 0 0;
}
.login-main-wrapper .row {
    align-items: center;
}
.login-main-wrapper .col-md-5,
.login-main-wrapper .col-md-7 {
    display: flex;
    flex-direction: column;
}
.login-main-wrapper .col-md-5 {
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    border-radius: 40px;
    overflow: hidden;
    background: linear-gradient(to bottom,  rgba(44,44,44,1) 0%,rgba(75,75,75,1) 100%);
    z-index: 2;
}
.login-main-wrapper .col-md-5 img {
    width: 100%;
}

.login-main-wrapper .col-md-7 {
    align-items: center;
    justify-content: center;
    padding: 30px 30px 30px 80px;
    margin-left: -50px;
    border-radius: 55px;
    overflow: hidden;
    background: rgba(217,217,217,.1);
    flex-direction: column;
    gap: 30px;
}
.contact-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.login-main-wrapper h3 {
    margin: 0;
    font-weight: 700 !important;
    text-align: center;
}

.contact-form .form-control {
    font-size: 20px;
    padding: 10px 30px 10px 0;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0;
    border-bottom-color: var(--voltera-muted-text);
    color: var(--voltera-white);
}
.contact-form .form-control::placeholder {
    color: var(--voltera-muted-text);
}
.contact-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-bottom-color: var(--voltera-blue);
}
.contact-form .btn {
    width: 100%;
}

.contact-form .form-group {
    margin: 0 0 30px;
    position: relative;
}
.icon-form  {
    position: absolute;
    top: 12px;
    right: 0;
    width: 20px;
    height: 20px;
}
.icon-password {
    background: url('../img/icon-password.svg')  no-repeat center center / contain; 
}
.icon-email {
    background: url('../img/icon-email.svg')  no-repeat center center / contain; 
}

.link-back-login {
    color: var(--voltera-white);
    display: block;
    text-align: right;
    font-size: 16px;
    font-weight: 700;
    margin: 30px 0 0;
}
.link-back-login:hover {
    text-decoration: none;
    color: var(--voltera-blue);
}

/*  dashboard   */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 30px 13px 30px 0;
}

.sidebar-nav-new {
    padding-left: 0;
}
.sidebar-sticky {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 26px 10px 10px 0;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    background: rgba(217,217,217,.1);
    height: 100%;
}
.sidebar-sticky .navbrand-logo {
    width: 100px;
    margin: 0 0 0 30px;
}
.sidebar-sticky .navbrand-logo img {
    filter: brightness(0) invert(1);
}
.navbar-toggler {
    display: none;
}

.sidebar-sticky .navbar {
    padding: 0 0 0 10px;
    background: rgba(217,217,217,.1);
}
.list-group-profile-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.navbar .list-group-profile-nav .nav-item {
    padding: 0;
    border: 0;
}
.list-group-profile-nav .nav-item a {
    font-size: 14px;
    color: #F0F2F5;
    padding: 10px 16px;
    border-radius: 5px;
    width: 100%;
    display: block;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}
.list-group-profile-nav .nav-item a:hover,
.list-group-profile-nav .nav-item.active a {
    text-decoration: none;
    -webkit-box-shadow: 4px 4px 8px 0 rgba(0,0,0,.1);
    box-shadow: 4px 4px 8px 0 rgba(0,0,0,.1);
    background: rgba(138, 43, 226, 0.2);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.breadcrumb {
    padding: 0;
    margin: 0;
    background: transparent;
    border-radius: 0;
}
.breadcrumb-item,
.breadcrumb-item a,
.breadcrumb-item.active {
    color: var(--voltera-white);
}
.breadcrumb-item {
    font-size: 14px;
}

.dashboard-header-left-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.dashboard-header-left-content h4,
.dashboard-header-left-content h6 {
    font-weight: 700 ;
    text-wrap: nowrap;
    margin: 0;
    line-height: 1;
}

.dashboard-header-right-content {
    display: flex;
    align-items: center;
    gap: 15px;
}
.user-profile-header-img-wrapper {
    display: flex;
    object-fit: cover;
    width: 41px;
    height: 41px;
    flex: 0 0 41px;
    border-radius: 100%;
    overflow: hidden;
}
.user-profile-header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-control {
    background: #F4F7FE;
    color: #8F9BBA;
    border: 1px solid transparent;
    font-size: 14px;
    padding: 9px 15px;
    height: auto;
    border-radius: 25px;
}
.form-control:focus {
    border-color:var(--voltera-purple);
    box-shadow: 0 0 0 0.2rem rgba(138, 43, 226, 0.25) ;
}
.btn-submit-search {
    width: 11px;
    height: 11px;
    background: transparent;
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 15px;
    top: 14px;
}

.form-group-search {
    position: relative;
    flex: 0 0 214px;
}
.form-group-search .form-control {
    padding: 9px 15px 9px 30px;
}
.btn-transparent.dropdown-toggle {
    padding: 0;
    border-color: transparent;
    
}
.btn-transparent.dropdown-toggle:hover,
.btn-transparent.dropdown-toggle:focus {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}
.btn-transparent.dropdown-toggle svg path{
    fill: var(--voltera-muted-text);
    transition: all .3s ease-in-out;
}
.btn-transparent.dropdown-toggle:hover svg path,
.btn-transparent.dropdown-toggle:focus svg path {
    fill: var(--voltera-purple);
    transition: all .3s ease-in-out;
}
.btn-transparent.dropdown-toggle::after {
    display: none;
}

.dashboard-card {
    padding: 15px;
    background: rgba(217,217,217,.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 0 30px;
}
.dashboard-card.dashboard-card-announcement {
    padding: 30px;
}
.dashboard-card-announcement-slider-item {
    width: 100%;
    max-width: 50%;
    border-left: 1px solid var(--voltera-white);
    display: flex;
    flex-direction: column;
    padding-left: 30px;
    gap: 30px;
    /*background: url('../img/noise-texture-background.png') no-repeat center center / cover;*/
}
.dashboard-card-announcement-slider-item h5,
.dashboard-card-announcement-slider-item h6,
.dashboard-card-announcement-slider-item p {
    font-weight: 400;
    margin: 0;
}
.dashboard-card-announcement-slider-item h5 span {
     color: var(--voltera-red);
}
.dashboard-card-announcement-slider-item h6 {
    color: var(--voltera-blue);
}

.dashboard-card-announcement-slider .slick-arrow {
  position: absolute; 
  bottom: 0;
  width: 120px;
  height: 38px;
  z-index: 99;
  text-indent: 0;
  padding: 0;
  border-radius: 15px;
  border: 4px solid var(--voltera-white);
  font-size: 15px;
  color: var(--voltera-white);
  text-transform: uppercase;
  overflow: hidden;
}
.dashboard-card-announcement-slider .slick-prev {
    background: transparent;
    right: 165px;
    left: inherit;
}
.dashboard-card-announcement-slider .slick-next {
   background: transparent;
   right: 15px;
}

.dashboard-card-announcement-slider .slick-arrow::before {
    content: '';
    display: block;
    width: 11px;
    height: 18px;
    position: absolute;
    top: 6px;
}
.dashboard-card-announcement-slider .slick-prev::before {
    background: url('../img/arrow-slide-shape-prev.svg')  no-repeat left center / contain;
    left: 5px;
}
.dashboard-card-announcement-slider .slick-next::before {
   background: url('../img/arrow-slide-shape-next.svg')  no-repeat right center / contain;
   right: 5px;
}

.dashboard-card::after {
    content: '';
    width: 50%;
    height: 100%;
    display: block;
    position: absolute;
    background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.65) 0%, rgba(232, 92, 13, 0) 73%);
}
.dashboard-card-announcement::after {
    top: 0;
    right: 0;
}

.dashboard-card h6.card-title {
    font-weight: 700;
    font-size: 20px;
    margin: 0;
}
.btn-view-all {
    background: var(--voltera-white);
    color: var(--voltera-purple);
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 8px 15px;
    border-radius: 30px;
    margin: 0;
    transition: all .3s ease-in-out;
}
.btn-view-all:hover {
    background: var(--voltera-purple);
    color: var(--voltera-white);
    border-color: var(--voltera-white);
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.dashboard-card .card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 15px;
}

.profile-img-wrapper {
    display: flex;
    object-fit: cover;
    width: 66px;
    height: 66px;
    border-radius: 12px;
    overflow: hidden;
}
.profile-img-x12 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* General Table Styles */
.custom-table-x12 {
    color: var(--voltera-white);
}

.custom-table-x12 td {
    vertical-align: middle;
    padding: 12px 10px;
}


/* User Info */
.custom-table-x12 .user-info {
    font-size: 16px;
    color: var(--voltera-muted-text);
    line-height: 1.2;
}

.custom-table-x12 .user-info strong {
    display: block;
    font-weight: 700;
}

.custom-table-x12 .user-info span {
    display: block;
    font-size: 14px;
    color: #A3AED0;
}

/* Score Styling */
.custom-table-x12 .score {
    color: var(--voltera-purple);
    font-weight: 700;
    font-size: 16px;
}

/* Icon Button */
.custom-table-x12 .icon .sort-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.custom-table-x12 .icon svg {
    width: 13px;
    height: 15px;
    fill: var(--voltera-purple);
}

/* Time Styling */
.custom-table-x12 .time {
    color: #A3AED0;
    font-size: 16px;
}

/* Highlighted Row Background */
.custom-table-x12 tbody tr:first-child {
    background: rgba(217,217,217,.1);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

/* Other Rows Background */
.custom-table-x12 tbody tr:not(.highlighted-row):hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: background 0.3s ease;
}
.custom-table-x12 tbody tr:first-child .user-info strong{
    color: var(--voltera-purple);
}
.table-responsive {
    position: relative;
    z-index: 10;
}

.table-radius tbody tr td:first-child{
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.table-radius tbody tr td:last-child{
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.custom-table-rapid-profit th,
.custom-table-rapid-profit td {
    font-size: 14px;
    font-weight: 400;
}
.custom-table-rapid-profit th,
.custom-table-rapid-profit.table thead th {
    color: var(--voltera-white);
}
.custom-table-rapid-profit td  {
    color: var(--voltera-muted-text);
}
.custom-table-rapid-profit tbody tr:first-child,
.custom-table-rapid-profit tbody tr:nth-child(2),
.custom-table-rapid-profit tbody tr:nth-child(3),
.custom-table-rapid-profit tbody tr:nth-child(4),
.custom-table-rapid-profit tbody tr:nth-child(5) {
    background: rgba(217,217,217,.1);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.custom-table-rapid-profit tbody tr.spacer-row {
    background: transparent;
    box-shadow: none;
}



.profile-img-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.custom-table-rapid-profit td {
    vertical-align: middle;
    padding: 5px;
}
.custom-table-rapid-profit .profile-img-wrapper {
    width: 30px;
    height: 30px;
    border-radius: 100%;
}

.custom-table-rapid-profit td .profile-img-title-wrapper {
    color: var(--voltera-white);
}

.custom-table-rapid-profit tbody tr:first-child td,
.custom-table-rapid-profit tbody tr:nth-child(2) td,
.custom-table-rapid-profit tbody tr:nth-child(3) td,
.custom-table-rapid-profit tbody tr:nth-child(4) td,
.custom-table-rapid-profit tbody tr:nth-child(5) td {
    color: var(--voltera-purple);
}
.custom-table-rapid-profit tbody tr:first-child td .profile-img-title-wrapper,
.custom-table-rapid-profit tbody tr:nth-child(2) td .profile-img-title-wrapper,
.custom-table-rapid-profit tbody tr:nth-child(3) td .profile-img-title-wrapper,
.custom-table-rapid-profit tbody tr:nth-child(4) td .profile-img-title-wrapper,
.custom-table-rapid-profit tbody tr:nth-child(5) td .profile-img-title-wrapper {
    color: var(--voltera-purple);
}

.custom-table-rapid-profit thead th {
    background: rgba(217,217,217,.1);
}
.custom-table-rapid-profit thead tr {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.internal-table-responsive .custom-table-rapid-profit  td {
    padding-top: 10px;
    padding-bottom: 10px;
}
.dashboard-x1216 .internal-table-responsive .custom-table-rapid-profit tbody tr:nth-child(2) {
    background: none;
    box-shadow: none;
}
.dashboard-x1216 .internal-table-responsive .custom-table-rapid-profit tbody tr:first-child:hover , 
.dashboard-x1216 .internal-table-responsive .custom-table-rapid-profit tbody tr:nth-child(2):hover , 
.dashboard-x1216 .internal-table-responsive .custom-table-rapid-profit tbody tr:nth-child(3):hover , 
.dashboard-x1216 .internal-table-responsive .custom-table-rapid-profit tbody tr:nth-child(4):hover , 
.dashboard-x1216 .internal-table-responsive .custom-table-rapid-profit tbody tr:nth-child(5):hover ,
.internal-table-responsive .custom-table-rapid-profit  tbody tr:hover {
    background: rgba(138, 43, 226, 0.1) ;
     box-shadow: none;
     border-radius: 0;
}

.bank-statement-table tr {
    border-bottom: 1px solid rgba(138, 43, 226, 0.1) ;
}


.dashboard-card-rapid-profit .card-head {
    margin: 0;
    padding: 10px 10px 15px;
    background: rgba(217,217,217,.1);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.c-tooltip {
    position: relative;
    top: 0;
    right: inherit;
    padding-right: 20px;
    z-index: 20;
    display: inline-block;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    padding: 0;
    border: 0;
}
.tooltip-content {
    visibility: hidden;
    width: 210px;
    box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
    background: #333;
    color: var(--voltera-white);
    text-align: center;
    border-radius: 12px;
    padding: 8px 14px;
    position: absolute;
    z-index: 1;
    bottom: 20px;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s;
}
.c-tooltip:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
}

.dashboard-card p.card-title {
    margin: 0;
    font-size: 12px;
    color: var(--voltera-purple);
}
.dashboard-card-progress::after,
.dashboard-current-internet-speed::after {
    display: none;
}

.rank-img-wrapper {
    display: flex;
    object-fit: cover;
    width: 100px;
    height: 60px;
    overflow: hidden;
}

.current-net-speed-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dashboard-current-internet-speed .card-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
}
.dashboard-current-internet-speed .card-content p {
    margin: 0;
    color: var(--voltera-purple);
    font-size: 12px;
}

.rank-status-wrapper {
    display: flex;
    gap: 15px;
}
.dashboard-card-progress .card-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.rank-status-wrapper .left-content,
.rank-status-wrapper .right-content {
    max-width: 50%;
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.rank-status-wrapper .left-content h6,
.rank-status-wrapper .right-content h6 {
    font-weight: 400;
    color: var(--voltera-white);
    font-size: 16px;
    margin: 0;
}
.rank-status-wrapper .left-content p,
.rank-status-wrapper .right-content p {
    color: var(--voltera-muted-text);
    font-size: 12px;
    margin: 0;
}

.special-grid-margin-bottom .col-md-6 {
    margin-bottom: 30px;
}
.special-grid-margin-bottom .dashboard-card {
    margin-bottom: 0;
    height: 100%;
}

.flag-img-wrapper {
    display: flex;
    object-fit: cover;
    width: 24px;
    height: 24px;
    overflow: hidden;
}
.flag-img-x12 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-x1216 .custom-table-rapid-profit thead th {
    background: none;
}

.dashboard-x1216 .custom-table-rapid-profit tbody tr:first-child, 
.dashboard-x1216 .custom-table-rapid-profit tbody tr:nth-child(2), 
.dashboard-x1216 .custom-table-rapid-profit tbody tr:nth-child(3), 
.dashboard-x1216 .custom-table-rapid-profit tbody tr:nth-child(4), 
.dashboard-x1216 .custom-table-rapid-profit tbody tr:nth-child(5) {
    background: none;
    box-shadow: none;
}
.dashboard-x1216 .custom-table-rapid-profit tbody tr:nth-child(2) {
    background: rgba(138, 43, 226, 0.1) ;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}
.dashboard-x1216 .custom-table-rapid-profit thead tr {
    box-shadow: none;
}

.dashboard-x1216 .custom-table-rapid-profit tbody tr:first-child td, 
.dashboard-x1216 .custom-table-rapid-profit tbody tr:nth-child(2) td, 
.dashboard-x1216 .custom-table-rapid-profit tbody tr:nth-child(3) td, 
.dashboard-x1216 .custom-table-rapid-profit tbody tr:nth-child(4) td, 
.dashboard-x1216 .custom-table-rapid-profit tbody tr:nth-child(5) td {
    color: var(--voltera-muted-text);
}
.dashboard-x1216 .custom-table-rapid-profit tbody tr td:first-child {
    font-weight: 700;
}

.dashboard-x1216.dashboard-card::after {
    right: 0;
}


.special-grid-margin-bottom .col-lg-3 {
    margin-bottom: 15px;
}

.dashboard-card-volume {
    display: flex;
    flex-direction: row;
    position: relative;
    height: 100%;
    margin: 0;
    gap: 10px;
}
.dashboard-card-volume.dashboard-card-volume-adjust {
    margin: 0 0 30px;
    flex-direction: column;
    height: auto;
}
.dashboard-card-volume.dashboard-card::after {
    display: none;
}
.dashboard-card-volume .card-icon-holder {
    background: #F4F7FE;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    flex: 0 0 56px;
    max-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dashboard-card-volume .card-content-holder {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.dashboard-card-volume .card-content-holder p,
.dashboard-card-volume .card-content-holder h6 {
    margin: 0;   
}
.dashboard-card-volume .card-content-holder h6 {
    color: var(--voltera-purple);
    font-weight: 700;
    font-size: 24px;
}
.dashboard-card-volume .card-content-holder p {
    color: var(--voltera-muted-text);
    font-size: 14px;
    font-weight: 500;
}
.dashboard-card-volume .card-content-holder span {
    color: var(--voltera-muted-text);
    font-size: 12px;
    font-weight: 400;
}
.dashboard-card-volume .card-content-holder span .green {
    color: var(--voltera-green);
    font-weight: 700;
}

.card-course-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 20px;
    height: 205px;
    overflow: hidden;
}
.course-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-users-img-wrapper {
    display: flex;
    object-fit: cover;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 2px solid var(--voltera-white);
    overflow: hidden;
}
.course-users-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-course-list-head-right {
    position: relative;
    height: 30px;
    width: 75px;
}
.card-course-list-head-right p {
    position: absolute;
    top: 7px;
    right: 7px;
    z-index: 2;
    color: var(--voltera-purple);
    font-size: 10px;
    font-weight: 700;
    margin: 0;
}
.card-course-list-head-right .course-users-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
}
.card-course-list-head-right .course-users-img-wrapper + .course-users-img-wrapper {
    left: 15px;
}
.card-course-list-head-right .course-users-img-wrapper + .course-users-img-wrapper + .course-users-img-wrapper {
    left: 30px;
}
.card-course-list-head-right .course-users-img-wrapper + .course-users-img-wrapper + .course-users-img-wrapper + .course-users-img-wrapper {
    left: inherit;
    right: 0;
}

.card-course-list-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.card-course-list-head-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.card-course-list-head-left p.course-title {
    margin: 0;
    color: var(--voltera-purple);
    font-size: 18px;
}
.card-course-list-head-left span {
    margin: 0;
    color: var(--voltera-muted-text);
    font-size: 14px;
}

.card-course-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-course-footer .course-released-date {
    font-size: 14px;
    font-weight: 700;
    color: var(--voltera-purple);
    margin: 0;
}
.card-course-footer .btn {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    border-radius: 20px;
    padding: 9px 15px;
    border: 1px solid transparent;
    background: transparent;
}
.card-course-footer .btn-blue {
    font-weight: 700;
    background: var(--voltera-blue);
    border-color: var(--voltera-blue);
    color: var(--voltera-white);
}
.card-course-footer .btn-blue:hover {
    background: var(--voltera-white);
    border-color: var(--voltera-blue);
    color: var(--voltera-blue);
}
.card-course {
    gap: 30px;
}
.card-course.dashboard-card::after {
    display: none;
}


.page-subtitle {
    margin: 30px 0;
}

.nav-tabs {
    justify-content: center;
    border: 0;
    margin: 0 0 30px;
    gap: 2.5px
}
.nav-tabs .nav-link {
    font-size: 14px;
    font-weight: 400;
    padding: 10px;
    color: var(--voltera-muted-text);
    border: 0;
    border-bottom: 1px solid var(--voltera-muted-text);
    background: transparent;
}
.nav-tabs .nav-link.active, 
.nav-tabs .nav-item.show .nav-link {
    color: var(--voltera-purple);
    border-color: var(--voltera-purple);
    background: transparent;
    outline: none;
}

.btn-logout {
    margin: auto 15px 30px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    border-radius: 20px;
    color: var(--voltera-white);
    padding: 10px 15px;
    border: 1px solid transparent;
    background: var(--voltera-purple); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}
.btn-logout:hover {
    background: var(--voltera-blue); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    border-color: transparent;
    color: var(--voltera-white);
}

.progress-bar {
    background-color: var(--voltera-green);
}

@media screen and (max-width: 992px) {
    .header {
        position: relative;
        z-index: 99;
    }
    .navbar-toggler {
        display: flex;
        order: 4;
        height: 30px;
        width: 25px;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
        border: 0;
        align-items: center;
    }
    .sidebar-sticky .navbrand-logo,
    .navbrand-logo {
        margin: 0;
        order: 1;
    }
    .btn-logout,
    .header-button-wrapper {
        order: 3;
        margin-left: auto;
    }
    .navbar {
        
    }
    .navbar-collapse {
        order: 2;
        position: fixed;
        width: 100%;
        left: 0;
        top: 128px;
        background: #333;
    }
    .sidebar-sticky .navbar {
        background: #333;
    }
    
    .dashboard-header {
        flex-direction: column;
    }
    
    .sidebar-nav-new {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0;
        border-radius: 0;
        z-index: 99;
        position: relative;
        
    }
    .sidebar-sticky {
        gap: 15px;
        padding: 15px;
        flex-direction: row;
        align-items: center;
        border-radius: 0;
    }
    .navbar-toggler-icon {
        width: 25px;
        height: 3px;
        position: relative;
        background: var(--voltera-muted-text);
    }
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        width: 25px;
        height: 3px;
        position: absolute;
        left: 0;
        background: var(--voltera-muted-text);
        display: block;
    }
    .navbar-toggler-icon::before {
        top: -8px;
    }
    .navbar-toggler-icon::after {
        bottom: -8px;
    }
    
    .dashboard-main-wrapper .col-md-3 + .col-md-9 {
        max-width: 100%;
        flex: 0 0 100%;
        position: relative;
        z-index: 2;
    }
    
    .dashboard-main-wrapper {
        width: 100%;
        overflow: hidden;
    }
}

/*.dashboard-card-rapid-profit .card-content {*/
/*    padding: 0 0 10px;*/
/*}*/
/*
a:hover {
    text-decoration: none;
}
.bg-gray {
    background: #44425A;
}
.bg-gray-light {
    background: rgba(68, 66, 90, .2);
}

.btn-primary-outline {
    color: var(--voltera-red);
    background-color: transparent;
    border-color: var(--voltera-red);
}
.btn-primary-outline:hover {
    color: var(--voltera-white);
    background-color: var(--voltera-red);
    border-color: var(--voltera-red);
}
.header-button-wrapper .btn-primary-outline {
    margin-left: 5px;
}
.header-button-wrapper p {
    margin: 0;
}

.course-item .course-title {
    min-height: 54px;
    display: block;
}
.course-item-img {
    overflow: hidden;
    display: block;
}
.course-item-img img {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.course-item-img:hover img {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;

    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}*/

/*  course single   */
/*
.course-top-wrapper {
    padding: 30px;
    position: relative;
    border-radius: 15px;
    display: block;
}
.course-top-wrapper .col-lg-3 {
    display: flex;
    justify-content: center;
}
.course-top-wrapper .row {
    align-items: center;
}
.course-details-wrapper {
    display: flex;
    width: 100%;
    padding: 45px 0;
    flex-direction: column;
}
.course-details-wrapper .static-block {
    margin: 0 0 30px;
}
.course-details-wrapper .static-block h4 {
    margin: 0 0 15px;
}
.course-details-wrapper .static-block p {
    margin: 0;
}
.btn-full-width {
    width: 100%;
}

.course-single-teacher-block .team-social {
    margin: 15px 0 0;
}

.course-video-list-wrapper {
    padding: 30px;
    border: 1px solid rgba(0, 26, 169, .1);
    border-radius: 15px;
}
.nav-course-video-list .nav-item:last-child a {
    border-bottom: 0;
}
.nav-course-video-list a {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 26, 169, .1);
}
.nav-course-video-list .course-video-status {
    background: rgba(0, 26, 169, .1);
    border-radius: 100%;
    font-size: 14px;
    width: 30px;
    height: 30px;
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-course-video-list .course-video-status.opened {
    background: rgba(76,175,80,.12);
    color: #4caf50;
}
.nav-course-video-list .fa-play {
    margin-right: 15px;
    transition: all .3s ease-in-out;
}
.nav-course-video-list .nav-item a:hover .fa-play {
    margin-right: 5px;
    transition: all .3s ease-in-out;
}
.nav-course-video-list .time {
    color: #2196f3;
    margin-left: 5px;
}*/

/* Comments */
/*
.media .media-body {
    padding: 15px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.02);
}*/

/* Network */
.tree {
    text-align: center;
    margin-top: 30px;
}
.node {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    position: relative;
    margin: 20px;
}
.node::before,
.node::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    border-top: 1px solid #6C6A74;
    width: 50%;
    height: 20px;
}

.last-row-network .node::before,
.last-row-network .node::after {
    top: -20px;
    bottom: inherit;
}

.node::before {
    left: auto;
    right: 50%;
    border-right: 1px solid #6C6A74;
}
.node::after {
    border-left: 1px solid #6C6A74;
}
.node:first-child::before,
.node:last-child::after {
    border: 0 none;
}
.node:first-child::after {
    border-left: 1px solid #6C6A74;
}
.node:last-child::before {
    border-right: 1px solid #6C6A74;
}
.node .content {
    padding: 10px;
    border: 1px solid var(--voltera-blue);
    border-radius: 0;
    /*background-color: var(--voltera-white);*/

    background: var(--voltera-card);

    color: var(--voltera-white);
    min-width: 80px;
    transition: all .3s ease-in-out;
    
    
  /*  aspect-ratio: 1;*/
  /*--o:calc(50%*tan(-22.5deg));*/
  /*clip-path: polygon(*/
  /*  var(--o) 50%,*/
  /*  50% var(--o),*/
  /*  calc(100% - var(--o)) 50%,*/
  /*  50% calc(100% - var(--o))*/
  /*);*/


}
.node .content:hover {
    background: var(--voltera-blue);
    border-color: var(--voltera-purple);
    transition: all .3s ease-in-out;
}

.node.node-empty-user {
    display: none;
}
.node.node-signup-user .content {
    border-color: var(--voltera-yellow);
}
.node.node-signup-user:hover .content {
    background-color: var(--voltera-white);
}

.node .icon {
    font-size: 44px;
    margin-bottom: 5px;
}
.node .name {
    font-weight: bold;
}
.node .description {
    font-size: 12px;
}

.second-row-network .col-6:first-child::before {
    content: '';
    top: 0;
    left: 50%;
    width: 100%;
    height: 1px;
    background: #6C6A74;
    position: absolute;
    display: block;
}

.second-row-network .line-network {
    width: 50%;
    left: 25%;
    height: 1px;
    background: #6C6A74;
    display: block;
    position: absolute;
}

.third-row-network .node::after,
.second-row-network .node::after {
    top: -20px;
    bottom: inherit;
}

.third-row-network .line-network {
    width: 50%;
    height: 1px;
    background: #6C6A74;
    display: block;
    position: absolute;
    left: 30%;
}

.node a {
    color: var(--voltera-white);
}

.wallstreet-academy-logo {
    display: block;
    width: 93px;
    height: 100px;
    background: url('../img/wallstreet-logo.png') no-repeat center center / contain;
}

.list-group-profile-nav {
    list-style: none;
    text-align: left;
    padding: 0;
}
.list-group-profile-nav .nav-item {
    padding: 5px 0;
    border-bottom: 1px solid rgba(40, 56, 145, .1);
}
.list-group-profile-nav .nav-item:last-child {
    border: 0;
}
.node:first-child::after {
    border-top: 0;
}

.table thead th {
    color: #283891;
}
.table th, .table td {
    border-color: rgba(40, 56, 145, .1);
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(40, 56, 145, .1);
}

.section-bundle-wrapper .card-footer {
    background: #001aa9;
    display: flex;
    justify-content: space-between;
}
.section-bundle-wrapper .card-footer h3 {
    margin: 0;
    color: var(--voltera-white);
    display: flex;
    align-items: flex-start;
}
.section-bundle-wrapper .card-footer h3 span {
    font-size: 50%;
}
.price-before {
    text-decoration: line-through;
    text-decoration-color: #da0b4e;
}

.section-bundle-wrapper .card-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: pre-wrap;
    min-height: 50px;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}
.section-title {
    margin-bottom: 30px;
}
.section-title > div {
    min-width: 100px;
}
.bg-gray {
    background: #f8f8f8;
}
.section-bundle-wrapper .card-title,
.section-bundle-wrapper .card-title:hover {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}
.section-bundle-wrapper .card-title:hover {
    color: var(--voltera-red);
}

.bg-blue-light {
    background: #283891;
}
.bg-primary-light {
    background: rgba(0, 26, 169, .2);
}

.btn-dark-red {
    background: var(--voltera-red);
    color: var(--voltera-white);
    border: 1px solid var(--voltera-red);
    padding: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 14px;
    
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}
.btn-dark-red:hover {
    background: transparent;
    color: var(--voltera-red);
    border-color: var(--voltera-red);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}


.dashboard-x1216-adjust::after {
    display: none;
}
.btn-primary-blue {
    background: var(--voltera-purple);
    border-color: var(--voltera-purple);
    color: var(--voltera-white);
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    transition: all .3s ease-in-out;
}
.btn-primary-blue:hover {
    transition: all .3s ease-in-out;
    background: var(--voltera-white);
    border-color: var(--voltera-purple);
    color: var(--voltera-purple);
}
.form-style-1 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-style-1 label {
    font-size: 14px;
    color: var(--voltera-white);
    margin: 0;
}
.form-style-1 .form-control {
    border: 1px solid var(--voltera-blue);
    padding: 12px 16px;
    border-radius: 8px;
}
.form-style-1 .form-group {
    margin: 0 0 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bank-statement-table.dashboard-x1216.dashboard-card::after {
    display: none;
}
.last-row-network .node {
    margin: 20px 0;
}

.single-course-content.dashboard-card h6.card-title {
    color: var(--voltera-purple);
    font-family: "Almarai", sans-serif;
}

.dashboard-card iframe {
    min-height: 400px;
}

.nav-course-video-list {
    gap: 5px;
}
.nav-course-video-list a {
    color: var(--voltera-white);
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: "Almarai", sans-serif;
    font-weight: 300;
}
.courses-list .dashboard-header-left-content {
    margin: 0 0 30px;
}
.categories-list .about-card-img-wrapper {
    border-radius: 20px;
    height: 250px;
    overflow: hidden;
}
.categories-list .about-card-img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.categories-list .about-card {
    gap: 15px;
    margin: 0 0 30px;
}
.categories-list .about-card:hover {
    text-decoration: none;
}
.categories-list .about-card:hover {
    background: var(--voltera-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.categories-list .about-card,
.categories-list .about-card:hover {
    transition: all .3s ease-in-out;
}
.dashboard-card-signup::after {
    display: none;
}
.dashboard-card-signup .contact-form {
    max-width: 100%;
    padding: 15px;
    box-sizing: border-box;
}
.form-group label a {
    color: var(--voltera-yellow);
}
@media screen and (max-width: 992px) {
    .header-button-wrapper {
        margin-right: 5px;
    }
}

@media screen and (max-width: 768px) {
    .contact-form.p-5 {
        padding: 1rem !important;
    }
    .dashboard-header-right-content {
        margin-top: 15px;
    }
}

@media screen and (max-width: 600px) {
    .third-row-network,
    .last-row-network {
        display: none;
    }


    .second-row-network .line-network {
        display: none;
    }
}
