:root {
    --secondary-color: #006269;
    --primary-color: #72a98b;
    /* Dark gray for text */
    --whiteTxt-color: #ffffff;
    /* White text for hero section */
    --whiteColor: #fff;
    --blackColor: #000;
    --text-color: #16161D;
    --bg-color: #f6f6f6;
    --tertiary-color: #badfd5;
    --font-main: 'maax-regular';
    --font-secondary: 'decimal-light';
    --font-secondary-heading: 'maax-medium';
    --sjs-font-pagetitle-family: "decimal-light";
    --sjs-font-pagedescription-family: "decimal-light";
    --sjs-font-questiontitle-family: "decimal-light";
    --sjs-font-questiondescription-family: "decimal-light";
    --sjs-font-surveytitle-family: "decimal-light";
    --sjs-default-font-family: "decimal-light";
    --error-color: rgb(255, 0, 0);
    --grayColor: rgb(128, 128, 128);
}
.error-container {
    display: flex;
    justify-content: center;
    padding: 10px;
    min-height: 92vh;
    background-color: #fff0f0;
    align-items: center;
}
.error-div {
    padding: 15px 20px;
    color: #ff6e6e;
    font-family: var(--font-secondary-heading);
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

@font-face {
    font-family: 'maax-regular';
    src: url(./maax-regular.woff2) format("woff2")
}

@font-face {
    font-family: 'maax-medium';
    font-style: bold;
    font-weight: 600;
    src: url(./maax-medium.woff2) format("woff2")
}

@font-face {
    font-family: 'decimal-light';
    src: url(./decimal-light.woff2) format("woff2");
}

/* Common css */
#mainContent {
    overflow-x: hidden;
    padding: 0 !important;
}

.main-content {
    height: 100vh;
    overflow: auto;
    position: relative;
}

.form-control {
    font-family: var(--font-secondary);
}

.validation-summary-errors {
    padding: 0px !important;
    margin-bottom: 0px !important;
}

.validation-summary-errors:focus-visible {
    outline: none !important;
}

.validation-summary-errors a {
    color: rgb(255, 0, 0) !important;
}

.validation-summary-errors ul {
    list-style-type: none;
    padding: 0px !important;
    margin-bottom: 0px !important;
}

.content {
    background-color: var(--bg-color);
}

h1,
h4,
h5,
h6 {
    color: var(--text-color);
    font-family: var(--font-main);
}

h1 {
    font-size: 1.8rem !important;
}

h5 {
    font-size: 1.2rem;
}

p {
    font-size: 1rem !important;
    font-family: var(--font-secondary) !important;

}

a {
    text-decoration: none !important;
    font-family: var(--font-secondary) !important;
}

.ml-10 {
    margin-left: 10px;
}

.mr-10 {
    margin-right: 10px;
}

.greeting,
.portfolio-val {
    color: var(--secondary-color) !important;
}

.portfolio-valuation .portfolio-val-h5 {
    font-size: 1.4rem !important;
    color: var(--secondary-color) !important;
}

select {
    background: none;
    /* Remove background */
    padding-right: 20px;
    /* Adjust padding for custom icon */
    border: 1px solid var(--secondary-color);
    /* Your border style */
    border-radius: 12px;
    /* Rounded border */
    font-size: 16px;
    /* Adjust font size */
    line-height: 1.5;
    /* Vertical alignment */
    color: #333;
    /* Font color */
    outline: none;
    /* Remove outline */
}

.doc-table {
    width: 100%;
    border-collapse: collapse;
}

.doc-table th,
.doc-table td {
    text-align: left;
    padding: 15px 10px;
    border-bottom: 1px solid #ddd;
}

.doc-table i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.doc-table th {
    font-weight: bold;
    color: #555;
    padding-bottom: 5px !important;
    font-family: 'maax-regular';
    font-size: 16px;
}

.doc-table td {
    font-size: 14px;
    font-family: 'decimal-light';
}

.btn {
    font-family: var(--font-secondary) !important;
}
.btn-primary {
    background-color: var(--secondary-color) !important;
    border-color: 1px solid var(--secondary-color) !important;
    color: var(--whiteTxt-color) !important;
    margin: 20px auto 10px auto;
    padding: 10px 15px !important;

}
.btn-secondary {
    background-color: var(--whiteTxt-color) !important;
    border-color: 1px solid var(--secondary-color) !important;
    color: var(--secondary-color) !important;
    padding: 10px 15px !important;
}
.userName{
    font-size: 1.7rem !important;
    font-weight: 600;
    color: #000;
}

.loginBtnDiv {
    border-bottom: 1px solid rgb(126, 126, 126);
}

.modal-header h1 {
    color: var(--secondary-color) !important;
    font-weight: 600;
    margin: 0 !important;
}

.btn-close {
    background: transparent url(/close.png) center / 1rem no-repeat !important;
    opacity: 1 !important;
    color: var(--secondary-color);
}

.btn-close:focus,
.btn-close:hover {

    opacity: .7 !important;

}

/* Loading */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-overlay-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
    display: flex;
    padding: 1px 10px;
}

.loading-content h6 {
    color: var(--secondary-color);
    font-weight: 600;
    font-family: var(--font-secondary);
}

.loader {
    display: flex;
    align-items: center;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--secondary-color);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 1s linear infinite;
    margin-left: 10px;
    /* margin-top: 8px; */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.login-form {
    padding: 50px 28px;
}

.login-heading-section {

    font: normal normal 400 4.7rem / 1.333 decimal-light, sans-serif;
    color: var(--text-color) !important;
    font-weight: 500;
    padding-bottom: 21px;
    font-size: 1.8rem;
}

.fw-semibold,
.col-form-label {
    font-family: var(--font-secondary-heading);
}

.form-input {
    background-color: #f2f2f2 !important;
    border: none !important;
    border-radius: 0px;
    font-family: var(--font-secondary);
    width: 100%;
    padding: 8px;
}

.form-input:focus {

    outline: 0 !important;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(255, 255, 255) !important;
}

#toggleIcon {
    position: absolute;
    top: 9px;
    right: 26px;
    height: 22px;
    width: 22px;
    background: #f2f2f2;
    /* transform: translateY(-50%); */
    cursor: pointer;
    font-size: 1.2rem;
    color: gray;
}

label {
    text-align: left;
    font-family: var(--font-main) !important;
}

option {
    font-family: var(--font-main) !important;
}


.cofraLogoGreen {
    /* width: 100px; */
    height: 70px;
}

.riverImg {
    position: absolute;
    width: 100%;
    max-height: 100%;
    height: 100vh;
    object-fit: cover;
}

.error-message {
    color: var(--error-color);
    font-size: 0.875rem;
    font-family: var(--font-secondary);
}

.profile-name {
    font-size: 14px;
}

#insights-heading {
    font: normal normal 400 2.6rem / 1.333 decimal-light, sans-serif !important;
}

.insights-content {
    height: 72vh;
}

.private-mode-banner {
    display: none !important;
}

/* New CSS */
.wrapper .main_container {
    width: calc(100% - 215px);
    transition: all 0.3s ease;
}

.privateModeText {
    display: none !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.RI-Show {
    display: flex !important;
}

/* Message text styling */
#submittedMessageText {
    color: var(--whiteTxt-color);
    /* White text */
}

/* Styling for the "Draft Saved" notification */
#surveySentNotification,
#errorNotification,
#draftSavedNotification {
    transition: opacity 0.5s ease, transform 0.5s ease;
    background-color: var(--primary-color);
    color: var(--whiteTxt-color);
    opacity: 0;
    width: 20%;
    max-width: 500px;
    z-index: 9999;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Show the notification */
#surveySentNotification.show,
#draftSavedNotification.show {
    opacity: 1;
    /* Make the notification visible */
}

.errorNotificationn {
    opacity: 1 !important; 
    background-color: var(--whiteTxt-color) !important;
    border: 2px solid red !important;
    color: red !important;

}

.pva-embedded-web-chat-widget-container {
    display: none !important;
}


/* Login Page */
.forgot-password-link,
.noAccount {
    font-size: 14px;
    font-family: var(--font-secondary-heading);
    color: var(--secondary-color);
    text-decoration: none;
    cursor: pointer;
    margin-left: 10px;
    font-weight: 600;
}

.forgot-password-link:hover,
.noAccount:hover,
.noAccount:focus {
    text-decoration: underline;
    color: var(--secondary-color) !important;
}

.supportImg {
    height: 70px;
    width: 70px;
}

.emailIcon {
    height: 20px;
    width: 20px;
}



/* <!----------------------Notification Panel------------------------------> */
.notification-panel {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 350px;
    height: 97%;
    background: #edf0f4;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    transition: right 0.3s ease;
    padding: 20px;
    z-index: 999;
    border-radius: 8px;
    scrollbar-face-color: #ddefea;
    overflow: auto;
}
.noti-scroll{
    height: 100%;
    overflow: auto;
    padding-right: 8px;
}

.noti-scroll::-webkit-scrollbar-thumb {
    background-color: #ddefea;
}


.noti-scroll::-webkit-scrollbar-thumb {
    background-color: #ddefea;
}

.noti-scroll::-webkit-scrollbar {
    width: 5px;
    /* Adjust the width as needed */
}

.noti-scroll::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    /* Change the track color */
}


.notification-item {
    /* padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 8px; */
    padding: 12px 20px;
    cursor: pointer;
    background: #ffff;
    border-radius: 8px;
    border: 1px solid #badfd5;
    margin-bottom: 10px;
}

.notification-item.unread {
    font-weight: bold;
    background: #ddefea;
}

.notification-header {
    font-size: 16px;
    margin-bottom: 5px;
    font-family: var(--font-secondary);
}

.notification-meta {
    color: #222222;
    font-size: 14px !important;
    /* font-size: 12px;
  color: var(--text-color); */
    font-family: var(--font-secondary);
}

.notification-date {
    font-size: 10px !important;
    color: #666666;
    margin-bottom: 0px;
    font-weight: 600;
    margin-top: 7px;
}

.close-btn {
    height: 20px;
    cursor: pointer;
}

.markAllAsRead {
    font-size: 12px;
    padding-left: 3px;
    cursor: pointer;
}

.mt-10 {
    margin-top: 10px;
}

/* ---------------------------Change Password--------------------------------- */

.logo-alignment{
    margin-bottom: 3rem;
    padding-bottom: 3rem;
  }
   
  @media (max-width: 768px) {
    .change-password-content > .image-box {
      display: none;
    }
    .change-password-content > .form-box {
      padding-right: 0px;
    }
    .logo-alignment{
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
    }
    .change-pass-form {
      padding: 40px 12px;
    }
  }
  .imgSize{
    width: 100%;
    height: 100vh;
    background-size: cover;
  }
  .logoht{
    height: 70px;
  }


/* <!------------------------- Dashboard/Home PAGE ---------------------------> */
.fs12 {
    font-family: var(--font-secondary);
    font-size: 12px;
    padding: 35px 0px;
}

.latest-div {
    background-color: #f5f5f5;
    border-radius: 5px;
}

.latest-div div {
    height: 10vh;
    background: #fff;
}

.portfolio-valuation {
    text-align: end;
}

.db-BI {
    min-height: 200px;
}

.db-per {
    min-height: 416px;
}

.latest-report-thumbnail {
    width: 40%;
    object-fit: fill;
    cursor: pointer;
    max-width: 400px;
}

.latest-report-title {
    font-size: 12px !important;
    color: var(--text-color);
    cursor: pointer;
}

.latest-report-date,
.meeting-date,
.meeting-duration {
    font-size: 10px !important;
    color: #838383;
}

/* .latest-report-title,
.latest-report-date {
    font-weight: bolder;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limits to 2 lines */
    /* -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal; */
    /* Allows multi-line truncation */
/* } */ 

.no-latest-reports,
no-meeting {
    font-size: 16px;
    color: #2A2C2E;
}

.meeting-card {
    border-bottom: 3px solid var(--secondary-color);
    border-left: 6px solid;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
}

.meeting-label {
    font-size: 10px !important;
}

.meeting-title {
    font-size: 13px !important;
}

.meeting-start-time {
    font-size: 13px !important;
    color: #2A2C2E;
}

.meeting-header {
    border-bottom: 2px solid rgb(211, 228, 229);
}

.no-meeting-img,
.no-reports-img {
    width: 50px;
    height: auto;
}

.docImag {
    width: 25px;
    height: 25px;
}

/* Modal Styles */
.modal-style {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content-style {
    height: 90%;
    overflow-y: scroll;
    background: #fff;
    padding: 0px 20px;
    border-radius: 8px;
    /* max-width: 642px; */
    width: 60%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.xposition {
    position: sticky;
    top: 0px;
    right: 00px;
    font-weight: 600;
    font-size: 24px;
    text-align: right;
    cursor: pointer;
}


.greeting-wrapper img {
    height: 20px;
}


.currentAssetAllocation{
    width: 20px;
}
.currentAssetDiv{
height: 100%;
}
.performanceTxt{
    font-size: 12px;
}
.performanceIcon{
    width: 37px;
}
.currentAsset-col{
    height: 580px;
}
/* body{
     overflow: hidden;
} */
 
_ngcontent-ng-c485479723, db-BI{
    background-color: var(--blackColor) !important;
}
.dataRoom-link{
    color: var(--secondary-color) !important;
    font-weight: 700;
}
.modal-content-width {
    width: 76%;
  }

.divReports
{
    height: 100% !important;
}
.mt-7{
    margin-top: 7px;
}
.padd-1{
    padding: 1rem;
}
.mt-05{
    margin-top: 0.5rem;
}
.mt-0px{
    margin-top: 0px;
}
.backdrop{
    backdrop-filter: blur(20px);
}
@media (max-width: 597px) {
    /* .greeting-wrapper img {
        display: none !important;
    }
    */
    .portfolio-valuation {
        text-align: start !important;
        margin-top: 25px !important;
        width: auto;
    }
}
 
@media screen and (max-width: 768px) {
   
  .modal-content-width {
    width: 100%;
  }
   
      .font-we {
        font-size: 0.6rem !important;
    }
    .latest-report-title {
        font-size: 7px !important;
        margin: 0px !important;
    }
    .latest-report-date {
        font-size: 5px !important;
    }
    .docImag {
    width: 22px;
    height: 22px;
}

}
 
@media screen and (min-width: 768px) and (max-width: 991px) {
    .font-we {
        font-size: 0.9rem !important;
    }
    .latest-report-title {
        font-size: 10px !important;
    }
    .latest-report-date {
        font-size: 8px !important;
    }
}
@media screen and (min-width: 992px ) and (max-width: 1340px){
    .font-we {
    font-size: 15px !important;
}
.latest-report-title{
        font-size: 8px !important;
}
.latest-report-date{
    font-size: 7px !important;
}
 
}
@media screen and (min-width: 992px ) and (max-width: 1340px){
    .font-we {
    font-size: 15px !important;
}
.latest-report-title{
        font-size: 8px !important;
}
.latest-report-date{
    font-size: 7px !important;
}
 
}
 
@media screen and (max-width: 575px){
    .justify-end{
        justify-content: end !important;
    }
}
@media screen and (min-width: 1920px) and (max-width: 2560px){
    .font-we
    {
            font-size: 1.5rem;
    }
        .latest-report-title {
        font-size: 15px !important;
    }
        .latest-report-date, .meeting-date, .meeting-duration {
        font-size: 12px !important;
    }
}
 
 
 
 
 
 
 
 
 
 
.font-we{
    font-size: 1.5rem;
    color:#006269;
    font-weight: 600;
}

.nameGreeting{
    font-size: 20px;
    color: #000;
}
.DF-1{
    font-size: 1.2rem;
}
.DF-2{
        font-size: 1.8rem !important;
}
.DF-3{
    font-size: 1rem;
}
.BI-Fon{
        font-size: 1.5rem;
}
 
.m-au{
        margin: auto;
}
 
#termsModal{
    backdrop-filter: blur(20px);
}



/* <!------------------------- Otp Verification PAGE ---------------------------> */
#otpTimer {
    font-family: var(--font-secondary);
}

.otp-input {
    width: calc(100% / 6 - 20px);
    text-align: center;
    aspect-ratio: 1 / 1;
    margin-right: 5px;
    border-radius: 5px;
}

.otp-input.error {
    border-color: var(--error-color);
    /* Red border for error */
}

#resendOtpBtn {
    color: var(--primary-color);
    border: none;
    cursor: pointer;
}

#resendOtpBtn:disabled {
    color: grey;
    cursor: not-allowed;
}

#resendOtpBtn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

#error-message-otp {
    width: 66%;
}




/* <!------------------------- Left Navigation in Content Snippet ---------------------------> */
.wrapper {
    display: flex;
    min-height: 100vh;
    /* Ensure the wrapper spans the full height of the viewport */
    background: var(--primary-color);
}

.sidebar-bg {
    height: 100%;
    /* display: flex; */
    background: var(--primary-color);
}

.wrapper .top_navbar .sidebar-hamburger {
    /* width: 70px;
          height: 100%; */
    background: var(--primary-color);
    padding: 15px 21px;
    cursor: pointer;
}

.wrapper .top_navbar .sidebar-hamburger div {
    width: 28px;
    height: 3px;
    background: var(--whiteTxt-color);
    margin: 5px 0;
    border-radius: 5px;
}

.wrapper .sidebar {

    background: var(--primary-color);
    width: 215px;
    /* height: calc(100% - 80px); */
    transition: all 0.3s ease;
}

.wrapper .sidebar ul li a {
    display: block;
    padding: 20px;
    /* color: #fff; */
    position: relative;
    margin-left: 0px;
    color: var(--whiteTxt-color);
    white-space: nowrap;
}

.wrapper .sidebar ul li a.active:before {
    content: "";
    position: absolute;
    top: 13px;
    left: 0;
    width: 3px;
    height: 70%;
    background: var(--secondary-color);
    display: block;
}

.wrapper .sidebar ul li a span.icon {
    margin-right: 5px;
    display: inline-block;
}

.wrapper .sidebar ul li a span.icon img {
    width: 20px;
}

.wrapper .sidebar ul li a span.title {
    display: inline-block;
}


.wrapper .sidebar ul li a.active {
    color: var(--secondary-color) !important;
}

.wrapper .sidebar ul li a:hover:before {
    display: none;
}

.wrapper .sidebar ul li a.active:before {
    display: block;

}



.wrapper.collapse .sidebar {
    width: 70px;
}

.wrapper.collapse .main_container {
    width: calc(100% - 70px);
}

.wrapper.collapse .sidebar ul li a {
    text-align: center;
}

.wrapper.collapse .sidebar ul li a span.icon {
    margin: 0;
}

.collapse .sidebar ul li a span.title {
    display: none;
}

.hide-sidebar {
    display: block;
}

@media(max-width: 768px) {

    .wrapper.collapse .main_container,
    .wrapper .main_container {
        width: 100% !important;
    }

    .hide-sidebar {
        display: none;
    }

    .sidebar-bg {
        display: none !important;
    }

    .wrapper .sidebar ul li a.active:before {
        display: none !important;
    }

    .top_navbar {
        display: none;
    }

    .wrapper .sidebar {
        width: auto;
        margin-bottom: 0px;
    }

    .wrapper .sidebar ul {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        margin-bottom: 0;
        list-style: none;
    }

    .wrapper .sidebar ul li a {
        padding: 15px 20px;
    }

    .wrapper .sidebar ul li a.active {
        border-left: none;
    }

    .wrapper .sidebar ul li a span.title {
        display: none;
    }

    .wrapper.collapse .sidebar {
        width: auto;
    }
}



/* <!------------------------- Document PAGE ---------------------------> */
.search-bar {
    background-color: var(--tertiary-color);
    border-radius: 25px;
}

.search-bar input {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px;
    background: transparent;
}

.search-bar .search-icon {
    font-size: 18px;
    margin-left: 10px;
}

.filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.filters select {
    padding: 5px 12px;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    width: 125px;
}

/* Container styling to position custom arrow */
.select-wrapper {
    position: relative;
    display: inline-block;
}

.select-wrapper::after {
    content: '▼';
    /* Custom arrow */
    font-size: 12px;
    color: #333;
    /* Arrow color */
    position: absolute;
    right: 15px;
    top: 58%;
    transform: translateY(-50%);
    pointer-events: none;
    /* Prevent click on custom icon */
}

/* select option:hover{background-color: var(--primary-color)} */

.truncated-title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

.search-results-list {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ccc;
    background-color: #fff;
    position: absolute;
    width: calc(100% - 20px);
    /* Adjust width based on search bar */
    z-index: 1000;
    display: none;
    /* Hidden by default */
}

.search-results-list div {
    padding: 10px;
    cursor: pointer;
}

.search-results-list div:hover {
    background-color: #f1f1f1;
}

.alex {
    height: 100%;
}

.latest-doc-div {
    background-color: #f8f9fa;
    /* Light background for each card */
    padding: 20px;
    /* Padding within each card */
    margin: 10px;
    /* Space between cards */
    border-radius: 8px;
    /* Rounded corners */
    border: 1px solid #e0e0e0;
    /* Light border */
    width: 230px;
    /* Fixed width for consistent card size */
    text-align: left;
    /* Left-align content */
}

.latest-doc-div:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
    cursor: pointer;
}

/* Header styling for file name */
.latest-doc-div h6 {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    white-space: nowrap;
    /* Keeps text on one line */
    overflow: hidden;
    /* Hides any overflow text */
    text-overflow: ellipsis;
    /* Adds ellipsis (...) if text is too long */
    text-wrap: auto;
}


/* Styling for document icon */
.latest-doc-div h6 img {
    color: #333;
    /* Matching icon color */
    margin-right: 8px;
}

/* Image container to prevent overlap */
.latest-doc-div div {
    width: 100%;
    height: 100px;
    /* Fixed height for placeholder */
    background-color: #e0e0e0;
    /* Light grey background */
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Ensures image fits within container */
}

/* Thumbnail image styling */
.latest-doc-div img {
    max-width: 100%;
    /* Ensure image width does not exceed container */
    max-height: 100%;
    /* Ensure image height does not exceed container */
    object-fit: cover;
    /* Maintain aspect ratio while covering container */
}

/* Text below the placeholder */
.latest-doc-div h6.pt-2 {
    font-size: 0.9rem;
    color: #999;
    /* Grey color for 'Not Open Yet' */
    margin-top: 10px;
}

.latest-doc-div h6 span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 210px;
    /* Adjust as needed */
}


.back-btn{
    border-radius: 5px;
    width: 65px;
    cursor: pointer;
    color:#555;
    }
     
    .modal-content-file{
        width: 84% !important;
    }
    @media(max-width:768px){
        .modal-content-file{
            width: 100% !important;
           
        }
    }
     
    .latest-doc-div h6.pt-2{
        font-size: 0.9rem !important;
    }
    .latest-doc-div h6 {
            font-size: 1rem !important;
    }
     
    @media (min-width: 2560px) {
        .h1-size {
                font-size: 1.8rem !important;
        }
        select{
                font-size: 16px !important;
        }
        .h4-size {
            font-size: 1.5rem !important;
        }
     
        .doc-table th {
            font-size: 16px !important;
        }
        .doc-table td{
            font-size: 14px !important;
        }
    }



/* <-----------------------Access Denied ---------------------->*/
#access-denied-btn {
    padding: 10px 50px !important;
    width: fit-content;
}


/* <!------------------------- My Anthos Survey PAGE ---------------------------> */
/* Styling for the already-submitted message */
#alreadySubmittedMessage {
    background-color: var(--tertiary-color);
    /* Use the secondary color for the background */
    height: 300px;
    font-family: var(--font-main), sans-serif;
    display: none;
    /* Use flexbox for centering content */
}


/* Message text styling */
#submittedMessageText {
    color: var(--secondary-color);
    /* White text */
}

/* <!------------------------- Overview PAGE ---------------------------> */

.survey-result-table {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
}




/* <!------------------------- Questionnaire PAGE ---------------------------> */
input[type="date"] {
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

#sendSurvey {
    font-size: 16px !important;
    padding: 8px 25px !important;
    height: fit-content;
}

.sendSurveyDiv {
    display: flex;
    justify-content: end;
    align-items: flex-end;
}

.img-50 {
    height: 50px;
}


@media (max-width: 578px) {
    .sendSurveyDiv {
        justify-content: flex-start;
    }
  
}



/* <!------------------------- OnBoarding PAGE ---------------------------> */
.register-form {
    width: 60%;
    background: #fff;
    padding: 20px 40px;
}

.onboard-input {
    background-color: #f2f2f2 !important;
    border: none !important;
    border-radius: 0px !important;
}


@media(max-width: 1024px) {
    .register-form {
        width: 75%;
    }
}

@media(max-width: 992px) {
    .register-form {
        width: 80%;
    }
}

@media(max-width: 768px) {
    .register-form {
        width: 90%;
        padding: 20px 25px;
    }
}

@media (max-width: 425px) {
    .register-form {
        width: 100%;
    }
}

/* <!------------------------- Session Expire PAGE ---------------------------> */

.header-sessionExpire {
    background-color: var(--secondary-color);
    padding: 10px 20px;
    height: 8vh;
}

.logo img {
    width: 130px;
}

.sessionSec {
    background-color: var(--tertiary-color);
    height: 92vh;
}

.sessionSec h1 {
    color: var(--secondary-color);
    font: normal normal 400 4.7rem decimal-light, sans-serif;
    line-height: 0.96;
    margin-bottom: 2rem;
}

.sessionSec p {
    color: #444;
    font-size: 1.5625rem;
}

#redirect {
    background-color: var(--secondary-color);
    border: none;
    border-radius: .5rem;
    color: var(--whiteTxt-color);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 3rem;
    margin-top: 2rem;

}

#redirect:hover,
#redirect:active {
    text-decoration: none !important;
}



/* <!------------------------- Onboarding Page ---------------------------> */
.arrow-size{
    font-size: 30px;
}



/* <!------------------------- InM Survey Sumary Page ---------------------------> */

#back-button {
    cursor: pointer;
    width: fit-content;
    border-radius: 25px;
}

#back-button:hover,
#back-button:active {
    background: var(--tertiary-color);
}

.char-count {
    font-size: 12px;
    color: var(--grayColor);
    margin: 0;
    font-family: var(--font-main);
}

#saveCommentBtn {
    background: var(--whiteColor) !important;
}

#saveCommentBtn img{
    width: 25px !important;
}

.parent-container .survey-section {
    width: 100%;
    transition: all 0.3s ease;
}

.input-wrapper{
    width: 90%;
    border-bottom: 2px solid var(--secondary-color);
}
.input-wrapper input:focus-visible, .input-wrapper input{
    border: none;
    outline: none !important;
    width: 100%;
    padding: 10px 10px 0px 10px;
    font-size: 14px;
    font-family: var(--font-main);
}

/* Overall Popup Styling */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

/* Comment Popup Styling */
.comment-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; /* Adjusted size */
    height: 700px; /* Adjusted size */
    background-color: var(--whiteColor);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
}

/* Comment Header */
.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

/* Ensure the heading is on the left and close button is on the right */
.comment-header h5 {
    margin: 0;
    font-size: 18px;
    color: #006269; /* Color for header */
    flex-grow: 1; /* Ensures the heading takes up available space */
}

.close-popup {
    cursor: pointer;
    color: var(--secondary-color);
    font-size: 24px !important;
    font-weight: bold;
    margin: 0px !important;
}
  
/* Comment List */
.comment-list {
    overflow-y: auto;
    flex: 1;
    margin: 10px 0;
    padding-right: 5px;
}
  
.comment-item {
    margin-bottom: 20px;
    border-radius: 10px;
    border: 2px solid var(--tertiary-color);
    padding: 10px;
}
  
.comment-item strong {
    display: block;
    font-size: 14px;
    color: var(--secondary-color);
}
  
.comment-item p {
    margin: 5px 0;
    font-size: 14px;
}
  
.comment-item small {
    font-size: 13px;
    color: #aaa;
}
  
/* Comment Input Box */
.comment-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0px;
}

.comment-input button {
    background-color: #fff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

/* Comment Icon and Count */
.comment-icon {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    margin-top: 20px;
}

.comment-icon img {
  width: 25px;
  /* margin-right: 5px; */
}

.comment-icon span {
    font-size: 12px;
    color: var(--whiteTxt-color);
    background: var(--secondary-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    align-items: center;
    text-align: center;
    position: absolute;
    left: 15px;
    top: -10px;
}

.empty-input-msg{
    font-size: 14px;
    font-family: var(--font-main);
    background: var(--bg-color);
}

.score-section {
    margin-top: 20px;
    background-color: var(--whiteColor);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.score-section input {
    font-size: 16px;
    padding: 8px;
    width: 200px;
}

@media (max-width:768px){
    .comment-popup{
       width: 500px !important;
    
    }
}

@media (max-width: 578px) {
    .comment-popup{
        width: 400px !important;
    }
}

@media (max-width: 425px) {
    .comment-popup{
        width: 300px !important;
    }
}

/* <----------------------- Responsive CSS ---------------------->*/

@media (max-width:425px) {
    .wrapper .main_container {
        padding-top: 15px !important;
    }

    .latest-div {
        margin-right: 0px !important;
    }

    .wrapper .main_container .fs14 {
        text-align: justify !important;
    }

}



/* <!------------------------- LOGIN PAGE ---------------------------> */

@media(max-width: 768px) {
    .login-content>div:first-child {
        display: none;
    }

    .user-detail {
        width: 100% !important;
    }

    .login-content>div:last-child {
        padding-right: 0px;
    }

    .login-form {
        padding: 50px 12px;
    }

    /*For OTP Page*/
    #error-message-otp {
        width: 100% !important;
    }

    /*My Anthos Surevy*/
    #alreadySubmittedMessage {
        padding: 20px;
    }

    #draftSavedNotification {
        width: 80%;
        /* Use more space on smaller screens */
    }
}


/*Dashboard*/
/* <!------------------------- Dashboard ---------------------------> */
@media (max-width: 578px) {

    /* .greeting-wrapper img {
        display: none !important;
    } */

    .portfolio-valuation {
        text-align: start !important;
        margin-top: 25px !important;
    }
}

/* <!------------------------- Documents ---------------------------> */
@media (max-width: 768px) {
    .content {
        padding-bottom: 100px !important;
    }
}

@media (max-width: 575px) {
    .latest-doc-div {
        width: 95% !important;
    }
}

/* <!------------------------- OTP Verify ---------------------------> */
@media (max-width:1024px) {
    .otp-input {
        width: calc(100% / 6 - -53px);
        text-align: center;
        aspect-ratio: 1 / 1;
        margin-right: 5px;
        border-radius: 5px;
    }

}

@media (max-width:767px) {
    .otp-input {
        width: calc(50% / 6 - 8px);
        text-align: center;
        aspect-ratio: 1 / 1;
        margin-right: 5px;
        border-radius: 5px;
    }

    .otpDisp {
        display: block !important;
    }

    .secDivPadding {
        padding: 50px 11px !important;
    }

}

@media (max-width: 650px) {
    .otp-input {
        width: calc(70% / 6 - 8px);
        text-align: center;
        aspect-ratio: 1 / 1;
        margin-right: 5px;
        border-radius: 5px;
    }
}

@media (max-width: 525px) {
    .otp-input {
        width: calc(88% / 6 - 8px);
        text-align: center;
        aspect-ratio: 1 / 1;
        margin-right: 5px;
        border-radius: 5px;
    }
}

@media (max-width: 375px) {
    .otp-input {
        width: calc(98% / 6 - 8px);
        text-align: center;
        aspect-ratio: 1 / 1;
        margin-right: 5px;
        border-radius: 5px;
    }
}

@media (min-width:2560px) {
    h5 {
        font-size: 2.2rem !important;
    }

    h1 {
        font-size: 2.8rem !important;
    }

    .latest-report-title {
        font-size: 20px !important;
    }

    .meeting-label {
        font-size: 18px !important;
    }

    h6 {
        font-size: 1.6rem !important;
    }

    .latest-report-date,
    .meeting-date,
    .meeting-duration {
        font-size: 15px !important;
    }

    .meeting-title {
        font-size: 16px !important;
    }

    .nav-list li a {
        font-size: 22px !important;
    }

    #profileImg,
    #initials {
        width: 50px !important;
        height: 50px !important;
    }

    .portfolio-valuation .portfolio-val-h5 {
        font-size: 2.2 rem !important;
    }

    .fs12 {
        font-size: 20px !important;
    }

    select {
        font-size: 25px;
    }

    h4 {
        font-size: 2.4rem !important;
    }

    .doc-table td {
        font-size: 25px !important;
    }

    p {
        font-size: 1.5rem !important;
    }

    .col-form-label {
        font-size: 25px !important;
    }

    .form-control {
        font-size: 1.6rem !important;
    }

    .checkbox label,
    .radio label {
        font-size: 1.5rem !important;
    }

    .forgot-password-link,
    .noAccount {
        font-size: 22px !important;
    }

    #submit-signin-local {
        font-size: 25px !important;
    }

    #resendOtpBtn {
        font-size: 20px !important;
    }

    #otpTimer {
        font-size: 20px !important;
    }

    .doc-table th {
        font-size: 25px !important;
    }

    .modal-lg,
    .modal-xl {
        --bs-modal-width: 2000px;
    }

    .root_4eb6d5c3 {
        left: 356.235px !important;
    }

    .root_4eb6d5c3 canvas {
        width: 205% !important;
        height: 205% !important;
    }
}

@media (max-width:375px){
    .notification-panel {
        width: 300px;
    }
}
@media (max-width:2000px){
    .notification-panel {
        width: 460px;
    }
}

@media (max-width:2560px){
    .notification-panel {
        width: 480px;
    }
}

.sign-In {
    color: #fff !important;
    font-weight: 600 !important;
}

.sign-Out-pad {
    padding: 5px 16px !important;
}

.xyz {
    display: none;
}




/* ---------------------------Survey Css------------------------------ */
.sd-radio--checked.sd-radio--readonly .sd-radio__decorator:after {
    background-color: var(--secondary-color) !important;
}
.sd-boolean--readonly .sd-boolean__thumb {
    box-shadow: inset 0px 0px 0px 2px var(--secondary-color) !important;
    color: var(--secondary-color) !important;
}

.sd-rating__item.sd-rating__item--selected.sd-rating__item--readonly {
    border-color: var(--secondary-color) !important;
}
.nav-button {
    margin-left: auto !important;
    margin-right: 0 !important;
}
 
.nav-input {
    color: #ffffff !important;
    background-color: var(--secondary-color) !important;
}
 
.nav-input:hover {
    background-color: var(--secondary-color) !important;
}

.sd-navigation__next-btn, .sd-navigation__prev-btn{
    color: var(--secondary-color) !important;
}

.sd-title.sd-container-modern__title{
    box-shadow: 0px 2px 0px var(--sjs-primary-backcolor, var(--secondary-color)) !important;
}

.sd-header__text .sd-title {
    color: var(--text-color) !important;
}
.sd-title.sd-container-modern__title {
    box-shadow: 0px 2px 0px var(--secondary-color) !important;
}
.sd-progress-buttons__list .sd-progress-buttons__list-element--current .sd-progress-buttons__button .sd-progress-buttons__button-content {
    border: calc(0.5*(var(--sjs-base-unit, var(--base-unit, 8px)))) solid var(--secondary-color) !important;
    background-color: var(--secondary-color) !important;
    opacity: 1;
}
.sd-page .sd-page__title, .sd-boolean__thumb, .sd-boolean--checked:not(.sd-boolean--exchanged) .sd-boolean__thumb, .sd-boolean--exchanged:not(.sd-boolean--checked) .sd-boolean__thumb{
    color: var(--secondary-color) !important;
}

  .remark-item{
    margin: 0px;
    background: #fff;
    border: 1px solid #006269;
    border-radius: 10px;
  }
  .remark-font{
    font-family: var(--font-main) !important;
  }
