@import 'https://fonts.googleapis.com/css2?family=Anek+Telugu:wght@100..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap';

:root {
    --primary: #4ECDA4;
    --primary-hover: #3bc096;
    --secondary: #1D52CD;
    --secondary-dark: #3C3D48;
    --section-dark-bg: #00150F;
    --section-light-bg: #182C27;
    --text: #FFFFFF;
    --text-secondary: #989CA3;
    --light: #FFFFFF;
    --text-dark: #0C263A;
    --border-radius: 8px;
    --mave-bg: #2A3037
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: open sans, sans-serif !important;
    max-width: 100dvw;
    overflow-x: hidden;
}

/* HELPERS */
.container {
    min-width: 0 !important;
}

.custom-col {
    box-sizing: border-box !important;
    /* height: 100%; */
}

.title {
    font-family: anek telugu, sans-serif !important
}

.gray {
    color: var(--text-secondary) !important;
}

.light-gray {
    color: rgba(255, 255, 255, 0.7) !important;
}

.bg-dark {
    background-color: var(--section-dark-bg) !important;
}

.bg-light {
    background-color: var(--section-light-bg) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.col-sidebar {
    width: 250px;
}

.col-sidebar__backdrop {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99;
    backdrop-filter: blur(8px);
    display: none;
    background-color: rgba(0, 0, 0, 0.4);
}

.col-content {
    width: calc(100% - 250px);
}

.overflow-x-hidden {
    overflow-x: hidden !important;
}

/* COMPANY PAGE */
.company__main {
    padding: 40px 0;
    width: 100%;
    display: flex;
    height: fit-content;
    position: relative;
}

/* COMPANY SUMMARY */

.company-summary.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50px);
    transition: all 0.3s ease-in-out;
}

.company-summary.sticky.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.company__main .row {
    width: 100%;
}

.company-summary.sticky .container .row {
    max-width: calc(100% - 60px) !important;
    margin: 0 auto;
}

.company__image {
    padding: 40px 20px 40px 0;
}

.company-summary.sticky .company__image {
    padding: 20px 0;
}

.company__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border-radius: 10px;
}

.company-summary.sticky .company__image img {
    width: 80px;
}

.company-summary.sticky .company__main {
    padding: 0 !important;
}

.rating-text {
    color: var(--text-secondary) !important;
    font-size: 12px;
}

.company__add-btn {
    font-size: 18px;
    padding: 14px 36px !important;
    margin-right: 15px;
}

.company__add-btn svg {
    position: relative;
    top: -1px;
    left: -8px;
}

.company__menu {
    background-color: #132A24 !important;
    color: white !important;
    display: none;
}

.company__info {
    margin-bottom: 20px;
}

.company-summary.sticky .company__info {
    display: none;
}

.company__summary-info {}

.company__summary-info__item {
    width: auto;
    max-width: 200px;
    display: inline-block;
    margin: 0 30px 0 0;
}

.company__summary-info__item label {
    font-size: 14px;
}

.company__summary-info__item p {
    font-size: 24px;
    margin: 0;
}

.company__tabs__wrapper {
    position: sticky;
    top: 70px;
    z-index: 105;
}
.company__tabs, .company__tabs__wrapper {
    display: none;
    background-color: var(--section-dark-bg);
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none;
}
.company__tabs__wrapper::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}
.company__tabs a {
    width: auto;
    display: inline-block;
    white-space: pre;
    padding: 7px 15px;
    background-color: transparent !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
}
.company__tabs a.anchor-selected {
    border-left: none !important;
    border-bottom: 2px solid var(--primary) !important;
    background-color: transparent !important;
    color: white !important;
}

/* COMPANY SIDEBAR */
.company__sidenav {
    display: flex;
    flex-direction: column;
    position: sticky !important;
    top: 40px;
    border-radius: 10px;
    background-image: linear-gradient(120deg, #031A14 0%, #00150F 100%);
    position: relative;
    box-shadow: 0 12px 30px var(--section-dark-bg);
    padding: 10px 10px;
    height: fit-content !important;
    transition: top 0.3s ease;
}

.company__sidenav a {
    color: var(--light);
    font-size: 16px;
    text-decoration: none;
    padding: 10px 20px;
    border-bottom: 1px solid #043628;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid transparent;

}

.company__sidenav a:last-child {
    border-bottom: none;
}

.company__sidenav a.anchor-selected {
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--primary);
}

/* COMPANY CONTENT */
.company__content {
    padding: 0 20px;
}

.company__content__component {
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 30px;
    height: auto;
    overflow-x: auto;
}

.company__content__component__title {
    font-weight: 300;
}

.company__content__component__text {
    margin-top: 20px;
    margin-bottom: 0px;
    font-size: 16px;
}

/* COMPANY OVERVIEW */
.company__overview__info {
    font-size: 16px;
}

.company__overview__info strong {
    font-weight: 400;
}

.apexcharts-svg text {
    font-family: open sans, sans-serif !important;
    font-weight: 400 !important;
    font-size: 18px;
    fill: var(--light);
}

.apexcharts-zoom-icon.apexcharts-selected svg {
    fill: var(--primary) !important;
}

.apexcharts-menu {
    background: var(--section-light-bg) !important;
    border: none !important;
}

.axisWrapper circle:nth-child(odd) {
    fill: #162924 !important;
}

.axisWrapper circle:nth-child(even) {
    fill: #1f3a32 !important;
}

/* PRICE HISTORY & PERFORMANCE */
.price-history-filter-btn {
    border: 1px solid transparent !important;
    color: rgba(255, 255, 255, 0.6) !important;
    background: transparent;
}

.price-history-filter-btn.active {
    color: rgba(255, 255, 255, 1) !important;
}

.price-history-filter .dropdown-toggle {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.price-history-filter .dropdown-toggle .filter-option-inner-inner {
    color: rgba(255, 255, 255, 0.6) !important;
}

.price-history-filter .dropdown-menu {
    background: var(--section-light-bg) !important;
    color: var(--light) !important;
    box-shadow: 0 12px 30px var(--section-dark-bg);
    border: none !important;
}

.price-history-filter .bs-searchbox input,
.price-history-filter .dropdown-menu inner {
    background: transparent !important;
    color: var(--light) !important;
    box-shadow: 0 12px 30px var(--section-dark-bg);
    border: none !important;
}

.price-history-filter .bs-searchbox input:focus {
    outline: none;
    box-shadow: none !important;
}

.hidden {
    opacity: 0;
    transform: translateX(-50px); /* Start slightly off-screen */
  }
  
  .animate-slide-in {
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }
  
  .visible {
    opacity: 1;
    transform: translateX(0); /* Slide into position */
  }  

.price-history-filter .dropdown-item {
    color: var(--light) !important;
}

.price-history-filter .dropdown-item:hover {
    background: var(--section-light-bg) !important;
}

/* COMPANY NEWS */

#company-news {
    box-sizing: border-box;
    /* border: 1px solid var(--border-color) !important; */
    max-height: 200px;
    /* height: 100%; */
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-radius: 10px 10px 10px 10px;

}

#company-news::-webkit-scrollbar {
    display: none;
}

#company-news .news {
    padding: 5px 20px;
    font-size: 14px;
}

#company-news .news:hover {
    background-color: var(--secondary-color);
}

#company-news .news .news-date {
    white-space: nowrap;
}

#company-news .news .news-title {
    text-decoration: none;
    margin-left: 10px;

}

#company-news .news .news-media {
    margin-left: 10px;
}

/* COMPANY COMPETITORS */
.radar-chart-container {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .radarChart1,
    .radarChart2,
    .radarChart3,
    .radarChart4,
    .industry_radarChart1,
    .industry_radarChart2,
    .industry_radarChart3,
    .industry_radarChart4
    {
        width: 100%;
        font-size: 19px !important;
        scale: 2 !important;
        /* height: 100%; */
        /* Add any other styling for your radar charts here */
    }

    .radarChart1 text.legend,
    .radarChart2 text.legend,
    .radarChart3 text.legend,
    .radarChart4 text.legend,
    .industry_radarChart1 text.legend,
    .industry_radarChart2 text.legend,
    .industry_radarChart3 text.legend,
    .industry_radarChart4 text.legend {
        font-size: 3px !important;
    }

}

.radar-chart-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Optional: Align items to the center horizontally */
    color: white !important;
    font-size: 14px;
    margin-top: 15px;
}

#companyName a {
    font-size: 14px;
    text-decoration: none !important;
    color: var(--primary) !important;
}

#companyName a:hover {
    color: var(--primary-hover) !important;
}

.radar-chart-info #marketcap {
    color: rgba(255, 255, 255, 0.6);
}


/* COMPANY EPS */
.eps-chart .chart-container {
    padding: 40px 0 20px !important;
}
.eps-chart {
    overflow-x: auto;
}
.eps-chart .row {
    min-width: 1080px;
}

.gauge-implementation {
    overflow-x: auto;
}

.gauge-implementation .row {
    min-width: 1100px;
}

.chart-container canvas {
    background-color: #112a24;
    border-radius: 10px;
}

/* COMPANY FINANCIAL RATIO */
.ratio-tabs .tab {
    background-color: transparent !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 2px solid transparent;
    color: rgba(255, 255, 255, 0.6);
}

.ratio-tabs .selected-tab {
    border-bottom: 2px solid var(--primary);
    color: var(--light);
}

.theme-table .custom-table tbody tr:nth-child(odd) {
    background-color: #1F3A32 !important;
}

.theme-table .custom-table tbody tr:nth-child(even) {
    background-color: #142A26 !important;
}

.theme-table .custom-table tbody {
    box-shadow: none !important;
}

.theme-table .custom-table td:first-child,
.theme-table .custom-table thead td {
    color: rgba(255, 255, 255, 0.7)
}

#download-csv {
    margin-left: 30px;
    cursor: pointer;
    color: var(--light);
}

/* OLD CODE */

header {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}


.fa.fa-check-circle {
    color: #40ff00;
}

.fa.fa-times-circle {
    color: #ff0000;
}



.nav-active {
    background-color: #ddd;
}


/*  */
section {
    height: 100%;
    /* width: 100%; */
}

#eps #share {
    height: 55%;
}

#read-more {
    color: #5dade2;
}

h2 {
    color: white;
}

p {
    color: white;
}




.container-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image {
    flex: 1;
    padding: 10px;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}

.top-container {
    display: flex;
    justify-content: space-between;
}


/* Style the company names */
.company-name-holder {
    margin-top: 5px;
    font-size: 33px;
    /* Adjust the font size as needed */
}



/* .stars-container {
    display: inline-block;
    padding-bottom: 15px;
}  */

.stars-container img {
    width: 23px;
    height: 23px;
    vertical-align: middle;
    padding: 0;
    margin-bottom: 7px;
}





/* radarchart */
/* body {
    background: #1b222d;
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 300;
    fill: #242424;
    text-align: center;
    text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
    cursor: default;
} */





.filter-option-inner-inner {
    color: white !important;
}

.candle-stick-container {
    display: flex;
    align-items: center;
    justify-content: center;
}



.container-candle {
    height: 540px;
    width: 100%;
}


.container-main {
    text-align: justify;
}

.modal-backdrop {
    display: none !important
}


.candle-stick-container-row {
    color: white !important;
}


.selectpicker {
    color: white !important;
}

/* top copany title  */
.container-wrapper {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130px;
    margin-top: 5px;
    margin-left: 10px;
    margin-right: 10px;
    max-width: 100%;
}

.ticker-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* max-width: 100%; */
    width: 100%;
    height: 100%;
    padding: 0px 20px;
    /* background-color: #ffffff; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    border-radius: 8px;
}

.ticker-button {
    padding: 5px 8px;
    background-color: #5dade2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#financial {
    min-height: 400px;
}

.radar-chart-containers,
.radar-chart-containers-industry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0px 40px;
    color: white;
    min-width: 1400px;
}
@media screen and (max-width: 768px) {
    .radar-chart-containers,
    .radar-chart-containers-industry {
        gap: 60px !important;
    }
}

.radar-chart-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}



.radar-container {
    width: 100%;
    height: auto;
}

.nav-radar-container {
    width: 17%;
    position: fixed;
    top: 85px;
    left: 0;
    overflow-y: auto;
    display: none;
}



.download-file {
    margin-right: 60px;
}




.eps-company-overview,
.roa-company-overview,
.roe-company-overview,
.net_margin-company-overview,
.share-company-overview,
.leverage-company-overview {
    margin-left: 15px;
    margin-bottom: 10px;
    font-size: 15px;
    text-decoration: none;
}


.hyper-link a {
    text-decoration: underline;
    color: white !important;
}




.radar-position {
    position: relative;
    top: -44px;
}

#eps .radar-chart-info,
#shares .radar-chart-info {
    margin: 10px 0px;
}


.financial-heading-container {
    display: flex;
    justify-content: space-between;
    /* margin: 0px 0px 20px 0px; */
    display: flex;
    justify-content: space-between;
    margin: 0px 20px 20px 0px;
    align-items: center;
}


.toggle-btn-container {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}


.toggle-btn-container .active-toggle {
    color: rgba(255, 255, 255, 0.5);
}

.toggle-btn-container .switch {
    margin: 0px 12px;
}

.toggle-btn-container span {
    text-align: center;
}



.ticker-stars .star-explanation {
    visibility: hidden;
    width: 300px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    line-height: 20px;
}

.ticker-stars:hover .star-explanation {
    visibility: visible;
}


.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #182C27;
    -webkit-transition: .4s;
    transition: .4s;
    scale: 0.8;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--primary);
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #182C27;
}

input:focus+.slider {
    box-shadow: 0 0 1px #182C27;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


/* for loading */
.loading-indicator {
    color: white;
    text-align: center;
    font-size: 50px;
}

/* .loading-indicator {
    display: none;
    width: 50px;
    height: 50px;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  } */

.company__news:hover .company__news__img {
    border: 1px solid var(--primary);
}
.company__news:hover .company__news__title a {
    text-decoration: underline;
    color: var(--primary);
}
.company__news__img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid var(--text-secondary);
}
.company__news__logo img {
    height: 20px;
    width: auto;
    margin-bottom: 20px;
}
.company__news__title {
    margin-bottom: 10px;
}
.company__news__title a {
    font-size: 16px;
    color: var(--light);
    text-decoration: none;
}
.company__news__date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.loading-container {
    height: 60%;
    display: none;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 49px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}



.horizontal-scroll-nav {
    display: none;
}

#modalBody {
    background-color: white !important;
}

#modalBody p {
    color: black;
}

#shareQuantity {
    position: relative;
    right: 25px;
}


@media screen and (min-width: 768px) {
    .buttons-container {
        position: relative;
        right: 70px;
    }
}



.news-card .right-section img {
    width: 60%;
}


@media screen and (max-width: 1500px) {
    .gauge-position {
        top: -40px;
        left: 0;
    }
}

@media screen and (max-width: 1200px) {
    .company__add-btn {
        padding: 14px 20px !important;
    }

    .company__info {
        padding-top: 20px;
    }

    .company__summary-info {
        padding-bottom: 20px;
    }

    .company-summary.sticky .company__summary-info {
        padding-bottom: 0;
    }

    .company-summary.sticky .company__rating {
        display: none;
    }

    .company__add-btn {
        font-size: 16px;
    }

    .col-sidebar {
        width: 185px;
        padding: 0;
    }

    .col-content {
        width: calc(100% - 185px);
    }

    .container.company__main,
    .container-sm.company__main {
        max-width: 90vw !important;
        width: 90vw !important;
        margin: 0 auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        min-width: 0 !important;
    }
}

@media screen and (max-width: 992px) {
    .company-summary .row {
        margin: 0 10px;
    }

    .company__tabs {
        display: flex;
        min-width: 800px;
    }
    .company__tabs__wrapper {
        display: block;
        max-width: 100%;
        overflow-x: auto;
    }

    .company__summary-info__item p {
        font-size: 18px;
    }

    .company__image {
        padding: 0;
        margin: 0;
        max-width: 120px;
    }

    .company__info {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 0;
    }

    .company__add-btn {
        margin: 0;
        padding: 10px !important;
    }

    .company__add-btn span {
        display: none;
    }

    .company__add-btn svg {
        left: 0;
    }

    .company__menu {
        display: inline-block;
        margin: 0;
        padding: 10px !important;
    }

    .container.company__main,
    .container-sm.company__main {
        max-width: 100vw !important;
        width: 100vw !important;
    }

    .col-sidebar {
        position: fixed !important;
        z-index: 100;
        width: 90vw;
        left: 50%;
        transform: translateX(-50%) translateY(50px);
        opacity: 0;
        transition: all 0.3s ease-in-out;
        pointer-events: none;
    }

    .col-sidebar.show {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .col-sidebar__backdrop.show {
        display: block;
    }

    .col-content {
        width: 100%;
    }
    .ratio-tabs {
        min-width: 900px;
    }
    .table-tab-wrapper {
        width: 100%;
        overflow-x: auto;
    }
}

@media screen and (max-width: 768px) {
    .sm-overflow-x-hidden {
        overflow-x: hidden !important;
    }
    .company-summary {
        padding-top: 10px;
    }

    .company-summary .row {
        padding: 0 20px;
    }

    .company__info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0;
    }

    .company__add-btn,
    .company__menu {
        width: 100%;
        margin: 20px auto 30px;
    }

    .company__summary-info__item {
        margin: 0 10px 0 0;
    }

    .company__add-btn span {
        display: inline;
    }

    .company-summary .company__main .row {
        padding: 0;
    }
    .company-summary.sticky .company__add-btn, .company-summary.sticky .company__menu {
        padding: 0 !important;
        background: transparent !important;
        color: #4ECDA4;
    }

    .company-summary__action-col {
        padding: 0 !important;
    }
    .company-summary.sticky {
        padding: 0 !important;
    }
    .company-summary.sticky .company__add-btn {
        margin: 0 !important;
    }
    .company-summary.sticky .company__add-btn span {
        display: none !important;
    }

    .company-summary.sticky .company__summary-info .company__summary-info__item label {
        font-size: 12px;
    }

    .company-summary.sticky .company__summary-info .company__summary-info__item p {
        font-size: 14px;
    }

    .company-summary.sticky .container .row {
        max-width: 100% !important;
    }

    .company__content__component {
        padding: 30px 10px;
    }

    /* .container,
    .container-sm {
        max-width: 100% !important;
    } */

    .company__content {
        padding: 0 7px;
    }

    .overview-radar {
        scale: 1.4 !important;
    }

    .overview-radar > svg {
        padding-left: 20px;
        scale: 1.3;
    }
    
    .radar-chart-container .radar-chart-info {
        scale: 1.3 !important;
        padding-top: 40px;
    }
    .overview-radar text.legend {
        font-size: 4px !important;
    }
    .overview-radar {
        overflow: hidden;
    }
    .container-candle .widget-holder {
        overflow-x: auto;
        overflow-y: hidden;
    }
    .index-chart-container {
        min-width: 85dvw;
    }
    .financial-heading-container {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .toggle-btn-container {
        margin-top: 20px;
    }
    footer.footer {
        overflow-x: hidden;
    }
    .dashboard__news-row {
        min-width: 900px;
    }
    .dashboard__news-container {
        width: 100%;
        overflow-x: auto;
    }
    .floating-div {
        left: 0 !important;
        pointer-events: none !important;
    }

    .axisWrapper, .radarWrapper {
        transform: scale(1.3) !important; 
    }
    .apexcharts-svg text {
        font-size: 16px !important;
    }
}

@media screen and (max-width: 576px) {
    .company-summary.sticky .container .row {
        max-width: 100% !important;
        padding: 0;
    }

    .company__image {
        max-width: 80px;
    }

}
@media screen and (max-width: 400px) {
    .company-summary.sticky .company__summary-info .company__summary-info__item label {
        font-size: 10px;
    }
    .company-summary.sticky .company__summary-info .company__summary-info__item p {
        font-size: 12px;
    }
}


