:root {
    --sidebar-width: 300px;
    --primary: #76bd3b;
    --dgrey:#4e6870;
    --bg: #f5f0fa;
    --dark-bg: #0f172a;
    --dark-card: #020617;
    --dark-text: #e5e7eb;
}

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background: #eeeeee;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4 {
    font-family: "Lexend", sans-serif;
}

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

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

button:focus {
    outline: 0;
    box-shadow: none;
}

.uppercase {
    text-transform: uppercase;
}

.font-700 {
    font-weight: 700;
}

.font-600 {
    font-weight: 600;
}

.font-500 {
    font-weight: 500;
}

.font-400 {
    font-weight: 400;
}

.font-300 {
    font-weight: 300;
}

.clr_primary{
 color:var(--primary);
}
.clr_black{
 color:#000000;
}

.clr_blue {
    color: #0d6efd;
}

.clr_dgrey {
    color: var(--dgrey);
}

.clr_grey {
    color: #696969;
}

.footer_clr {
    color: #8e97a4;
}
.upload_color {
    color: rgb(18 18 36 / 50%) !important;
}

.font_50 {
    font-size: 50px;
}

.font_48 {
    font-size: 48px;
}

.font_38 {
    font-size: 38px;
}

.font_34 {
    font-size: 34px;
}

.font_28 {
    font-size: 28px;
}

.font_26 {
    font-size: 26px;
}

.font_24 {
    font-size: 24px;
}

.font_20 {
    font-size: 20px;
}

.font_18 {
    font-size: 18px;
}

.font_16 {
    font-size: 16px;
}

.font_14 {
    font-size: 14px;
}
.font_12 {
    font-size: 12px;
}

.theme_btn {
    background: var(--primary) !important;
    height: 50px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
}

.form-control {
    height: 50px;
    font-size: 16px;
    color: #4e6870;
    font-weight: 500;
    border-radius: 5px !important;
}

.form-control::placeholder {
    color: #4e6870;
}

body.dark {
    background: var(--dark-bg);
    color: var(--dark-text);
}

body.dark .navbar,
body.dark .sidebar,
body.dark .card,
body.dark .dropdown-menu {
    background: var(--dark-card) !important;
    color: var(--dark-text);
}

body.dark .nav-link,
body.dark .navbar-brand,
body.dark .sidebar a {
    color: #c7d2fe;
}

body.dark .sidebar a.active,
body.dark .sidebar a:hover {
    background: #2563eb;
    color: #fff;
}

body.dark .dropdown-item {
    color: #e5e7eb;
}
body.dark .dropdown-item:hover {
    background: #1e293b;
}

/*header*/

.header {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 9999;
}

.header nav.navbar.navbar-expand-lg {
    padding: 15px 0;
}

.header .navbar .navbar-nav li a {
    padding: 8px 14px;
    border-radius: 10px;
    color: #4e6870;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 16px;
}

.header .navbar .navbar-nav li .nav-link.active {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-radius: 5px !important;
}

.header_search {
    position: absolute;
    width: calc(100% - var(--sidebar-width));
    top: 70px;
    margin-left: var(--sidebar-width);
}

.header .navbar .navbar-brand img {
    width: 170px;
}

/*header_close*/
.stock-section {
    min-height: auto;
    background: linear-gradient(180deg, #000001 0%, #293f17 100%);
    color: #fff;
    position: relative;
    padding: 30px 20px;
    border-radius: 5px;
}
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}

.btn-light.social-btn {
    display: flex;
    column-gap: 12px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    min-height: 50px !important;
    font-weight: 600;
}

.btn-light.social-btn svg {
    width: 26px;
}

.btn-light.social-btn i {
    font-size: 28px;
}

.divider {
    position: relative;
    font-size: 16px;
    color: #ffffff;
    width: 100%;
}

.divider:after {
    content: "";
    position: absolute;
    width: calc(50% - 20px);
    height: 1px;
    background: #f8f9fa;
    right: 0;
    top: 11px;
}

.divider:before {
    content: "";
    position: absolute;
    width: calc(50% - 20px);
    height: 1px;
    background: #f8f9fa;
    left: 0;
    top: 11px;
}

/*sidebar*/
main {
    width: 100%;
    position: relative;
}

.sidebar {
    position: fixed;
    top: 80px;
    left: 0;
    width: var(--sidebar-width);
    height: calc(100vh - 80px);
    background: #ffffff;
    padding: 25px 15px;
    transition: 0.3s ease;
    overflow-y: auto;
    z-index: 999;
    border-radius: 0;
    box-shadow: var(--bs-box-shadow-sm) !important;
}
.sidebar a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 5px;
    color: #4e6870;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 16px;
}

.sidebar a.active,
.sidebar a:hover {
    background: var(--primary) !important;
    color: #fff !important;
}
.sidebar-collapsed .sidebar {
    transform: translateX(-100%);
    left: 0;
}

.sidebar .nav.nav-pills.flex-column .dropdown-menu.show {
    position: relative !important;
    top: 0 !important;
    transform: translate(0px, 0px) !IMPORTANT;
    border: 0 !important;
    padding: 0 !important;
    padding-left: 28px !important;
}

.sidebar .nav.nav-pills.flex-column .dropdown-menu .dropdown-item {
    padding: 4px 15px;
}
/*sidebar_close*/

/*visual_content*/

.visual_content {
    margin-left: var(--sidebar-width);
    padding: 30px;
    transition: 0.3s ease;
}
.sidebar-collapsed .visual_content {
    margin-left: 0;
}

/*visual_content_close*/

/*invester summary*/

.investor-summary {
    background: #ffffff;
    border-radius: 16px;
    padding: 15px;
}
/* CARD STYLE */
.summary-card {
    height: 100%;
    box-shadow: inset 0 0 10px rgb(245 241 255) !important;
    background: #f8f9fa !important;
}

.summary-card .label{
  color:#7c7c9a;
  font-size:14px;
  margin-bottom:4px;
}

.summary-card h3{
  font-weight:700;
  margin-bottom:10px;
}

/* BADGES */
.badge{
  padding:6px 12px;
  border-radius:20px;
  font-weight:600;
  font-size:13px;
}

.badge.up{
  background:#e8f8d9;
  color:#4caf50;
}

.badge.down{
  background:#ffe5e5;
  color:#e53935;
}

/*stock*/

.market-tabs .nav-link, .day-tabs .nav-link {
    color: #4e6870;
    padding: 4px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.market-tabs .nav-link.active, .day-tabs .nav-link.active {
    background: #76bd3b;
    color: #fff;
}
.market-list {
    border-radius: 0;
    overflow: hidden;
    height: 100%;
}
.market-head,
.market-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 10px 14px;
    font-size: 14px;
}
.market-head {
    background: #76bd3b;
    font-weight: 500;
    color: #ffffff;
    font-size: 14px;
}
.market-row {
    border-top: 1px solid #d6d6d6;
}
.market-row span:first-child {
    color: #76bd3b;
}

.market-row span {
    font-size: 14px;
    font-weight: 500;
    color: var(--dgrey);
}
.green {
    color: #00d084 !important;
}
.red {
    color: #ff4d4d !important;
}
.market-dashboard .chart-box {
    background: #ffffff;
    border-radius: 0;
    padding: 15px;
    border-left: 1px solid #d6d6d6;
}


.white_box {
    background: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgb(246 242 255);
}
.market-dashboard .head_sec{
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 10px;
    margin-bottom: 10px !important;
}


.market-news-section .news-list > li {
    border-top: 1px solid #d6d6d6;
    padding: 5px 10px;
    align-items: center;
}

.market-news-section .analysis-list > li {
    border-top: 1px solid #d6d6d6;
    padding: 10px 10px;
    display: flex;
    column-gap: 10px;
    align-items: center;
}

.market-news-section .analysis-list li img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.market-news-section .analysis-list li p {
    width: calc(100% - 50px);
    border-radius: 50%;
}


.market-news-section .numbered-news > li{
  border-top: 1px solid #d6d6d6;
  padding: 10px 10px;
  display: flex;
  column-gap: 10px;
}

.market-news-section .numbered-news li p {
    width: calc(100% - 50px);
    border-radius: 50%;
}

.market-news-section .numbered-news li span {
    width: 40px;
    height: 40px;
    background: #76bd3b;
    display: block;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.market-news-section .analysis-list li .content {
    width: calc(100% - 50px);
}
.market-news-section .nav.gap-3.align-items-center li {
    white-space: nowrap;
}

/*missed section*/

.comman_table table thead tr th {
    background: var(--primary) !IMPORTANT;
    font-weight: 500;
    color: #ffffff !important;
    font-size: 14px;
    padding: 12px 15px !IMPORTANT;
}

.comman_table table tbody tr td:first-child {
    color: var(--primary) !important;
}

.comman_table table tbody tr td {
    font-size: 14px;
    font-weight: 500;
    padding: 12px 15px !IMPORTANT;
    color: var(--dgrey);
}

.comman_table .rating.buy {
    background: #f1ebff;
    color: #76bd3b;
    padding: 3px 10px;
    border-radius: 5px;
}


/*education_page*/

.education_inner .educ_inn_left {
    position: sticky;
    top: 100px;
}

.education_inner .top-stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 10px;
    border: none;
}

.education_inner .top-stat .stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.education_inner .top-stat .stat-icon svg {
    width: 30px;
}
.education_inner .top-stat .icon-blue {
    background: #eef2ff;
    color: #4f46e5;
    fill:#4f46e5;
}
.education_inner .top-stat .icon-purple {
    background: #f3e8ff;
    color: #9333ea;
    fill: #9333ea;
}
.education_inner .top-stat .icon-orange {
    background: #fff7ed;
    color: #f97316;
    fill: #f97316;
}
.education_inner .top-stat .icon-red {
    background: #fee2e2;
    color: #ef4444;
    fill: #ef4444;
}




.tabs-wrapper {
    position: relative;
}

.tabs-wrapper .tabs-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    padding: 0 0px;
}


.tabs-wrapper .tabs-scroll::-webkit-scrollbar {
    display: none;
}

.tabs-wrapper .tab-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #76bd3b;
    color: #ffffff;
    border: 1px solid #76bd3b;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 26px;
    line-height: 17px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabs-wrapper .left-arrow {
    left: 0;
}

.tabs-wrapper .right-arrow {
    right: 0;
}

.tabs-wrapper .nav-pills .nav-link.active, .tabs-wrapper .nav-pills .show>.nav-link {
    color: #76bd3b;
    background-color: #f2edff;
    font-weight: 500;
}

.tabs-wrapper .nav-pills .nav-link {

    font-size: 16px;
    font-weight: 400;
    color: #76bd3b;

}

.tabs-wrapper .nav-pills .nav-link.active, .tabs-wrapper .nav-pills .show>.nav-link {
    color: #ffffff;
    background-color: #76bd3b;
    font-weight: 500;
}

.investing_education .info_sec {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.investing_education .info_sec img {
    width: 70px;
    height: 45px;
    object-fit: cover;
    border-radius: 5px;
}


.quant-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 10px;
}


.webinars .thumb_img img {
    width: 100px;
    height: 58px;
    object-fit: cover;
    border-radius: 5px;
}

.webinars .nav.flex-column > li .content {
    width: calc(100% - 115px);
}

.webinars .nav.flex-column > li {
    display: flex;
    align-items: center;
    column-gap: 15px;
    padding: 10px 0px;
    border-bottom: 1px solid #c7c8c9;
}



/*podcast_css*/

/* HERO */
.podcast_inner_inner .hero {
    background: linear-gradient(135deg, #76bd3b, #190a39);
    color: #fff;
    padding: 70px 20px 120px;
    text-align: center;
    border-radius: 5px;
}


/* PODCAST CARDS */
.podcast_inner_inner .podcast-cards {
    margin-top: -80px;
    padding: 0 100px;
}
.podcast_inner_inner .podcast-card {
  
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}
.podcast_inner_inner .podcast-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
    margin: auto;
    margin-bottom: 35px;
}
.icon-red { background:#ff4d4f; }
.icon-purple { background:#7c4dff; }
.icon-green { background:#22c55e; }


.podcast_inner_inner .platforms i {
    color: #000;
    margin-right: 8px;
}


/* PODCAST LIST */

.podcast_inner_inner .latest_podcast {
    padding: 0 100px;
}

.podcast_inner_inner .podcast-item {
    padding:10px 0px;
    border-bottom: 1px solid #eee;
}

.podcast_inner_inner .podcast-item .icon.badge.down {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.podcast_inner_inner .podcast-item:last-child {
    border-bottom: none;
}
.podcast_inner_inner .badge-soft {
    background: #e8f8dc;
    color: #76bd3b;
    font-size: 12px;
}


/* INFO BOX */
.podcast_inner_inner .info_section.pb-5 {
    padding: 0 100px;
}
.podcast_inner_inner .info_section ul li {
    margin-bottom: 10px;
}
.podcast_inner_inner .info_section i {
    color: #22c55e;
    margin-right: 8px;
}


/*video section*/

/* Top Alert */
.top-alert {
    background: linear-gradient(135deg, #76bd3b, #190a39);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 10px !important;
}

/* Video Cards */
.video-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.video-thumb{
    position:relative;
}

.video-thumb img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.video-body{
    padding:14px;
}



/* Small cards */
.small-thumb img {
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}
/* Premium */
.premium-card{
    background:linear-gradient(135deg,#3b3b3b,#1f1f1f);
    color:#fff;
    border-radius:14px;
    padding:20px;
    height:100%;
}


.minute_analysis .video-card {
  
    padding: 10px;
    height: 100%;
}

.minute_analysis .video-card .img img {
    width: 160px;
    height: 75px;
    object-fit: cover;
    border-radius: 5px;
}

.video_gub .nav.nav-tabs {
    margin-bottom: 0 !important;
    border-bottom: 1px solid #76bd3b;
    position: relative;
    width: 100%;
}

.video_gub .nav.nav-tabs .nav-item.show .nav-link, .video_gub .nav.nav-tabs  .nav-link.active {
    color: #ffffff;
    background-color: #76bd3b;
    border-color: var(--bs-nav-tabs-link-active-border-color);
    margin-bottom: 0;
}

.video_gub .nav.nav-tabs .nav-link {
    font-size: 16px;
    color: #76bd3b;
    font-weight: 500;
}

.text-warning {
    --bs-text-opacity: 1;
    color: rgb(118 189 59) !important;
}

.btn-outline-primary {
    --bs-btn-color: #76bd3b;
    --bs-btn-border-color: #76bd3b;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #76bd3b;
    --bs-btn-hover-border-color: #76bd3b;
    --bs-btn-focus-shadow-rgb: 13,110,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #76bd3b;
    --bs-btn-active-border-color: #76bd3b;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #76bd3b;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #76bd3b;
    --bs-gradient: none;
}