* {
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #ffffff !important;
}

:root {
    --btn-color: #5a8d54;
    --font-black: #242424;
    --white: #ffffff;
    --navbar: #6399a6;
    --dash-head: #99bbc3;
    --primary: #54778d;
}

h4 {
    color: var(--font-black);
}

/*---- Loign-Start-----*/

.login-page {
    height: 100vh;
    width: 100%;
    background-size: cover;
    color: var(--font-black);
}

.login-form {
    background-color: var(--white);
    padding: 30px 60px;
    max-width: 666px;
    border-radius: 10px;
    border: 2px solid #c6e9ff;
    box-shadow: 0px 0px 9.6px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
}

.login-form .header span {
    font-size: 34px;
    color: var(--btn-color);
    font-weight: 700;
}

.login-form .login-head h4 {
    font-weight: 700;
}

.login-form .login-fields input {
    background-color: #f0f9ff;
    border-color: var(--primary);
    height: 46px;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.12);
    color: #000;
    font-weight: 600;
}

input:focus {
    box-shadow: none;
}

input::placeholder {
    font-weight: 500;
}

.remember input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.remember a {
    color: var(--font-black);
}

.login-form button {
    width: 100%;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    border: none;
    padding: 12px;
}

.login-form .login {
    font-size: 24px;
    background-color: var(--btn-color);
    color: var(--white);
    margin: 40px 0px;
}

.login-form .login:hover {
    background-color: #477b41;
}

.login-form button img {
    width: 38px;
}

.login-form .google {
    background-color: #f4f8f9;
    border: 1px solid var(--primary);
    color: #242424;
}

.login-form .google:hover {
    background-color: var(--primary);
    color: var(--white);
}

/*-------login end--------*/

/*----Dashboard-----*/

.dashboard-page .header {
    padding: 5px 30px;
    background: var(--white);
    /* position: sticky;
    top: 0px; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.dashboard-page .header img {
    width: 225px;
}

.dashboard-page .header-left h4 {
    font-weight: 600;
}

.dashboard-page .header-left h4 span {
    color: var(--primary);
}

.user-detail .img {
    width: 60px;
    height: 60px;
    padding: 5px;
    border-radius: 100%;
    border: 2px solid var(--btn-color);
}

.user-detail .img img {
    width: 100%;
    border-radius: 100%;
}

.user-detail {
    color: var(--btn-color);
    cursor: pointer;
}

.sidebar {
    background-color: var(--navbar);
    padding: 20px 30px;
    width: 280px;
    left: 0px;
    position: fixed;
    height: calc(100vh - 95.73px);
    z-index: 9;
    transition: 0.3s ease-in;
    overflow: scroll;
}



.sidebar ul li {
    list-style: none;
    padding: 10px 0px;
}

.sidebar ul a {
    text-decoration: none;
    color: var(--white);
    padding: 10px;
    display: flex;
    align-items: center;
}

.sidebar ul a svg {
    margin-right: 15px;
}

.sidebar .active a {
    background-color: var(--white);
    color: var(--primary);
    border-radius: 6px;
    box-shadow: 0px 2px 7.3px 0px rgba(0, 0, 0, 0.13);
}

.sidebar .active a svg path {
    fill: var(--primary);
}

.sidebar a svg path {
    fill: var(--white);
}

.main-content {
    margin-top: 140px;
}

.main-content .content-header {
    background-color: #99bbc3;
    padding: 15px 30px;
}

.main-content .content {
    margin-left: 280px;
    transition: 1s ease-in;
    height: calc(100vh - 164.73px);
}

.main-content .content h2 {
    font-weight: 700;
    color: var(--white);
}

.content-header .add-new {
    border: 1px solid var(--white);
    background-color: var(--btn-color);
    padding: 10px 40px;
    color: var(--white);
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.13);
    text-decoration: none;
}

.content .data-table {
    padding: 0px 30px;
}

.data-table table {
    background-color: var(--white);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.13);
}

.data-table table tr th {
    background-color: #ccdde1;
    color: var(--primary);
    text-align: start !important;
    border: none !important;
}

.data-table table tr th.roleHeader,
.data-table table tr td.roleHeader {
    text-align: center !important;
}

.data-table table tbody tr:nth-child(even) {
    background-color: #f4f8f9;
}

.data-table table tbody tr:nth-child(odd) {
    background-color: var(--white);
}

.data-table table tbody tr td {
    box-shadow: none !important;
    text-align: start !important;
}

div.dt-container.dt-empty-footer tbody>tr>* {
    border: none;
}

div.dt-container.dt-empty-footer tbody>tr:last-child>* {
    border: none;
}

.data-table .active {
    padding: 6px 30px;
    text-decoration: none;
    border-radius: 6px;
    background-color: #edf8ff;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.data-table .In-Progress {
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 6px;
    background-color: #ffeae9;
    border: 1px solid #ed0f02;
    color: #ed0f02;
}

.data-table .dt-input {
    border-color: var(--btn-color) !important;

    border-radius: 6px !important;
    background-color: #f8fffb !important;
}

.data-table .dt-input:focus-visible {
    outline: 0;
}

button.dt-paging-button.current {
    background-color: #f8fffb !important;
    border-color: var(--btn-color) !important;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f4f8f9;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

div.dt-container div.dt-layout-row {
    white-space: nowrap;
    overflow: auto;
}

.dashboard-page .logo a {
    font-size: 30px;
    color: #242424;
}

.dashboard-page .logo {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sidebar-toggle .sidebar {
    left: 0px;
    transition: 1s ease-in;
}

.sidebar-toggle .content {
    margin: 0px;
    transition: 1s ease-in;
}

.logo .toggle {
    display: none;
}

.login-page .password-eye-icon {
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    background: transparent;

}

.fade-out {
    transition: opacity 1s ease;
    opacity: 0;
}

#password-eye {
    background: #f0f9ff;
    border: 1px solid #54778d;
}

.modal-body .active {
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 6px;
    background-color: #edf8ff;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.data-table .In-Progress {
    padding: 10px 12px;
    text-decoration: none;
    border-radius: 6px;
    background-color: #ffeae9;
    border: 1px solid #ed0f02;
    color: #ed0f02;
}

.cstm-active {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-footer .save {
    background-color: var(--btn-color);
    color: var(--white);
}

.modal-footer .close {
    background-color: #ed0f02;
    color: var(--white);
}

.cstm-active .email {
    width: 70%;
}

.modal-header {
    background-color: #99bbc3;
    color: var(--white);
}

.modal-title {
    font-weight: 600;
}

/* Add Admin */

.profile.h-100 {
    background-color: #ffffff;
}

.profile .profile-logo {
    padding: 8px;
    border: 1px solid var(--navbar);

    border-radius: 100%;
}

.profile .profile-logo .profile-pick {
    width: 100%;
    max-width: 161px;
    object-fit: contain;
    border-radius: 50%;
}

.profile .add-btn {
    max-width: 40px;
    position: absolute;
    bottom: 0px;
    right: 20px;
}

/* The switch - the box around the slider */
.profile .status-switch {
    width: 76px;
    height: 31px;
    position: relative;
}

/* Hide default HTML checkbox */
.profile .checkbox {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.profile .switch {
    width: 100%;
    height: 100%;
    display: block;
    background-color: #6399a6;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease-out;
}

/* The slider */
.profile .slider {
    width: 25px;
    height: 25px;
    position: absolute;
    /* left: calc(50% - 25px/2 - 10px);
    top: calc(50% - 25px/2); */
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease-out;
    cursor: pointer;
    left: calc(50% - 10px / 2 + 10px);
    top: calc(50% - 25px / 2);
}

.profile .checkbox:checked+.switch {
    background-color: #e9e9eb;
}

.profile .checkbox:checked+.switch .slider {
    left: calc(50% - 44px / 2 - 10px);
    top: calc(50% - 25px / 2);
}

.profile .status span {
    font-size: 24px;
    color: #a8a8a8;
    font-weight: 600;
}

.active-font {
    color: var(--primary) !important;
}

.profile .profile-details .fields {
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid rgba(210, 210, 210, 0.4);
    /* background: rgba(255, 255, 255, 0.8); */
    /* box-shadow: 0px 4px 23px -3px rgba(234, 234, 234, 0.5); */
    padding: 30px;
}

.fields .width {
    width: 48%;
}

.fields .form-control {
    height: 54px;
    box-shadow: 4px 4px 12px -3px rgba(177, 177, 177, 0.1);
}

.fields .form-control::placeholder {
    color: #bdbdbd;
}

.fields .all input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.permission-fields .active {
    padding: 15px 10px;
    background-color: var(--btn-color);
    border-radius: 6px;
    text-decoration: none;
    color: var(--white);

    width: 100%;
    max-width: 215px;
}

.permission-fields input {
    width: 19.5px;
    height: 19.5px;
    accent-color: var(--white);
}

.profile-footer .back,
.save,
.resetBtn {
    border: 1px solid #bfd4d9;
    width: 100%;
    max-width: 120px;
    padding: 10px 20px;
    background-color: var(--white);
    border-radius: 5px;
}

.profile-footer .save {
    background-color: var(--btn-color);
    color: var(--white);
}

.profile-photo .bg-pick {
    width: 100%;
    max-width: 250px;
    position: absolute;
    bottom: 50px;
    z-index: -2;
}

.dashboardImg {
    margin-top: 7%;
}

.viewPass {
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    border: none !important;
}

.alert {
    transition: opacity 0.5s ease-in-out;
}

.alert.fade {
    opacity: 0;
}

input.form-control {
    padding-right: 40px;
}

.input-group {
    display: flex;
    align-items: center;
    position: relative;
}

.error-message {
    border-color: #dc3545 !important;
    padding-right: 0.375rem;
    background-position: right calc(0.4em + 0.1875rem) center;
    background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}

.error-message~.invalid-feedback {
    display: block;
    margin-top: 0.25rem;
}

.file-upload {
    display: none;
}

.upload-button {
    cursor: pointer;
}

.profile-widget {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px dashed var(--navbar);
    text-align: center;
}

#cropper {
    width: 100%;
    height: 300px;
    display: none;
    margin-block: 20px;
}

.cr-slider-wrap {
    visibility: hidden;
}

.savebtn,
.savebtn:hover {
    background-color: var(--btn-color) !important;
    color: #fff !important;
    border: 1px solid #e3e3e3 !important;
}

.chngPassImg {
    bottom: unset;
    top: 20%;
}

@media (max-width: 1024px) {
    .logo .toggle {
        display: block;
    }

    .sidebar {
        z-index: 1;
        left: -280px;
    }

    .header .header-right {
        display: none !important;
    }

    .open-sidebar {
        left: 0;
    }

    .sidebar.mainpage-sidebar.open-sidebar {
        left: 0;
    }

    .main-content .content {
        margin: 0px;
    }
}

@media (max-width: 673px) {
    .user-detail p+i {
        display: none;
    }
}

@media (max-width: 576px) {
    .header-left h4 {
        display: none;
    }
}

/* hide the eye icon from ms edge which showing by default */
input::-ms-reveal,
input::-ms-clear {
    display: none;
}

/* set max-height for the datafield modal box */
#dataPointsContainer,
#editDataPointsContainer {
    max-height: 60vh;
    overflow-y: scroll;
}

.modal-spinner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.8);
    /* Optional, for slight background overlay */
    padding: 20px;
    border-radius: 50%;
}

.dt-empty {
    text-align: center !important;
}

.lockedBgClr {
    background-color: #f5cccc;
}

.snapShotLabel {
    padding: 0 30px;
}

td.text-truncate {
    max-width: 20vh;
}

/*30/01/2025*/
.comparison-outer {
    border-radius: 8px;
    border-radius: 10px;
    border: 1px solid rgba(210, 210, 210, 0.4);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 4px 23px -3px rgba(234, 234, 234, 0.5);
    padding: 30px;
}

.comparison-content {
    display: flex;
    align-items: center;
    gap: 0px;
    border-bottom: 1px solid #d9d9d9;
    padding: 10px;
}

.comparison-content label {
    width: 230px;
    color: #0c0c0c;
    font-size: 16px;
    font-weight: 600;
}

.comparison-content h4 {
    font-size: 16px;
    /* color: #696969; */
}

.comparison-btn a {
    padding: 10px 25px;
    font-size: 16px;
}

.comparison-btn button {
    padding: 10px 25px;
    font-size: 16px;
}

.comparison-table-outer {
    border-radius: 10px;
    border: 1px solid rgba(210, 210, 210, 0.4);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 4px 23px -3px rgba(234, 234, 234, 0.5);
    padding: 30px;
    margin-top: 25px;
}

.comparison-inner {
    border: 1px solid #d9d9d9d9;
    border-radius: 6px;
    width: 50%;
}

.profile .profile-details .profile-details-inner {
    box-shadow: unset;
    border: none;
    background-color: unset;
    padding: 0px;
}

/* div#result {
    min-width: 160px;
    min-height: 160px;
    display: flex;
} */

img.logoImage {
    width: 300px !important;
}

input[type="color"] {
    height: 35px;
    border: none;
    cursor: pointer;
    border-radius: 0px;
    padding: 0;
}

.table-container button {
    position: sticky;
    bottom: 0;
    z-index: 1;
    background-color: white;
}

.sortable-placeholder {
    background-color: red;
    height: 40px;
    border: 1px dashed #ccc;
}

.primaryColorBtn,
.secondaryColorBtn,
.benchmarkColorBtn {
    height: 35px;
    border: 1px solid #000;
}

.color-circle {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #ccc;
    cursor: pointer;
    vertical-align: middle;
    background: conic-gradient(red, yellow, green, cyan, blue, magenta, red);
}

#primaryColorPicker,
#secondaryColorPicker,
#textColorPicker,
#benchmarkColorCircle {
    width: 15px;
}

.profileDiv,
.dataDiv {
    background-color: var(--white);
}



.profile-logo.profile-pic.icon-logo {
    max-height: 150px;
    max-width: 150px;
    min-height: 140px;
    min-width: 140px;
}

/* 24/02/2025 */

.profile-logo-big {
    max-width: 170px;
    max-height: 170px;
    width: 100%;
    height: 100%;
}

.profile-logo-big #result {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.profile-logo-big #result img.profile-pick {
    width: 80%;
    height: 80%;
    border-radius: unset;
}

.cstm-profile-logo {
    align-items: center;
}

.cstm-profile-logo #iconLogo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cstm-profile-logo #iconLogo img.profile-pick {
    width: 80%;
    height: 80%;
    border-radius: unset;
}

.benchmark-logo img {
    width: 50px;
    height: 50px;
    object-fit: scale-down;
    border: 1px solid #d2cdcd;
    padding: 4px;
    background-color: #fff;
}

.company-logo img {
    width: 40px;
    height: 40px;
}

.main-card-content {
    padding: 20px;
}

.custom-card .card {
    border-radius: 4px;
    border: 1px solid #EAEAEA;
    background: #FFF;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);

}

.total-card .card-body {
    display: flex;
    align-items: center;
    gap: 20px;
}

.total-card .card-body .card-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.total-card .card-body .card-logo img {
    width: 40px;
}

.user-icon {
    border-radius: 5px;
    background: rgba(20, 152, 115, 0.10);

}

.companes-icon {
    border-radius: 5px;
    background: rgba(220, 48, 151, 0.10);

}

.benchmark-icon {
    border-radius: 5px;
    background: #d58e1d2e;

}

.snapshot-icon {
    border-radius: 5px;
    background: rgba(37, 134, 157, 0.10);

}

.total-card .card-details label {
    font-size: 16px;
    color: #959595;
}

.total-card .card-details h3 {
    font-size: 28px;
    color: #141717;
    font-weight: 700;
}

.heading h3 {
    color: #141717;
    font-weight: 600;
}

.main-page .header {
    padding: 5px 30px;
    background: var(--white);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.main-page .header .logo {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-page .header .logo img {
    width: 225px;
}

.header-right .nav-menu .menu-item {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-right .nav-menu .menu-item .nav-item {
    padding: 0 15px;
}

.header-right .nav-menu .menu-item .nav-item:not(:last-child) {
    border-right: 1px solid rgb(189 218 225);
}

.benchmark-table-section {
    padding: 30px;
}

.benchmark-tbl table.table thead th {
    background-color: #ffffff;
    color: #000000;
    white-space: nowrap;
}

.benchmark-tbl table.table tbody th {
    background-color: #5398a5;
    color: #ffffff;
}

.benchmark-tbl table.table .secondary-header {
    background-color: #91bbc2;
    color: #ffffff;
}

.content-header h2 {
    font-weight: 700;
    color: var(--white);
}

.main-page .nav-menu .nav-link,
.investor-nav .nav-menu .nav-link {
    color: #103d58;
    font-size: 18px;
}

.main-page .nav-menu .nav-link:hover {
    color: #385e76;
}

.questionSym {
    cursor: pointer;
    width: 40px;
}

#infoModal.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 9;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

#infoModal .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
}

#infoModal .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

#infoModal .close:hover,
#infoModal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.main-login-page .login-container {
    height: calc(100vh - 180px);
}

.sidebar.mainpage-sidebar {
    left: -280px;
}

.logo a {
    font-size: 30px;
    color: #242424;
}


.table-wrapper {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;

    th,
    td {
        padding: 9px 10px;
    }

    .pinned {
        display: none;
    }

    .scrollable {
        table {
            width: 100%;
        }
    }
}

@media (max-width: 1100px) {
    .table-wrapper {
        border-right: 1px solid #ccc;

        .scrollable {
            overflow: scroll;
            overflow-y: hidden;

            table {
                margin-left: 20%;

                th,
                td {
                    white-space: nowrap;
                }

                .hide-mobile {
                    display: none;
                }
            }
        }

        .pinned {
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            background: #fff;
            width: 20%;
            overflow: hidden;
            overflow-x: scroll;
            border-right: 1px solid #ccc;
            border-left: 1px solid #ccc;

            table {
                border-right: none;
                border-left: none;
                width: 100%;
            }
        }
    }
}

.main-page .login-container {
    height: calc(100vh - 131px);
    display: flex;
    align-items: center;
}

.main-page .login-container.admin-login-container {
    height: calc(100vh - 175px);
    display: flex;
    align-items: center;
}

@media (min-width: 992px) and (max-width: 1400px) {
    .login-form {
        padding: 30px;
    }

    .login-form .login {
        font-size: 16px;
        margin: 20px 0;
    }

    img.logoImage {
        width: 225px !important;
    }

    .main-page .login-container.signup-container {
        height: calc(100vh - -80px);
        display: flex;
        align-items: center;
    }

    .main-page .login-container.signup-container .login-form {
        padding: 30px;
    }

    .main-page .login-container.signup-container .login-form .login-fields input {
        height: 40px;

    }

    .main-page .login-container.signup-container .login-form button {
        padding: 8px;
    }
}

.homeIcon {
    cursor: pointer;
}

img.profile-pick {
    border-radius: 50%;
}

.no-color-link {
    color: inherit !important;
}

/* Benchmark Section css start */

.benchmark-content {
    padding: 15px 30px;
}

.benchmark-profile {
    padding: 50px 0;
    display: flex;
    gap: 20px;
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px; */
}

.benchmark-profile .profile-img {
    width: 150px;
    border: 2px solid #99bbc3;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benchmark-profile .profile-img img {
    width: 100%;
}

.benchmark-profile .profile-details {
    width: calc(100% - 150px);
    padding: 5px 20px;
}

.benchmark-profile .profile-name h3 {
    font-size: 32px;
    font-weight: 600;
}

.benchmark-profile .profile-name p {
    font-size: 21px;
    font-weight: 500;
}

.benchmark-profile .profile-summary p {
    font-size: 16px;
    font-weight: 400;
}

.benchmark-profile .profile-content label {
    width: 225px;
}

.benchmark-profile .profile-content label span {
    font-size: 16px;
    color: #5e5e5e;
    width: 225px;
}

.benchmark-profile .profile-content .details span {
    font-size: 16px;
    color: #000000;
}

.benchmark-profile .profile-content .details {
    margin-bottom: 6px;
}

.benchmark-profile .profile-content .details button.btn.query-btn {
    padding: 0;
    background: #99bbc3;
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}


/* Benchmark Section css end */


.chart-container {
    padding: 15px 30px;
}

.chart-container span.apexcharts-legend-marker {
    display: none;
}

/* div#customLegend {
    display: flex; flex-direction: column;
} */

/* 05/27/2025 */
/* div#customLegend {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
} */

/* 05/27/2025 */

div#customLegend>div {
    width: 19%;
}



.benchmark-tbl .table thead tr th {
    padding: 14px 10px;
    background-color: #99bbc3;
}

/* 
.questionSym {
    vertical-align: middle;
    width: 60px;
    cursor: pointer;
    height: 40px;
}

.benchmark-tbl .table thead tr th:nth-child(2) {
    padding: 0 !important;
} */

.questionSym:hover+.infoModals {
    display: block;
}

.infoModals,
.strategyTooltip,
.portfolioTooltip,
.investorTooltip,
.managementTooltip,
.sharpTooltip,
.performanceTooltip,
.websiteTooltip {
    display: none;
    position: absolute;
    width: 100%;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    top: 40px;
    max-width: 80%;
}

.strategyTooltip,
.portfolioTooltip,
.investorTooltip,
.managementTooltip,
.sharpTooltip,
.performanceTooltip,
.websiteTooltip {
    background-color: #99bbc3 !important;
}

.strategyTooltip {
    top: 50%;
}

.portfolioTooltip {
    top: 53%;
}

.investorTooltip {
    top: 57%;
}

.managementTooltip {
    top: 60%;
}

.sharpTooltip {
    top: 63%;
    z-index: 10;
}

.performanceTooltip {
    top: 66%;
    z-index: 10;
}

.websiteTooltip {
    top: 69%;
    z-index: 10;
}

.query-btn:hover+.strategyTooltip,
.query-btn:hover+.portfolioTooltip,
.query-btn:hover+.investorTooltip,
.query-btn:hover+.managementTooltip,
.query-btn:hover+.sharpTooltip,
.query-btn:hover+.performanceTooltip,
.query-btn:hover+.websiteTooltip {
    display: block;
}


/* Nandan P css for toggle button 05/19/2025 */

.sidebar ul {
    position: relative;
}


.sidebar ul .toggle-button {
    position: absolute;
    top: -10px;
    right: -15px;
    font-size: 18px;
    color: #ffffff;
    rotate: 0deg;
    transition: .3s ease-in;
}

.main-content .content {
    transition: .3s ease-in;
}

.sidebar .sidebar-heading {
    display: block;
}

.main-content.close .sidebar ul a svg {
    margin-right: 0px;
}

.main-content.close .sidebar {
    width: 100px;
    padding: 20px;
}

.main-content.close .sidebar ul .toggle-button {
    rotate: 180deg;
}

.main-content.close .sidebar .sidebar-heading {
    display: none;
}

.main-content.close .sidebar ul a {
    justify-content: center;
}

.main-content.close .content {
    margin-left: 100px;
}



.sidebar.close ul a svg {
    margin-right: 0px;
}

.benchmark-table>thead>tr>th:nth-child(1) {
    width: 600px;
}

.benchmark-table>thead>tr>th:nth-child(2) {
    width: 220px;
}

.benchmark-profile .profile-content label {
    position: relative;
}

.managementTooltip,
.sharpTooltip,
.investorTooltip,
.portfolioTooltip,
.strategyTooltip {
    top: inherit;
    position: absolute;
    z-index: 13;
    width: 100%;
    min-width: 900px;
    height: fit-content;
}

.ModalInsideLogo {
    width: 150px;
    height: auto;
    position: absolute;
    left: -70px;
    bottom: -103px;
}

.cstmLogoContainerModal.modal-content {
    position: relative;
}

.cstmLogoContainerModal {
    border: 2px solid #99bbc3;
    border-radius: 20px;
    width: 800px;
    max-width: 90%;
    padding: 20px 30px;
    padding-bottom: 70px;
    background-color: var(--white) !important;
}

.cstmModalInnerText {
    text-wrap: wrap;
    text-align: left;
    line-height: 150%;
    font-size: 14px;
    font-weight: 500;
}

.labels-list {
    max-height: 340px;
    overflow: auto;
}


.label-card {
    padding: 16px;
    border-bottom: 1px solid #ecf3fb;
    display: flex;
    align-items: center;

}

.label-header {
    padding: 16px;
    margin-bottom: 0px;
}

.label-image {
    width: 48px;
    height: 48px;
    padding: 4px;
    border-radius: 50%;
    background-color: #e3e3e3;
    border: 1px solid #777777;
    display: flex;
    align-items: center;
    justify-content: center;
}

.label-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    min-width: 40px;
    min-height: 40px;
}

.labelcard-heading {
    width: 100%;
    max-width: 400px;
}

.viewBenchmarkTable thead tr th {
    background-color: #99bbc3;
}

.viewBenchmarkTable thead tr th {
    background-color: #99bbc3;
}

.viewBenchmarkTable thead tr th:first-child {
    width: 65%;
}




/* 18 June */
.questionSym:hover+.infoModals.tooltip-content {
    display: block;
    position: absolute;
    left: 30px;
}

.tooltip-content .modal-content {
    background: none;
    border: none;
}

.benchMark-table {
    height: 618px;
    overflow: auto;
}

.benchMark-table table thead {
    position: sticky;
    top: 0px;
}

.benchMark-table table thead {
    position: sticky;
    top: 0px;
}

.icon-cursor-pointer {
    cursor: pointer;
}