@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap');

:root {
    --theme-color: #53A82F;
    --theme-bg-color: #1786ff;
    --hd-color: #303159;
    --black-color: #000;
    --black-color2: #565656;
    --bg-light: #f1f7fb;
    --bg-light2: #e8f9e1;
    --base-color: #f5f5f5;
    --base-color2: #B8CAD6;
    --base-color3: #ddd;
    --base-color4: #E9EFF7;
    --white-color: #fff;
    --bs-gradient: linear-gradient(90deg, rgba(0, 100, 160, 1), rgba(51, 149, 207, 1));

    --base-font: "Hind", sans-serif;
    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--base-font);
    letter-spacing: 0.5px;
    color: #202434;
    line-height: normal;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.1s ease-in;
}

a:hover,
a:focus {
    color: var(--theme-bg-color);
}

p {
    font-size: 14px;
}

.btn1 {
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
    color: var(--white-color) !important;
    font-weight: 500;
    background: var(--theme-bg-color);
    outline: none;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
    min-width: 80px;
    text-align: center;
    border: 0;
}

.btn1:hover,
.btn1:focus {
    background: var(--theme-color);
}

.btn3 {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    /* font-weight: 700; */
    font-size: 1em;
    /* text-transform: uppercase; */
    color: #fff;
    border-radius: 6px;
    /* margin: 10px; */
    padding: 0.4rem 1rem;
    background-size: 200% auto;
    color: white;
    outline: none;
    border: 0;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    background-image: linear-gradient(to right, #136dc6 0%, #53a82f 50%, #2d45e4 100%);
    transition: 0.5s;
}

.btn3:hover {
    background-position: right center;
    color: var(--white-color);
}

.shadow {
    box-shadow: 0 4px 10px rgba(24, 67, 117, 0.1) !important;
}

.container-fluid {
    margin: auto;
    width: 94%;
}

.form-control,
.form-select {
    border-color: #bfbecc;
}

.form-select:focus,
.form-select:focus {
    box-shadow: none;
}

label {
    font-weight: 500;
}

.fs-7 {
    font-size: 0.8rem !important;
}

.mt-n4 {
    margin-top: -1rem;
}

.bg1 {
    background: var(--base-color4);
}


.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1rem;
    color: var(--white-color);
}

.swiper-button-next,
.swiper-button-prev {
    background-color: var(--theme-color);
    padding: 1rem;
    border-radius: 2rem;
}

.swiper-button-next {
    right: 15px;
}

.swiper-button-prev {
    left: 15px;
}

/* Navbar */
/* =============================== */
header {
    position: fixed;
    padding: 5px 0;
    width: 100%;
    z-index: 999;
    background: var(--white-color);
    top: 0;
    border-bottom: 1px solid var(--base-color);
}

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

/* .menubar ul {
    display: inline-flex;
    flex-direction: row;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.menubar ul li {
    display: block;
}

.menubar ul li a {
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 500;
} */

.menubar .mobilemenu {
    display: none;
}

.menuPanel {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.menuPanel li {
    position: relative;
}

.menuPanel a {
    padding: 10px;
    /* font-size: 14px; */
    font-weight: 500;
    display: flex;
    align-items: center;
}

.menuPanel .submenu {
    list-style: none;
    position: absolute;
    top: 46px;
    left: 0;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: none;
    min-width: 150px;
    padding: 0;
    padding-bottom: 5px;
}

.menuPanel .submenu li {
    width: 100%;
    text-align: left;
}

.menuPanel .submenu a {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 7px;
    padding-bottom: 0;
    display: block;
    font-size: 14px;
}

.dropdown:hover .submenu {
    display: block;
}

header .loginBtn {
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid var(--theme-bg-color);
    font-weight: 400;
    background: var(--white-color);
    color: var(--theme-bg-color);
    font-size: 14px;
    line-height: 1.7;
}

header .logo {
    height: 36px;
}

header .menuIcon {
    border: 1px solid var(--theme-bg-color);
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    background: var(--white-color);
    color: var(--theme-bg-color);
    display: none;
}

header .menuIcon:hover,
header .loginBtn:hover {
    /* background: var(--theme-bg-color);
    color: var(--white-color); */
    box-shadow: 0 4px 3px rgba(0, 100, 160, .18);
}

.sticky {
    box-shadow: 0 5px 10px rgba(0, 100, 160, .08);
    position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.71);
    backdrop-filter: blur(10px);
    /* animation: slideDown 0.5s ease-out; */
}

.sticky .menuIcon {
    display: inherit;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* .sticky .logo{
    height: 40px;
    transition: height 100ms;
} */
/* .sticky ul {
    display: none;
} */

.topSearch,
.modalSearch {
    position: relative;
    /* display: none; */
    margin: auto;
    max-width: 350px;
    width: 100%;
}

.topSearch input[type=text],
.modalSearch input[type=text] {
    height: 36px;
    border-radius: 5px;
    border: 1px solid rgba(0, 100, 160, 0.3);
    font-size: 16px;
    padding: 1px 10px 0 35px;
    outline: 0;
    width: 100%;
}

.topSearch input[type=text]:focus,
.modalSearch input[type=text]:focus {
    border-color: var(--theme-bg-color);
}

.topSearch input[type=text]::placeholder,
.modalSearch input[type=text]::placeholder {
    font-weight: 300;
}

.topSearch i,
.modalSearch i {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #B7B7B7;
    line-height: 1;
    display: inline-block;
    font-size: 1rem;
}

.sticky .topSearch {
    display: block;
}

.btn-close:focus,
.btn-close:hover {
    box-shadow: none;
}

/* First Screen Part */
/* ======================================== */
main {
    position: relative;
    /* background: linear-gradient(180deg, rgba(221, 233, 240, 1) 0%, rgba(255, 255, 255, 1) 100%); */
    background: #f0f0f5;
    /* height: 80vh; */
    background: url(../images/mainbg.jpg) center no-repeat;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 70px;
}

main h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.stockSearchPanel {
    min-height: 350px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.searchBig {
    position: relative;
    margin: 20px 0;
    display: flex;
    align-items: center;
    min-width: 600px;
}

.imateBtn img {
    height: 70px;
}

.searchBig input[type=text] {
    height: 70px;
    border-radius: 1rem;
    border: 2px solid rgba(0, 100, 160, 0.3);
    font-size: 24px;
    padding: 0 50px 0 70px;
    outline: 0;
    width: 100%;
}

.searchBig input[type=text]:focus {
    border-color: var(--theme-bg-color);
}

.searchBig input[type=text]::placeholder {
    font-weight: 300;
}

.searchBig .ri-search-line {
    position: absolute;
    top: 16px;
    left: 20px;
    color: #B7B7B7;
}

.searchBig .ri-close-circle-fill {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 26px;
    color: var(--theme-bg-color);
}

.stockSearchPanel {
    min-height: 350px;
}

.ui-menu {
    position: absolute !important;
    background: var(--white-color);
    padding: 0.75rem 1.15rem;
    list-style: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    border-radius: 1rem;
    margin-top: 1.25rem;
    z-index: 9999;
}

.ui-menu-item {
    padding: 0.35rem 0;
    cursor: pointer;
    font-weight: 500;
}

.ui-menu-item:hover {
    color: var(--theme-color);
}

.querysearch textarea {
    height: 150px;
    border-radius: 0.5rem;
    border: 2px solid rgba(0, 100, 160, 0.3);
    font-size: 18px;
    padding: 1rem;
    outline: 0;
    width: 100%;
    resize: none;
    position: relative;
}

.querysearch textarea:focus {
    border-color: var(--theme-bg-color);
}

.querysearch .dropdown-list {
    position: absolute;
    top: 100%;
    z-index: 9999;
    /* visibility: hidden;
    opacity: 0; */
    transform: translateY(17px);
    display: flex;
    list-style: none;
    flex-direction: column;
    box-sizing: border-box;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
    background: var(--white-color);
    padding: 5px;
    margin: 0;
    border: 1px solid var(--base-color3);
}

.querysearch .dropdown-list li {
    font-size: 13px;
    text-align: left;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: 500;
}

.querysearch .dropdown-list li:hover {
    background: var(--bg-light);
}

.querysearch .dropdown-list li.active {
    background: var(--theme-bg-color);
    color: var(--white-color);
}

main .topCategory {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    list-style: none;
    margin: 0;
}

main .topCategory li {
    width: calc(33.3333% - 14px);
    margin: 7px;
}

main .topCategory a {
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid var(--base-color2);
    display: block;
    font-weight: 600;
    background: var(--white-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

main .topCategory a span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin-top: 3px;
    opacity: 0.8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

main .topCategory a:hover,
main .topCategory a:focus {
    background: var(--bs-gradient);
    color: var(--white-color);
}


/* Home Data Analysis Part */
/* ======================================== */
.marketIndicate a {
    border-radius: 30px;
    border: 1px solid var(--base-color2);
    font-size: 12px;
    line-height: 1;
    margin: 5px 3px;
    margin-left: 0;
    padding: 7px 10px 5px;
    background: var(--white-color);
    display: inline-block;
}

.aiBasesearch {
    position: relative;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(70, 75, 84, 1), rgba(40, 41, 47, 1));
    color: var(--white-color);
}

.aiBasesearch h5 {
    color: #43D7FF;
    font-size: 16px;
}

.aiBasesearch p {
    font-weight: 300;
}

/* Data analysis */

/* FII & DII */
.fii_dii {
    /* padding: 0.75rem; */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Latest News */
/* ======================================== */
.listNewsPanel {
    background: var(--bg-light);
    padding: 2rem 0 1.5rem;
    position: relative;
}

.listNewsPanel h2 {
    font-size: 33px;
    font-weight: 700;
    margin: 0;
}

.listNewsPanel h2 small {
    font-size: 20px;
    font-weight: 300;
    display: block;
    margin-bottom: 5px;
}

.listNewsMain {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    list-style: none;
    padding: 0 5px 0 0;
    position: relative;
    margin: 0;
}

.listNewsMain::-webkit-scrollbar {
    height: .25em;
}

.listNewsMain::-webkit-scrollbar,
.listNewsMain::-webkit-scrollbar-thumb {
    overflow: visible;
    border-radius: 4px;
}

.listNewsMain::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .2);
}

.cover-bar {
    position: absolute;
    background: var(--bg-light);
    width: 100%;
    bottom: 0;
    height: 0.4em;
    -webkit-transition: all .5s;
    display: block;
}

.newsPanel:hover .cover-bar {
    display: none;
    -webkit-transition: all .5s;
}

.listNewsMain li {
    margin-right: 10px;
    padding-bottom: 5px;
}

.listNewsMain li:last-child {
    margin: 0;
}

.listNewsBox {
    display: flex;
    position: relative;
    border-radius: 5px;
    /* width: 250px; */
    /* for slider other wise width important */
    background: var(--white-color);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
    padding: 10px 15px;
    /* margin: 0 5px; */
}

.listNewsBox img {
    margin-top: -10px;
    margin-bottom: -10px;
    margin-left: -15px;
    margin-right: 10px;
    height: 62px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.listNewsBox p {
    margin: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.5;
    font-weight: 500;
    font-size: 14px;
}

/* Service Panel 19.11.24 */
/* ======================================== */
.servicePanel {
    background: var(--bg-light);
    padding: 2.5rem 0;
    position: relative;
}

.serviceBox {
    position: relative;
    border-radius: 1rem;
    background: var(--white-color);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    transition: all 0.2s ease-in;
    height: 100%;
}

.serviceBox:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
}

.serviceBox p {
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}


/* Footer */
/* ======================================== */
footer {
    background: #f2f5f8;
    position: relative;
    padding: 3rem 0 1rem;
}

footer .widget {
    padding: 0;
    list-style: none;
}

footer .widget li {
    display: block;
    margin-bottom: 0.25rem;
    position: relative;
    padding-left: 15px;
}

footer .widget li:before {
    position: absolute;
    content: '';
    left: 0;
    top: 5px;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: var(--black-color);
}

footer .widget li a {
    display: block;
    font-size: 13px;
    color: var(--black-color);
    white-space: nowrap;
}

footer .widget li a:hover {
    color: var(--theme-bg-color);
    /* font-weight: 500; */
}

.social {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.social li {
    width: 50%;
    display: block;
    margin-bottom: 0.75rem;
}

.social li a {
    color: var(--black-color);
    font-size: 13px;
}

.social li a:hover {
    color: var(--theme-bg-color);
    font-weight: 500;
}

.social li a i {
    margin-right: 0.5rem;
    line-height: 0;
    padding: 0.25rem;
    border-radius: 5rem;
    background-color: #7C8697;
    color: var(--white-color);
}






.tabs-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabs {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.tabs>ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.tabs>ul li {
    /* display: flex; */
    /* flex: 1; */
    position: relative;
    /* align-items: center; */
    /* padding-right: 1px; */
    width: 100%;
}

/* .tabs > ul li:after {
	position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background: var(--base-color3);
} */

.tabs>ul li a,
.tabs>ul li a:visited {
    display: flex;
    text-decoration: none;
    color: var(--black-color);
    /* background-color: var(--bg-light); */
    /* border-bottom: 1px solid var(--base-color3); */
    font-weight: 400;
    justify-content: center;
    padding: 0.65rem 0.75rem 0.45rem;
    /* padding-right: 1.5rem; */
    transition: all 0.2s ease-in-out;
    /* white-space: nowrap; */
    position: relative;
    /* font-size: 14px; */
    line-height: 1.2;
    text-transform: uppercase;
    width: 100%;
}

.tabs>ul li a i {
    /* position: absolute; */
    margin-left: 5px;
    color: var(--black-color);
    /* top: 50%; */
    /* margin-top: -6px; */
    line-height: 1;
}

.tabs>ul li a.active i {
    color: var(--white-color);
}

.tabs>ul li a:hover,
.tabs>ul li a:focus,
.tabs>ul li a:active {
    /* border-bottom: none; */
    outline: 0;
    color: var(--theme-bg-color);
    /* border-bottom: 1px solid var(--base-color3); */
    /* font-weight: 600; */
}

.tabs>ul li a.active {
    background-color: var(--hd-color);
    color: var(--white-color);
    /* border-bottom: 1px solid var(--hd-color);
    border-left: 1px solid var(--hd-color);
    border-right: 0; */
}

.tabs>ul li a.active:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    right: -1px;
    top: 0;
    background: var(--white-color);
}

.tabs>ul li a:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
    background: var(--white-color);
}

/* .tabs>ul li a.active:first-child {
    border-top: 1px solid var(--hd-color);
    font-weight: 700;
} */

.tabs>ul li a:hover:not(.active) {
    color: var(--theme-bg-color);
    /* font-weight: 600; */
}

.tabs>ul li a>span {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tabs>ul li a>span.tab-label {
    display: none;
}

.tabs section {
    width: 85%;
    background-color: var(--white-color);
    border: 1px solid var(--hd-color);
    padding: 0.5rem 1rem;
    display: none;
    word-wrap: break-word;
}

.tabs section>* {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s, transform 0.2s;
}

.tabs section.active {
    display: block;
}

.tabs section.active-content>* {
    opacity: 1;
    transform: translateY(0);
}

.tabs section.active-content .topPart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
}

.tabs section.active-content .topPart select {
    border: 1px solid #565656;
    height: 30px;
    outline: none;
    width: 100%;
}

.tabs section.active-content .topPart h6 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    /* width: calc(100% - 100px); */
}

.tabs section.active-content .topPart h6 small {
    /* font-size: 10px; */
    font-weight: 400;
    color: #565656;
}

.tabs section.active-content .topPart .sector a {
    border: 1px solid var(--base-color3);
    line-height: 1;
    font-weight: 300;
    font-size: 14px;
    display: inline-block;
    padding: 5px 8px 4px;
}

.tabs section.active-content .topPart .sector a.active {
    background: var(--hd-color);
    color: var(--white-color);
}

.tabs section.active-content table {
    width: 100%;
    margin: 0.5rem 0 0;
}

.tabs section.active-content table thead {
    /* background: var(--base-color); */
    background: #d0e8f9;
}

.tabs section.active-content table tr {
    border-bottom: 1px solid #ddd;
}

.tabs section.active-content table tr:hover {
    background: var(--bg-light);
}

.tabs section.active-content tr th,
.tabs section.active-content tr td {
    /* font-size: 14px; */
    white-space: nowrap;
    /* padding: 7px 5px 5px; */
}

.tabs section.active-content table tr td:first-child {
    font-weight: 600;
}

/* .tabs section.active-content table tr:last-child {
    border-bottom: 0;
} */

.tabs section.active-content table tr th:nth-child(4),
.tabs section.active-content table tr td:nth-child(4),
.tabs section.active-content table tr th:nth-child(5),
.tabs section.active-content table tr td:nth-child(5),
.tabs section.active-content table tr th:nth-child(6),
.tabs section.active-content table tr td:nth-child(6) {
    text-align: center;
}

.tabs section.active-content .prevData {
    display: flex;
    align-items: center;
    white-space: normal;
}

.tabs section.active-content .prevData div {
    width: 14px;
    height: 6px;
    margin: 1px;
}

@media (min-width: 576px) {
    .tabs>ul {
        width: 100%;
    }

    .tabs>ul li a {
        flex-wrap: wrap;
    }

    .tabs>ul li a>span {
        width: 100%;
    }

    .tabs>ul li a>span.tab-label {
        width: 100%;
        display: block;
        margin-top: 0.2rem;
    }

    .tabs section {
        width: 100%;
    }
}

.custom-tooltip {
    --bs-tooltip-bg: var(--theme-bg-color);
    --bs-tooltip-color: var(--bs-white);
    --bs-tooltip-font-size: 0.75rem;
    --bs-tooltip-padding-x: 0.5rem;
    --bs-tooltip-padding-y: 0.5rem;
    --bs-tooltip-opacity: 1;
}

/*.tooltip2 {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -7px;
    cursor: pointer;
    display: inline-block;
}

.tooltip2 .tooltiptext {
    visibility: hidden;
    width: 150px;
    min-width: 200px;
    background-color: var(--theme-bg-color);
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
    border-radius: 6px;
    padding: .5rem;
    position: absolute;
    z-index: 1;
    bottom: 22px;
    left: 50%;
    transform: translate(-50%, 0);
}

.tooltip2 .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--theme-bg-color) transparent transparent transparent;
}

.tooltip2:hover .tooltiptext {
    visibility: visible;
}*/

.sidemenuMain .offcanvas {
    width: 100%;
}

.sideMenu ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    list-style: none;
    margin: 0;
}

.sideMenu li {
    display: block;
    position: relative;
}

.sideMenu a {
    position: relative;
    display: block;
    font-size: 1rem;
    padding: 0.35rem 0;
    font-weight: 500;
    /* padding-left: 1.25rem; */
    transition: all 0.2s ease-in-out;
}

.sideMenu a:hover {
    padding-left: 1.5rem;
}

.sideMenu a:before {
    font-family: "remixicon";
    position: absolute;
    content: '\EA6B';
    font-size: 0.75rem;
    right: 0;
    top: 12px;
    transition: all 0.2s ease-in-out;
}

.sideMenu a:hover:before {
    left: 7px;
}

.sidemenuMain .bottomSec small {
    font-size: 11px;
    color: var(--black-color);
}

.sidemenuMain .bottomSec a {
    font-size: 13px;
    color: var(--black-color);
    text-decoration: underline;
    margin: 0 5px;
}






/* =============================================================== */
/* STOCK ANALYSIS REPORT */
/* ================================================================================ */
#chart-container {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.titleheader {
    display: none;
}

.stockanalysisMenu {
    position: relative;
    /* margin-top: 70px; */
    /* background: var(--white-color); */
    background: rgb(232 235 247);
    position: sticky;
    top: 80px;
    z-index: 150;
    border-bottom: 1px solid #ddd;
    padding: 0.3rem 0 0.25rem;
}

.stockanalysisMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.stockanalysisMenu ul li {
    margin-right: 5px;
}

.stockanalysisMenu ul li a {
    position: relative;
    transition: all 0.2s ease-in-out;
    padding: 7px 10px 5px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 30px;
}

.stockanalysisMenu ul li a:hover,
.stockanalysisMenu ul li a.active {
    color: var(--white-color);
    background: var(--theme-bg-color);
}

.stick-stock {
    margin-top: 80px;
    padding-top: 5px;
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 10;
    box-shadow: 0 2px 25px rgb(0 0 255 / 10%);
}

/* Stock Overview */
.stockOverview {
    position: relative;
    margin: 10.5rem 0 1rem;
}

.stk-view {
    display: inline-flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.stk-view li {
    display: block;
    position: relative;
    padding-right: 20px;
    color: var(--theme-bg-color);
    font-weight: 600;
}

.stk-view li span {
    font-weight: 400;
    color: #999;
    font-size: 12px;
}

.stk-view li:before {
    position: absolute;
    content: '';
    right: 9px;
    top: 5%;
    background: var(--base-color3);
    height: 80%;
    width: 1px;
}

.stk-view li:last-child:before {
    display: none;
}

.stktooltip {
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.stktooltip .tooltiptext {
    visibility: hidden;
    width: 250px;
    min-width: 300px;
    background-color: var(--theme-bg-color);
    color: #fff;
    font-size: 13px;
    text-align: center;
    border-radius: 6px;
    padding: .5rem;
    position: absolute;
    z-index: 1;
    bottom: 25px;
    left: 50%;
    transform: translate(-50%, 0);
}

.stktooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--theme-bg-color) transparent transparent transparent;
}

.stktooltip:hover .tooltiptext {
    visibility: visible;
}

/* Scroll Aid */


.cateMenu {
    display: flex;
}

.sub-nav-holder {
    width: 100%;
    box-sizing: border-box;
    overflow: auto;
    color: var(--black-color);
    font-size: 1.4rem;
    font-weight: 500;
    scrollbar-width: none;
}

.sub-nav-holder::-webkit-scrollbar {
    display: none;
}

@media (min-width: 992px) {
    .sub-nav-holder {
        color: var(--black-color);
        box-shadow: 0 14px 12px -17px rgba(29, 40, 62, 0.4);
        font-weight: normal;
    }

    .sub-nav {
        margin: auto;
    }
}

.sub-nav {
    display: flex;
}

.sub-nav a,
.sub-nav .a {
    color: inherit;
    text-align: center;
    box-sizing: border-box;
    white-space: nowrap;
    padding: 6px 12px 4px;
    margin: 0;
    font-size: 14px;
    border-radius: 0.25rem;
}

.sub-nav a.active {
    color: var(--white-color);
    background: var(--theme-bg-color);
}

/* Overview */
.stockOverview h1,
.stockOverview h2,
.stockOverview h3,
.stockOverview h4,
.stockOverview h5,
.stockOverview h6 {
    font-weight: 600;
}

.stockstat .stockbox {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1.6rem 0.8rem 0.75rem;
    color: #888;
    position: relative;
}

.stockstat .stockbox button {
    display: none;
}

.stockstat .stockbox:hover button {
    border: 0;
    outline: none;
    position: absolute;
    right: 7px;
    top: 12px;
    background: transparent;
    color: var(--theme-bg-color);
    display: inline-block;
}

.stockstat .col-md-4:nth-child(even) .stockbox {
    background: var(--base-color);
}

.range-data {
    width: 100%;
    display: block;
    border: 1px solid var(--base-color3);
    border-radius: 8px;
    padding: 16px 20px;
    line-height: 1;
    box-sizing: border-box;
}

.range-data ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    color: var(--black-color2);
}

.range-data ul li:last-child {
    font-weight: 700;
    color: var(--black-color);
}

.stocknewsMain {
    background: var(--bg-light);
    position: relative;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.stocknewsMain .newsList h6 {
    font-size: 14px;
}

.stocknewsMain .newsList small {
    display: block;
    font-size: 11px;
}

/* Growth Valuation */
.growthvaluationHead {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/* Chart */
.datatabmenu,
.corporatetab {
    display: flex;
    padding: 0;
    border: 1px solid var(--base-color2);
    list-style: none;
    margin: 0;
    /* margin-left: 1.5rem;
    margin-right: 1.5rem; */
    border-radius: 0.25rem;
}

.datatabmenu li,
.corporatetab li {
    flex: 1;
}

.datatabmenu li:first-child {
    border-radius: 0.2rem 0 0 0.2rem;
}

.datatabmenu a,
.corporatetab a {
    display: block;
    padding: 0.5rem 1rem 0.35rem;
    /* line-height: 34px; */
    font-size: 14px;
    color: #888;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.corporatetab .dropdown-menu a {
    padding: 0.25rem 0.75rem 0.15rem;
    text-align: start;
    cursor: pointer;
    font-size: 13px;
}

.datatabmenu a:hover,
.corporatetab a:hover {
    color: var(--theme-bg-color);
}

.datatabmenu a.active {
    color: var(--black-color);
    background: var(--base-color);
}

.corporatetab a.active {
    color: var(--white-color);
    background: var(--theme-bg-color);
    border-radius: 0.15rem 0 0 0.15rem;
}

.datatabmenu li.ui-state-active {
    color: var(--white-color);
    background: var(--theme-bg-color);
}

.datatabmenu li.ui-state-active a {
    color: var(--white-color);
}

.stockdatatable {
    position: relative;
}

.stockdatatable .table-fixed-column-inner {
    overflow-x: scroll;
    overflow-y: visible;
    margin-left: 100px;
}

.stockdatatable .table-fixed-column-inner .table {
    margin-bottom: 0.25rem;
}

.stockdatatable .table.table-fixed-column {
    table-layout: fixed;
    width: 100%;
}

.stockdatatable .table td,
.stockdatatable .table th {
    width: 100px;
}

.stockdatatable .table th:first-child,
.stockdatatable .table tr td:first-child {
    position: absolute;
    left: 0;
    width: 100px;
}

/* 19.08.2024 */
.chartradio {
    position: relative;
    padding-right: 1.15rem;
}

.chartradio .remove-radio {
    position: absolute;
    right: 0;
    top: 4px;
    border: 0;
    outline: none;
    background: transparent;
    line-height: 1;
    display: none;
    color: var(--theme-bg-color);
}

.chartradio:hover .remove-radio {
    display: inline-block;
}





.responsive-holder {
    overflow: auto;
}

.responsive-holder::-webkit-scrollbar,
.tabs>ul::-webkit-scrollbar {
    /* width: 5px; */
    height: 5px;
}

.responsive-holder::-webkit-scrollbar-track,
.tabs>ul::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.responsive-holder::-webkit-scrollbar-thumb,
.tabl>ul::-webkit-scrollbar-thumb {
    background: #888;
}

.responsive-holder::-webkit-scrollbar-thumb:hover,
.tab>ul::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.stock-table {
    margin-top: 8px;
    margin-bottom: 8px;
    /* border-collapse: separate; */
    border-spacing: 0;
}

/* .stock-table tr:nth-child(even) td {
    background: #f4f8f9;
} */

/* .stock-table td {
    border-bottom: 0;
    font-feature-settings: "tnum" on;
} */

.stock-table th {
    font-weight: 500;
}

.stock-table th,
.stock-table td {
    padding: 7px 10px;
    /* line-height: 1.25; */
    white-space: nowrap;
}

.stock-table>thead>tr>th,
.stock-table>thead>tr>td {
    padding: 7px 10px;
    border: 1px solid rgb(4 178 87);
    background: #fff;
    color: #04b257;
}

.stock-table th,
.stock-table td {
    text-align: right;
}

.stock-table tfoot {
    font-weight: 500;
}

.stock-table.text-nowrap .text {
    white-space: nowrap;
    text-overflow: ellipsis;
    /* Required for text-overflow to do anything */
    overflow: hidden;
}



.stock-table .text {
    text-align: left;
    max-width: 20%;
    /* freeze column */
    position: -webkit-sticky;
    position: sticky !important;
    left: 0;
    /* border-right: 1px solid var(--base-color); */
    /* background-color: inherit;     */
    font-weight: 500;
    z-index: 9;
}

.stock-table .text:before {
    position: absolute;
    content: '';
    right: -7px;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(171, 181, 186, .3), transparent);
    width: 7px;
}

@media (max-width: 992px) {

    .stock-table th,
    .stock-table td {
        white-space: normal;
    }

    .responsive-text-nowrap .text {
        max-width: 110px;
        display: block;
        text-align: left;
    }

    .responsive-text-nowrap .text a,
    .responsive-text-nowrap .text span {
        display: block;
        width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: initial;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
}


.stock-table tr a {
    color: var(--theme-bg-color);
}

.subsection-row td {
    background: #effaef;
}

.level2-subsection-row td {
    background: #f1f7f1;
}

#documentdata h5 {
    font-size: 16px;
    margin-bottom: 0.25rem;
}

/* standalone-consolidated */
.datatabs div {
    display: none;
}

.datatabs div.current {
    display: block;
}

.tabs-menu {
    display: flex;
    border-radius: 0.15rem;
}

.tabs-menu div {
    padding: 0.4rem 0.5rem 0.2rem;
    border-radius: 0.15rem;
    font-size: 0.8rem;
    cursor: pointer;
}

.tabs-menu div.active {
    background: var(--theme-bg-color);
    color: var(--white-color);
}

/* New Side Panel */
/* ================================= */
.newsMain .offcanvas {
    width: 450px;
}

.newsMain .newsBox {
    display: block;
    border: 1px solid var(--base-color3);
    padding: 1rem;
    border-radius: 0.75rem;
    position: relative;
    margin-bottom: 1rem;
}

.newsMain .newsBox:last-child {
    margin-bottom: 0;
}

.newsMain .newsBox p:last-child {
    margin-bottom: 0;
}

/* Modal ratio modification */
/* ============================================ */
.manage-menu {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
}

.draggable-row {
    box-sizing: border-box;
    cursor: grab;
    /* background-color: var(--bg-light); */
    border-radius: 4px;
    border: 1px solid var(--base-color3);
    padding: 6px 7px 6px;
    margin: 3px;
    font-weight: 500;
}

/* #filterratio .datatabmenu a{
    font-size: 0.85rem;
} */
.listRatioMain {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.listRatioMain .form-check {
    width: 31%;
}

.form-check-input {
    border-color: #989898;
    margin-top: 0.15rem;
}

.form-check-input:focus {
    box-shadow: none;
    border-color: var(--theme-bg-color);
}

.form-check {
    margin-bottom: 0.5rem;
}

.form-check-label {
    cursor: pointer;
}

.addCompany {
    position: relative;
    display: flex;
}

.addCompany .ri-search-2-line {
    position: absolute;
    top: 5px;
    left: 5px;
    color: #888;
}

.addCompany input {
    outline: none;
    border: 0;
    border-bottom: 1px solid var(--base-color2);
    font-size: 14px;
    padding: 0 1rem 0 2rem;
    line-height: 36px;
    background: transparent;
}

.addCompany input:focus {
    border-color: var(--theme-bg-color);
}

.addCompany button {
    background: transparent;
    outline: none;
    border: 0;
    margin-left: -16px;
}

/* list Stock Details */
/* ============================== */
.stockdataList {
    position: relative;
    margin-top: 4.5rem;
    margin-bottom: 3rem;
    /* min-height: 350px; */
}

.stockdataList h1 {
    font-size: 2rem;
    font-weight: 600;
}

.stockdataList .topPart {
    position: absolute;
    z-index: 1;
}

.stockdataList .topPart select {
    border: 1px solid #aaa;
    height: 34px;
    outline: none;
    border-radius: 5px;
    padding-left: 10px;
}

.menuLink {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menuLink a {
    display: block;
    padding: 7px 15px;
    border: 1px solid var(--base-color3);
    color: var(--hd-color);
    text-transform: capitalize;
    border-radius: 0.35rem;
    margin-right: 0.25rem;
}

.menuLink a:hover,
.menuLink a.active {
    background: var(--hd-color);
    color: var(--white-color);
}



.listjs-pagination {
    margin-bottom: 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 8px
}

.listjs-pagination li .page {
    display: block;
    padding: .375rem .75rem;
    color: #405189;
    background-color: var(--white-color);
    border: 1px solid var(--base-color2);
    border-radius: .25rem
}

.listjs-pagination li.active .page {
    color: #fff;
    background-color: #405189;
    border-color: #405189
}

.pagination-wrap {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.pagination-wrap a {
    text-decoration: none;
    display: inline-block
}

.pagination-next,
.pagination-prev {
    color: #405189;
    font-weight: 500;
    padding: .375rem .75rem;
    background-color: var(--white-color);
    border: 1px solid var(--base-color2);
    border-radius: .25rem
}

.pagination-next:hover,
.pagination-prev:hover {
    color: #7283bd
}

.pagination-next.disabled,
.pagination-prev.disabled {
    color: #878a99;
    cursor: default
}

.pagination-next.disabled:hover,
.pagination-prev.disabled:hover {
    color: #878a99
}




/* 21.06.24 */
.advanDecl {
    height: 468px;
    overflow: auto;
}

.advanDecl::-webkit-scrollbar {
    width: 0;
}

.advanDecl::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.advanDecl::-webkit-scrollbar-thumb {
    background: #888;
}

.advanDecl::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.advanDecl ul,
.advanHead {
    display: flex;
    flex-direction: row;
    padding: 0;
    margin-bottom: 0;
    justify-content: space-between;
    list-style: none;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.advanHead {
    background: #f0f2f6;
    font-weight: 600;
}

.advanDecl ul:last-child {
    border-bottom: 0;
}

.advanHead li,
.advanDecl ul li {
    padding: 0.5rem;
    text-align: left;
}

.advanHead li:first-child,
.advanDecl ul li:first-child {
    width: 50%;
}

.advanDecl ul li {
    font-size: 14px;
    font-weight: 500;
}

.advanHead li:last-child,
.advanDecl ul li:last-child {
    width: 90px;
}

.advanHead li:nth-child(2),
.advanDecl ul li:nth-child(2) {
    width: 100px;
}

.ratiomenu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ratiomenu .form-check {
    width: 31%;
}

.is-hidden {
    display: none !important;
}

.columnListMain {
    display: flex;
    position: relative;
    flex-wrap: wrap;
}

.columnListMain span {
    padding: 0.35rem 0.75rem;
    position: relative;
    border-radius: 0.25rem;
    background: var(--base-color);
    border: 1px solid var(--base-color3);
    color: var(--black-color);
    display: flex;
    align-items: center;
    margin: 0 0.25rem 0.25rem 0;
}

.columnListMain span a {
    line-height: 1;
    display: inline-block;
    margin-left: 0.5rem;
    color: var(--black-color);
    font-size: 0.8rem;
}

/* Login Panel */
/* ================================ */
.loginPanel {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.loginPanel .left-pt {
    width: 60%;
    background: #b9cbeb;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
}

.loginPanel .right-pt {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loginBox {
    max-width: 400px;
}

.loginBox .form-control {
    min-width: 300px;
}

.loginBox .form-control:hover,
.loginBox .form-control:focus,
.loginBox .form-select:hover,
.loginBox .form-select:focus {
    box-shadow: none;
    border: 1px solid var(--theme-bg-color);
}

.loginBox .btnmain:hover {
    background: var(--theme-bg-color);
}

.loginBox a {
    color: var(--theme-bg-color);
    text-decoration: none;
}

.or {
    width: 100%;
    position: relative;
    text-align: center;
    margin: 1rem 0;
}

.or:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: var(--base-color3);
    top: 50%;
    left: 0;
    z-index: -1;
}

.socialLogo {
    border-radius: 5px;
    border: 1px solid #e3e3e3;
    padding: 10px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.socialLogo img {
    margin-right: 0.5rem;
}

.socialLogo:hover {
    background: #ecf8ff;
    border-color: #0064a0;
}

/* myaccount 13.07 */
.myaccount {
    position: relative;
    transition: 0.5s;
    display: flex;
    justify-content: flex-end;
}

.mymenuList {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: var(--white-color);
    border: 1px solid var(--theme-bg-color);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    margin-top: 20px;
    transition: all 0.5s ease;
    border-radius: 0.35rem;
}

.myaccount:hover .mymenuList {
    visibility: visible;
    opacity: 1;
    margin-top: 36px;
}

.mymenuList ul {
    display: flex !important;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.mymenuList li {
    display: block;
    border-bottom: 1px solid var(--base-color2);
}

.mymenuList li:last-child {
    border-bottom: 0;
}

.mymenuList li a {
    padding: 0.5rem 0.75rem;
    position: relative;
    display: block;
}

.userDetails {
    display: flex;
    align-items: center;
    background: #e6eef2;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem 0.25rem 0 0;
}

.userDetails img {
    height: 40px;
    width: 40px;
    border-radius: 100%;
    border: 1px solid #555;
}

.userDetails h5 {
    font-size: 1rem;
    margin-bottom: 0;
    margin-left: 0.5rem;
    font-weight: 500;
}

.userDetails h5 small {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
}


.queryPanel {
    position: relative;
    margin-top: 70px;
    background: url(../images/qureybg.jpg) center;
}

/* 02.09.2024 */
/* Step Guide */
/* ============================= */
.stepPanel {
    position: relative;
    padding-top: 2.5rem;
}

.stepMain {
    position: relative;
}

.stepBox {
    border-radius: 1rem;
    padding: 2.5rem 2rem 2rem;
    position: relative;
}

.stepBox h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.stepBox p {
    font-size: 15px;
}

.stepBox p:last-child {
    margin: 0;
}

.stepBox .count {
    position: absolute;
    top: -2.5rem;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 3px 3px 0 rgba(83, 168, 48, 0.4);
    border-radius: 1rem;
    padding: 0.5rem 1.5rem 0.25rem;
    background: var(--theme-color);
    color: var(--white-color);
}

/* Destop Responsive Panel */
/* =============================================== */
@media(max-width:1400px) {
    body {
        font-size: 90%;
    }

    main h1 {
        font-size: 2rem;
    }

    .searchBig input[type=text] {
        font-size: 18px;
    }

    h4 {
        font-size: 1.15rem !important;
    }

    .tabs>ul li a,
    .tabs>ul li a:visited {
        font-size: 90%;
    }

    .tabs>ul li a,
    .tabs>ul li a:visited {
        font-size: 80%;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        height: 41px;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .advanDecl ul li {
        font-size: 12px;
    }

    .advanDecl {
        height: 390px;
    }

    h3 {
        font-size: 1.5rem;
    }

    .datatabmenu {
        margin-top: 0.25rem;
        overflow: auto;
    }
}



@media(max-width:1024px) {
    .stockanalysisMenu {
        top: 70px;
    }

    body {
        font-size: 80%;
    }

    main h1 {
        font-size: 1.7rem;
    }

    main h5 {
        font-size: 1rem;
    }

    .stockSearchPanel {
        min-height: 250px;
    }

    h4 {
        font-size: 1rem !important;
    }

    .tabs>ul {
        overflow: auto;
    }

    .tabs>ul li a,
    .tabs>ul li a:visited {
        white-space: nowrap;
        height: auto;
        padding: 0.75rem 0.75rem 0.5rem;
        padding-right: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h6 {
        font-size: 0.9rem;
    }

    .advanDecl {
        height: 370px;
    }

    .tabs-menu div {
        overflow: hidden;
        text-overflow: ellipsis;
        width: 60px;
    }

    .stocknewsMain {
        display: none;
    }

    .loginPanel {
        justify-content: center;
        /* height: auto; */
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .loginPanel .left-pt {
        display: none;
    }

    .loginPanel .right-pt {
        width: 100%;
        max-width: 400px;
    }

    .searchBig .ri-close-circle-fill {
        top: 12px;
    }

    .menuLink {
        flex-wrap: nowrap;
        overflow: auto;
    }

    .menuLink a {
        white-space: nowrap;
    }

    /* .fii_dii {
        flex-direction: row;
    }

    .fii_dii .fii,
    .fii_dii .dii {
        width: 48%;
    } */
    .menubar ul,
    .stick-stock {
        display: none;
    }

    .menubar .mobilemenu {
        display: block;
    }

    .titleheader {
        display: block;
    }

    .menubar {
        justify-content: end;
    }
}

@media(max-width:800px) {
    .container-fluid {
        width: 100%;
    }

    .topSearch {
        display: none !important;
    }

    main h1 {
        font-size: 1.5rem;
    }

    .searchBig {
        min-width: auto;
    }

    .searchBig input[type=text] {
        height: 60px;
        padding: 0 40px 0 60px;
    }

    .imateBtn img {
        height: 60px;
    }

    .tabs section.active-content .topPart h6 {
        width: calc(100% - 100px);
    }

    .tooltip2 {
        right: 5px;
    }

    .tabs section {
        width: auto;
    }

    .datatabmenu {
        margin-top: 0.25rem;
        overflow: auto;
    }

    /* 
    .shareholding{
        direction: rtl;
    } */

    .growthvaluationHead {
        width: 100%;
        flex-direction: column;
    }

    .form-check-inline {
        margin-right: 0.75rem;
    }

    .loginPanel .right-pt {
        width: 100%;
        max-width: 350px;
    }

    .tabs section.active-content .topPart {
        align-items: start;
    }

    .tabs section.active-content .topPart small {
        display: block;
        margin-top: 3px;
    }

    .listRatioMain .form-check {
        width: calc(50% - 10px);
    }

    .listRatioMain .form-check:nth-child(odd) {
        margin-right: 10px;
    }
}

@media(max-width:640px) {
    .fii_dii {
        flex-direction: column;
    }

    .fii_dii .fii,
    .fii_dii .dii {
        width: 100%;
    }

    .advanDecl {
        height: 240px;
    }

    .stk-view li span {
        display: block;
    }

    .stockOverview {
        margin-top: 5.5rem
    }

    .stockOverview h1 {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .loginPanel .right-pt {
        width: 100%;
        max-width: 300px;
    }

    .stockdataList .topPart {
        display: flex;
        position: relative;
    }

    .stockdataList .topPart select {
        width: 100%;
    }

    .addCompany,
    .addCompany input {
        width: 100%;
    }

    .addCompany .ri-search-2-line {
        top: 8px;
    }

    .loginBox {
        max-width: 300px;
    }
}

/* Imate CTA */
#contact-cta-section {
    padding-top: 25px;
    padding-bottom: 25px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    text-align: center;
}

.wrapper-full {
    position: relative;
}

.cta-wrapper {
    margin-bottom: 0;
    text-align: left;
    padding: 28px;
    background-color: #0a4fd5;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
    border-radius: 0.5rem;
}

.cta-wrapper .details-wrapper {
    float: left;
}

.cta-wrapper .details-wrapper h2 {
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #FFF;
    font-size: 27px;
}

.cta-wrapper .details-wrapper p {
    font-size: 18px;
    color: #FFF;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.cta-wrapper .blue-cta-button {
    color: #FFF;
    letter-spacing: 0.1em;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
    border-radius: 0.5rem;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    white-space: pre;
    margin: auto 0;
    color: #0a4fd5;
    background-color: #FFF;
    padding: 16px 20px;
    text-align: center;
    position: relative;
}

.details-wrapper img {
    width: 100px;
    height: 100px;
    margin-right: 10px;
}

.cta-wrapper .cta-button {
    border: none;
    animation: f linear infinite;
    background: #03ac13;

    animation-iteration-count: infinite;
    animation-duration: 1.2s;
    cursor: pointer;
    display: inline-block;
    padding: 15px 30px;
    font-weight: 600;
    text-align: center;
    position: relative;
    text-decoration: none;
    color: #fff;
    margin: auto 0;
    border-radius: 2px;
}

@keyframes f {

    0% {
        background: linear-gradient(121.19deg, hsla(0, 0%, 100%, .3) 5%, rgba(91, 159, 35, 0) 25%), #03ac13;
    }

    10% {
        background: linear-gradient(121.19deg, rgba(89, 160, 35, 0) 0%, hsla(0, 0%, 100%, .3) 15%, rgba(91, 159, 35, 0) 35%), #03ac13;
    }

    20% {
        background: linear-gradient(121.19deg, rgba(89, 160, 35, 0) 5%, hsla(0, 0%, 100%, .3) 25%, rgba(91, 159, 35, 0) 45%), #03ac13;
    }

    30% {
        background: linear-gradient(121.19deg, rgba(89, 160, 35, 0) 15%, hsla(0, 0%, 100%, .3) 35%, rgba(91, 159, 35, 0) 55%), #03ac13;
    }

    40% {
        background: linear-gradient(121.19deg, rgba(89, 160, 35, 0) 25%, hsla(0, 0%, 100%, .3) 45%, rgba(91, 159, 35, 0) 65%), #03ac13;
    }

    50% {
        background: linear-gradient(121.19deg, rgba(89, 160, 35, 0) 35%, hsla(0, 0%, 100%, .3) 55%, rgba(91, 159, 35, 0) 75%), #03ac13;
    }

    60% {
        background: linear-gradient(121.19deg, rgba(89, 160, 35, 0) 45%, rgba(255, 255, 255, 0.331) 65%, rgba(91, 159, 35, 0) 85%), #03ac13;

    }

    70% {
        background: linear-gradient(121.19deg, rgba(89, 160, 35, 0) 55%, rgba(255, 255, 255, 0.331) 75%, rgba(91, 159, 35, 0) 95%), #03ac13;
    }

    80% {
        background: linear-gradient(121.19deg, rgba(89, 160, 35, 0) 65%, rgba(255, 255, 255, 0.331) 85%, rgba(91, 159, 35, 0) 105%), #03ac13;
    }

    90% {
        background: linear-gradient(121.19deg, rgba(89, 160, 35, 0) 75%, rgba(255, 255, 255, 0.331) 95%), #03ac13;
    }

    100% {
        background: linear-gradient(121.19deg, rgba(89, 160, 35, 0) 85%, hsla(0, 0%, 100%, .3) 105%), #03ac13;
    }

}

.cta-wrapper .details-wrapper {
    display: block;
}

.details-wrapper img {
    border-radius: 1rem;
}

.cta-wrapper {
    display: block;
    text-align: center;
}

@media (min-width: 767px) {
    .cta-wrapper .details-wrapper {
        display: flex;
    }

    .cta-wrapper {
        display: flex;
        text-align: left
    }

    .details-wrapper div {
        margin: 15px 0;
    }
}

.banner {
    margin-top: 80px;
    background-image: url('../images/banner.png');
    height: 500px;
}

.banner-content {
    padding: 77px 100px;
    color: #fff;
    width: 100%;
}

.swiper-pagination-bullet-active {
    background-color: #fff;
}

.swiper-pagination-bullet {
    background: #fff;
}

@media(max-width:1024px) {
    .banner {
        margin-top: 70px;
    }

    .banner img {
        max-width: 250px;
    }
}

@media(max-width:767px) {
    .banner {
        height: 600px;
    }

    .banner-content {
        padding: 25px;
    }
}

/* SKELETON CSS */
.skeleton .square {
    height: 200px;
    border-radius: 5px;
    background: rgba(130, 130, 130, 0.2);
    background: -webkit-gradient(linear, left top, right top, color-stop(8%, rgba(130, 130, 130, 0.2)), color-stop(18%, rgba(130, 130, 130, 0.3)), color-stop(33%, rgba(130, 130, 130, 0.2)));
    background: linear-gradient(to right, rgba(130, 130, 130, 0.2) 8%, rgba(130, 130, 130, 0.3) 18%, rgba(130, 130, 130, 0.2) 33%);
    background-size: 800px 100px;
    animation: wave-squares 2s infinite ease-out;
}

.skeleton .line {
    height: 14px;
    margin-bottom: 4px;
    margin-top: 4px;
    margin-right: 5px;
    border-radius: 2px;
    background: rgba(130, 130, 130, 0.2);
    background: -webkit-gradient(linear, left top, right top, color-stop(8%, rgba(130, 130, 130, 0.2)), color-stop(18%, rgba(130, 130, 130, 0.3)), color-stop(33%, rgba(130, 130, 130, 0.2)));
    background: linear-gradient(to right, rgba(130, 130, 130, 0.2) 8%, rgba(130, 130, 130, 0.3) 18%, rgba(130, 130, 130, 0.2) 33%);
    background-size: 700px 100px;
    animation: wave-lines 2s infinite ease-out;
}

.skeleton .linepeer {
    height: 30px;
    margin-bottom: 4px;
    margin-top: 4px;
    margin-right: 5px;
    border-radius: 2px;
    background: rgba(130, 130, 130, 0.2);
    background: -webkit-gradient(linear, left top, right top, color-stop(8%, rgba(130, 130, 130, 0.2)), color-stop(18%, rgba(130, 130, 130, 0.3)), color-stop(33%, rgba(130, 130, 130, 0.2)));
    background: linear-gradient(to right, rgba(130, 130, 130, 0.2) 8%, rgba(130, 130, 130, 0.3) 18%, rgba(130, 130, 130, 0.2) 33%);
    background-size: 700px 100px;
    animation: wave-lines 2s infinite ease-out;
}

.skeleton-right {
    flex: 1;
}

.skeleton-left {
    flex: 2;
}

.flex1 {
    flex: 1;
}

.flex2 {
    flex: 2;
}

.skeleton .line:last-child {
    margin-bottom: 0;
}

.h8 {
    height: 20px !important;
}

.w10 {
    width: calc(10% - 5px) !important
}

.w15 {
    width: calc(15% - 5px) !important
}

.w20 {
    width: calc(20% - 5px) !important
}

.w25 {
    width: calc(25% - 5px) !important
}

.w33 {
    width: calc(33% - 5px) !important;
}

.w40 {
    width: calc(40% - 5px) !important;
}

.w50 {
    width: calc(50% - 5px) !important
}

.w75 {
    width: 75% !important
}

.circle {
    border-radius: 50% !important;
    height: 80px !important;
    width: 80px;
}

@keyframes wave-lines {
    0% {
        background-position: -468px 0;
    }

    100% {
        background-position: 468px 0;
    }
}

@keyframes wave-squares {
    0% {
        background-position: -468px 0;
    }

    100% {
        background-position: 468px 0;
    }
}

/* Banner Style for QR code  */
/* QR code in Banner Style */
/* padding: 13px;                     # Added padding
    border: 4px solid #ffffff;        # White border around the QR
    border-radius: 12px;
    background-color: rgba(255,255,255,0.05);
*/
.qr-container {
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.qr-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.qr-img-wrapper {
    background-color: #ffffff;  /* white padding effect */
    padding: 15px;              /* white space around image */
    border-radius: 12px;        /* rounded corners */
    display: inline-block;
}

.qr-img:hover {
    transform: scale(1.05);
}

.qr-caption {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    /* text-align: center; */
    margin-top: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* Remove swiper pagination dots */
.swiper-pagination {
    display: none !important;
}

.store-buttons {
    display: flex;
    gap: 10px;
}

.store-buttons .store-btn {
    /* height: 45px;
    width: 100%; */
    object-fit: contain;
    transition: transform 0.3s ease;
}

.store-buttons .store-btn:hover {
    transform: scale(1.05);
}