/* -------------------------------------- Common Style Sheet Start -------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primaryColor: #03804d;
    --primaryColorHover: #006236;
    --secondaryColor: #66FF66;
    --secondaryColorHover: #51c951;
    --primaryFontFamily: 'Montserrat', Arial, Helvetica, sans-serif;
    --secondaryFontFamily: 'Montserrat', Arial, Helvetica, sans-serif;
    --primary-green: #007E4B;
    --accent-green: #2d8a57;
    --dot-green: #3aaa6e;
    --border-active: #e8b84b;
    --text-dark: #333333;
    --text-muted: #555;
    --shadow: 0 8px 32px rgba(0,0,0,0.10);
    --transition: all 0.22s ease;
}
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    transition: all 0.25s linear;
}

.loader .preloader {
    display: none;

}

body {
    font-family: var(--primaryFontFamily);
    font-size: clamp(12px, 0.729vw, 16px);
    line-height: 1.5;
    color: var(--text-dark);
    overflow-x: hidden;
}

*::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

*::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

*::-webkit-scrollbar-thumb {
    background-color: #999999;
    outline: none;
    border-radius: 4px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--headingFontFamily);
    font-weight: 700;
    font-style: normal;
    line-height: 1.4;
    margin: 0;
}

a,
a:hover {
    text-decoration: none;
}

dl,
ol,
ul {
    padding: 0;
    margin: 0;
}

#toast-container {
    z-index: 9999999999 !important;
}

#toast-container>div {
    opacity: 1 !important;
}

.modal-backdrop {
    display: none !important;
}

.select2-container {
    width: 100% !important;
}

.help-block {
    color: red;
    font-size: clamp(12px, 0.625vw, 12px);
    /* position: absolute;
    top: 100%;
    left: 0;
    width: 100%; */
}

.dropdown-menu {
    z-index: 1001;
}

.dropdown-item {
    white-space: normal !important;
}

.characterLimit {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;

    max-width: 500px;
}

.characterLimit.oneLine {
    line-clamp: 1;
    -webkit-line-clamp: 1;
}

.characterLimit.twoLine {
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.characterLimit.threeLine {
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

.characterLimit.fourLine {
    line-clamp: 4;
    -webkit-line-clamp: 4;
}

.characterLimit.fiveLine {
    line-clamp: 5;
    -webkit-line-clamp: 5;
}

.tooltip {
    z-index: 999999 !important;
}

.customTooltip.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
    top: 0;
    border-top-color: rgba(0, 0, 0, 0.8);
}

.customTooltip.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
    right: 0;
    border-right-color: rgba(0, 0, 0, 0.8);
}

.customTooltip.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
    bottom: 0;
    border-bottom-color: rgba(0, 0, 0, 0.8);
}

.customTooltip.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
    left: 0;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.customTooltip.tooltip .tooltip-inner {
    max-width: 500px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 1px 22px 0 rgba(0, 0, 0, 0.1);
    text-align: left;
    line-height: 1.2;
}

input[type="date"i]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none !important;
    width: 25px;
    height: 25px;
    cursor: pointer;
    outline: none !important;
}

/* input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

input[type="date"] {
    -moz-appearance: textfield;
    appearance: textfield;
} */

.switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* .table.table-empty {
    height: 100%;
    margin: 0;
} */

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--primaryColor);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primaryColor);
}

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

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

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

.customCheckbox {
    width: 16px;
    height: 16px;
    accent-color: var(--primaryColor);
}

.dt-scroll-foot {
    display: none !important;
}

/* div.dt-container div.dt-layout-full>*:only-child {
    height: 100%;
} */

div.dt-container.dt-empty-footer .dt-scroll-body {
    height: calc(100% - 44.19px);
}

div.dt-container.dt-empty-footer .dt-scroll-body tbody>tr:last-child>*>*:last-child {
    margin-bottom: 0;
}

.dataTableSection .dataTableSection__tableSection .table-responsive .dt-container .dt-layout-row:has(+ .dt-autosize) {
    padding: 10px 0 0;
}

.ck-content ul,
.ck-content ol {
    margin-top: 20px;
    padding-left: 30px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 3px;
    box-shadow: none;
    padding: 5px 30px;

    font-family: var(--secondaryFontFamily);
    font-size: clamp(12px, 0.833vw, 16px);
    line-height: 1.2;
    font-weight: 600;
    min-width: 105px;
    height: 40px;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    opacity: 0.5;
    pointer-events: none;
    background-color: var(--primaryColor);
}

.btn.btn-sm {
    padding: 5px 18.78px;
    font-size: clamp(12px, 0.625vw, 12px);
    min-width: 70px;
    height: 24px;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: auto;
    padding: 0;
    width: 35px;
    height: 35px;
    border-radius: 8px;
}

.btn-icon img {
    width: 50%;
}

.btn-primary {
    background-color: var(--primaryColor);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--primaryColorHover);
    color: #FFFFFF;
}

.btn-check:checked+.btn.btn-primary,
.btn.btn-primary.active,
.btn.btn-primary.show,
.btn.btn-primary:first-child:active,
:not(.btn-check)+.btn.btn-primary:active {
    background-color: var(--primaryColor);
    border-color: transparent;
}

.btn-primary-border {
    border: 1px solid var(--primaryColor);
    color: var(--primaryColor);
}

.btn-primary-border:hover {
    background-color: var(--primaryColor);
    color: #FFFFFF;
}

.btn-default {
    background-color: #999999;
    color: #FFFFFF;
}

.btn-default:hover {
    background-color: #555555;
    color: #FFFFFF;
}

.btn-default-border {
    border: 1px solid #999999;
    color: #999999;
}

.btn-default-border:hover {
    border: 1px solid #ffffff;
    background-color: #999999;
    color: #FFFFFF;
}

.sidebarFromSection__formGroupBox:has(+ .dataTableSection) {
    padding-bottom: 30px;
    border-bottom: 1px solid #DEDEDE;
    margin-bottom: 30px;
}

.sidebarFromSection__formGroupBox:has(+ .dataTableSection) .sidebarFromSection__formGroup.sidebarFromSection__formGroupBox--withBackground {
    padding: 20px;
    background-color: #F9F9F9;
}

.myDataTable.table thead tr th:first-child {
    min-width: 40px;
}

.dt-empty {
    height: calc(100vh - 299px) !important;
}

.commonModalStyling .dt-empty {
    height: calc(100vh - 416px) !important;
}

.commonModalStyling#galleryeleteModalComponent{
    z-index:99999 !important;
}


/* -------------------------------------- Select Plugin Style Sheet Start -------------------------------------- */

.customFormBox .form-group span.select2.select2-container .select2-selection--single {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex-direction: row-reverse; */

    padding: 7px 14px;
    height: 40px;
    border: 1px solid #CED4DA;
    background: #ffffff url(../../img/chevronDown.svg) no-repeat right 15px center / 12px;
    padding-right: 40px;
}
.customFormBox .form-group span.select2.select2-container .select2-selection--multiple{
    padding: 7px 14px;
    height: 40px;
    border: 1px solid #CED4DA;
    background: #ffffff url(../../img/chevronDown.svg) no-repeat right 15px center / 12px;
    padding-right: 40px;
}
.customFormBox .form-group span.select2.select2-container .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    padding: 0;
    float: left;
    display: inline-block;
    width: auto;
}
.customFormBox .form-group span.select2.select2-container .select2-selection--multiple span.select2-search.select2-search--inline textarea.select2-search__field {
    margin: 0;
    line-height: 1;
    height: 16px;
    resize: none;
}
.customFormBox .form-group span.select2.select2-container .select2-selection--multiple {
    height: auto !important;
    display: inline-block;
    width: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__clear, .select2-container--default .select2-selection--multiple .select2-selection__clear {
    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: normal;
    background-color: transparent;
    border: none !important;
    box-shadow: none !important;
    color: var(--text-dark);
    font-size: clamp(17.5px, 1.823vw, 35px);
    line-height: 1;
    /* opacity: 0; */
    background: #ffffff url(../../img/chevronDown.svg) no-repeat center center / 12px;

    display: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear span, .select2-container--default .select2-selection--multiple .select2-selection__clear span {
    opacity: 0;
}

.customFormBox .form-group .select2-container--default .select2-selection--single .select2-selection__rendered, .customFormBox .form-group .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow, .select2-container--default .select2-selection--multiple .select2-selection__arrow {
    display: none !important;
}
 .customFormBox .form-group .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    z-index: 1;
 }
/* .customFormBox .form-group span.select2.select2-container .select2-selection--multiple span.select2-search {
    top: 0;
    position: absolute;
    width: 100%;
    left: 0;
    padding-left: 14px;
} */
/* .customFormBox .form-group span.select2.select2-container .select2-selection--multiple span.select2-search textarea.select2-search__field {
    width: 100%;
    height: 40px;
    margin: 0px;
    resize: none;
    line-height: 40px;
} */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px;
    background: none;
    border: none;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    list-style: none;
    border: none;
    margin-top: 0;
    margin-bottom: 2px;
}


.preloader,
div.dt-processing .dt-loader {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 99999999;
}
.preloader{
    text-align: center;
    align-content: center;
}
.homePage.loader .preloader {
    display: flex;
}

div.dt-processing {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-left: 0;
    margin-top: 0;
    padding: 0;
}

div.dt-processing .dt-loader {
    display: flex;
    position: absolute;
}

.ck.ck-editor__editable_inline {
    min-height: 150px;
}

table.dataTable thead>tr>th.dt-orderable-asc,
table.dataTable thead>tr>th.dt-orderable-desc,
table.dataTable thead>tr>td.dt-orderable-asc,
table.dataTable thead>tr>td.dt-orderable-desc {
    white-space: nowrap;
}

/* ----------------------------------------------------------------------------------------------------------------- */

.select2-container.select2-container--default.select2-container--open {
    z-index: 99999;
}

.select2-dropdown {
    border: 1px solid #CED4DA;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background: #fff;
    color: #333;
    padding: 8px 10px;
    border: 1px solid #CED4DA;
    border-radius: 4px;
    box-shadow: none !important;
    outline: none !important;
}
.select2-results__option--selected{
    background-color: #dddddd;
}
/* -------------------------------------- Select Plugin Style Sheet End -------------------------------------- */

/* -------------------------------------- Burger Navigation Style Sheet Start -------------------------------------- */

.burgerNavigationComponent {
    display: flex;
    align-items: center;
    justify-content: center;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    z-index: 99999;
    transform: scale(0);
}

.burgerNavigationComponent.show {
    transform: scale(1);
}

.burgerNavigationComponent .burgerNavigationComponent__burgerMenuButton {
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
}

.burgerNavigationComponent .burgerNavigationComponent__burgerMenuButton span.line {
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
}

.burgerNavigationComponent .burgerNavigationComponent__burgerMenuButton span.line.first {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.burgerNavigationComponent .burgerNavigationComponent__burgerMenuButton span.line.second {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.burgerNavigationComponent ul {
    display: flex;
    flex-direction: column;

    margin: 0;
    padding: 0;
}

.burgerNavigationComponent ul li {
    display: block;
    padding: 10px 0;
}

.burgerNavigationComponent ul li a {
    display: block;
    font-family: var(--primaryFontFamily);
    font-size: clamp(16px, 1.25vw, 24px);
    line-height: 1.5;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
}

.burgerNavigationComponent ul li:hover a {
    color: var(--primaryColor)
}

.ck-rounded-corners .ck.ck-balloon-panel, .ck.ck-balloon-panel.ck-rounded-corners{
    z-index: 999999;
}

/* -------------------------------------- Burger Navigation Style Sheet Start -------------------------------------- */

/* -------------------------------------- Common Modal Style Sheet Start -------------------------------------- */

.commonModalStyling {
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99992;
}

.commonModalStyling .modal-dialog {
    width: 96%;
}

.commonModalStyling .modal-dialog.modal-xxs {
    max-width: 400px;
}

.commonModalStyling .modal-dialog.modal-xs {
    max-width: 600px;
}

.commonModalStyling .modal-dialog.modal-sm {
    max-width: 800px;
}

.commonModalStyling .modal-dialog.modal-md {
    max-width: 1000px;
}

.commonModalStyling .modal-dialog.modal-lg {
    max-width: 1200px;
}

.commonModalStyling .modal-dialog.modal-xl {
    max-width: 1400px;
}

.commonModalStyling .modal-dialog.modal-xxl {
    max-width: 1600px;
}

.commonModalStyling .modal-content {
    border-radius: 4px;
    border: none;
}

.commonModalStyling .modal-content .modal-header,
.commonModalStyling .modal-content .modal-body,
.commonModalStyling .modal-content .modal-footer {
    padding: 20px;
}

.commonModalStyling .modal-content .modal-body.customPadding {
    padding: 50px;
}

.commonModalStyling .modal-content .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    background-color: var(--primaryColor);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.commonModalStyling .modal-content .modal-header h2 {
    font-size: clamp(12px, 0.833vw, 16px);
    line-height: 1.2;
    font-family: var(--primaryFontFamily);
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.commonModalStyling .modal-content .modal-header .commonModalStyling__close {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;
}

.commonModalStyling .modal-content .modal-header .commonModalStyling__close img {
    width: 50%;
}

.commonModalStyling.adminProfileDetails .modal-content .modal-header .commonModalStyling__close img,
.commonModalStyling.adminChangePassword .modal-content .modal-header .commonModalStyling__close img {
    filter: invert(97%) sepia(0%) saturate(7476%) hue-rotate(67deg) brightness(107%) contrast(100%);
}

.commonModalStyling .modal-content .modal-header .commonModalStyling__close+.commonModalStyling__logo {
    display: none;
}

.commonModalStyling .modal-content .modal-body:has(.confirmationDelete) {
    padding: 30px;
}

.commonModalStyling .modal-content .modal-body .commonModalStyling__buttonSection {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.commonModalStyling .modal-content .modal-body .commonModalStyling__buttonSection button {
    min-width: 104px;
}

.commonModalStyling.adminChangePassword .modal-content .modal-body .customFormBox h2 {
    display: none;
}

.commonModalStyling .modal-content .modal-footer {
    justify-content: center;
    gap: 20px;

    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top: none;
    padding: 0 15px 10px;
}

.commonModalStyling .modal-content .modal-footer>* {
    margin: 0;
}

.commonModalStyling .modal-content .sidebarFromSection.sidebarFromSection__formSection+.sidebarFromSection__overlay {
    position: absolute;
    top: 50px;
    width: 100%;
    height: calc(100% - 50px);
    background-color: rgba(0, 0, 0, 0.3);
}

.commonModalStyling .modal-content .sidebarFromSection.sidebarFromSection__formSection {
    position: absolute;
    top: 50px;
    height: calc(100% - 50px);
}

.commonModalStyling .modal-content .sidebarFromSection.sidebarFromSection__formSection .sidebarFromSection__modalButton {
    top: 19px;
}

.commonModalStyling.keyModuleModalComponent .modal-content div.dt-container div.dt-layout-row:first-child div.dt-layout-cell.dt-layout-end,
.commonModalStyling.reviewModalComponent .modal-content div.dt-container div.dt-layout-row:first-child div.dt-layout-cell.dt-layout-end {
    padding-right: 40px;
}

.commonModalStyling .commonModalStyling__buttonSection {
    display: flex;
    align-items: center;
    justify-content: center;
}

.commonModalStyling .commonModalStyling__workGroupList {
    display: flex;
    flex-direction: column;
}

.commonModalStyling .commonModalStyling__workGroupList .commonModalStyling__searchSection {
    margin: 0 0 30px;
}

.commonModalStyling .commonModalStyling__workGroupList .commonModalStyling__searchSection input {
    outline: none !important;
    background-color: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #CED4DA;
    width: 100%;
    box-shadow: none !important;
    padding: 8px 16px;
    font-size: clamp(12px, 0.625vw, 12px);
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
    height: 40px;
}

.commonModalStyling .commonModalStyling__workGroupList .commonModalStyling__searchSection input.searchInput {
    background: #ffffff url(../../img/dashboard/searchIcon-t.svg) no-repeat right 15px center / 12px;
    padding-right: 40px;
}

.commonModalStyling .commonModalStyling__workGroupList ul {
    display: flex;
    flex-direction: column;

    margin: 0;
    padding: 0;
    max-height: 400px;
    height: 45vh;
    overflow: auto;
}

.commonModalStyling .commonModalStyling__workGroupList ul li {
    display: block;
    font-size: clamp(12px, 0.729vw, 14px);
    line-height: 1.75;
    font-family: var(--secondaryFontFamily);
    font-weight: 400;
    padding: 7.5px 12px;
    color: #000;
}

.commonModalStyling .commonModalStyling__workGroupList ul li input {
    width: 18px;
    height: 18px;
    box-shadow: none !important;
    outline: none !important;
    margin-right: 5px;
    border: 1px solid #dee2e6;
}

.commonModalStyling .commonModalStyling__workGroupList ul li input:checked {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}

.forgot-top-bar {
    display: flex;
    justify-content: center;  
    align-items: center;  
}

.logo-shield {
    width: clamp(150px, 10vw, 200px);
    height: auto;
    object-fit: contain;
    padding-bottom: clamp(15px,1.25vw,30px);
}

/* -------------------------------------- Common Modal Style Sheet Start -------------------------------------- */
/* -------------------------------------- Delete Modal Style Sheet Start -------------------------------------- */
.confirmationDelete {
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: clamp(12px, 0.833vw, 16px);
    font-weight: 500;
    color: #000000;
    margin: 0 0 50px;
}

.commonModalStyling .modal-content .modal-body:has(.confirmationDelete) .confirmationDelete {
    margin: 0 0 30px;
}

/* -------------------------------------- Delete Modal Style Sheet Start -------------------------------------- */
/* -------------------------------------- Data Table Style Sheet Start -------------------------------------- */

table.dataTable th.dt-type-numeric,
table.dataTable th.dt-type-date,
table.dataTable td.dt-type-numeric,
table.dataTable td.dt-type-date {
    text-align: left;
}

.dataTableSection {
    padding: 10px 0;
    height: 100%;
    position: relative;
}

.dataTableSection.dataTableSection--classificationType {
    /* padding-top: 16px; */
    padding-top: 8px;
}

.modal .dataTableSection {
    padding: 0;
}

.modal .tab-content .dataTableSection {
    padding: 20px 0;
}

.dataTableSection .dataTableSection__classificationSection {
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    min-width: 280px;
}

.dataTableSection .dataTableSection__classificationSection span.select2.select2-container {
    display: block;
}

.dataTableSection .dataTableSection__tableSection {
    height: 100%;
}

.dataTableSection .dataTableSection__tableSection .table-responsive {
    height: 100%;
}

.dataTableSection .dataTableSection__tableSection .table-responsive .dt-container {
    height: 100%;
    position: relative;
    padding: 55px 0 40px;
}

.dataTableSection .dataTableSection__tableSection .table-responsive .dt-container .dt-layout-row {
    margin: 0;
}

/* .dataTableSection .dataTableSection__tableSection .table-responsive .dt-container .dt-layout-row:first-child {
    padding-left: 15px;
} */

.dataTableSection .dataTableSection__tableSection .table-responsive .dt-container .dt-layout-row:first-child,
.dataTableSection .dataTableSection__tableSection .table-responsive .dt-container .dt-layout-row:last-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background-color: #ffffff;
}

.dataTableSection .dataTableSection__tableSection .table-responsive .dt-container .dt-layout-row:last-child {
    top: auto;
    bottom: 0;
}

.dataTableSection .dataTableSection__tableSection .table-responsive .dt-container .dt-layout-row.dt-layout-table {
    height: 100%;
}

.dataTableSection .dataTableSection__tableSection .table-responsive .dt-container .dt-layout-row.dt-layout-table .dt-layout-cell.dt-layout-full {
    height: 100%;
    overflow: auto;
    position: relative;
}

.dataTableSection .dataTableSection__tableSection .table-responsive .dt-container .dt-layout-row .dt-length {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dataTableSection .dataTableSection__tableSection .table-responsive .dt-container .dt-layout-row .dt-length label {
    font-size: clamp(12px, 0.625vw, 12px);
    line-height: 1.2;
    font-family: var(--secondaryFontFamily);
    font-weight: 500;
    color: #767676;
    margin-right: 5px;
    display: flex;
    align-items: center;
    gap: calc(2px + 0.5vw);
}

.dataTableSection .dataTableSection__tableSection .table-responsive .dt-container .dt-layout-row .dt-length select {
    border-radius: 2px;
    border: 1px solid #D1D1D1;
    font-size: clamp(12px, 0.729vw, 14px);
    line-height: 1.2;
    font-family: var(--secondaryFontFamily);
    font-weight: 500;
    color: #767676;
    outline: none !important;
}

.dataTableSection .dataTableSection__tableSection .table-responsive .dt-container .dt-layout-row .dt-search input {
    width: 100%;
    height: 45px;
    outline: none !important;
    margin: 0;
    padding: 6px 12px;
    border: 1px solid #D1D1D1;
    border-radius: 2px;
    background: transparent url(../../img/dataTableSearchIcon.svg) no-repeat right 15px center / 20px;
    padding-right: 50px;
    font-size: clamp(12px, 0.729vw, 14px);
    line-height: 1.2;
    font-family: var(--secondaryFontFamily);
    font-weight: 500;
    color: #767676;
}

.myDataTable.table thead {
    position: sticky;
    top: 0;
    z-index: 1;
}

.myDataTable.table thead tr th {
    border: none !important;
    border-bottom: 1px solid #ddd !important;
    background-color: #C8E7DA;
    font-size: clamp(11px, 0.833vw, 16px);
    line-height: 1.2;
    font-family: var(--secondaryFontFamily);
    font-weight: 500;
    padding: clamp(8px, 0.63vw, 12px);
    color: #333;
    outline: none !important;
}

.myDataTable.table thead tr th:first-child,
.myDataTable.table tbody tr td:first-child {
    padding: 0;
}

.myDataTable.table thead tr th:first-child,
.myDataTable.table tbody tr td:first-child {
    text-align: center;
    vertical-align: middle;
}

.myDataTable.table thead tr th:first-child .dt-column-order {
    display: none;
}

.myDataTable.table tbody tr td {
    border: none !important;
    border-bottom: 1px solid #E1E1E1 !important;
    font-size: clamp(11px, 0.729vw, 14px);
    line-height: 1.75;
    font-family: var(--secondaryFontFamily);
    font-weight: 400;
    padding: 5px clamp(8px, 0.63vw, 12px);
    color: #000;
    vertical-align: middle;
    outline: none !important;
}

.myDataTable.table tbody tr:nth-of-type(odd),
.myDataTable.table tbody tr:nth-of-type(odd) td {
    --bs-table-color-type: none;
    --bs-table-bg-type: none;
    background-color: #ffffff;
}

.myDataTable.table tbody tr:nth-of-type(even),
.myDataTable.table tbody tr:nth-of-type(even) td {
    background-color: #FAFAFA;
}

.myDataTable.table tbody tr td a {
    display: inline-block;
    width: 10px;
    color: #000;
}

.myDataTable.table tbody tr td a img {
    width: 100%;
}

.myDataTable.table tbody tr td i,
.myCommonTable.table tbody tr td i {
    color: #999999;
}

.myDataTable.table tbody tr td i.popular,
.myCommonTable.table tbody tr td i.popular {
    color: #FFD600
}

.myDataTable.table tbody tr td .dropdown {
    display: block;
    width: 90px;
}

.myDataTable.table tbody tr td .dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 30px;
    padding: 8px 12px;
    border: 1px solid #E1E1E1;
    background-color: #FFFFFF;
    width: 100%;
    border-radius: 2px;
    font-size: clamp(12px, 0.625vw, 12px);
    line-height: 1.2;
    font-family: var(--secondaryFontFamily);
    font-weight: 400;
    color: #666666;
}

.myDataTable.table tbody tr td .dropdown .dropdown-toggle::after {
    margin-left: 0;
    content: "";
    border: none;
    background: transparent url(../../img/chevronDown.svg) no-repeat center center / cover;
    width: 10px;
    height: 6px;
}

.myDataTable.table tbody tr td .dropdown .dropdown-toggle.show {
    background-color: var(--primaryColor);
    color: #ffffff;
}

.myDataTable.table tbody tr td .dropdown .dropdown-toggle.show::after {
    filter: brightness(1000%);
}

.myDataTable.table tbody tr td .dropdown .dropdown-menu {
    background-color: #FFFFFF;
    border: 1px solid #E1E1E1;
    border-block: none;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.18);
    width: 100%;
    min-width: auto;
    border-radius: 2px;
    padding: 0;
}

.myDataTable.table tbody tr td .dropdown .dropdown-menu li {
    display: block;
}

.myDataTable.table tbody tr td .dropdown .dropdown-menu li .dropdown-item {
    display: block;
    padding: clamp(6px, 0.52vw, 10px) clamp(8px, 0.63vw, 12px);
    border-bottom: 1px solid #EAEAEA;
    width: 100%;
    font-size: clamp(11px, 0.729vw, 14px);
    line-height: 1.2;
    font-family: var(--secondaryFontFamily);
    font-weight: 400;
    color: #666666;
}

.myDataTable.table tbody tr td .dropdown .dropdown-menu li .dropdown-item.active,
.myDataTable.table tbody tr td .dropdown .dropdown-menu li .dropdown-item:active,
.myDataTable.table tbody tr td .dropdown .dropdown-menu li .dropdown-item:focus,
.myDataTable.table tbody tr td .dropdown .dropdown-menu li .dropdown-item:hover {
    background-color: var(--primaryColor);
    color: #ffffff;
}

.dataTableSection .dt-container .dt-info {
    font-size: clamp(12px, 0.625vw, 12px);
    line-height: 1.2;
    font-family: var(--secondaryFontFamily);
    font-weight: 500;
    color: #666666;
}

.dataTableSection .dt-container .dt-paging nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dataTableSection .dt-container .dt-paging nav .dt-paging-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;
    padding: 0;
    margin-left: 10px;
    color: #3E3E3E !important;
    border: none !important;
    border-radius: 4px;
    background: #F5F5F5;
    font-size: clamp(12px, 0.625vw, 12px);
    font-family: var(--secondaryFontFamily);
    font-weight: 500;
    line-height: 1.2;
}

.dataTableSection .dt-container .dt-paging nav .dt-paging-button.first,
.dataTableSection .dt-container .dt-paging nav .dt-paging-button.previous,
.dataTableSection .dt-container .dt-paging nav .dt-paging-button.next,
.dataTableSection .dt-container .dt-paging nav .dt-paging-button.last {
    font-size: clamp(16px, 1.042vw, 20px);
    line-height: 1;
}

.dataTableSection .dt-container .dt-paging nav .dt-paging-button:hover,
.dataTableSection .dt-container .dt-paging nav .dt-paging-button.current,
.dataTableSection .dt-container .dt-paging nav .dt-paging-button.current:hover,
.dataTableSection .dt-container .dt-paging nav .dt-paging-button.current:active {
    background: var(--primaryColor);
    color: #ffffff !important;
}

.dataTableSection .dt-container .dt-paging nav .dt-paging-button.disabled,
.dataTableSection .dt-container .dt-paging nav .dt-paging-button.disabled:hover,
.dataTableSection .dt-container .dt-paging nav .dt-paging-button.disabled:active {
    cursor: not-allowed;
    color: #3E3E3E !important;
    background-color: transparent !important;
}

/* -------------------------------------- Data Table Style Sheet End -------------------------------------- */

/* -------------------------------------- Tabs Navigation Style Sheet Start -------------------------------------- */

.tabsNavigationSection {
    display: flex;
    flex-direction: column;
}

.tabsNavigationSection .nav.nav-tabs {
    display: flex;
    flex-direction: row;
}

.tabsNavigationSection .nav.nav-tabs .nav-item {
    margin-right: 20px;
}

.tabsNavigationSection .nav.nav-tabs .nav-item .nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #F5F2FF;
    border: none;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 9.11px 55px 9.105px 10px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.tabsNavigationSection .nav.nav-tabs .nav-item .nav-link .name {
    display: inline-block;
    font-size: clamp(12px, 0.729vw, 14px);
    line-height: 1.2;
    font-family: var(--secondaryFontFamily);
    font-weight: 500;
    color: #000000;
}

.tabsNavigationSection .nav.nav-tabs .nav-item .nav-link .counter {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 100%;
    background-color: #E5DDFF;
    font-size: clamp(12px, 0.729vw, 14px);
    line-height: 1.2;
    font-family: var(--secondaryFontFamily);
    font-weight: 500;
    color: #000000;
}

.tabsNavigationSection .nav.nav-tabs .nav-item .nav-link.active {
    background-color: var(--primaryColor);
}

.tabsNavigationSection .nav.nav-tabs .nav-item .nav-link.active .name {
    color: #ffffff;
}

.tabsNavigationSection .nav.nav-tabs .nav-item .nav-link.active .counter {
    background-color: #381FAB;
    color: #ffffff;
}

/* -------------------------------------- Tabs Navigation Style Sheet End -------------------------------------- */

/* -------------------------------------- Sidebar Form Style Sheet Start -------------------------------------- */

.customFormBox {
    display: flex;
    flex-direction: column;

    width: 100%;
    position: relative;
}

.customFormBox .form-group {
    position: relative;
    margin: 0 0 clamp(15px, 1.563vw, 30px);
}

.customFormBox .form-group:last-child {
    margin: 0;
}

/* .customFormBox .form-group.has-error {
    margin: 0;
} */

.customFormBox .form-group .form-label,
.sidebarFromSection__browseImageBox label.form-label {
    /* display: flex;
    align-items: center;
    justify-content: flex-start; */

    font-family: var(--secondaryFontFamily);
    font-size: clamp(12px, 0.625vw, 12px);
    font-weight: 600;
    line-height: 1;
    color: #000000;
    margin: 0 0 5px;
    /* height: 100%; */
}

.customFormBox .form-group .form-label img,
.sidebarFromSection__browseImageBox label.form-label img {
    width: 100%;
}

.customFormBox .form-group a.resetButton {
    position: absolute;
    top: -15px;
    right: 0;
    font-family: var(--secondaryFontFamily);
    font-size: clamp(12px, 0.625vw, 12px);
    font-weight: 600;
    line-height: 1;
    color: var(--primaryColor);
    text-decoration: underline;
}

.customFormBox a.forgotPassword {
    display: inline-block;
    font-family: var(--primaryFontFamily);
    font-size: clamp(12px, 0.625vw, 12px);
    font-weight: 500;
    line-height: 1.4;
    color: #000000;
}

.required {
    color: red;
    font-size: 12px;
}

.dataTableSection.dataTableSection--classificationType .customFormBox .form-group .form-label {
    color: #666666;
    position: absolute;
    top: -8px;
    left: 8px;
    background-color: #ffffff;
    padding: 2px 4px;
    z-index: 1;
}

.customFormBox .form-group .form-control {
    background-color: #FFFFFF;
    border-radius: 0px !important;
    border: none !important;              /* remove all borders */
    border-bottom: 1px solid #CED4DA !important;  /* add only bottom border */
    width: 100%;
    box-shadow: none !important;
    padding: 8px 16px;
    font-size: clamp(12px, 0.625vw, 12px);
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
    height: 40px;
    position: relative;
}

.customFormBox .form-group textarea.form-control {
    min-height: 120px;
    resize: none;
}

.customFormBox .form-group select.form-control {
    background: #ffffff url(../../img/chevronDown.svg) no-repeat right 15px center / 12px;
}

.customFormBox .form-group input.form-control.envelopIcon {
    background: #ffffff url(../../img/dashboard/envelopIcon-m.svg) no-repeat right 15px center / 16px;
}

.customFormBox .form-group input.form-control.eyeIcon {
    background: #ffffff url(../../img/dashboard/eyeIcon2-m.svg) no-repeat right 15px center / 18px;
}

.customFormBox .form-group input.form-control.textIcon {
    background: #ffffff url(../../img/dashboard/typingIcon.svg) no-repeat right 15px center / 16px;
}

.customFormBox .form-group input.form-control.calendarIcon {
    background: #ffffff url(../../img/dashboard/calenderIcon.svg) no-repeat right 15px center / 18px;
}

.customFormBox .form-group input.form-control.calendarIcon2 {
    background: #ffffff url(../../img/calendarIcon-b.svg) no-repeat right 15px center / 18px;
}

.customFormBox .form-group input.form-control:has(+ a.showHidePassword) {
    padding-right: 40px;
}

.customFormBox .form-group .openInvitationButton {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 10px;
}

.customFormBox .form-group .openInvitationButton img {
    width: 100%;
}

.customFormBox .form-group .workGroupPopupButton {
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
}

.customFormBox .form-group .workGroupPopupButton img {
    width: 12px;
}

.customFormBox .form-group small.maximumLimit {
    display: block;
    font-size: clamp(12px, 0.521vw, 12px);
    font-family: var(--secondaryFontFamily);
    line-height: 1;
    font-weight: 400;
    text-align: right;
    margin-top: 10px;
}

.customFormBox .form-group .forgotPassword {
    margin: 0;
}

label.error {
    color: red;
    font-size: 12px;
}

.showHidePassword {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.showHidePassword .hideImage {
    display: none;
}

.showHidePassword .showImage {
    display: block;
}

.showHidePassword.show .hideImage {
    display: block;
}

.showHidePassword.show .showImage {
    display: none;
}

.sidebarFromSection__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.6);
}

.sidebarFromSection__overlay.show {
    display: block;
}

.sidebarFromSection {
    position: fixed;
    top: 60px;
    height: calc(100vh - 60px);
    z-index: 9997;
    background-color: #ffffff;
}

.sidebarFromSection.show {
    right: 0 !important;
    z-index: 99991;
}

.sidebarFromSection.sidebarFromSection--fiftyPercentWidth {
    width: 50%;
    right: -50%;
}

.sidebarFromSection.sidebarFromSection--customWidth {
    width: 1200px;
    right: -1200px;
}

.sidebarFromSection .sidebarFromSection__slideButton,
.sidebarFromSection .sidebarFromSection__modalButton {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 48px;
    right: 100%;
    width: 45px;
    height: 45px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    background-color: var(--primaryColor);
    cursor: pointer;
}

.sidebarFromSection .sidebarFromSection__slideButton.withDropdown {
    top: 50px;
}

.sidebarFromSection.show .sidebarFromSection__slideButton {
    top: 0;
}

.sidebarFromSection.sidebarFromSection--sendInvites .sidebarFromSection__slideButton {
    right: auto;
}

.sidebarFromSection.sidebarFromSection--sendInvites.show .sidebarFromSection__slideButton {
    right: 100%;
}

.sidebarFromSection.sidebarFromSection--classificationType .sidebarFromSection__slideButton {
    top: 59px;
}

.sidebarFromSection.sidebarFromSection--classificationType.show .sidebarFromSection__slideButton {
    top: 0;
}

.sidebarFromSection .sidebarFromSection__slideButton img,
.sidebarFromSection .sidebarFromSection__modalButton img {
    width: 16px;
}

.sidebarFromSection.show .sidebarFromSection__slideButton img,
.sidebarFromSection.show .sidebarFromSection__modalButton img {
    transform: rotate(45deg);
}

.sidebarFromSection .sidebarFromSection__formBox {
    display: flex;
    flex-direction: column;

    height: 100%;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__mainHeading {
    display: flex;
    flex-direction: column;

    padding: 20px 0 0 20px;
    margin: 0 0 20px;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__mainHeading h3 {
    display: flex;
    flex-direction: row;

    position: relative;
    margin: 0;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__mainHeading h3::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #CED4DA;
    width: 100%;
    height: 1px;
    z-index: -1;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__mainHeading h3 span {
    font-family: var(--secondaryFontFamily);
    font-size: clamp(12px, 0.833vw, 16px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    padding-right: 20px;
    background-color: #ffffff;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form {
    display: flex;
    flex-direction: column;

    padding: 20px 40px 40px;
    height: calc(100% - 121px);
    overflow: auto;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox {
    display: flex;
    flex-direction: column;

    margin: 0 0 30px;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox:last-child {
    margin: 0;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__eventSpeakersMainBox {
    background-color: #FAFAFA;
    padding: 20px 70px 20px 20px;
    border-radius: 4px;
    margin: 0 -20px;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__eventSpeakersMainBox .sidebarFromSection__formGroupBox {
    background-color: #ffffff;
    padding: 20px 0;
    position: relative;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__eventSpeakersMainBox .sidebarFromSection__formGroupBox .sidebarFromSection__addInputGroup,
.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__eventSpeakersMainBox .sidebarFromSection__formGroupBox .sidebarFromSection__deleteInputGroup {
    position: absolute;
    bottom: 0;
    left: calc(100% + 20px);
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__eventSpeakersMainBox .sidebarFromSection__formGroupBox .sidebarFromSection__deleteInputGroup {
    padding: 0;
    min-width: auto;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox+.sidebarFromSection__heading {
    display: flex;
    flex-direction: column;

    margin: 0;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__heading:has(+ .sidebarFromSection__formGroup),
.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__heading:has(+ .sidebarFromSection__browseImageBox) {
    padding-left: 20px;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__heading h3 {
    font-family: var(--secondaryFontFamily);
    font-size: clamp(12px, 0.729vw, 14px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__formGroup {
    position: relative;
    padding: 0 20px;
    margin: 15px 0 0;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__formGroup+.sidebarFromSection__formGroup {
    margin-top: 30px;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__formGroup:first-child {
    margin: 0;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__formGroup.sidebarFromSection__formGroupBox--withBackground {
    padding: 20px;
    background-color: #F9F9F9;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__formGroup.sidebarFromSection__formGroupBox--withIcons {
    padding-right: 80px;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__formGroup .sidebarFromSection__addInputGroup,
.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__formGroup .sidebarFromSection__deleteInputGroup {
    position: absolute;
    top: 24px;
    left: calc(100% + 20px);
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__formGroup .sidebarFromSection__deleteInputGroup img {
    width: 20px;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__browseImageBox {
    display: flex;
    flex-direction: column;

    padding-left: 20px;
    margin: 15px 0 0;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__formGroup+.sidebarFromSection__browseImageBox {
    margin-top: 30px;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__browseImageBox .sidebarFromSection__top {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    margin-bottom: 10px;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__browseImageBox .sidebarFromSection__top .sidebarFromSection__browseImage {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    position: relative;
    margin-right: 20px;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__browseImageBox .sidebarFromSection__top .sidebarFromSection__browseImage button {
    position: relative;
    z-index: 0;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__browseImageBox .sidebarFromSection__top .sidebarFromSection__browseImage input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    opacity: 0;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__browseImageBox .sidebarFromSection__top .sidebarFromSection__addedImage {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    position: relative;
    min-height: 40px;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__browseImageBox .sidebarFromSection__top .sidebarFromSection__addedImage p {
    font-family: var(--secondaryFontFamily);
    font-size: clamp(12px, 0.625vw, 12px);
    font-weight: 400;
    line-height: 1.2;
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
    padding-right: 30px;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__browseImageBox .sidebarFromSection__top .sidebarFromSection__addedImage .sidebarFromSection__removeImage {
    display: flex;
    align-items: center;
    justify-content: center;
    
    width: 17px;
    height: 19px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__browseImageBox .sidebarFromSection__top .sidebarFromSection__addedImage .sidebarFromSection__removeImage img {
    width: 100%;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__browseImageBox .sidebarFromSection__bottom {
    display: flex;
    flex-direction: column;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__browseImageBox .sidebarFromSection__bottom p,
.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__formGroup .sidebarFromSection__bottom p {
    font-family: var(--secondaryFontFamily);
    font-size: clamp(12px, 0.521vw, 12px);
    font-weight: 400;
    line-height: 1.2;
    color: #000000;
    margin: 0;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__browseImageBox .sidebarFromSection__bottom p strong {
    font-weight: 600;
}

.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__buttonSection {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    border-top: 1px solid #DEE2E6;
    padding: 10px 0;
}

.sidebarFromSection__browseImageBox .sidebarFromSection__top .sidebarFromSection__infoIcon {
    margin-top: 8px !important;
}

.sidebarFromSection__browseImageBox .sidebarFromSection__top .sidebarFromSection__infoIcon img {
    filter: brightness(0) saturate(100%) invert(31%) sepia(44%) saturate(2183%) hue-rotate(129deg) brightness(92%) contrast(102%) !important;
    width: 18px;
    cursor: pointer;
}

/* -------------------------------------- Sidebar Form Style Sheet End -------------------------------------- */

/* --------------------------------- Profile Picture Start --------------------------------- */
/* #profileDetailsModal.commonModalStyling .modal-dialog.modal-sm {
    max-width: 570px;
} */

.commonModalStyling--signUpModal .modal-dialog.modal-dialog-LeftBottom {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    max-width: none;
    margin: var(--bs-modal-margin);
}

.commonModalStyling--signUpModal .modal-dialog.modal-dialog-LeftBottom .modal-content {
    width: 600px;
}

.profilePicture.commonModalStyling .modal-dialog.modal-sm {
    max-width: 480px;
}

.profilePicture.commonModalStyling .modal-content .modal-body.customPadding {
    padding: 2.344vw 1.042vw 1.042vw;
}

.profilePicture .modal-body p {
    font-size: clamp(12px, 0.833vw, 16px);
    color: #000;
    margin-bottom: 0;
}

.pp_imgChange {
    width: clamp(150px, 9.271vw, 178px);
    height: clamp(150px, 9.271vw, 178px);
    border-radius: 100%;
    margin: 1.563vw auto;
    overflow: hidden;
}

.pp_imgChange img {
    width: 100%;
    height: 100%;
}

.profilePicture .modal-body span {
    display: block;
    font-size: clamp(12px, 0.625vw, 12px);
    color: #999;
}

.addProfileBtn {
    width: 100%;
    border: none;
    margin-bottom: 5px;
    background: #F4F1FF;
    transition: all .3s ease-in-out;
    border-radius: 8px;
    font-size: clamp(14px, 0.833vw, 16px);
    color: #000;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
}

.addProfileBtn img {
    transition: all .3s ease-in-out;
}

.addProfileBtn:hover {
    background-color: #6143e6;
    color: #fff;
}

.addProfileBtn:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7499%) hue-rotate(255deg) brightness(101%) contrast(102%);
}

.addProfileBtn input[type="file"] {
    display: none;
}

.arrow_left {
    display: flex;
    align-items: center;
    justify-content: center;

    /* position: absolute;
    left: 20px;
    top: 0;
    bottom: 0; */
    margin-right: 10px;
    border: 1.5px solid white;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.arrow_left img {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(58deg) brightness(103%) contrast(103%);
    ;
    transition: all .3s ease-in-out;
}

.arrow_left:hover {
    background: white;
}

.arrow_left:hover img {
    filter: invert(23%) sepia(86%) saturate(4001%) hue-rotate(247deg) brightness(95%) contrast(89%);
}

#addPicture.profilePicture.commonModalStyling .modal-content .modal-body.customPadding {
    padding: 2.5vw 1.042vw;
}

.ap_box {
    width: 250px;
    height: 250px;
    margin: 0 auto 50px;
}

.ap_box .result {
    width: 100%;
    height: 100%;
    background: #f6f6f6;
}

.ap_box .result .cropper-container.cropper-bg {
    width: 100% !important;
    height: 100% !important;
}

.profilePicture .modal-body span.cropper-face.cropper-move,
.profilePicture .modal-body span.cropper-view-box {
    border-radius: 100%;
    outline: none;
    border: none;
}

.border-radius-100 {
    border-radius: 100%;
}

/* .profilePicture .modal-body span.cropper-point,
.profilePicture .modal-body span.cropper-line,
.profilePicture .modal-body span.cropper-dashed {
    display: none !important;
} */

/* ---------------------------------- Profile Picture End ---------------------------------- */

/* -------------------------------------- Role Permissions Style Sheet Start -------------------------------------- */

.rolePermissionsBox {
    padding: 20px 20px 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.rolePermissionsBox .rolePermissionsBox__header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;

    background-color: #F5F2FF;
}

.rolePermissionsBox .rolePermissionsBox__header .rolePermissionsBox__headTitle {
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--primaryFontFamily);
    font-size: clamp(12px, 0.833vw, 16px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
    padding: 12.92px 10px;
    width: 15%;
}

.rolePermissionsBox .rolePermissionsBox__header .rolePermissionsBox__headTitle:first-child {
    justify-content: flex-start;

    width: 40%;
    padding-left: 40px;
}

.rolePermissionsBox .rolePermissionsBox__body {
    display: flex;
    flex-direction: column;
}

.rolePermissionsBox .rolePermissionsBox__body.rolePermissionsBox__body--secondLevel,
.rolePermissionsBox .rolePermissionsBox__body.rolePermissionsBox__body--thirdLevel {
    max-height: 0;
    transition: max-height 0.15s ease-out;
    overflow: hidden;
}

.rolePermissionsBox .rolePermissionsBox__body.rolePermissionsBox__body--secondLevel.open,
.rolePermissionsBox .rolePermissionsBox__body.rolePermissionsBox__body--thirdLevel.open {
    max-height: 500px;
    transition: max-height 0.25s ease-in;
}

.rolePermissionsBox .rolePermissionsBox__body .rolePermissionsBox__row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;

    background-color: #F5F2FF;
    border-bottom: 1px solid #DDDDDD;
}

.rolePermissionsBox .rolePermissionsBox__body .rolePermissionsBox__row:nth-child(odd) {
    background-color: #ffffff;
}

.rolePermissionsBox .rolePermissionsBox__body .rolePermissionsBox__row:nth-child(even) {
    background-color: #F9F9F9;
}

.rolePermissionsBox .rolePermissionsBox__body .rolePermissionsBox__row .rolePermissionsBox__moduleName {
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--primaryFontFamily);
    font-size: clamp(12px, 0.833vw, 16px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
    padding: 12.92px 10px;
    width: 15%;
    position: relative;
}

.rolePermissionsBox .rolePermissionsBox__body .rolePermissionsBox__row .rolePermissionsBox__moduleName:first-child {
    justify-content: flex-start;

    width: 40%;
    padding-left: 40px;
}

.rolePermissionsBox .rolePermissionsBox__body.rolePermissionsBox__body--secondLevel .rolePermissionsBox__row .rolePermissionsBox__moduleName:first-child {
    padding-left: 65px;
}

.rolePermissionsBox .rolePermissionsBox__body .rolePermissionsBox__row .rolePermissionsBox__moduleName .subMenuToggleButton {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #666666;
    border-radius: 3px;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.rolePermissionsBox .rolePermissionsBox__body.rolePermissionsBox__body--secondLevel .rolePermissionsBox__row .rolePermissionsBox__moduleName .subMenuToggleButton {
    left: 30px;
}

.rolePermissionsBox .rolePermissionsBox__body .rolePermissionsBox__row .rolePermissionsBox__moduleName .subMenuToggleButton::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #ffffff;
    width: 50%;
    height: 2px;
    transform: translate(-50%, -50%);
}

.rolePermissionsBox .rolePermissionsBox__body .rolePermissionsBox__row .rolePermissionsBox__moduleName .subMenuToggleButton::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #ffffff;
    width: 2px;
    height: 50%;
    transform: translate(-50%, -50%);
}

.rolePermissionsBox .rolePermissionsBox__body .rolePermissionsBox__row .rolePermissionsBox__moduleName .subMenuToggleButton.opened::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.rolePermissionsBox .rolePermissionsBox__body.rolePermissionsBox__body--secondLevel .rolePermissionsBox__body.rolePermissionsBox__body--thirdLevel .rolePermissionsBox__row .rolePermissionsBox__moduleName:first-child {
    padding-left: 90px;
}

/* -------------------------------------- Role Permissions Style Sheet End -------------------------------------- */

.mainContainer {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;

    padding: 0;
}

/* -------------------------------------- Common Style Sheet End -------------------------------------- */

/* -------------------------------------- Login Style Sheet Start -------------------------------------- */

.page-wrapper {
  min-height: 100vh;
  background: #fafafa;
  position: relative;
  overflow: hidden;
}

.page-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/loginMask.svg'); /* FIX PATH */
  background-repeat: no-repeat;
  background-size: cover; /* or 'contain' if needed */
  background-position: center;
  opacity: 0.2; /* adjust visibility */
  z-index: 0;
}

/* make content stay above bg */
.page-wrapper > * {
  position: relative;
  z-index: 1;
}

.top-bar {
  position: relative;
  z-index: 2;
  padding: 0px 40px;
}

.top-bar img {
  width: 165px;
}

/* layout */
.main-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  min-height: calc(100vh - 100px);
  padding: 0 90px;
}

/* left */
.hero-col {
  width: 42%;
  position: relative;
}

.hero-figure img {
  width: clamp(430px, 26.88vw, 450px);
  max-width: 100%;
  display: block;
}

/* decorative box */
.square-wrapper {
    position: absolute;
    bottom: 175px;
    left: 14px;
    z-index: 3;
}

.deco-square-outer {
    width: 120px;
    height: 120px;
    border: 1px solid #d9b650;
    position: absolute;
    z-index: 1;
}

.deco-square-inner {
    width: 120px;
    height: 120px;
    background: var(--primary-green);
    position: absolute;
    left: -14px;
    top: 12px;
}

/* right */
.form-col {
  width: clamp(550px,34.38vw, 580px);
}

.tagline {
  font-size: clamp(15px,1.13vw,20px);
  font-weight: 600;
  color: #FFAC00;
  margin-bottom: 8px;
}

.headline {
  font-size: clamp(40px,2.7vw,50px);
  line-height: 1.28;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 22px;
}

.rightSideSuccess .successHeadline {
  font-size: clamp(22px, 1.46vw, 28px);
  line-height: 1.28;
  font-weight: 600;
  color: #111C2C;
  margin-bottom: 22px;
  margin-top: clamp(25px, 2.08vw, 40px);
}
.rightSideSuccess .sucess-sub-copy {
    color: #3E4941;
    font-size: clamp(13px, 0.94vw, 18px);
}

.rightSideSuccess .successreturnhome {
    margin-top: clamp(40px, 2.92vw, 56px);
}

.rightSideSuccess .successReturn {
    color: var(--primary-green);
    font-size: clamp(13px, 0.83vw, 16px);
    font-weight: 500;
}

.sub-copy {
  max-width: 500px;
  font-size: clamp(10px,0.94vw,15px);
  line-height: 1.8;
  color: #5b5b5b;
  margin-bottom: 25px;
}

.sub-copy strong,
.highlight-orange {
  color: var(--primary-green);
}

/* ── Login Form ── */
    .login-form {
  max-width: clamp(380px, 31.35vw, 600px);
}

.login-form .form-control,
.login-form .form-select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #d9d9d9;
  border-radius: 0;
  background: transparent;
  padding: 12px 4px;
  font-size: 14px;
  color: #333;
  box-shadow: none !important;
  outline: none;
  resize: none;
}

.login-form .form-control::placeholder,
.login-form .form-select {
  color: #999;
  font-size: 13.5px;
}

.login-form .form-control:focus,
.login-form .form-select:focus {
  border-bottom-color: #1a5c2e;
  background: transparent;
}

.login-form .form-select {
  color: #999;
  -webkit-appearance: none;
  appearance: none;
}

.login-form .mb-field {
  margin-bottom: 18px;
}

.mb-field {
  margin-bottom: 22px;
}

/* forgot password */
/* .forgot-wrap {
  text-align: right;
  margin-top: -10px;
  margin-bottom: 18px;
} */

.forgot-wrap a {
  font-size: 12px;
  color: #03804d;
  text-decoration: none;
}

.forgot-wrap a:hover {
  text-decoration: underline;
}

/* CAPTCHA layout */
.captcha-group {
  display: flex;
  align-items: center;
  gap: 12px; /* better breathing space */
  margin-bottom: 22px;
}

/* captcha image container */
.captcha-img {
  display: flex;
  align-items: center;
}

.captcha-img img {
  height: 44px;
  min-width: 120px; /* keeps width consistent */
  object-fit: cover;
}

/* refresh button */
.captcha-refresh {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px; /* match image height */
  width: 36px;
  border: none;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s ease;
}

/* .captcha-refresh:hover {
  background: #e8f5ef;
} */

.captcha-refresh img {
  width: 18px;
  filter: brightness(0) saturate(100%) invert(29%) sepia(94%) saturate(430%) hue-rotate(120deg) brightness(85%) contrast(95%);
}

/* input */
.captcha-input {
  flex: 1;
}

.captcha-input .form-control {
  height: 44px; /* match everything */
}
.btn-login {
    background: var(--primary-green);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 36px;
    border: none;
    border-radius: 8px;
    /* margin-top: 14px; */
    cursor: pointer;
    transition: background 0.2s;
}

.btn-login:hover {
  background: #006236;
}

.signUpButtonBox {
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--primaryFontFamily);
    font-size: clamp(12px, 0.729vw, 14px);
    line-height: 1.2;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 20px;
    text-align: center;
    margin: 20px 0 0 0;
}

.loginAccBtn {
    margin-left: 0 !important;
}

.signUpButtonBox a {
    display: inline-block;
    font-weight: 500;
    color: var(--primaryColor);
    text-decoration: underline;
    margin-left: 6px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    display: flex;
    align-items: center;
    user-select: none;
}

.password-toggle:hover {
    color: var(--primary-green);
}

/* @media all and (min-width: 1601px) {
    .form-col {
        width: clamp(600px, 35.38vw, 700px);
    }        
    .headline{
        font-size: clamp(45px,3vw,60px);
    }
    .hero-col{
        width: 38%;
    }
    .hero-figure img {
        width: clamp(450px, 25.76vw, 550px);
    }
} */

/* -------------------------------------- Login Style Sheet End -------------------------------------- */

/* -------------------------------------- Signup Style Sheet Start -------------------------------------- */
/* form */

    .form-col-signup {
      flex: 0 0 44%;
      max-width: 54%;
      padding-left: 48px;
      padding-right: 20px;
      padding-bottom: 20px;
    }

    .hero-figure-signup img {
    width: clamp(400px, 27.18vw, 450px);
    max-width: 100%;
    display: block;
    pointer-events: none;
}
 
    .signup-form .form-control,
    .signup-form textarea.form-control {
      width: 100%;
      border: none;
      border-bottom: 1px solid #d9d9d9;
      border-radius: 0;
      background: transparent;
      padding: 12px 4px;
      font-size: 14px;
      color: #333;
      box-shadow: none !important;
      outline: none;
      resize: none;
    }
    .signup-form .form-control::placeholder,
    .signup-form textarea.form-control::placeholder {
      color: #999;
      font-size: 13.5px;
    }
    .signup-form .form-control:focus,
    .signup-form textarea.form-control:focus {
      border-bottom-color: var(--primary-green);
      background: transparent;
    }
 
    /* textarea gets a full visible border box */
    .signup-form textarea.form-control {
      border: 1px solid #d9d9d9;
      border-radius: 3px;
      padding: 10px 12px;
      min-height: 110px;
    }
    .signup-form textarea.form-control:focus {
      border-color: var(--primary-green);
    }
 
    .signup-form .mb-field {
      margin-bottom: 18px;
    }
 
    /* Two-column row: Full Name + Email side by side */
    .signup-form .row-two {
      display: flex;
      gap: 24px;
      margin-bottom: 18px;
    }

    .signup-form .row-two .form-group {
      width: 100%;
      /* display: flex; */
    }
    
    .signup-form .row-two .form-control {
      flex: 1;
      min-width: 0;
    }
 
    /* Join Now button */
    .btn-join {
      background: var(--primary-green);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 12px 36px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.2s;
    }
    
    .btn-join:hover {
      background: #006236;
    }

    /* ═══════════════════════════════════════
   BLOCK: upload-document
═══════════════════════════════════════ */

.upload-document {
  margin-bottom: 18px;
}

.upload-document__label {
  font-size: 13.5px;
  color: #999;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.upload-document__dropzone {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 6px;
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
}

.upload-document__dropzone:hover {
  border-color: var(--primary-green);
  background: #f6fbf8;
}

/* hidden native file input */
/* .upload-document__input {
  display: none;
} */

/* "Browse File" green button */
.upload-document__btn {
  background: var(--primary-green);
  color: #fff;
  font-weight: 500;
  font-size: 13.5px;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.upload-document__btn:hover {
  background: var(--primaryColorHover);
}

/* filename shown after selection */
.upload-document__filename {
  font-size: 13px;
  color: var(--text-dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}
 
    /* ── Responsive tweaks ── */
    @media (max-width: 768px) {
      .hero-col { display: none; }
      .form-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 20px;
      }
      .headline { font-size: 28px; }
    }


/* -------------------------------------- Signup Style Sheet End -------------------------------------- */

/* -------------------------------------- Header Style Sheet Start -------------------------------------- */

.mainContainer .mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 60px; */
    padding: 0;
    z-index: 9999;
    background-color: #ffffff;
}

.mainContainer .mainHeader.mainMenuOpened {
    background-color: var(--text-dark);
}

.mainContainer .mainHeader .mainHeader__main {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-left: clamp(5px, 1.61vw, 31px);
    padding-right: clamp(20px, 2.6vw, 50px);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__left {
    width: 50%;
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__left .mainHeader__mainLogo {
    width: auto;
    height:clamp(85px, 5.73vw, 110px);
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__left .mainHeader__mainLogo a {
    display: inline-block;
    width: auto;
    height: 100%;
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__left .mainHeader__mainLogo a img {
    width: auto;
    height: 100%;
}


.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__right .mainHeader__burgerMenu {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__right .mainHeader__burgerMenu .mainHeader__burgerMenuButton {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 16px;
    position: relative;
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__right .mainHeader__burgerMenu .mainHeader__burgerMenuButton span.line {
    position: absolute;
    left: 0;
    transform: translateY(50%);
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__right .mainHeader__burgerMenu .mainHeader__burgerMenuButton span.line.first {
    top: 0;
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__right .mainHeader__burgerMenu .mainHeader__burgerMenuButton span.line.second {
    top: 6px;
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__right .mainHeader__burgerMenu .mainHeader__burgerMenuButton span.line.third {
    top: 12px;
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__right .mainHeader__burgerMenu .mainHeader__burgerMenuButton.opened span.line.first {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__right .mainHeader__burgerMenu .mainHeader__burgerMenuButton.opened span.line.second {
    opacity: 0;
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__right .mainHeader__burgerMenu .mainHeader__burgerMenuButton.opened span.line.third {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__right .mainHeader__adminOptions {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;
    background-color: #6242E5;
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__right .mainHeader__adminOptions .mainHeader__adminOptionsButton {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__right .mainHeader__adminOptions .mainHeader__adminOptionsButton.dropdown-toggle::after {
    display: none;
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__right .mainHeader__adminOptions .mainHeader__adminOptionsButton img {
    width: 22px;
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__right .mainHeader__adminOptions .dropdown-menu {
    transform: translate(0, 0) !important;
    top: 100% !important;
    left: auto !important;
    right: 50% !important;
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__right .mainHeader__adminOptions .dropdown-menu li {
    display: block;
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__right .mainHeader__adminOptions .dropdown-menu li a {
    font-size: clamp(12px, 0.833vw, 16px);
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__bottom {
    display: flex;
    flex-direction: column;

    background-color: #F5F2FF;
    border-top: 1px solid #E1E1E1;
    border-bottom: 1px solid #E1E1E1;
    padding: 6.32px 0;
    width: calc(100% - 280px);
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__bottom .mainHeader__heading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__bottom .mainHeader__heading h3 {
    font-family: var(--headingFontFamily);
    font-size: clamp(12px, 0.938vw, 18px);
    line-height: 1.4;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
}

.mainContainer .mainHeader .mainHeader__main .mainHeader__bottom .mainHeader__heading h3 span {
    display: inline-block;
    font-weight: 500;
}

/* .mainContainer .mainHeader .mainHeader__main .mainHeader__bottom .mainHeader__heading h3 span.submenu::after {
    content: ">";
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-weight: 400;
} */

.mainHeader .mainHeader__main .mainHeader__right>ul>li .mainHeader__notificationButton {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .mainHeader__notificationButton .unreadNotification {
    position: absolute;
    top: calc(50% - 8px);
    left: calc(50% + 6px);
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondaryColor);
    display: none;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .mainHeader__notificationButton img {
    width: 19px;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox {
    transform: translate(0, 0) !important;
    top: calc(100% + 10px) !important;
    left: auto !important;
    right: -25px !important;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    min-width: clamp(350px, 21.35vw, 410px);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.25);
    z-index: 99999;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F4F1FF;
    padding: 0 clamp(10px, 1.04vw, 20px);
    border-bottom: 1px solid #D0CCE1;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__header .notificationBox__left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__header .notificationBox__left h3 {
    font-family: var(--primaryFontFamily);
    font-size: clamp(14px, 1.042vw, 20px);
    line-height: 1.2;
    font-weight: 500;
    color: var(--primaryColor);
    margin: 0;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__header .notificationBox__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__header .notificationBox__right a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__header .notificationBox__right a img {
    width: clamp(12px, 0.73vw, 14px);
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__body {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    padding: clamp(10px, 1.04vw, 20px);
    max-height: calc(100vh - 275px);
    overflow: auto;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__body .notificationBox__main {
    display: flex;
    flex-direction: column;
    margin: 0 0 30px;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__body .notificationBox__main:last-child {
    margin: 0;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__body .notificationBox__main .notificationBox__heading h4 {
    font-family: var(--primaryFontFamily);
    font-size: clamp(12px, 0.729vw, 14px);
    line-height: 1.2;
    font-weight: 500;
    color: #000000;
    margin: 0 0 15px;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__body .notificationBox__main .notificationBox__box {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    margin: 0 0 20px;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__body .notificationBox__main .notificationBox__box:last-child {
    margin: 0;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__body .notificationBox__main .notificationBox__box .notificationBox__image {
    width: clamp(24px, 2.6vw, 50px);
    height: clamp(24px, 2.6vw, 50px);
    border-radius: 50%;
    margin-right: clamp(7px, 0.52vw, 10px);
    border: 1px solid #333;
    padding: 2px;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__body .notificationBox__main .notificationBox__box .notificationBox__image img {
    width: 100%;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__body .notificationBox__main .notificationBox__box .notificationBox__content {
    display: flex;
    flex-direction: column;

    width: calc(100% - clamp(29px, 3.13vw, 60px));
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__body .notificationBox__main .notificationBox__box .notificationBox__content .notificationBox__timePeriod {
    display: block;
    font-family: var(--primaryFontFamily);
    line-height: 1.2;
    font-weight: 500;
    font-size: clamp(9px, 0.625vw, 12px);
    color: #999999;
    margin: 0 0 5px;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__body .notificationBox__main .notificationBox__box .notificationBox__content p {
    font-family: var(--primaryFontFamily);
    font-size: clamp(11px, 0.729vw, 14px);
    line-height: 1.2;
    /* font-weight: 500; */
    font-weight: 400;
    color: #000000;
    margin: 0;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__body .notificationBox__main .notificationBox__box .notificationBox__content p .notificationBox__userName {
    display: inline-block;
    font-weight: 500;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__footer {
    display: flex;
    flex-direction: column;
    padding: 20px;
    padding-top: 0;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__footer .notificationBox__buttonSection {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .notificationBox .notificationBox__footer .notificationBox__buttonSection #loadMoreNotifications {
    padding: clamp(10px, 0.75vw, 14.41px) clamp(20px, 1.56vw, 30px);
    border-radius: 6px;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .mainHeader__adminOptionsButton img {
    width: 17px;
    filter: brightness(0) saturate(100%) invert(32%) sepia(74%) saturate(358%) hue-rotate(104deg) brightness(90%) contrast(95%);
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .adminOptionsBox {
    transform: translate(0, 0) !important;
    top: calc(100% + 10px) !important;
    left: auto !important;
    right: 0 !important;
    padding: 10px 0;
    border-radius: 10px;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .adminOptionsBox li {
    display: block;
    width: 100%;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .adminOptionsBox li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    font-family: var(--primaryFontFamily);
    font-size: clamp(12px, 0.729vw, 14px);
    line-height: 1.2;
    font-weight: 500;
    color: #000000;
    padding: 10px 20px;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .adminOptionsBox li a:hover {
    color: #ffffff;
    background-color: var(--primaryColor);
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .adminOptionsBox li a span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;
    margin-right: 10px;
    position: relative;
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .adminOptionsBox li a span img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    transform: translate(-50%, -50%);
}

.mainHeader .mainHeader__main .mainHeader__right>ul>li .adminOptionsBox li a:hover span img {
    filter: invert(100%) sepia(0%) saturate(7496%) hue-rotate(142deg) brightness(102%) contrast(102%);
}

.mainHeader .dropdown-toggle::after {
    content: none;
}

/* -------------------------------------- Header Style Sheet End -------------------------------------- */

/* -------------------------------------- Sidebar Style Sheet Start -------------------------------------- */

.mainContainer .mainSidebar {
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 9999;
    width: 280px;
    height: calc(100vh - 60px);
    overflow: auto;
    background-color: #ffffff;
    box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.1);
}

.mainContainer .mainSidebar>ul {
    display: flex;
    flex-direction: column;

    margin: 0;
    padding: 0;
}

.mainContainer .mainSidebar>ul>li {
    display: flex;
    flex-direction: column;
}

.mainContainer .mainSidebar>ul>li>a {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding: clamp(10px, 0.78vw, 15px);
    background-color: #F8F8F8;
    border-bottom: 1px solid #E0E0E0;
    text-decoration: none;
}

.mainContainer .mainSidebar>ul>li:hover>a,
.mainContainer .mainSidebar>ul>li.active>a {
    background-color: #6242E5;
}

.mainContainer .mainSidebar>ul>li>a>.mainSidebar__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;
    margin-right: 20px;
}

.mainContainer .mainSidebar>ul>li>a>.mainSidebar__icon>img {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
}

.mainContainer .mainSidebar>ul>li>a>.mainSidebar__text {
    display: inline-block;
    font-family: var(--secondaryFontFamily);
    font-size: clamp(12px, 0.833vw, 16px);
    line-height: 1.4;
    font-weight: 500;
    color: var(--text-dark);
    width: calc(100% - 55px);
}

.mainContainer .mainSidebar>ul>li>a>.mainSidebar__carat {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 15px;
    height: 15px;
}

.mainContainer .mainSidebar>ul>li.active>a>.mainSidebar__carat {
    transform: rotate(180deg);
}

.mainContainer .mainSidebar>ul>li>a>.mainSidebar__carat>img {
    width: 12px;
}

.mainContainer .mainSidebar>ul>li:hover>a>.mainSidebar__icon img,
.mainContainer .mainSidebar>ul>li:hover>a>.mainSidebar__carat img,
.mainContainer .mainSidebar>ul>li.active>a>.mainSidebar__icon img,
.mainContainer .mainSidebar>ul>li.active>a>.mainSidebar__carat img {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(340deg) brightness(103%) contrast(102%);
}

.mainContainer .mainSidebar>ul>li:hover>a>.mainSidebar__text,
.mainContainer .mainSidebar>ul>li.active>a>.mainSidebar__text {
    color: #ffffff;
}

.mainContainer .mainSidebar>ul>li>.firstSubNavigation {
    display: flex;
    flex-direction: column;

    margin: 0;
    padding: 0;
    max-height: 0;
    transition: max-height 0.15s ease-out;
    overflow: hidden;
}

.mainContainer .mainSidebar>ul>li.active>.firstSubNavigation {
    max-height: 500px;
    transition: max-height 0.25s ease-in;
    margin-top: 5px;
    margin-bottom: 5px;
}

.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li {
    display: flex;
    flex-direction: column;
}

.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li>a {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding: 5px 15px 5px 10px;
    background-color: #ffffff;
    border-bottom: 1px solid #E0E0E0;
    text-decoration: none;
    border-left: 6px solid transparent;
}

.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li:hover>a,
.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li.active>a {
    border-left: 6px solid #6242E5;
    background-color: #F9F8FD;
}

.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li>a>.firstSubNavigation__square {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;
    position: relative;
}

.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li>a>.firstSubNavigation__square::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--text-dark);
    width: 5px;
    height: 5px;
}

.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li>a>.firstSubNavigation__text {
    display: inline-block;
    font-family: var(--secondaryFontFamily);
    font-size: clamp(12px, 0.625vw, 12px);
    line-height: 1.4;
    font-weight: 500;
    color: var(--text-dark);
    width: calc(100% - 45px);
}

.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li>a>.firstSubNavigation__carat {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 15px;
    height: 15px;
}

.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li.active>a>.firstSubNavigation__carat {
    transform: rotate(180deg);
}

.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li>a>.firstSubNavigation__carat>img {
    width: 12px;
}

.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li>.secondSubNavigation {
    display: flex;
    flex-direction: column;

    margin: 0;
    padding: 0;
    max-height: 0;
    transition: max-height 0.15s ease-out;
    overflow: hidden;
}

.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li.active>.secondSubNavigation {
    max-height: 500px;
    transition: max-height 0.25s ease-in;
}

.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li>.secondSubNavigation>li {
    display: flex;
    flex-direction: column;
}

.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li>.secondSubNavigation>li>a {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding: 11.1px 15px 11.1px 10px;
    background-color: #ffffff;
    border-bottom: 1px solid #E0E0E0;
    text-decoration: none;
    border-left: 6px solid transparent;
    padding-left: 25px;
}

.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li>.secondSubNavigation>li:hover>a,
.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li>.secondSubNavigation>li.active>a {
    border-left: 6px solid #6242E5;
    background-color: #F9F8FD;
}

.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li>.secondSubNavigation>li>a>.secondSubNavigation__circle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;
    position: relative;
}

.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li>.secondSubNavigation>li>a>.secondSubNavigation__circle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--text-dark);
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li>.secondSubNavigation>li>a>.secondSubNavigation__text {
    display: inline-block;
    font-family: var(--secondaryFontFamily);
    font-size: clamp(12px, 0.625vw, 12px);
    line-height: 1.4;
    font-weight: 500;
    color: var(--text-dark);
    width: calc(100% - 45px);
}

.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li>.secondSubNavigation>li>a>.secondSubNavigation__carat {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 15px;
    height: 15px;
}

.mainContainer .mainSidebar>ul>li>.firstSubNavigation>li>.secondSubNavigation>li>a>.secondSubNavigation__carat>img {
    width: 12px;
}

/* -------------------------------------- Sidebar Style Sheet End -------------------------------------- */

/* -------------------------------------- Welcome Style Sheet Start -------------------------------------- */

.mainContainer .mainContent {
    width: calc(100% - clamp(280px, 20.42vw, 392px));
    height: calc(100vh - clamp(85px, 5.73vw, 110px));
    overflow: auto;
    padding: 0 55px 0 40px;
    margin-top: clamp(85px, 5.73vw, 110px);
    position: relative;
}

.mainContainer .mainContent .welcomeSection {
    display: flex;
    flex-direction: column;

    padding-top: 20px;
}

.mainContainer .mainContent .welcomeSection .welcomeSection__heading {
    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 0 50px;
}

.mainContainer .mainContent .welcomeSection .welcomeSection__heading h2 {
    font-family: var(--primaryFontFamily);
    font-size: clamp(20px, 2.083vw, 40px);
    line-height: 1.4;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.mainContainer .mainContent .welcomeSection .welcomeSection__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainContainer .mainContent .welcomeSection .welcomeSection__image img {
    width: 29.844vw;
}

/* -------------------------------------- Welcome Style Sheet End -------------------------------------- */

/* -------------------------------------- Summary Style Sheet Start -------------------------------------- */

.mainContainer .mainContent .summarySection {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;

    padding-top: 30px;
}

.mainContainer .mainContent .summarySection .summarySection__box {
    display: flex;
    flex-direction: column;

    width: calc(100% / 3 - 26.6666666667px);
    margin-right: 40px;
    margin-top: 40px;
    border-radius: 8px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.mainContainer .mainContent .summarySection .summarySection__box::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 235%;
    z-index: -1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.mainContainer .mainContent .summarySection .summarySection__box:hover::after {
    transform: translate(-50%, -50%) rotate(180deg);
}

.mainContainer .mainContent .summarySection .summarySection__box:nth-child(3n + 3) {
    margin-right: 0;
}

.mainContainer .mainContent .summarySection .summarySection__box:nth-child(1),
.mainContainer .mainContent .summarySection .summarySection__box:nth-child(2),
.mainContainer .mainContent .summarySection .summarySection__box:nth-child(3) {
    margin-top: 0;
}

.mainContainer .mainContent .summarySection .summarySection__box.summarySection__box--first::after {
    background: rgb(149, 126, 207);
    background: -moz-linear-gradient(135deg, rgba(149, 126, 207, 1) 0%, rgba(180, 158, 233, 1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(149, 126, 207, 1) 0%, rgba(180, 158, 233, 1) 100%);
    background: linear-gradient(135deg, rgba(149, 126, 207, 1) 0%, rgba(180, 158, 233, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#957ecf", endColorstr="#b49ee9", GradientType=1);
}

.mainContainer .mainContent .summarySection .summarySection__box.summarySection__box--second::after {
    background: rgb(241, 39, 17);
    background: -moz-linear-gradient(135deg, rgba(241, 39, 17, 1) 0%, rgba(245, 175, 25, 1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(241, 39, 17, 1) 0%, rgba(245, 175, 25, 1) 100%);
    background: linear-gradient(135deg, rgba(241, 39, 17, 1) 0%, rgba(245, 175, 25, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f12711", endColorstr="#f5af19", GradientType=1);
}

.mainContainer .mainContent .summarySection .summarySection__box.summarySection__box--third::after {
    background: rgb(47, 128, 237);
    background: -moz-linear-gradient(135deg, rgba(47, 128, 237, 1) 0%, rgba(86, 204, 242, 1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(47, 128, 237, 1) 0%, rgba(86, 204, 242, 1) 100%);
    background: linear-gradient(135deg, rgba(47, 128, 237, 1) 0%, rgba(86, 204, 242, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2f80ed", endColorstr="#56ccf2", GradientType=1);
}

.mainContainer .mainContent .summarySection .summarySection__box.summarySection__box--fourth::after {
    background: rgb(245, 124, 159);
    background: -moz-linear-gradient(135deg, rgba(245, 124, 159, 1) 0%, rgba(217, 84, 116, 1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(245, 124, 159, 1) 0%, rgba(217, 84, 116, 1) 100%);
    background: linear-gradient(135deg, rgba(245, 124, 159, 1) 0%, rgba(217, 84, 116, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f57c9f", endColorstr="#d95474", GradientType=1);
}

.mainContainer .mainContent .summarySection .summarySection__box.summarySection__box--fifth::after {
    background: rgb(135, 222, 193);
    background: -moz-linear-gradient(135deg, rgba(135, 222, 193, 1) 0%, rgba(94, 199, 151, 1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(135, 222, 193, 1) 0%, rgba(94, 199, 151, 1) 100%);
    background: linear-gradient(135deg, rgba(135, 222, 193, 1) 0%, rgba(94, 199, 151, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#87dec1", endColorstr="#5ec797", GradientType=1);
}

.mainContainer .mainContent .summarySection .summarySection__box.summarySection__box--sixth::after {
    background: rgb(214, 208, 51);
    background: -moz-linear-gradient(135deg, rgba(214, 208, 51, 1) 0%, rgba(146, 141, 2, 1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(214, 208, 51, 1) 0%, rgba(146, 141, 2, 1) 100%);
    background: linear-gradient(135deg, rgba(214, 208, 51, 1) 0%, rgba(146, 141, 2, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d6d033", endColorstr="#928d02", GradientType=1);
}

.mainContainer .mainContent .summarySection .summarySection__box.summarySection__box--seventh::after {
    background: rgb(195, 119, 226);
    background: -moz-linear-gradient(135deg, rgba(195, 119, 226, 1) 0%, rgba(142, 68, 173, 1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(195, 119, 226, 1) 0%, rgba(142, 68, 173, 1) 100%);
    background: linear-gradient(135deg, rgba(195, 119, 226, 1) 0%, rgba(142, 68, 173, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c377e2", endColorstr="#8e44ad", GradientType=1);
}

.mainContainer .mainContent .summarySection .summarySection__box.summarySection__box--eighth::after {
    background: rgb(214, 106, 124);
    background: -moz-linear-gradient(135deg, rgba(214, 106, 124, 1) 0%, rgba(170, 30, 55, 1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(214, 106, 124, 1) 0%, rgba(170, 30, 55, 1) 100%);
    background: linear-gradient(135deg, rgba(214, 106, 124, 1) 0%, rgba(170, 30, 55, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d66a7c", endColorstr="#aa1e37", GradientType=1);
}

.mainContainer .mainContent .summarySection .summarySection__box .summarySection__top {
    display: flex;
    align-items: normal;
    justify-content: flex-start;
}

.mainContainer .mainContent .summarySection .summarySection__box .summarySection__top .summarySection__left {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 25%;
}

.mainContainer .mainContent .summarySection .summarySection__box .summarySection__top .summarySection__left .summarySection__img {
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}

.mainContainer .mainContent .summarySection .summarySection__box .summarySection__top .summarySection__left .summarySection__img img {
    width: 100%;
}

.mainContainer .mainContent .summarySection .summarySection__box .summarySection__top .summarySection__right {
    display: flex;
    flex-direction: column;

    width: 75%;
    padding-left: 20px;
}

.mainContainer .mainContent .summarySection .summarySection__box .summarySection__top .summarySection__right .summarySection__rightTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mainContainer .mainContent .summarySection .summarySection__box .summarySection__top .summarySection__right .summarySection__rightTop .summarySection__heading {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 64px;
}

.mainContainer .mainContent .summarySection .summarySection__box .summarySection__top .summarySection__right .summarySection__rightTop .summarySection__heading h2 {
    font-family: var(--primaryFontFamily);
    font-size: clamp(20px, 1.25vw, 24px);
    line-height: 1;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.mainContainer .mainContent .summarySection .summarySection__box .summarySection__top .summarySection__right .summarySection__rightTop .summarySection__heading h2 span {
    display: block;
    font-size: clamp(12px, 0.833vw, 16px);
}

.mainContainer .mainContent .summarySection .summarySection__box .summarySection__top .summarySection__right .summarySection__rightTop .summarySection__value {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;

    min-width: 90px;
}

.mainContainer .mainContent .summarySection .summarySection__box .summarySection__top .summarySection__right .summarySection__rightTop .summarySection__value h1 {
    font-family: var(--primaryFontFamily);
    font-size: clamp(24px, 2.5vw, 48px);
    line-height: 1;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.mainContainer .mainContent .summarySection .summarySection__box .summarySection__top .summarySection__right .summarySection__rightTop .summarySection__value h1 img {
    width: 22px;
    margin-bottom: -5px;
}

.mainContainer .mainContent .summarySection .summarySection__box .summarySection__top .summarySection__right .summarySection__rightBottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    min-height: 120px;
}

.mainContainer .mainContent .summarySection .summarySection__box .summarySection__top .summarySection__right .summarySection__rightBottom .summarySection__heading {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;

    margin-right: 15px;
}

.mainContainer .mainContent .summarySection .summarySection__box .summarySection__top .summarySection__right .summarySection__rightBottom .summarySection__heading:last-child {
    margin-right: 0;
}

.mainContainer .mainContent .summarySection .summarySection__box .summarySection__top .summarySection__right .summarySection__rightBottom .summarySection__heading h2 {
    font-family: var(--secondaryFontFamily);
    font-size: clamp(12px, 0.833vw, 16px);
    line-height: 1.4;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.mainContainer .mainContent .summarySection .summarySection__box .summarySection__top .summarySection__right .summarySection__rightBottom .summarySection__heading h1 {
    font-family: var(--secondaryFontFamily);
    font-size: clamp(17px, 1.771vw, 34px);
    line-height: 1.4;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.mainContainer .mainContent .summarySection .summarySection__box .summarySection__bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    position: absolute;
    right: 20px;
    bottom: 10px;
}

.mainContainer .mainContent .summarySection .summarySection__box .summarySection__bottom p {
    font-family: var(--secondaryFontFamily);
    font-size: clamp(12px, 0.573vw, 12px);
    line-height: 1.4;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.mainContainer .mainContent .summarySection .summarySection__box .summarySection__bottom p span {
    display: inline-block;
}

/* -------------------------------------- Summary Style Sheet End -------------------------------------- */

/* -------------------------------------- Footer Style Sheet Start -------------------------------------- */

.mainContainer .mainFooter {
    position: fixed;
    bottom: 0;
    right: 0;
    width: calc(100% - 280px);
    padding: 10.61px 20px;
    z-index: 999;
    background-color: #F3F3F3;
    border: 1px solid #D1D1D1;
}

.mainContainer .mainFooter .mainFooter__main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainContainer .mainFooter .mainFooter__main .mainFooter__left {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 50%;
}

.mainContainer .mainFooter .mainFooter__main .mainFooter__left .mainFooter__copyright {
    display: flex;
    flex-direction: column;
}

.mainContainer .mainFooter .mainFooter__main .mainFooter__left .mainFooter__copyright p {
    font-family: var(--primaryFontFamily);
    font-size: clamp(12px, 0.625vw, 12px);
    line-height: 1.2;
    font-weight: 400;
    color: rgba(12, 1, 21, 0.5);
    margin: 0;
}

.mainContainer .mainFooter .mainFooter__main .mainFooter__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    width: 50%;
}

.mainContainer .mainFooter .mainFooter__main .mainFooter__right .mainFooter__poweredBy {
    display: flex;
    flex-direction: column;
}

.mainContainer .mainFooter .mainFooter__main .mainFooter__right .mainFooter__poweredBy p {
    font-family: var(--primaryFontFamily);
    font-size: clamp(12px, 0.521vw, 12px);
    line-height: 1.2;
    font-weight: 400;
    color: #666666;
    margin: 0;
}

.mainContainer .mainFooter .mainFooter__main .mainFooter__right .mainFooter__poweredBy p a {
    display: inline-block;
    font-size: clamp(12px, 0.729vw, 14px);
    font-weight: 800;
    color: #666666;
    margin-left: 10px;
    text-decoration: none;
}

/* -------------------------------------- Footer Style Sheet End -------------------------------------- */

/* -------------------------------------- Send Invites Modal Style Sheet Start -------------------------------------- */

.sendInvitesModal {
    display: flex;
    flex-wrap: wrap;
}

.sendInvitesModal .sendInvitesModal__left,
.sendInvitesModal .sendInvitesModal__right {
    display: flex;
    flex-direction: column;

    width: calc(50% - 25px);
    margin-right: 50px;
}

.sendInvitesModal .sendInvitesModal__right {
    margin: 0;
}

.sendInvitesModal .sendInvitesModal__left h3,
.sendInvitesModal .sendInvitesModal__right h3 {
    font-family: var(--primaryFontFamily);
    font-size: clamp(12px, 0.833vw, 16px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--primaryColor);
    margin: 0 0 10px;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box {
    background-color: #FAFAFA;
    padding: 25px 5px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    position: relative;
    height: 100%;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .customFormBox {
    padding: 0 15px;
    margin: 0 0 15px;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailSearch,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailSearch {
    position: absolute;
    top: 50%;
    right: 0;
    width: 35px;
    height: 35px;
    transform: translateY(-50%);
}

/* .sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailSearch {
    top: 25px;
} */

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailSearch.show,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailSearch.show {
    width: 100%;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailSearch input,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailSearch input {
    width: 100%;
    height: 100%;
    border: 1px solid #D1D1D1;
    background-color: #FAFAFA;
    box-shadow: none !important;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailSearch.show input,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailSearch.show input {
    padding-right: 45px;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailSearch button,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailSearch button {
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 1px;
    right: 1px;
    width: 33px;
    height: 33px;
    border: none;
    background-color: #FAFAFA;
    padding: 0;
    border-radius: 6px;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailSearch button img,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailSearch button img {
    width: 12.5px;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailList,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailList {
    display: flex;
    flex-direction: column;

    height: 250px;
    overflow: auto;
    padding: 0 15px;
}

.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailList {
    height: 320px;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailList p {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
    margin: 0;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailList ul,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailList ul {
    display: flex;
    flex-direction: column;

    margin: 0;
    padding: 0;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailList .sendInvitesModal__newEmailList {
    justify-content: flex-end;
    flex-direction: row;
    gap: 15px;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailList ul li,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailList ul li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin: 0 0 15px;
    min-height: 35px;
    position: relative;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailList .sendInvitesModal__newEmailList li {
    margin: 0;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailList ul li:last-child,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailList ul li:last-child {
    margin: 0;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailList ul li .sendInvitesModal__allEmailListLeft,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailList ul li .sendInvitesModal__allEmailListLeft {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: calc(100% - 135px);
    min-height: 35px;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailList ul li .sendInvitesModal__allEmailListCenter,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailList ul li .sendInvitesModal__allEmailListCenter {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 100px;
    min-height: 35px;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailList ul li .sendInvitesModal__allEmailListLeft span,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailList ul li .sendInvitesModal__allEmailListLeft span {
    color: #000000;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailList ul li .sendInvitesModal__allEmailListRight,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailList ul li .sendInvitesModal__allEmailListRight {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 35px;
    min-height: 35px;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailList ul li label,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailList ul li label {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailList ul li:first-child label,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailList ul li:first-child label {
    align-items: center;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailList ul li label input[type="checkbox"],
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailList ul li label input[type="checkbox"] {
    margin-top: 2px;
    margin-right: 5px;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailList ul li:first-child label input[type="checkbox"],
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailList ul li:first-child label input[type="checkbox"] {
    margin-top: 0;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailList ul li label .sendInvitesModal__emailDetails,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailList ul li label .sendInvitesModal__emailDetails {
    display: flex;
    flex-direction: column;

}

.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailList ul li:nth-child(2) label .sendInvitesModal__emailDetails {
    flex-direction: row;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailList ul li label .sendInvitesModal__emailDetails span,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailList ul li label .sendInvitesModal__emailDetails span {
    display: inline-block;
    font-family: var(--primaryFontFamily);
    font-size: clamp(12px, 0.729vw, 14px);
    font-weight: 500;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 2px;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailList ul li:first-child label .sendInvitesModal__emailDetails span,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailList ul li:nth-child(2) label .sendInvitesModal__emailDetails span {
    font-size: clamp(12px, 0.833vw, 16px);
    margin: 0;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__allEmailList ul li label .sendInvitesModal__emailDetails small,
.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailList ul li label .sendInvitesModal__emailDetails small {
    display: inline-block;
    font-family: var(--primaryFontFamily);
    font-size: clamp(12px, 0.625vw, 12px);
    font-weight: 500;
    line-height: 1.2;
    color: #666666;
}

.sendInvitesModal .sendInvitesModal__right .sendInvitesModal__box .sendInvitesModal__allEmailList ul li:nth-child(2) label .sendInvitesModal__emailDetails small {
    padding-left: 10px;
    border-left: 1px solid #999999;
    margin-left: 10px;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__pushAllEmail {
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    bottom: 30px;
    right: 30px;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__pushAllEmail a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__pushAllEmail a.disabled {
    pointer-events: none;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__pushAllEmail a .arrowIcon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--primaryColor);
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.15);
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__pushAllEmail a.disabled span.arrowIcon {
    background-color: #999999;
}

.sendInvitesModal .sendInvitesModal__left .sendInvitesModal__box .sendInvitesModal__pushAllEmail a .arrowIcon img {
    width: 50%;
}

.sendInvitesModal .sendInvitesModal__bottom {
    display: flex;
    flex-direction: column;

    width: 100%;
    margin: 20px 0 0;
}

.sendInvitesModal .sendInvitesModal__button {
    display: flex;
    align-items: center;
    justify-content: center;

    padding-top: 35px;
    width: 100%;
}

.exportEmailModalBox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding: 30px;
}

.exportEmailModalBox .exportEmailModalBox__image {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 50px;
}

.exportEmailModalBox .exportEmailModalBox__image img {
    width: 45px;
}

.exportEmailModalBox .exportEmailModalBox__buttonSection {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

.exportEmailModalBox .exportEmailModalBox__buttonSection:has(+ .exportEmailModalBox__tableSection) {
    margin-bottom: 50px;
}

.exportEmailModalBox .exportEmailModalBox__buttonSection button,
.exportEmailModalBox .exportEmailModalBox__buttonSection label {
    min-width: 154px;
}

.exportEmailModalBox .exportEmailModalBox__tableSection {
    width: 100%;
}

.exportEmailModalBox .exportEmailModalBox__tableSection table.table {
    width: 100%;
    margin: 0;
}

.addEmailModalBox {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
}

.addEmailModalBox .addEmailModalBox__addingEmailsBox {
    display: flex;
    flex-direction: column;

    background-color: #FFFFFF;
    border: 1px solid #CED4DA;
    border-radius: 4px;
    padding: 10px;
    height: 250px;
}

.addEmailModalBox .addEmailModalBox__addingEmailsBox ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    height: auto;
    margin-bottom: 10px;
}

.addEmailModalBox .addEmailModalBox__addingEmailsBox ul li {
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #ffffff;
    border: 1px solid #CED4DA;
    border-radius: 16px;
    padding: 6px 6px 6px 8px;
    font-family: var(--primaryFontFamily);
    font-size: clamp(12px, 0.729vw, 14px);
    font-weight: 400;
    line-height: 1.2;
    color: #000000;
    height: 30px;
}

.addEmailModalBox .addEmailModalBox__addingEmailsBox ul li img {
    width: 14px;
    margin-left: 10px;
}

.addEmailModalBox .addEmailModalBox__addingEmailsBox .addEmailModalBox__addingEmailInput {
    width: 100%;
    height: 100%;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 5px 10px;
    resize: none;
    /* background-color: #f9f9f9; */
}

.addEmailModalBox .emailLimit {
    font-family: var(--primaryFontFamily);
    font-size: clamp(12px, 0.521vw, 12px);
    font-weight: 400;
    line-height: 1.2;
    color: #767676;
    margin: 10px 0 0;
}

/* -------------------------------------- Send Invites Modal Style Sheet End -------------------------------------- */

/* -------------------------------------- Profile Modal Style Sheet Start -------------------------------------- */

.profilePictureBox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    margin: 0 0 30px;
}

.profilePictureBox .profilePictureBox__image {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 88px;
    height: 88px;
    border-radius: 50%;
    position: relative;
    margin: 0 0 15px;
}

.profilePictureBox .profilePictureBox__image img {
    width: 100%;
}

.profilePictureBox .profilePictureBox__image .profilePictureBox__editButton {
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    bottom: 0;
    right: 0;
    width: 26px;
    height: 26px;
    border: 1px solid var(--primaryColor);
    border-radius: 50%;
    background-color: #ffffff;
}

.profilePictureBox .profilePictureBox__image .profilePictureBox__editButton img {
    width: 14px;
}

.profilePictureBox .profilePictureBox__userName {
    display: flex;
    flex-direction: column;
}

.profilePictureBox .profilePictureBox__userName h4 {
    font-family: var(--primaryFontFamily);
    font-size: clamp(14px, 0.938vw, 18px);
    line-height: 1.2;
    font-weight: 500;
    color: #000000;
    margin: 0;
}
.teaserModalComponent .modal-body .dataTableSection .dataTableSection__tableSection .table-responsive .dt-search,
.brochureModalComponent .modal-body .dataTableSection .dataTableSection__tableSection .table-responsive .dt-search{
    padding-right: 40px;
}
/* .teaserModalComponent .modal-body .dataTableSection .dataTableSection__tableSection .table-responsive table,
.brochureModalComponent .modal-body .dataTableSection .dataTableSection__tableSection .table-responsive table{
    min-height: 55vh;
} */
.brochureModalComponent .myDataTable.table tbody tr:nth-of-type(odd) .dt-empty, .brochureModalComponent .myDataTable.table tbody tr:nth-of-type(odd) td.dt-empty
{
 height: 52vh !important;
}
.teaserModalComponent .myDataTable.table tbody tr:nth-of-type(odd) .dt-empty, .teaserModalComponent .myDataTable.table tbody tr:nth-of-type(odd) td.dt-empty
{
 height: 52vh !important;
}
.teaserModalComponent .sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__browseImageBox
.sidebarFromSection__top .sidebarFromSection__browseImage button{
    width: 150px;
}

/* -------------------------------------- Profile Modal Style Sheet End -------------------------------------- */

.w-fit-content {
    width: fit-content;
}

/* -------------------------------------- Responsive Style Sheet Start -------------------------------------- */

div.dt-processing>div:last-child {
    display: none !important;
}

/* -------------------------------------- Summary Style Sheet Start -------------------------------------- */
.summarySection {
    padding-bottom: 3.646vw;
}

.summary_parent {
    padding-top: 3.125vw;
}

.sp_heading h2 {
    font-size: clamp(15px, 1.563vw, 30px);
    color: #6143e6;
    font-weight: 500;
    margin-bottom: 0.885vw;
}

.summary_column {
    width: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: -1px 1px 55px 1px rgba(0, 0, 0, 0.07);
    padding: 20px;
    height: 100%;
}

.sc_top {
    padding-bottom: 1.042vw;
}

.sc_top h3 {
    font-size: clamp(16px, 1.25vw, 24px);
    color: #666;
    font-weight: 400;
    margin-bottom: 5px;
}

.sc_top ul.sct_list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1.563vw;
}

.sc_top ul.sct_list li h4 {
    font-size: clamp(16px, 1.25vw, 24px);
    color: #333;
    font-weight: 400;
}

.sc_top ul.sct_list li .dropdown .dropdown-toggle {
    padding: 0;
    height: auto;
    min-width: 90px;
    background: none;
    font-size: clamp(12px, 0.729vw, 14px);
    color: #666;
    line-height: 21px;
    justify-content: flex-start;
}

.sc_top ul.sct_list li .dropdown ul.dropdown-menu {
    border: none;
    box-shadow: 0px 1px 12px rgba(0, 0, 0, 0.1);
    padding: 0;
    overflow: hidden;
}

.sc_top ul.sct_list li .dropdown ul.dropdown-menu li a.dropdown-item {
    padding: 12px 20px;
    line-height: 1;
    color: #333;
    font-size: clamp(12px, 0.729vw, 14px);
    transition: all .3s ease-in-out;
}

.sc_top ul.sct_list li .dropdown ul.dropdown-menu li a.dropdown-item.active,
.sc_top ul.sct_list li .dropdown ul.dropdown-menu li a.dropdown-item:hover {
    background: #6242E5;
    color: #fff;
}

.sc_top ul.sct_list li .dropdown .dropdown-toggle::after {
    content: "";
    border: none;
    margin: 0 0 0 6px;
    background: url('../../img/sidebar/arrowDown.svg') no-repeat center center;
    background-size: 100%;
    width: 10px;
    height: 6px;
    filter: brightness(0) saturate(100%) invert(40%) sepia(0%) saturate(1%) hue-rotate(341deg) brightness(98%) contrast(93%);
}

.sc_bottom {
    height: 300px;
    width: 100%;
}

.sc_bottom img {
    height: 100%;
    max-width: 100%;
}

.summary_menu .btn-group .dropdown-toggle {
    background: none;
    padding: 0;
    min-width: auto;
    height: auto;
}

.summary_menu .btn-group .dropdown-toggle:after {
    display: none;
}

.summary_menu .btn-group .dropdown-toggle:hover img,
.summary_menu .dropdown .dropdown-toggle.show img {
    filter: brightness(0) saturate(100%) invert(25%) sepia(70%) saturate(2637%) hue-rotate(242deg) brightness(91%) contrast(98%);
}

.summary_menu .btn-group ul.dropdown-menu {
    border: none;
    min-width: auto;
    padding: 6px 0;
    box-shadow: 0px 1px 12px rgba(0, 0, 0, 0.1);
    margin-top: 9px !important;
    border-radius: 3px;
}

.summary_menu .btn-group ul.dropdown-menu li {
    position: relative;
}

.summary_menu .btn-group ul.dropdown-menu li a.dropdown-item {
    display: flex;
    padding: 5px 11px;
    line-height: 1;
    background: none;
}

.summary_menu .btn-group ul.dropdown-menu li img {
    height: 16px;
    width: 16px;
}

.summary_menu .btn-group ul.dropdown-menu li ul {
    position: absolute;
    left: -40px;
    background: #fff;
    list-style-type: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: none;
    top: 0;
    padding: 5px 0;
}

.summary_menu .btn-group ul.dropdown-menu li.subDrop:before {
    position: absolute;
    left: 3px;
    top: 0;
    content: "";
    bottom: 0;
    margin: auto;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: 4px solid #333;
    width: 0px;
    height: 0px;
}

.summary_menu .btn-group ul.dropdown-menu li:hover ul {
    display: block;
}

.pe-20 {
    padding-right: 20px;
}

.ps-20 {
    padding-left: 20px;
}

.courses p {
    font-size: clamp(12px, 0.729vw, 14px);
    margin: 0;
    color: #666;
}

.courses h4 {
    font-size: clamp(20px, 2.292vw, 44px);
    color: #6242e5;
    font-weight: 500;
    line-height: 1;
}

.summary_column .table thead tr th {
    background: #F5F2FF;
}

.summary_column .table thead tr th {
    background: #F5F2FF;
    font-size: clamp(12px, 0.833vw, 16px);
    color: #333;
    font-weight: 500;
    padding: 13.5px 12px;
    line-height: 1;
    border: none;
}

.summary_column .table thead tr th:first-child {
    padding-left: 30px;
}

.summary_column .table tbody tr td {
    padding: 11px 12px;
    font-size: clamp(12px, 0.729vw, 14px);
    color: #333;
    border: none;
}

.summary_column .table tbody tr td:first-child {
    padding-left: 30px;
}

.summary_column .table.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-bg-type: #fff;
}

.summary_column .table.table-striped>tbody>tr:nth-of-type(even)>* {
    --bs-table-bg-type: #FAFAFA;
}

.sc_bottom .table-responsive {
    max-height: 300px;
}

.sc_bottom .table-responsive.serviceTble {
    max-height: 231px;
}

.sc_bottom .fixed-header-table thead {
    position: sticky;
    top: 0;
    z-index: 2;
}

.chartExpendColumn.expendView {
    position: fixed;
    z-index: 9999;
    width: 100%;
    margin: auto;
    top: 0;
    right: 0;
    background: #fff;
    height: 100%;
    padding: 20px;
}

input.daterangeInput {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    left: 0;
    top: 0;
}

.profilePictureBox__image img {
    border-radius: 50%;
}

.daterangepicker:before,
.daterangepicker:after {
    display: none;
}

.daterangepicker {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
}

.drp-calendar.left {
    border-right: 1px solid #ddd;
}

.daterangepicker {
    margin: 0;
}

.daterangepicker td.in-range {
    background-color: #EEECF4;
    color: #6242e5;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #6242e5;
    color: #fff;
}

.daterangepicker .drp-selected {
    display: none;
}

.daterangepicker.show-calendar .drp-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form_height {
    height: calc(100% - 54px);
}

.sidebarFromSection .sidebarFromSection__formBox .form_height .sidebarFromSection__form {
    height: calc(100% - 61px);
}

/* .customFormBox .form-group span.select2.select2-container.select2-container--disabled .select2-selection--single {
    justify-content: flex-end;
} */

.form-group.select2Error.has-error {
    display: flex;
    flex-direction: column;
}

.form-group.select2Error.has-error label.form-label {
    order: 1;
}

.form-group.select2Error.has-error select {
    order: 2;
}

.form-group.select2Error.has-error span.select2.select2-container {
    order: 3;
}

.form-group.select2Error.has-error .help-block {
    order: 4;
    margin-top: 1px;
    color: red;
    font-size: 12px;
}

.deleEmail.disabled {
    pointer-events: none;
}

/* -------------------------------------- Document Modal Start -------------------------------------- */
.documentModal.commonModalStyling .modal-content .modal-body {
    padding-left: 50px;
    padding-right: 50px;
    overflow-x: hidden;
    padding-bottom: 0;
}

.commonModalStyling .modal-content .modal-body .dataTableSection {
    height: calc(76vh - 40px);
    padding-bottom: 10px;
}

.documentForm.sidebarFromSection {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    right: -50%;
    height: 100%;
}

.document__slideButton {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 100%;
    width: 45px;
    height: 45px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    background-color: var(--primaryColor);
    cursor: pointer;
}

.sidebarFromSection.show .document__slideButton img {
    transform: rotate(45deg);
}

.document__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
}

.document__overlay.show {
    display: block;
}

.documentForm.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__browseImageBox .sidebarFromSection__top .sidebarFromSection__addedImage .sidebarFromSection__removeImage {
    right: 6px;
}

.documentForm.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__browseImageBox .sidebarFromSection__top .sidebarFromSection__browseImage button {
    white-space: nowrap;
}

.documentForm .removeFile {
    margin-left: 5px;
}

div#captha_loader {
    display: flex;
}

div#captha_loader p {
    margin: auto;
    font-weight: 700;
}

/* --------------------------------------- Document Modal End --------------------------------------- */
.errorMsg .help-block {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -50px;
    white-space: nowrap;
}

#reviewModalComponent.microReviewTable .myDataTable.table thead tr th:nth-child(3) {
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#reviewModalComponent.microReviewTable .myDataTable.table tbody tr td:nth-child(3) {
    max-width: 300px;
    word-wrap: break-word;
}

.modal-header.reviewModal{
    padding-top:15px !important; 
    padding-bottom:14px !important
}

#is_academic{
    height: 14px;
    width: 14px;
    accent-color:#6242e5;
}
/* --------------------------------------- Summary Style Sheet End --------------------------------------- */

@media (max-width: 1600px) {
    .authenticationPage .authenticationPage__right .authenticationPage__loginBox .authenticationPage__header h2 {
        font-size: 1.5rem;
    }

    .authenticationPage .authenticationPage__right .authenticationPage__loginBox .authenticationPage__body .authenticationPage__BottomBox .googleButtonBox a {
        font-size: clamp(12px, 0.729vw, 14px);
        padding: 10px 20px;
    }

    .authenticationPage .authenticationPage__right .authenticationPage__loginBox .authenticationPage__body .authenticationPage__BottomBox .googleButtonBox a svg {
        width: 18px;
        margin-right: 7.5px;
    }

    .mainContainer .mainSidebar>ul>li>.firstSubNavigation>li>.secondSubNavigation>li>a {
        padding: 5px 15px 5px 10px;
    }
}

@media (max-width: 1440px) {}

@media (max-width: 1368px) {

    .mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__right .mainHeader__burgerMenu,
    .mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__right .mainHeader__adminOptions {
        width: 50px;
        height: 50px;
    }

    .mainContainer .mainHeader .mainHeader__main .mainHeader__bottom,
    .mainContainer .mainFooter {
        width: calc(100% - 220px);
    }

    .mainContainer .mainSidebar {
        top: 50px;
        width: 220px;
        height: calc(100vh - 50px);
    }

    /* .mainContainer .mainSidebar>ul>li>a {
        padding: 12px;
    } */

    .mainContainer .mainSidebar>ul>li>a>.mainSidebar__icon {
        width: 25px;
        height: 25px;
        margin-right: 10px;
    }

    .mainContainer .mainSidebar>ul>li>a>.mainSidebar__text {
        width: calc(100% - 35px);
    }

    .mainContainer .mainContent {
        padding-right: 45px ;
        padding-left: 30px;
    }

    .sidebarFromSection {
        top: 50px;
        height: calc(100vh - 50px);
    }

    .sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form {
        padding: 20px;
    }

    .sidebarFromSection .sidebarFromSection__slideButton,
    .sidebarFromSection .sidebarFromSection__modalButton,
    .sidebarFromSection .sidebarFromSection__slideButton.withDropdown,
    .sidebarFromSection.sidebarFromSection--classificationType .sidebarFromSection__slideButton {
        width: 35px;
        height: 35px;
        top: 43px;
    }

    .dataTableSection .dataTableSection__tableSection .table-responsive .dt-container .dt-layout-row .dt-search input {
        height: 35px;
        background: transparent url(../../img/dataTableSearchIcon.svg) no-repeat right 10px center / 15px;
        padding-right: 30px;
        min-width: 200px;
    }

    .customFormBox .form-group span.select2.select2-container .select2-selection--single {
        padding: 5px 10px;
        height: 30px;
        background: #ffffff url(../../img/chevronDown.svg) no-repeat right 10px center / 10px;
    }

    .customFormBox .form-group .form-label,
    .sidebarFromSection__browseImageBox label.form-label {
        margin: 0;
    }

    .dataTableSection .dataTableSection__tableSection .table-responsive .dt-container {
        padding-top: 45px;
    }
    .commonModalStyling .modal-content .sidebarFromSection.sidebarFromSection__formSection+.sidebarFromSection__overlay{
        top: 50px;
        height: calc(100% - 50px);
    }
    .commonModalStyling .modal-content .sidebarFromSection.sidebarFromSection__formSection .sidebarFromSection__modalButton {
        top: 9px;
    }
}

@media (max-width: 1280px) {}

@media (max-width: 1024px) {}

@media (max-width: 767px) {}

/* -------------------------------------- Responsive Style Sheet End -------------------------------------- */

/* ===================================== New Design ======================================== */
.mainHeader__right ul {
    /* display: flex; */
    list-style-type: none;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: clamp(17px, 1.77vw, 34px);
}
.mainHeader__right ul li a{
    display: block;
}
.mainHeader__right ul li a img {
    filter: brightness(0) saturate(100%) invert(24%) sepia(78%) saturate(3946%) hue-rotate(152deg) brightness(87%) contrast(103%);
    height: clamp(38px, 2.71vw, 52px);
    transition: unset !important;
}
.mainHeader__right ul li a img.bell_icon{
    height: clamp(24px, 1.77vw, 34px);
}
.mainHeader__right ul li a:hover img{
    filter: brightness(0) saturate(100%) invert(71%) sepia(15%) saturate(3413%) hue-rotate(349deg) brightness(110%) contrast(98%);
}
.mainHeader__right ul li a.mainHeader__burgerMenuButton img {
    max-width: clamp(28px, 1.82vw, 35px);
}
.sidebar {
    padding-top: clamp(105px, 6.25vw, 120px);
    width: clamp(280px, 20.42vw, 392px);
    padding-left: clamp(8px, 0.83vw, 16px);
    padding-right: clamp(8px, 0.83vw, 16px);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.sidebar ul li:not(:last-child){
    margin-bottom: clamp(10px, 1.04vw, 20px);
}
.sidebar ul li a, .dropdownBtn {
    display: flex;
    padding: clamp(6px, 0.52vw, 10px) clamp(12px, 0.94vw, 18px);
    border-radius: 10px;
    align-items: center;
    gap: clamp(8px, 0.68vw, 13px);
}
.sidebar ul li a img, .dropdownBtn img {
    height: clamp(30px, 2.08vw, 40px);
}
.sidebar ul li a span, .dropdownBtn span {
    font-size: clamp(14px, 1.04vw, 20px);
    color: #333;
}
.sidebar ul li a:hover, .sidebar ul li a.active, .sidebar ul li a.show, .dropdownBtn.show, .dropdownBtn.active, .dropdownBtn:hover{
    background-color: #007E4B;
}
.sidebar ul li a:hover span, .sidebar ul li a.active span, .sidebar ul li a.show span, .dropdownBtn.show span, .dropdownBtn.active span, .dropdownBtn:hover span{
    color: #fff;
}
.sidebar ul li a img.arrowDrop, .dropdownBtn img.arrowDrop {
    position: absolute;
    right: 10px;
    width: 11px;
    height: auto;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(-90deg);
}
.sidebar ul li a:hover img.arrowDrop, .sidebar ul li a.active img.arrowDrop, .sidebar ul li a.show img.arrowDrop, .dropdownBtn:hover img.arrowDrop, .dropdownBtn.active img.arrowDrop, .dropdownBtn.show img.arrowDrop{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(33deg) brightness(106%) contrast(101%);
}
.sidebar ul li a.show img.arrowDrop, .dropdownBtn.show img.arrowDrop {
    transform: unset;
}

.sidebar ul li.dropdown ul.dropdown-menu {
    position: relative !important;
    transform: unset !important;
    border: none;
}
.sidebar ul li.dropdown ul.dropdown-menu li a.dropdown-item span {
    font-size: clamp(12px, 0.83vw, 16px);
}
.sidebar ul li.dropdown ul.dropdown-menu li {
    margin-top: 10px;
    margin-bottom: 0;
}
.sidebar ul li.dropdown ul.dropdown-menu li a {
    padding-left: clamp(38px, 2.4vw, 46px);
    position: relative;
    line-height: 1;
    padding-top: clamp(14px, 0.89vw, 17px);
    padding-bottom: 14px;
}
.sidebar ul li.dropdown ul.dropdown-menu li a:after{
    position: absolute;
    left: clamp(25px, 1.56vw, 30px);
    top: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: #333;
    content: "";
    margin: auto;
}
.sidebar ul li.dropdown ul.dropdown-menu li a:hover:after, .sidebar ul li.dropdown ul.dropdown-menu li a.active:after{
    background: #fff;
}
.mainContainer .mainHeader .mainHeader__main .mainHeader__top .mainHeader__left.mhlLogo{
    width: clamp(280px, 20.42vw, 392px);
}
.caLeft {
    padding-top: clamp(7px, 0.52vw, 10px);
    padding-bottom: clamp(7px, 0.52vw, 10px);
    display: flex;
    align-items: center;
}
.caLeftBox{
    height: 100%;
}
.caLeftBox h3 {
    font-size: clamp(20px, 1.67vw, 32px);
    padding-left: clamp(8px, 0.63vw, 12px);
    padding-right: clamp(8px, 0.63vw, 12px);
    color: #007E4B;
    font-weight: 600;
}
.analytics_icon{
    width: clamp(30px, 2.5vw, 48px);
}
.verity_icon{
    width: clamp(28px, 1.46vw, 28px);
}
.corpIntel_Analytics {
    padding-top: clamp(20px, 1.67vw, 32px);
}
.corpIntel_Analytics .ca_head h3 {
    font-size: clamp(18px, 1.46vw, 28px);
    font-weight: 500;
    color: #333;
}
.ca_tabs {
    padding-top: clamp(24px, 2.19vw, 42px);
}
/* .ca_tabs .nav-tabs:after{
    position: absolute;
    bottom: 0;
    height: clamp(5px, 0.42vw, 8px);
    width: 100%;
    content: "";
    background: #E8E8E6;
    left: 0;
    border-radius: 50px;
} */
.ca_tabs .nav-tabs li.nav-item .nav-link {
    border: none;
    padding: 0;
    margin: 0;
    font-size: clamp(12px, 0.83vw, 16px);
    font-weight: 500;
    color: #9CA3AF;
    text-align: left;
    width: 100%;
    line-height: 1;
    padding: clamp(14px, 1.04vw, 20px) 14px;
    position: relative;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    color: #333;
}
.ca_tabs .nav-tabs li.nav-item:last-child .nav-link{
    border-bottom: none;
}
.ca_tabs .nav-tabs li.nav-item .nav-link span {
    font-weight: 400;
    color: #666;
}
.ca_tabs .nav-tabs li.nav-item{
    /* width: calc(100% / 3); */
    width: 100%;
}
/* .ca_tabs .nav-tabs li.nav-item .nav-link.active {
    font-weight: 700;
    color: #007E4B;
} */
/* .ca_tabs .nav-tabs:before{
    position: absolute;
    bottom: 0;
    height: clamp(5px, 0.42vw, 8px);
    width: var(--tab-progress-width, 33.33%);
    content: "";
    background: #007E4B;
    left: 0;
    border-radius: 50px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
} */
.ca_tabs .tab-content {
    padding-top: clamp(10px, 2.24vw, 43px);
}
.ca_tabs .tab-content table.table{
    margin-bottom: 0;
}
.ca_tabs .tab-content table.table thead tr th {
    border: none;
    padding: 0 5px 5px;
    font-size: clamp(12px, 0.83vw, 16px);
    font-weight: 600;
    color: #333;
    text-align: center;
}
.ca_tabs .tab-content table.table thead tr th:first-child{
    text-align: start;
    padding-left: clamp(30px, 2.08vw, 40px);
}
.ca_tabs .tab-content table.table thead tr th:not(:first-child) {
    width: 115px;
}
.ca_tabs .tab-content table.table tbody tr.tableColumn {
    /* background: #F9FFFA; */
    border: 1px solid #ddd;
}


.ca_tabs .tab-content table.table{
    border-collapse: separate;
    border-spacing: 0 clamp(10px, 1.04vw, 20px);
}
.ca_tabs .tab-content table.table tbody tr.tableColumn td{
    background: #F9FFFA;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    /* padding:clamp(15px, 1.88vw, 36px) 0; */
    padding: 12px 5px;
}

.ca_tabs .tab-content table.table tbody tr.tableColumn td:first-child{
    border-left: 1px solid #ddd;
    border-radius: 10px 0 0 10px;
    padding-left: 0;
}
.ca_tabs .tab-content table.table tbody tr.tableColumn td:last-child{
    border-right: 1px solid #ddd;
    border-radius: 0 10px 10px 0;
}
.ca_tabs .tab-content table.table tbody tr.tableColumn td:not(:first-child){
    text-align: center;
}

/* ------------------------- new ------------------------- */

#maturityAssessmentModal.commonModalStyling .modal-dialog.modal-lg {
    max-width: 90%;
}
.ca_tabs ul.nav-tabs {
    min-width: 240px;
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    background: #f9f9f9;
}
.ca_tabs .nav-tabs li.nav-item .nav-link.current-tab {
    background: #007E4B;
    color: #fff;
}
.ca_tabs .nav-tabs li.nav-item .nav-link.current-tab span{
    color: #fff;
}
#maturityAssessmentModal .modal-body.org_form {
    height: 82vh;
}
#maturityAssessmentModal .ca_tabs, .ca_tabs .tab-content, .ca_tabs .tab-content .tab-pane{
    height: 100%;
}
.ca_tabs .tab-content table.table thead{
    position: sticky;
    top: 0;
    z-index: 1;
    background: #fff;
}
.tableBox{
    height: calc(100% - clamp(59px, 3.65vw, 70px));
    overflow: auto;
    padding: 0 20px;
}
.tabFooter {
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* ------------------------- new ------------------------- */
.table_policy {
    padding-left: clamp(15px, 2.08vw, 40px);
}
.table_policy p {
    /* margin: 0 0 clamp(18px, 2.03vw, 39px); */
    margin: 0 0 12px;
    font-size: clamp(12px, 0.89vw, 17px);
    color: #333;
    font-weight: 500;
}
.table_policy_ap {
    display: flex;
    align-items: center;
    /* gap: clamp(15px, 2.03vw, 39px); */
    gap: 7px;
}
.table_policy_ap span {
    font-size: clamp(12px, 0.73vw, 14px);
    font-weight: 500;
    color: #666;
}
.table_policy_ap ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: clamp(10px, 0.99vw, 19px);
}
.table_policy_ap ul li {
    width: clamp(20px, 1.67vw, 32px);
    height: clamp(20px, 1.67vw, 32px);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    background: #C8E7DA;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: clamp(11px, 0.73vw, 14px);
    line-height: 1;
    border-radius: 100%;
}
.arrow_up img{
    filter: brightness(0) saturate(100%) invert(38%) sepia(1%) saturate(5089%) hue-rotate(56deg) brightness(100%) contrast(63%);
}
.arrow_up:hover img{
    filter: brightness(0) saturate(100%) invert(34%) sepia(29%) saturate(1512%) hue-rotate(109deg) brightness(99%) contrast(102%);
}
.tableCount {
    border-radius: 8px;
    /* width: clamp(32px, 2.5vw, 48px); */
    width: clamp(28px, 2.08vw, 40px);
    border: 1px solid #666666;
    /* height: clamp(32px, 2.5vw, 48px); */
    height: clamp(28px, 2.08vw, 40px);
    background: none;
    font-size: clamp(12px, 0.73vw, 14px);
    font-weight: 500;
    color: #333;
    line-height: clamp(28px, 2.08vw, 40px);
    display: inline-flex;
    justify-content: center;
}
.tableCount:hover, .tableCount.active{
    border-color: #005F3B;
    background-color: #007E4B;
    color: #fff;
}
.tableHead_practice td {
    padding: 0;
    border: none;
}
.tableHead_practice td h4 {
    font-size: clamp(14px, 1.04vw, 20px);
    font-weight: 600;
    line-height: 1;
    padding-left: clamp(30px, 2.08vw, 40px);
    padding-top: clamp(14px, 1.25vw, 24px);
    padding-bottom: clamp(5px, 0.36vw, 7px);
    color: #333;
}
.saveBtn {
    min-width: clamp(164px, 10.21vw, 196px);
    border-radius: 10px;
    background: #007e4b;
    text-align: center;
    border: 1px solid #007e4b;
    font-size: clamp(14px, 1.04vw, 20px);
    color: #fff;
    font-weight: 500;
    line-height: 1.85;
    padding: 5px 14px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.saveBtn:hover{
    color: #007e4b;
    background-color: #fff;
}
.saveBtn.prevBtn{
    border-color: #666;
    color: #666;
    background-color: #fff;
}
.saveBtn.prevBtn:hover{
    background-color: #007e4b;
    color: #fff;
}
.saveBtn.prevBtn.disabled{
    pointer-events: none;
    background-color: #E5E5E5;
    border-color: #E5E5E5;
}

/* .policy_builder {
    padding-top: clamp(20px, 1.67vw, 32px);
} */

.policy_builder .policy_heading h3 {
    font-size: clamp(18px, 1.46vw, 28px);
    font-weight: 500;
    color: #333;
}

.policy_builder .policy_band {
    background: #007E4B;
    padding: clamp(16px, 1.05vw, 24px) clamp(44px, 3.02vw, 58px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
    margin-top: clamp(18px, 1.15vw, 22px);
}

.policy_builder .policy_band .policy_band_heading h4{
    font-size: clamp(15px, 1.04vw, 20px);
    font-weight: 500;
    color: #fff;
}

.policy_builder .policy_band .policy_band_img img {
    width: clamp(18px, 1.3vw, 25px);
    height: clamp(18px, 1.3vw, 25px);
    cursor: pointer;
}

.policy_builder .page-wrapper-policy {
    padding: clamp(14px, 1.04vw, 20px) clamp(44px, 3.02vw, 58px);
}

.policy_builder .page-wrapper-policy .page-title h3 {
    color: #007E4B;
    font-weight: 500;
    font-size: clamp(17px, 1.25vw, 24px);
}

.policy_builder .page-wrapper-policy .page-title img {
    width: clamp(14px, 0.94vw, 18px);
    height: clamp(15px, 0.99vw, 19px);
}

.policy_builder .page-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}
 
.policy_builder .page-subtitle {
    font-size: clamp(10px, 0.73vw, 14px);
    color: #333;
    margin-bottom: 22px;
}

.policy_builder .clauses-container {
    max-height: 347px;
    overflow-y: auto;
}

.policy_builder .clauses-container .clause_form {
    padding: 0 clamp(30px, 2.34vw, 45px);
}

.policy_builder .clauses-container::-webkit-scrollbar {
    width: 6px;
}

.policy_builder .clauses-container::-webkit-scrollbar-thumb {
    background: #007E4B;
    border-radius: 10px;
}

.policy_builder .clause-card {
    background: #ffffff;
    border-radius: 3px;
    padding: clamp(10px, 0.83vw, 16px) clamp(15px, 1.15vw, 22px);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
}

.policy_builder .clause-card.active {
    background: #F0FFF9;
}

.policy_builder .clauses-container .claude_line {
    width: 100%;
    height: 2px;
    background: #DDD;
    margin: 5px 0;
}

.policy_builder .clause-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy_builder .clause-icon input {
    width: clamp(15px, 1.04vw, 20px);
    height: clamp(15px, 1.04vw, 20px);
    border-radius: 50%;
}

.policy_builder .clause-content {
    flex: 1;
    min-width: 0;
}

.policy_builder .clause-title {
    font-size: clamp(13px, 0.83vw, 16px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.policy_builder .clause-card.active .clause-title {
    color: #007E4B;
}
 
.policy_builder .clause-title.muted {
    color: #333;
    font-weight: 400;
}

.policy_builder .clause-desc {
    font-size: clamp(11px, 0.73vw, 14px);
    color: #333;
    font-weight: 400;
    line-height: 1.55;
}
 
.policy_builder .clause-action {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-top: 2px;
}

.policy_builder .mandatory_field_policy .form-check-input:checked {
    background-color: #007E4B;
    border-color: #007E4B;
    border-radius: 50%;
}

.policy_builder .mandatory_field_policy .no-click {
    pointer-events: none;   /* prevents clicking */
    opacity: 1;      
}

.policy_builder .mandatory_field_policy .form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: none !important;
}

.policy_builder .mandatory_field_policy .form-check-input:checked[type=checkbox] {
    background-image: url("assets/img/dashboard/form_control_checked.svg");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.policy_builder .other_policy_field .form-check-input:checked {
    background-color: #007E4B;
    border-color: #007E4B;
}

.policy_builder .clause_indicator .clause_indicator_teller p {
    color: #333;
    font-size: clamp(11px, 0.73vw, 14px);
}

.policy_builder .clause_indicator .clause_indicator_teller img {
    width: clamp(15px, 1.04vw, 20px);
    height: clamp(15px, 1.04vw, 20px);
}

.policy_builder .clause_indicator .clause_indicator_teller {
    display: flex;
    align-items: center;
    gap: 20px;
}

.policy_builder .clause_indicator {
    margin-top: clamp(50px, 3.91vw, 75px);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.viewMoreButton a {
    background: #007E4B;
    color: #fff;
    padding: 10px clamp(40px, 3.13vw, 60px);
    border-radius: 8px;
    font-size: clamp(15px, 1.04vw, 20px);
}

.policy_builder .clause_indicator .clause_teller_button {
    display: flex;
    gap: 20px;
}

.policy_builder .clause_indicator .clause_teller_button .clause_btn_save a{
    background-color: transparent;
    color: #007E4B;
    border: 1px solid #F0FFF9;
}

.policy_builder .clause_indicator .clause_teller_button .clause_btn_save a:hover{
    background-color: #007E4B;
    color: #fff;
    border: 1px solid #007E4B;
}

.policyBuliderModal {
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999999;
}

.policyBuliderModal .modal-dialog {
    width: 42%;
}

.policyBuliderModal .modal-header {
    background: #007E4B;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.policyBuliderModal .modal-header a img {
    filter: brightness(0) saturate(100%) invert(90%) sepia(100%) saturate(33%) hue-rotate(306deg) brightness(112%) contrast(98%);
    width: clamp(15px, 1.04vw, 20px);
    height: clamp(15px, 1.04vw, 20px);
    cursor: pointer;
}

.policyBuliderModal .modal-title {
    font-size: clamp(15px, 1.04vw, 20px);
    font-weight: 500;
}

.policyBuliderModal .modal-body label {
    width: 100%;
    color: #333;
    font-weight: 400;
    font-size: clamp(14px, 1.04vw, 20px);
    margin-top: clamp(15px, 1.09vw, 21px);
    margin-bottom: clamp(10px, 0.78vw, 15px);
}

.policyBuliderModal .modal-body input {
    width: 100% !important;
    border: 1px solid #CACACA;
    background-color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    margin-bottom: clamp(15px, 1.09vw, 21px);
}

.policyBuliderModal .modal-footer button {
    background: #007E4B;
    color: #fff;
    padding: 5px clamp(30px, 2.34vw, 45px);
    border-radius: 8px;
    font-size: clamp(13px, 0.94vw, 18px);
}

/* #notificationModal .modal-dialog {
    width: 72%;
} */

#notificationModal .modal-body .notification_box .notification_content {
    display: flex;
    align-items: center;
    gap: 20px;
}

#notificationModal .modal-body .notification_box .notification_content .not_img {
    width: clamp(150px, 9.38vw, 180px);
    height: clamp(150px, 9.38vw, 180px);
}

#notificationModal .modal-body .notification_box .notification_content .not_img img {
    width: 100%;
    height: 100%;
}

#notificationModal .modal-body .notification_box .notification_content p {
    font-size: clamp(12px, 0.94vw, 18px);
    color: #333;
}
/* ===================================== New Design ======================================== */
.rim_modal {
    z-index: 99999;
}
.rim_modal {
    background: rgba(0, 0, 0, 0.5);
}
.rim_modal .modal-dialog .modal-content {
    border: none;
}
.org_form .form_details .organisation_form {
    background: #FCFCFC;
    /* box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); */
    padding: clamp(33px, 2.81vw, 54px) clamp(40px, 2.81vw, 54px);
    padding-top: 0;
}

.org_form .form_details .organisation_form .heading_toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.org_form .form_details .organisation_form .org_heading h3 {
    color: #007E4B;
    font-size: clamp(24px, 1.67vw, 32px);
    font-weight: 500;
    margin: clamp(40px, 2.86vw, 55px) 0;
}

.org_form .form_details .organisation_form .org_toogle .switch {
  position: relative;
  display: inline-block;
  width: clamp(48px, 3.07vw, 59px);
  height: clamp(20px, 1.41vw, 27px);
}

.org_form .form_details .organisation_form .org_toogle .switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.org_form .form_details .organisation_form .org_toogle .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  box-shadow: inset 0 0 8px 2px #a3a3a3;
}

.org_form .form_details .organisation_form .org_toogle .slider:before {
  position: absolute;
  content: "";
  height: clamp(15px, 1.04vw, 20px);
  width: clamp(15px, 1.04vw, 20px);
  left: 4px;
  bottom: 3px;
  background-color: #fff;
  transition: .4s;
  box-shadow: 1px 1px 4px 0px #0000006b;
}

.org_form .form_details .organisation_form .org_toogle input:checked + .slider {
  background-color: #007E4B;
}

.org_form .form_details .organisation_form .org_toogle input:focus + .slider {
  box-shadow: 0 0 1px #007E4B;
}

.org_form .form_details .organisation_form .org_toogle input:checked + .slider:before {
  transform: translateX(26px);
}

/* Rounded */
.org_form .form_details .organisation_form .org_toogle .slider.round {
  border-radius: 34px;
}

.org_form .form_details .organisation_form .org_toogle .slider.round:before {
  border-radius: 50%;
}

.org_form .form_details .organisation_form .org_toogle .toggle_text {
    color: #333;
    font-size: clamp(15px, 1.04vw, 20px);
    font-weight: 400;
    margin-left: 4px;
}

.org_form .form_details .organisation_form .form_start label {
    width: 100%;
    color: #333;
    font-weight: 400;
    font-size: clamp(14px, 1.04vw, 20px);
    margin-top: clamp(15px, 1.09vw, 21px);
    margin-bottom: clamp(10px, 0.78vw, 15px);
}

.org_form .form_details .organisation_form .form_start .form_grid .form_name input {
    width: 100% !important;
    border: 1px solid #CACACA;
    background-color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
}

.org_form .form_details .organisation_form .form_start .form_grid .form_name .date_input {
    text-transform: uppercase;
}

.org_form .form_details .organisation_form .form_start .dropdown {
    margin-bottom: clamp(19px, 1.56vw, 30px);
}

.org_form .form_details .organisation_form .form_start .dropdown .dropdown-toggle {
    width: 100% !important;
    border: 1px solid #CACACA;
    background-color: #fff;
}

.org_form .form_details .organisation_form .form_start .dropdown .dropdown-toggle::after {
    content: "";
    display: inline-block;
    margin-left: auto !important;
    width: 13px;   /* now works */
    height: 13px;
    background: url("../../img/dashboard/dropdown_black.svg") no-repeat center;
    background-size: contain;
    border: none;
}

.org_form .form_details .organisation_form .form_start .dropdown .dropdown-menu .dropdown-item {
    color: #333;
    font-weight: 400;
    font-size: clamp(14px, 1.04vw, 20px);
}

.org_form .form_details .organisation_form .form_start .form_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 50px;
}

.org_form .form_details .organisation_form .form_start textarea {
    width: 100%;
    height: 250px;
    border: 1px solid #CACACA;
    background-color: #fff;
    resize: none;
}
.viewMoreButton a {
    background: #007E4B;
    color: #fff;
    padding: 10px clamp(40px, 3.13vw, 60px);
    border-radius: 8px;
    font-size: clamp(15px, 1.04vw, 20px);
    margin-top: clamp(30px, 2.92vw, 56px);
    display: inline-block;
}

/* -------------------------------------- Burger Navigation Style Sheet Start -------------------------------------- */

.burgerNavigation {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -50vw;
    width: 50vw;
    height: 100vh;
    background:  #ffffff ;
    z-index: 99999;
}

.burgerNavigation.show {
    display: flex;
    right: 0vw;
}

.burgerNavigation+.burgerNavigation__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99998;
    background-color: rgba(0, 0, 0, 0.8);
}

.burgerNavigation+.burgerNavigation__overlay.show {
    display: block;
}

.burgerNavigation .burgerNavigation__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(10px, 1.04vw, 20px) clamp(30px, 3.13vw, 60px);
    /* border-bottom: 1px solid #DDDDDD; */
}

.burgerNavigation .burgerNavigation__header .burgerNavigation__left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.burgerNavigation .burgerNavigation__header .burgerNavigation__left h4 {
    font-family: var(--primaryFontFamily);
    font-size: clamp(16px, 1.042vw, 20px);
    line-height: 1.5;
    font-weight: 500;
    color: #000000;
    margin: 0;
}

.burgerNavigation .burgerNavigation__header .burgerNavigation__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.burgerNavigation .burgerNavigation__header .burgerNavigation__right .burgerNavigation__burgerMenuButton {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: clamp(20px, 1.56vw, 30px);
    height: clamp(20px, 1.56vw, 30px);
}

.burgerNavigation .burgerNavigation__header .burgerNavigation__right .burgerNavigation__burgerMenuButton span.line {
    position: absolute;
    left: 0;
    transform: translateY(50%);
    display: block;
    width: 100%;
    height: clamp(1.5px, 0.16vw, 3px);
    background-color: var(--primaryColor);
}

.burgerNavigation .burgerNavigation__header .burgerNavigation__right .burgerNavigation__burgerMenuButton span.line.first {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.burgerNavigation .burgerNavigation__header .burgerNavigation__right .burgerNavigation__burgerMenuButton span.line.second {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.burgerNavigation .burgerNavigation__body {
    display: flex;
    flex-direction: column;
    max-height: calc(100% - clamp(60px, 5.73vw, 110px));
    overflow: auto;
}

.burgerNavigation .burgerNavigation__body>ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.burgerNavigation .burgerNavigation__body>ul>li {
    display: block;
    padding: clamp(12px, 1.17vw, 22.5px) clamp(30px, 3.13vw, 60px);
    background-color: #ffffff;
    border-bottom: 1px solid #DDDDDD;
    position: relative;
}

.burgerNavigation .burgerNavigation__body>ul>li:first-child {
    border-top: 1px solid #DDDDDD;
}

.burgerNavigation .burgerNavigation__body>ul>li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0px;
    height: 100%;
    background-color: var(--primaryColor);
}

.burgerNavigation .burgerNavigation__body>ul>li:hover,
.burgerNavigation .burgerNavigation__body>ul>li.active {
    background-color: #F8F8F8;
}

/*---------------------------------- Dashboard Design Start ------------------------------------*/

/* .dashboard-section{
    margin-right: clamp(110px, 1.56vw, 180px);
} */

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

.plus-btn {
    width: clamp(130px, 8.75vw, 180px);
    height: 36px;
    border-radius: 5px;
    border: none;
    background: #005F3B;
    color: #fff; /* controls SVG color */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(8px, 0.73vw, 15px);
    font-weight: 500;
}

.plus-btn:hover {
  background: #79DAA4;
  color: #000;
  transform: scale(1.1);
}

.inci-btn {
    width: clamp(300px, 24.75vw, 450px);
    height: 56px;
    border-radius: 5px;
    border: none;
    background: #005F3B;
    color: #fff; /* controls SVG color */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(12px, 0.88vw, 20px);
    font-weight: 600;
}

.inci-btn:hover {
  background: #79DAA4;
  color: #000;
  transform: scale(1.1);
}

.page-subtitle {
    font-size: clamp(12px, 1.2vw, 14px);
    color: var(--text-dark);
    padding: 32px 0;
}
.card-panel {
    background: #ffffff;
    border-radius: 14px;
    padding: clamp(18px, 2.2vw, 28px) clamp(18px, 2.2vw, 28px) 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 1px 6px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.card-panel.maturity-card {
    border-left: 4px solid #2a9d5c;
    padding-left: clamp(16px, 2vw, 24px);
}

.score-wrap {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.5vw, 32px);
}

.donut-container {
    position: relative;
    width: clamp(100px, 10vw, 140px);
    height: clamp(100px, 10vw, 140px);
    flex-shrink: 0;
}

.donut-container svg {
    transform: rotate(-90deg);
}

.donut-track {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 10;
}

.donut-progress {
    fill: none;
    stroke-width: 10;
    stroke-linecap: butt;
    stroke-dasharray: 364.4;
    stroke-dashoffset: calc(364.4 - (364.4 * 0.240));
    transition: stroke-dashoffset 1.2s ease;
}

.donut-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.donut-number {
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 400;
    color: #005F3B;
    letter-spacing: -1px;
}

.donut-denom {
    font-size: clamp(11px, 1vw, 13px);
    color: var(--text-dark);
    margin-top: 3px;
    font-weight: 500;
}

.score-details {
    flex: 1;
}

.score-details h6 {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 3px;
}

.last-assessed {
    font-size: clamp(11px, 1vw, 12px);
    color: #666666;
    margin-bottom: 16px;
}

.metric-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: clamp(12px, 1.1vw, 13.5px);
    color: #374151;
    margin-bottom: 9px;
    gap: 12px;
}

.metric-row .label-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666666;
}

.metric-row .label-wrap img {
    color: #666666;
    flex-shrink: 0;
}

.metric-score {
    font-weight: 700;
    font-size: clamp(12px, 1.1vw, 13.5px);
    white-space: nowrap;
    color: #00633D;
}

.metric-score span {
    color: #00633D;
    font-weight: 400;
}

.btn-assess {
    background: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: clamp(12px, 1.1vw, 14px);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-assess:hover { background: var(--primaryColorHover); }

.btn-report {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--primary-green);
    border-radius: 8px;
    padding: 10px 24px;
    font-size: clamp(12px, 1.1vw, 14px);
    font-weight: 400;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

/* ── Latest Policy ── */
.policy-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.policy-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 6px;
}

.policy-header h6 {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 4px;
}

.policy-header .shield-icon {
    width: 42px;
    height: 42px;
    background: #ECFDF5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.policy-subtext {
    font-size: clamp(11px, 1vw, 13px);
    color: #666666;
    margin-bottom: 20px;
}

.policy-file-row {
    display: flex;
    align-items: center;
    background: #f4f5f7;
    border-radius: 10px;
    padding: 13px 16px;
    gap: 54px;
    margin-bottom: 20px;
}

.policy-file-icon {
    width: 34px;
    height: 34px;
}

.policy-file-info {
    flex: 1;
}

.policy-file-info strong {
    font-size: clamp(12px, 1.1vw, 14px);
    font-weight: 600;
    display: block;
    color: #1E293B;
    margin-bottom: 2px;
}

.policy-file-info small {
    font-size: clamp(10px, 0.9vw, 12px);
    color: #666666;
}

.badge-active {
    background: #005F3B;
    color: #fff;
    border-radius: 20px;
    font-size: clamp(10px, 0.9vw, 11.5px);
    font-weight: 400;
    padding: 5px 13px;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.edit-btn {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px 6px;
    transition: color 0.2s;
    flex-shrink: 0;
}

.edit-btn:hover { color: #2a9d5c; }

.btn-download-word {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    background: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.2px;
}

.btn-download-word:hover { background: var(--primaryColorHover); }

.action-row {
    display: flex;
    justify-content: end;
    gap: 10px;
    margin-top: 24px;
}

/* ── Card Wrapper ── */
.cases-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 1px 6px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 30px 0;
}

/* ── Header ── */
.cases-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(14px, 1.5vw, 20px) clamp(16px, 2vw, 28px) 0px;
    flex-wrap: wrap;
    gap: 12px;
}

.cases-title {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 500;
    color: var(--primary-green);
    margin: 0;
}

.status-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Badge base */
.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 5px;
    padding: 6px 26px;
    font-size: clamp(11px, 1vw, 13.5px);
    font-weight: 500;
}

.status-badge .badge-count {
    font-size: clamp(15px, 1.5vw, 20px);
    font-weight: 800;
    line-height: 1;
}

.status-badge .badge-label {
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 500;
}

/* Open — red tones */
.badge-open {
    background: #F5DDDD;
    color: #BA1A1A;
}
.badge-open .badge-count { color: #BA1A1A; }

/* In Process — amber/orange tones */
.badge-inprocess {
    background: #F1E7DA;
    color: #A16207;
}
.badge-inprocess .badge-count { color: #A16207; }

/* Closed — green tones */
.badge-closed {
    background: #D9ECE4;
    border-color: #b2dfc5;
    color: var(--primary-green);
}
.badge-closed .badge-count { color: var(--primary-green); }

/* ── Table ── */
.cases-table-wrap {
    overflow-x: auto;
    padding:clamp(14px, 1.5vw, 20px) clamp(16px, 2vw, 28px) 0px;
}

thead tr {
    background: #DFF1EA;
}

.case-id {
    font-weight: 400;
    color: var(--text-dark);
    font-size: clamp(12px, 1.1vw, 13.5px);
}

.complainant-name {
    color: #374151;
    font-size: clamp(12px, 1.1vw, 14px);
}

.complaint-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    font-size: clamp(12px, 1.1vw, 13.5px);
}

.complaint-cell .info-icon {
    flex-shrink: 0;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.2s;
}

.complaint-cell .info-icon:hover { color: #2a9d5c; }

/* Status text colors */
.status-open       { color: #BA1A1A; font-weight: 500; font-size: clamp(12px, 1.1vw, 13.5px); }
.status-inprocess  { color: #A16207; font-weight: 500; font-size: clamp(12px, 1.1vw, 13.5px); }
.status-closed     { color: var(--primary-green); font-weight: 500; font-size: clamp(12px, 1.1vw, 13.5px); }

/* ── Footer ── */
.cases-footer {
    display: flex;
    justify-content: center;
    padding: clamp(14px, 1.5vw, 20px) clamp(16px, 2vw, 28px) 24px;
    border-top: 1px solid #f0f0f0;
}

.btn-view-all {
    background: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 36px;
    font-size: clamp(12px, 1.1vw, 14px);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.2px;
}

.btn-view-all:hover { background: var(--primaryColorHover); }

/* Scrollbar styling */
.cases-table-wrap::-webkit-scrollbar { height: 4px; }
.cases-table-wrap::-webkit-scrollbar-track { background: #f1f1f1; }
.cases-table-wrap::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }

.complaint-para {
    font-size: clamp(12px, 0.88vw, 20px);
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.complaintModalContent{
    height: 80vh;
}

/* ── DASHBOARD PAGE DECORATIVE SQUARES (bottom-right) ── */
.dash-deco-wrapper {
  position: absolute;
  bottom: clamp(-120%, calc(-30.5% - 0vw), -43.8%);
  right: clamp(8px, calc(14px + 1vw), 14px);
  left: auto;
  z-index: 3;
}
.dash-deco-outer {
  width: 120px;
  height: 120px;
  border: 1px solid #d9b650;
  position: relative;  /* ✅ changed to relative */
  z-index: 1;
}

.dash-deco-inner {
  width: 120px;
  height: 120px;
  background: var(--primary-green);
  position: absolute;
  right: -14px;
  left: auto;
  top: 12px;
}

.status-dropdown {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 14px;
  cursor: pointer;
}

/* Different colors based on value (optional via JS later) */
.status-dropdown.open {
  background-color: #ffecec;
  color: #d9534f;
}

.status-dropdown.process {
  background-color: #fff8e1;
  color: #f0ad4e;
}

.status-dropdown.closed {
  background-color: #e6ffed;
  color: #28a745;
}

#complainTable tbody td.dt-empty {
    text-align: center !important;
    vertical-align: middle !important;
    height: 220px;
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 576px) {
    .score-wrap { flex-direction: column; align-items: flex-start; }
}
/*---------------------------------- Dashboard Design End ------------------------------------*/

.burgerNavigation .burgerNavigation__body>ul>li:hover::after,
.burgerNavigation .burgerNavigation__body>ul>li.active::after {
    width: clamp(8px, 0.63vw, 12px);
}

.burgerNavigation .burgerNavigation__body>ul>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--primaryFontFamily);
    font-size: clamp(16px, 1.563vw, 30px);
    line-height: 1.2;
    font-weight: 500;
    color: #000000;
}

.burgerNavigation .burgerNavigation__body>ul>li:hover>a {
    color: var(--primaryColor);
    background-color: #F8F8F8;
}
.burgerNavigation .burgerNavigation__body>ul>.disable-btn:hover>a{
    cursor: not-allowed;
}

.burgerNavigation .burgerNavigation__body>ul>li>a span {
    display: none;
}

.burgerNavigation .burgerNavigation__body ul li ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.burgerNavigation .burgerNavigation__body ul li ul li {
    display: block;
    border: none;
    padding: 0;
    padding-right: 30px;
    border-right: 1px solid #000000;
    margin-right: 30px;
}

.burgerNavigation .burgerNavigation__body ul li:has(> a) ul li {
    margin-top: 22.5px;
}

.burgerNavigation .burgerNavigation__body ul li ul li:last-child,
.burgerNavigation .burgerNavigation__body ul li ul li:has(+ .linkedInIcon) {
    padding-right: 0;
    border-right: none;
    margin-right: 0;
}

.burgerNavigation .burgerNavigation__body ul li ul li.linkedInIcon {
    margin-left: auto;
}
.burgerNavigation .burgerNavigation__body ul li ul li.linkedInIcon a img{
    width: clamp(20px, 1.51vw, 29px);
}
.burgerNavigation .burgerNavigation__body ul li ul li a {
    display: block;
    font-family: var(--primaryFontFamily);
    font-size: clamp(10px, 0.833vw, 16px);
    line-height: 1.2;
    font-weight: 500;
    color: #000000;
}

.burgerNavigation .burgerNavigation__body ul li ul li:hover a,
.burgerNavigation .burgerNavigation__body ul li ul li.active a {
    color: var(--primaryColor);
}

.burgerNavigation .burgerNavigation__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 30px 60px;
}

.burgerNavigation .burgerNavigation__footer ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.burgerNavigation .burgerNavigation__footer ul li {
    display: block;
}

.burgerNavigation .burgerNavigation__footer ul li a {
    display: block;
    width: 30px;
}

.burgerNavigation .burgerNavigation__footer ul li a img {
    width: 100%;
}

.btn-join:disabled {
    opacity: 0.5;cursor: not-allowed;
}

/* -------------------------------------- Burger Navigation Style Sheet Start -------------------------------------- */

/* -------------------------------------- Profile Section Start ---------------------------------------------------- */

/* ── PROFILE PAGE ── */
.prof-page-wrapper {
  display: flex;
  gap: 0;
  min-height: 100vh;
}

.prof-top-action {
  display: flex;
  justify-content: flex-end;
  padding: 18px 28px 0 0;
  margin-bottom: 16px;
}

.prof-btn-save {
  background: var(--primaryColor);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 10px 22px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.prof-btn-save:hover { background: var(--primaryColorHover); }

.prof-main-content {
  flex: 1;
  padding: 28px 32px 40px 32px;
  border: none;
  border-radius: 10px;
  background: #ffffff;
  max-width: 100%;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.08),
    0 10px 20px rgba(0, 0, 0, 0.12);
}

.prof-section-title {
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--primary-green);
  margin-bottom: 22px;
  margin-top: 0;
}

.prof-section-block {
  padding-bottom: 32px;
  margin-bottom: 10px;
}

.prof-section-block + .prof-section-block {
  border-top: 1px solid #efefef;
  padding-top: 28px;
}

.prof-form-label {
  font-size: 12px;
  color: #666666;
  font-weight: 400;
  margin-bottom: 5px;
  display: block;
}

.prof-field-group {
  margin-bottom: 16px;
}

.prof-input {
  width: 100%;
  background: #F4F4F1;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 13.5px;
  color: #1a1a1a;
  outline: none;
  font-family: inherit;
  transition: border 0.18s;
}

.prof-input:focus {
  border-color: #1a5c3a;
  background: #fff;
}

.prof-input::placeholder { color: #c0c0c0; }

/* Other address + button */
.prof-other-address-wrap { position: relative; }

.prof-other-address-wrap .prof-input { padding-right: 38px; }

.prof-plus-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    border: none;
    background: none;
}

/* Password */
.prof-pw-wrap { position: relative; }

.prof-pw-wrap .prof-input {
  padding-right: 38px;
  letter-spacing: 3px;
}

.prof-eye-toggle {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #9a9a9a;
  display: flex;
  align-items: center;
}

.prof-eye-toggle svg { width: 17px; height: 17px; }

.prof-btn-update-pw {
  background: var(--primary-green);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 9px 20px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  height: 40px;
  align-self: flex-end;
  font-family: inherit;
}

.prof-btn-update-pw:hover { background: #154d30; }

/* ── SIDEBAR ── */
.prof-sidebar {
  width: 290px;
  flex-shrink: 0;
  padding: 18px 24px 24px 24px;
  display: flex;
  flex-direction: column;
}

.prof-side-card {
  padding: 18px 16px;
  border: none;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  margin-bottom: 16px;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.08),
    0 10px 20px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.prof-side-card:hover {
  box-shadow: 
    0 6px 12px rgba(0, 0, 0, 0.10),
    0 14px 28px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.prof-side-card:first-child { padding-top: 18px; }

.prof-side-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}

.prof-side-icon-box {
  width: 40px;
  height: 40px;
  background: #f1f4f1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prof-side-icon-box svg { width: 20px; height: 20px; stroke: #555; }

.prof-arrow-right {
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 300;
  line-height: 1;
  margin-top: 2px;
}

.prof-side-card-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.prof-side-card-desc {
  font-size: 12.5px;
  color: var(--text-dark);
  line-height: 1.5;
}

/* .prof-divider {
  height: 1px;
  background: #e5e5e5;
  margin-top: 18px;
} */

/* ── ORGANIZATION LOGO CARD ── */
.orgainisationBox {
    display: flex;
    align-items: end;
    justify-content: space-between;
}



.prof-logo-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 28px 20px 24px;
    text-align: center;
    margin: 16px 0;
    width: clamp(280px, 18.75vw, 350px);
    box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.08),
    0 10px 20px rgba(0, 0, 0, 0.12);
}

.prof-logo-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.prof-logo-subtitle {
  font-size: 13px;
  color: #64748B;
  margin-bottom: 24px;
  line-height: 1.5;
}

.prof-drop-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.prof-drop-icon {
  width: 62px;
  height: 72px;
  margin-bottom: 14px;
}

.prof-drop-icon svg {
  width: 100%;
  height: 100%;
}

.prof-drop-text {
  font-size: 14px;
  font-weight: 500;
  color: #064E3B;
  margin: 0;
}

.prof-browse-link {
  color: #1a5c3a;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
}

.prof-browse-link:hover {
  color: #154d30;
}

.prof-drop-hint {
  font-size: 12.5px;
  color: #94A3B8;
  margin: 0;
}

/* Drag over state */
.prof-drop-zone.dragover {
  background: #f0f8f3;
  border-radius: 8px;
}

/* ── PROFILE PAGE DECORATIVE SQUARES (bottom-right) ── */
.prof-deco-wrapper {
  position: absolute;
  bottom: clamp(-120%, calc(-100.5% - 0vw), -80%);
  right: clamp(8px, calc(14px + 1vw), 14px);
  left: auto;
  z-index: 3;
}
.prof-deco-outer {
  width: 120px;
  height: 120px;
  border: 1px solid #d9b650;
  position: relative;  /* ✅ changed to relative */
  z-index: 1;
}

.prof-deco-inner {
  width: 120px;
  height: 120px;
  background: var(--primary-green);
  position: absolute;
  right: -14px;
  left: auto;
  top: 12px;
}

/* -------------------------------------- Profile Section End ---------------------------------------------------- */
.policy_builderTable .myDataTable.table tbody tr td{
    vertical-align: unset;
    padding: 10px 10px;
}
.policy_builderTable .myDataTable.table tr th:first-child {
    text-align: left;
    padding-left: 10px;
}
.policy_builderTable .myDataTable.table tr th{
    padding: 10px;
}
.resize-none {
    resize: none;
}
.actionBtnList {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 15px;
    align-items: center;
}
.actionBtnList a {
    width: 20px !important;
}
.actionBtnList a:hover img{
    filter: brightness(0) saturate(100%) invert(36%) sepia(21%) saturate(2264%) hue-rotate(110deg) brightness(97%) contrast(98%);
}

/* ======================================== Maturity Thank You Modal Start =================================== */

 /* ═══════════════════════════════════════════
       BLOCK : maturity-thankyou-modal
       All classes follow BEM:
         maturity-thankyou-modal           (block)
         maturity-thankyou-modal__element  (element)
         maturity-thankyou-modal--modifier (modifier)
    ═══════════════════════════════════════════ */
 
    /* overlay */
    .maturity-thankyou-modal__overlay {
      position: fixed;
      inset: 0;
      background: rgba(30, 40, 32, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
    }
 
    /* card */
    .maturity-thankyou-modal__card {
      background: #ffffff;
      border-radius: 20px;
      padding: 40px 36px 36px;
      position: relative;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
      text-align: center;
      animation: maturityThankyouModalIn 0.35s cubic-bezier(.22,.68,0,1.2) both;
    }
 
    @keyframes maturityThankyouModalIn {
      from { opacity: 0; transform: scale(0.88) translateY(16px); }
      to   { opacity: 1; transform: scale(1)   translateY(0);     }
    }
 
    /* close button */
    .maturity-thankyou-modal__close {
      position: absolute;
      top: 18px;
      right: 20px;
      background: none;
      border: none;
      cursor: pointer !important;
      color: #b0b8b1;
      font-size: 20px;
      line-height: 1;
      padding: 4px;
      transition: color .2s;
    }
    .maturity-thankyou-modal__close:hover {
      color: #2e7d47;
    }
 
    /* check icon circle */
    .maturity-thankyou-modal__check-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 22px;
    }
    .maturity-thankyou-modal__check-icon svg {
      width: 26px;
      height: 26px;
    }
 
    /* heading */
    .maturity-thankyou-modal__heading {
      font-size: 1.55rem;
      font-weight: 700;
      color: #1a2b1e;
      margin-bottom: 6px;
      letter-spacing: -0.3px;
    }
 
    /* maturity level name e.g. "Developing Awareness" */
    .maturity-thankyou-modal__level {
      font-size: 18px;
      font-weight: 500;
      color: var(--primary-green);
      margin-bottom: 3px;
    }
 
    /* "Total Maturity Score" label */
    .maturity-thankyou-modal__score-label {
      font-size: 16px;
      font-weight: 500;
      color: #3b4a3e;
      margin-bottom: 28px;
      letter-spacing: 0.2px;
    }
 
    /* ring wrapper */
    .maturity-thankyou-modal__ring-wrap {
      position: relative;
      width: 150px;
      height: 150px;
      margin: 0 auto 32px;
    }
    .maturity-thankyou-modal__ring-wrap svg {
      transform: rotate(-90deg);
      width: 150px;
      height: 150px;
    }
 
    /* ring background track */
    .maturity-thankyou-modal__ring-track {
      fill: none;
      stroke: #e8ede9;
      stroke-width: 10;
    }
 
    /* ring progress arc */
    .maturity-thankyou-modal__ring-arc {
      fill: none;
      stroke: url(#maturityThankyouModalGradient);
      stroke-width: 10;
      stroke-linecap: round;
      stroke-dasharray: 408;    /* 2π × r(65) ≈ 408 */
      stroke-dashoffset: 163;   /* 408 × (1 − 2.1/4) ≈ 163 */
      transition: stroke-dashoffset 1.2s cubic-bezier(.4,0,.2,1);
    }
 
    /* ring center text group */
    .maturity-thankyou-modal__ring-center {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      line-height: 1.1;
    }
 
    /* numeric score */
    .maturity-thankyou-modal__ring-score {
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--primary-green);
      letter-spacing: -1px;
    }
 
    /* denominator "of 4" */
    .maturity-thankyou-modal__ring-denom {
      font-size: 0.85rem;
      color: var(--text-dark);
      font-weight: 500;
    }
 
    /* actions row */
    .maturity-thankyou-modal__actions {
      display: flex;
      gap: 12px;
      justify-content: center;
    }
 
    /* shared button base */
    .maturity-thankyou-modal__btn {
      flex: 1;
      max-width: 180px;
      padding: 11px 9px;
      border-radius: 10px;
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      transition: background .2s, color .2s, box-shadow .2s;
    }
 
    /* outline modifier */
    .maturity-thankyou-modal__btn--outline {
      border: 1px solid var(--primary-green);
      background: transparent;
      color: var(--primary-green);
    }
    .maturity-thankyou-modal__btn--outline:hover {
      background: #f0f8f2;
      box-shadow: 0 2px 10px rgba(46, 125, 71, .15);
    }
 
    /* solid modifier */
    .maturity-thankyou-modal__btn--solid {
      border: 2px solid transparent;
      background: var(--primary-green);
      color: #ffffff;
    }
    .maturity-thankyou-modal__btn--solid:hover {
      background: var(--primaryColorHover);
      box-shadow: 0 4px 14px rgba(46, 125, 71, .35);
    }


/* ======================================== Maturity Thank You Modal End =================================== */
.select2-container--default .select2-results__option--highlighted[aria-selected]{
    background-color: var(--primaryColor);
}
.select2-results__option {
    padding: 10px;
}
.importModal .modal-body.org_form {
    height: 70vh;
    overflow: auto;
}
.addBtn {
    min-width: clamp(22px, 1.56vw, 30px);
    width: clamp(22px, 1.56vw, 30px);
    min-height: clamp(22px, 1.56vw, 30px);
    background: #03804d;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: clamp(-40px, -2.08vw, -25px);
    top: clamp(23px, 1.41vw, 27px);
    padding: 0;
    cursor: pointer;
}
.addBtn img{
    width: 45%;
}
.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form.pr_60{
    padding-right: 60px;
}
.myDataTable.table tbody tr td a.tableLink{
    width: clamp(16px, 1.04vw, 20px);
}
.tableLink:hover img{
    filter: brightness(0) saturate(100%) invert(30%) sepia(98%) saturate(498%) hue-rotate(108deg) brightness(100%) contrast(101%);
}
.arrow_up {
    width: 16px;
    display: inline-block;
}
.iloPolicy h4{
    font-size: clamp(14px, 0.94vw, 18px);
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}
.iloPolicy ul {
    list-style-type: none;
    padding: 0;
}
.iloPolicy tbody tr td .iloP_input input{
    accent-color: var(--primaryColor);
}
.iloPolicy tbody tr td .iloP_text h3 {
    font-size: clamp(13px, 0.83vw, 16px);
    font-weight: 500;
    color: #333;
}
.iloPolicy tbody tr td .iloP_text p {
    margin: 0;
    font-size: clamp(12px, 0.73vw, 14px);
    color: #333;
}
.iloPolicy thead tr th, .iloPolicy tbody tr td {
    border-bottom: 1px solid #ddd;
}
.iloPolicy thead tr th{
    background: rgba(200, 231, 218, 1);
    font-size: clamp(13px, 0.83vw, 16px);
    font-weight: 600;
    color: #333;
}
.iloPolicy tbody tr:nth-child(even) td{
    background-color: #f5f5f5;
}
.policyModal.commonModalStyling .modal-dialog.modal-lg {
    max-width: 60%;
}
.policyModal.commonModalStyling .modal-dialog .modal-body {
    height: 70vh;
    overflow: auto;
}
.policyModal.commonModalStyling .modal-content .modal-footer, .keyModuleModalComponent.commonModalStyling .modal-content .modal-footer {
    border-top: 1px solid #ddd;
    padding-top: 10px;
}
.policyModal.commonModalStyling .modal-content .modal-footer .btn.btn-primary{
    line-height: 1;
    height: 34px;
}
.cloneTitle {
    background: #fff;
    padding: 10px;
}
.addContent .addBtn{
    right: 0;
    top: 0;
    margin-left: auto;
}
.addContent {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-left: auto;
    font-size: clamp(12px, 0.73vw, 14px);
    font-weight: 500;
    justify-content: end;
}
.addBox {
    background: #f5f5f5;
    padding: 10px 40px 10px 10px;
}
.sidebarFromSection__browseImageBox .sidebarFromSection__top .sidebarFromSection__browseImage input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    opacity: 0;
}
.sidebarFromSection__browseImageBox .sidebarFromSection__top .sidebarFromSection__browseImage button {
    position: relative;
    z-index: 0;
}
.keyModuleModalComponent.commonModalStyling .modal-content .modal-body{
    padding-top: 10px;
}
.keyModuleModalComponent.commonModalStyling .modal-content .sidebarFromSection.sidebarFromSection__formSection .sidebarFromSection__modalButton {
    top: 12px;
}
.keyModuleModalComponent.commonModalStyling.keyModuleModalComponent .modal-content div.dt-container div.dt-layout-row:first-child div.dt-layout-cell.dt-layout-end{
    padding-right: 20px;
}
.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form.pe_60{
    padding-right: 50px;
}
.addTopicBox{
    background: #f5f5f5;
    padding: 10px 20px;
    position: relative;
}
.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__formGroup .addTopicBox .sidebarFromSection__addInputGroup, .sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__formGroup .addTopicBox .sidebarFromSection__deleteInputGroup{
    position: absolute;
    right: -38px;
    top: 33px;
    left: auto;
    width: 30px;
    height: 30px;
}
.sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__formGroup .addTopicBox .resourceAdd .sidebarFromSection__addInputGroup, .sidebarFromSection .sidebarFromSection__formBox .sidebarFromSection__form .sidebarFromSection__formGroupBox .sidebarFromSection__formGroup .addTopicBox .resourceAdd .sidebarFromSection__deleteInputGroup{
    right: -59px;
    top: 23px;
}
.addTopicBox h4 {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 17px;
}
.ma_section .dataTableSection__tableSection .dt-layout-cell.dt-layout-end .dt-search {
    margin-right: 55px;
}
.ma_section .sidebarFromSection.sidebarFromSection--fiftyPercentWidth{
    right: 0;
    width: 45px;
    position: absolute;
    top: 8px;
    height: 45px;
    overflow: visible;
    transform: unset;
}
.ma_section .sidebarFromSection.sidebarFromSection--fiftyPercentWidth .sidebarFromSection__slideButton {
    right: 0;
    top: 0;
}

@media (max-width: 1368px) {
    .ma_section .dataTableSection__tableSection .dt-layout-cell.dt-layout-end .dt-search {
        margin-right: 45px;
    } 
    .ma_section .sidebarFromSection.sidebarFromSection--fiftyPercentWidth{
        width: 35px;
        height: 35px;
    }
}