@font-face {
    font-family: noto;
    src: url("../fonts/NotoSans-Regular.ttf") format("truetype");
}

@font-face {
    font-family: noto-light;
    src: url("../fonts/NotoSans-Light.ttf") format("truetype");
}

@font-face {
    font-family: noto-bold;
    src: url("../fonts/NotoSans-Bold.ttf") format("truetype");
}

@font-face {
    font-family: noto-bangla;
    src: url("../fonts/Noto_Sans_Bengali-Regular.ttf") format("truetype");
}

@font-face {
    font-family: noto-bangla-light;
    src: url("../fonts/Noto_Sans_Bengali-Light.ttf") format("truetype");
}

@font-face {
    font-family: noto-bangla-bold;
    src: url("../fonts/Noto_Sans_Bengali-Bold.ttf") format("truetype");
}

/**
* Note: we need to use universal selector "*" for mozila firefox's scrollbar because
* there is no scope to customize scroll bar in mozila firefox.
* ref: https://www.w3schools.com/howto/howto_css_custom_scrollbar.asp
*
* Firefox 64 adds support for the spec draft CSS Scrollbars Module Level 1,
* which adds two new properties of scrollbar-width and scrollbar-color which
* give some control over how scrollbars are displayed.
* ref: https://stackoverflow.com/a/54101063/2463147
*/

* {
    font-family: Anek Bangla, noto, noto-bangla, sans-serif;
    scrollbar-width: thin !important;
}

body {
    background-color: #fdfdfd !important;
}

hr {
    border: 1px solid rgba(255, 255, 255, 0.21);
}

hr.grey {
    border-top: 1px solid #D5D5D5;
}

input[type="password"] {
    letter-spacing: 0.1rem;
}

select {
  appearance: none;
  background: url("../images/dropdown-arrow.svg") no-repeat right 0.75em center/1em;
  cursor: pointer;
}

select[readonly]:read-only {
    pointer-events: none;
}

.row-margin-0 {
    display: flex;
    flex-wrap: wrap;
}

.readonly-inputs {
    background: transparent !important;
    border: 0 !important;
    pointer-events: none;
    appearance: none;
    box-shadow: none !important;
}

label.readonly-input-label {
    pointer-events: none;
}

label.readonly-input-label:not(.checkbox-label)::after {
    content: none !important;
}

label.readonly-input-label.file-upload-action {
    display: none;
}

.readonly-inputs::placeholder {
    color: black !important;
}

textarea.readonly-inputs {
    resize: none !important;
}

.custom-date.readonly-inputs + span {
    display: none;
}

.custom-checkbox:has(input[type="checkbox"].readonly-inputs) {
    pointer-events: none;
}

.readonly-inputs:checked ~ .custom-control-label::before {
    border-color: grey !important;
    background-color: grey !important;
}

.readonly-checkbox-label::before {
    opacity: 0.25 !important;
}

button.form-btn.readonly-inputs {
    display: none !important;
}

.readonly-mode.file-view {
    margin-top: 1rem;
}

.readonly-mode.info-when-editable {
    display: none !important;
}

span.custom-error-marker,
.error-marker {
    color: #f82d00;
    padding: 0 10px 0 10px;
    font-size: 13px;
}

input[type="date"].error-marker,
input[type="email"].error-marker,
input[type="text"].error-marker,
input[type="password"].error-marker,
input[type="number"].error-marker,
select.error-marker,
textarea.error-marker,
div.error-marker {
    border: 1px solid #ff4c00 !important;
    color: #000000;
}

input:not([type="radio"]):not([type="checkbox"]):focus,
select:focus,
textarea:focus {
    /*border: 1px solid #6ba5bd !important;*/
    box-shadow: 1px 1px 2px 1px #b9cadd !important;
}

.ajax-error {
    color: #f82d00;
    padding-left: 10px;
    font-size: 13px;
}

input[type="date"].ajax-error,
input[type="email"].ajax-error,
input[type="text"].ajax-error,
input[type="number"].ajax-error,
select.ajax-error,
textarea.ajax-error {
    border: 1px solid #ff4c00 !important;
    color: #000000;
}

.required:after {
    color: red;
    content: "*";
    margin-left: 2px;
    font-weight: bold;
}

span.required-star:before {
    color: red;
    content: "*";
    margin-left: 2px;
    font-weight: bold;
}

/*------Placeholder styling-----*/
input[type="text"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #C0C0C0;
    font-style: italic;
}

input[type="text"]::-moz-placeholder,
input[type="number"]::-moz-placeholder { /* Mozilla Firefox*/
    color: #C0C0C0;
    opacity: 1;
}

input[type="text"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder { /* Internet Explorer, Microsoft Edge */
    color: #C0C0C0;
}

input[type="text"]::placeholder, input[type="number"]::placeholder { /* Most modern browsers support this now. */
    color: #C0C0C0;
}

input[type="email"]::placeholder {
    color: #C0C0C0;
}

input[type="password"]::placeholder {
    letter-spacing: 0;
}

/*------scroll bar---------------------*/
::-webkit-scrollbar {
    width: 15px;
    height: 15px;
}

::-webkit-scrollbar-button {
    width: 0;
    height: 0;
}

::-webkit-scrollbar-thumb {
    background: #416def;
    border: 0 none #ffffff;
    border-radius: 0;
    width: 7px;
}

::-webkit-scrollbar-thumb:hover {
    background: #525965;
}

::-webkit-scrollbar-thumb:active {
    background: #525965;
}

::-webkit-scrollbar-track {
    background: #dfdfdf;
    border: 0 none #ffffff;
    border-radius: 50px;
}

::-webkit-scrollbar-track:hover {
    background: #dfdfdf;
}

::-webkit-scrollbar-track:active {
    background: transparent;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

/*--------------------------page-content-----------------------------*/
.page-content {
    width: 100%;
    padding: 30px 40px 30px;
}

@media screen and (min-width: 992px) {
    .page-content {
        padding-left: 330px;
    }
}

@media screen and (max-width: 991px) {
    .page-content {
        padding-left: 40px;
    }
}

.page-content-tabular {
    margin: -31px -25px -115px -20px;
}

/*-------------------------- modals -----------------------------*/
.app-card {
    background: #e9e9e9;
    border-radius: 10px
}

.form-card {
    border-radius: 16px;
    border: 1px solid var(--Gray-50);
    box-shadow: 0px 6px 12px 0px rgba(255, 255, 255, 0.12) inset, 0px 4px 4px 0px rgba(8, 8, 8, 0.08), 0px 1px 2px 0px rgba(8, 8, 8, 0.20);
}

.stat-count-card {
    border-radius: 16px;
    border: 1px solid var(--Gray-50);
    box-shadow: 0px 6px 12px 0px rgba(255, 255, 255, 0.12) inset, 0px 4px 4px 0px rgba(8, 8, 8, 0.08), 0px 1px 2px 0px rgba(8, 8, 8, 0.20);
}


.app-modal-content {
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    border-radius: 10px !important;
    margin: 88px 0 88px 0;
    padding: 24px;
}

.app-modal-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 0;
    border: 0;
}

.app-modal-body {
    padding: 0;
}

.app-modal-footer {
    border: 0;
    background-color: white;
    border-radius: 0 0 10px 10px;
    margin-top: 32px;
    padding: 0;
}

/*-------------------------- page-header -----------------------------*/
.header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}

.header h1 {
    color: black;
    font-size: 22px;
}

/*neither applied to an element inside a form, nor applied to any text, poor naming*/
.form-title {
    padding-bottom: 20px;
}

.card-bg-color {
    background: #e9e9e9;
    border-radius: 10px;
}

.action-bar {
    min-height: 80px;
    align-items: center;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

/*could be removed upon examination*/
.custom-container {
    margin-bottom: 95px;
}

/*could be better named as 'hr-grey'*/
.card-underline {
    border: 1px solid #d5d5d5;
}

/*could be moved to user.css (currently does not exist)*/
#user-deactivate-warning {
    color: #ef6041;
}

[aria-expanded="true"] > img {
    transform: rotate(90deg);
}

[aria-expanded="true"] > .up{
    transform: rotate(180deg);
}

[aria-expanded="true"] > .fa-angle-right {
    transform: rotate(90deg);
}

/*---Arrow right to down transition---*/
.rotate-90 {
    transform: rotate(-90deg);
}

.rotate-180 {
    transform: rotate(-180deg);
}

/*master data configuration*/
.item-selected {
    color: #FFFFFF;
    background: #6294FD;
    border-radius: 4px;
}

.delete-modal-btn, .request-btn {
    text-align: center;
    padding: 10px 18px;
    border-radius: 8px;
}
.delete-modal-button{
    border-radius: 8px;
    border: 1px solid var(--Error-600);
    background: var(--Error-600);
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
}

.plus-before:before {
    content: "+ ";
}

.minus-before:before {
    content: "- ";
}

.description-field {
    background: #F0F1F1;
    border-radius: 5px;
    height: 115px !important;
}

/* Rename this `label-active` to `label-success` */
.label-active {
    color: #1AA179;
    padding: 6px 12px;
    background-color: #D2F4EA;
    border-radius: 12px;
}

.label-inactive {
    color: #9E9E9E;
    padding: 6px 12px;
    background-color: #DFDFDF;
    border-radius: 12px;
}

.label-warning {
    color: #F59B47;
    padding: 6px 12px;
    background-color: #FFF5E5;
    border-radius: 12px;
}

.label-danger {
    color: #E11C1C;
    padding: 6px 12px;
    background-color: #FFECEC;
    border-radius: 12px;
}

/*--------------Status Pills------------*/
.status-pill {
    display: flex;
    padding: 2px 8px 2px 6px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    gap: 6px;
    text-align: center;
    font-size: 12px;
}

.status-pill-dot {
    font-size: 8px;
    vertical-align: middle !important;
}

.status-pill-grey {
    background-color: var(--Terminated-50);
    color: var(--Terminated-700);
}

.status-pill-grey .status-pill-dot {
    color: var(--Terminated-500);
}

.status-pill-green {
    background-color: var(--Success-50);
    color: var(--Success-700);
}

.status-pill-green .status-pill-dot {
    color: var(--Success-500);
}

.status-pill-red {
    background-color: var(--Danger-50);
    color: var(--Danger-700);
}

.status-pill-red .status-pill-dot {
    color: var(--Danger-500);
}

.status-pill-orange {
    background-color: var(--Warning-50);
    color: var(--Warning-700);
}

.status-pill-orange .status-pill-dot {
    color: var(--Warning-500);
}

/*--------------User status badge------------*/
.user-status-badge{
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    border-radius: 16px;
    padding: 2px 8px;
}
.user-status-pending-badge {
    color: #FF8515;
    background-color: #FFE7D0;
}

.user-status-pending-badge i{
    color:  #FF8515;
}

.user-status-active-badge {
    color: #12B76A;
    background-color: #ECFDF3;
}

.user-status-active-badge i{
    color: #12B76A;
}

.user-status-inactive-badge {
    color: #DC3545;
    background-color: #F8D7DA;
}

.user-status-inactive-badge i{
    color: #DC3545;
}

.user-status-terminated-badge {
    color: #C0C0C0;
    background-color: #F2F2F2;
}

.user-status-terminated-badge i{
    color: #C0C0C0;
}

.released-badge {
    color: #DC3545;
    background-color: #F8D7DA;
}

.deputed-badge {
    color: #026AA2;
    background-color: #F0F9FF;
}

.deputed-badge i {
    color: #0BA5EC;
}

.order-generated-badge {
    color: #836ABB;
    background-color: #F0EAFF;
}

/*--------------Common status badges------------*/
.status-badge {
    padding: 6px 12px;
    border-radius: 12px;
}

.status-badge-grey {
    color: #C0C0C0;
    background-color: #F2F2F2;
}

.status-grey {
    color: #C0C0C0;
}

.status-badge-grey-alt {
    color: #F2F2F2;
    background-color: #C0C0C0;
}

.status-badge-black {
    color: #505050;
    background-color: #E0E0E0;
}

.status-black {
    color: #505050;
}

.status-badge-black-alt {
    color: #E0E0E0;
    background-color: #505050;
}

.status-badge-yellow {
    color: #723B13;
    background-color: #FFFFB0;
}

.status-yellow {
    color: #723B13;
}

.status-badge-yellow-alt {
    color: #FFFFB0;
    background-color: #723B13;
}

.status-badge-orange {
    color: #EC882C;
    background-color: #FFF1E3;
}

.status-orange {
    color: #EC882C;
}

.status-badge-orange-alt {
    color: #FFF1E3;
    background-color: #EC882C;
}

.status-badge-blue {
    color: #0084FF;
    background-color: #DEEFFF;
}

.status-blue {
    color: #0084FF;
}

.status-badge-blue-gray {
    color: var(--Blue-gray-700);
    background-color: var(--Blue-gray-100);
}

.status-blue-gray {
    color: var(--Blue-gray-700);
}

.status-badge-blue-alt {
    color: #DEEFFF;
    background-color: #0084FF;
}

.status-badge-purple {
    color: #836ABB;
    background-color: #F0EAFF;
}

.status-purple {
    color: #836ABB;
}

.status-badge-purple-alt {
    color: #F0EAFF;
    background-color: #836ABB;
}

.status-badge-green {
    color: #1AA179;
    background-color: #D2F4EA;
}

.status-green {
    color: #1AA179;
}

.status-badge-green-alt {
    color: #D2F4EA;
    background-color: #1AA179;
}

.status-badge-red {
    color: #E11C1C;
    background-color: #FFE1E1;
}

.status-red {
    color: #E11C1C;
}

.status-badge-red-alt {
    color: #FFE1E1;
    background-color: #E11C1C;
}

/*--------------ACR Status Badge--------------*/
.acr-status-draft {
    color: var(--Gray-600);
    background-color: var(--Gray-50);
}

.acr-status-returned {
    color: var(--Danger-500);
    background-color: var(--Danger-50);
}

.acr-status-at-petitioner {
    color: var(--Info-500);
    background-color: var(--Badge-Colors-info-background);
}

.acr-status-at-cs {
    color: var(--Primary-500);
    background-color: var(--Badge-Colors-info-background);
}

.acr-status-at-dossier {
    color: var(--Info-700);
    background-color: var(--Badge-Colors-info-background);
}

.acr-status-complete {
    color: var(--Success-500);
    background-color: var(--Success-50);
}

/*--------------Clear search box button------------*/
.clear-search-button {
    position: absolute;
    right: 30pt;
    z-index: 10;
    top: 0;
    bottom: 0;
    margin: auto;
    color: #ccc;
    cursor: pointer;
}

.custom-grey-card-table {
    border-spacing: 0 20px !important;
    background-color: #FFFFFF !important;
}

.custom-grey-card-table tbody tr {
    background: #EAEAEA;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.25);
    height: 100px !important;
}

.custom-table-underline {
    border-bottom: 1px solid #DBDBDB !important;
}

.last-column-school-table, .last-column-teacher-table {
    width: 100px !important;
    border-left: 1px solid #DBDBDB !important;
    text-align: center !important;
    vertical-align: middle !important;
}

.school-table-border-right, .teacher-table-border-right,
.inspection-report-list-table-border-right,
.case-information-list-table-border-right {
    border-right: 1px solid #E1E1E1 !important;
}

.school-progress-bar-ml, .teacher-progress-bar-ml {
    margin-left: -10px !important; /*equivalent to 40px here*/
    margin-top: -15px !important;
    margin-bottom: -5px !important;
}

#teacher-summary-container, #school-summary-container {
    min-height: 90px;
    background: #FFF;
}

.custom-hr {
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 20px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    color: #838383;
}

.custom-hr::before,
.custom-hr::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #838383;
}

.custom-hr:not(:empty)::before {
    margin-right: .25em;
}

.custom-width-150 {
    width: 150px;
}

.custom-hr:not(:empty)::after {
    margin-left: .25em;
}

.custom-card {
    border-spacing: 0 20px !important;
    background-color: #FFFFFF !important;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.25);
    min-height: 100px !important;
}

.form-button-padding {
    padding: 0.5rem 1.5rem;
}

.form-input-padding {
    padding: 0.375rem 0.75rem;
}

.text-danger-custom {
    color: #FF4D00 !important
}

.text-gray-300 {
    color: var(--Gray-300);
}

.text-gray-600 {
    color: var(--Gray-600);
}

.text-gray-200 {
    color: var(--Gray-200);
}

.text-gray-700 {
    color: var(--Gray-700);
}
.text-gray-500 {
    color: var(--Gray-500);
}

.text-gray-50 {
    color: var(--Gray-50);
}

.text-gray-400 {
    color: var(--Gray-400);
}

.text-gray-800 {
    color: var(--Gray-800);
}

/*--------------Complaint badge------------*/
.complaint-status-pending-for-review {
    color: #E11C1C;
    padding: 6px 12px;
    background-color: #FFECEC;
    border-radius: 9px;
}

.complaint-status-inspector-assigned {
    color: #009EF8;
    padding: 6px 12px;
    background-color: #D0EEFF;
    border-radius: 9px;
}

.complaint-status-inspector-report-submitted {
    color: #836ABB;
    padding: 6px 12px;
    background-color: #E9E1FB;
    border-radius: 9px;
}

.complaint-status-action-in-progress {
    color: #F59B47;
    padding: 6px 12px;
    background-color: #FFF1E3;
    border-radius: 9px;
}

.complaint-status-action-taken {
    color: #1AA179;
    padding: 6px 12px;
    background-color: #D2F4EA;
    border-radius: 9px;
}

.complaint-status-dismissed {
    color: #9E9E9E;
    padding: 6px 12px;
    background-color: #DFDFDF;
    border-radius: 9px;
}

.custom-modal-backdrop {
    z-index: 100000 !important;
}

.custom-modal {
    z-index: 100001 !important;
}

.modal-height-300 {
    max-height: 300px;
}

.modal-md {
    max-width: 547px;
}

.with-bullets dd {
    display: list-item;
    list-style-type: disc;
}

.dt-with-bullets dt {
    display: list-item;
    list-style-type: disc;
}

.view-only-input-container input:read-only {
    background: transparent !important;
    border: 0;
    pointer-events: none;
}

.custom-badge {
    display: inline-block;
    font-size: 14px;
    margin: 3px;
    padding: 4px 10px;
    border: 1px solid transparent;
    min-width: 10px;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 99999px
}

.custom-badge.badge-outlined {
    background-color: transparent
}

.custom-badge.badge-outlined.badge-primary {
    border: 1px solid #C0D0FF;
    color: #416DEF;
}

.custom-underline {
    border-color: #D0D0D0 !important;
    width: 100%;
}

.custom-three-line-clamp {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.custom-two-line-clamp {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.custom-one-line-clamp {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.table-header-cell-dark {
    background: #E9E9E9 !important;
}

.table-header-cell-deep-dark {
    background: #E1E1E1 !important;
}

.table-cell-custom-white, .remarks-custom-white {
    background: #E7F1FF !important;
}

.table-cell-light {
    background: #F4F4F4 !important;
}

.table-header-radius {
    border-radius: 5px 5px 0px 0px !important;
}

.table-border-color {
    border-color: #CECECE !important;
}

.table-wrapper {
    position: relative;
    width: 100%;
    overflow: auto;
    border-radius: 5px;
    height: calc(100vh - 8.5rem);
}

.table-container {
    white-space: nowrap;
}

.table-cell-width {
    min-width: 220px !important;
    max-width: 250px !important;
    white-space: normal !important;
}

.table-first-cell-width {
    min-width: 280px !important;
    max-width: 290px !important;
    white-space: normal !important;
}

/*table border color change*/
table.table-bordered {
    border: 1px solid #CECECE;
}

table.table-bordered > thead > tr > th {
    border: 1px solid #CECECE
}

table.table-bordered > tbody > tr > td {
    border: 1px solid #CECECE
}

.table-header {
    /*https://stackoverflow.com/a/43786376/2463147*/
    position: -webkit-sticky; /*this is for all Safari*/
    position: sticky;
    top: 0;
    z-index: 1;
}

.remove-item {
    color: #AA0000;
}

.fa-trash, .trash-icon, .cross-icon {
    color: #AA0000;
    cursor: pointer;
}

.icon-disable {
    color: #5c6274;
    cursor: none;
}

.remove-item :hover {
    color: #FF0000;
}

.custom-text-danger {
    color: #EA1B1B
}

.styling {
    background: #FFFFFF;
    border: 1px solid #ccc;
    border-left: 0px;
    text-align: center;
    padding: 0.375rem 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.table-condensed {
    width: 150px;
    height: 10px;
}

/*-----------bootstrap multiselect checkbox ------------*/

.multiselect {
    height: 31px;
    padding-top: 3px;
    font-size: 14px !important;
    font-weight: 0 !important;
    text-align: left !important;
}

.multiselect-container .multiselect-all .form-check-label {
    font-size: 14px;
    color: black;
    font-weight: 100 !important;
}

.multiselect-container.dropdown-menu {
    width: 100% !important;
}

.down-arrow-hidden {
    background: transparent !important;
    border: 0;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.view-only-name-span {
    height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: .875rem;
    display: inline-block;
    color: #495057;
}

/* Notice Board */
@media screen and (min-width: 992px) {
    .notice-board {
        margin: 0.1rem 0.2rem 0 5.3rem !important;
        padding: 0.5rem;
    }
}

@media screen and (max-width: 991px) {
    .notice-board {
        margin: 0.1rem 0.2rem 0 1rem !important;
        padding: 0.5rem;
    }
}

.notice {
    color: white;
}

.notice-icon {
    margin-right: 0.13rem;
    font-size: 22px;
    flex-basis: 50px;
}

.notice-content {
    padding-top: 0.4rem;
    margin: 0 0.5rem 0.15rem 0.5rem;
    font-size: 16px;
    font-weight: 550;
    letter-spacing: 0.02rem;
}

.badge-no-color {
    padding: 4px 15px;
    border-radius: 9px;
}

.grey-badge {
    color: #505050;
    padding: 4px 15px;
    background-color: #B0B0B0;
    border-radius: 9px;
}

.light-grey-badge {
    color: #8C8C8C;
    padding: 4px 15px;
    background-color: #F2F2F2;
    border-radius: 9px;
}

.red-badge {
    color: #E11C1C;
    padding: 4px 15px;
    background-color: #FFE1E1;
    border-radius: 9px;
}

.orange-badge {
    color: #EC882C;
    padding: 4px 15px;
    background-color: #FFF1E3;
    border-radius: 9px;
}

.purple-badge {
    color: #836ABB;
    padding: 4px 15px;
    background-color: #F0EAFF;
    border-radius: 9px;
}

.magenta-badge {
    color: #99154B;
    padding: 4px 15px;
    background-color: #FCE8F3;
    border-radius: 9px;
}

.blue-badge {
    color: #2556E8;
    padding: 4px 15px;
    background-color: #E8EEFF;
    border-radius: 9px;
}

.yellow-badge {
    color: #723B13;
    padding: 4px 15px;
    background-color: #FFFFB0;
    border-radius: 9px;
}

.indigo-badge {
    color: #0F55FF;
    padding: 4px 15px;
    background-color: #CBE0FF;
    border-radius: 9px;
}

.teal-badge {
    color: #107d7d;
    padding: 4px 15px;
    background-color: #c4dddd;
    border-radius: 9px;
}

.cyan-badge {
    color: #087990;
    padding: 4px 15px;
    background-color: #CFF4FC;
    border-radius: 9px;
}

.green-badge {
    color: #1AA179;
    padding: 4px 15px;
    background-color: #D2F4EA;
    border-radius: 9px;
}

.pink-badge {
    color: #99154B;
    padding: 4px 15px;
    background: #FCE8F3;
    border-radius: 9px;
}

.stakeholder-icon .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

.project-icon h1 {
    font-weight: 700;
    font-size: 45px;
    color: #6294FD;
}

.project-icon p {
    font-size: 16px;
    color: #050021;
}

.text-underline {
    text-decoration: underline;
}

.profile-avatar {
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.progress-bar-container {
    /*position: relative;*/
    /*top: 5px;*/
}

.progress-bar-div {
    position: relative;
    display: inline-block;
    width: 45%;
    height: 10px;
    border-radius: 30px;
    background-color: lightgray;
}

.progress-bar-span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 30px;
}

.scaled {
    transform: scale(0.70) !important;
}

.scale-60 {
    transform: scale(0.60) !important;
}

.scale-120 {
    transform: scale(1.2) !important;
}

.border-radius-top8 {
    border-radius: 8px 8px 0px 0px;
}

.border-radius-bottom8 {
    border-radius: 0px 0px 8px 8px;
}

.border-radius-10 {
    border-radius: 10px !important;
}

.height-45 {
    height: 45px;
}

.h-60vh {
    height: 60vh !important;
}

.h-150px {
    height: 180px !important;
}

.h-20px {
    height: 20px;
}

.h-160px {
    height: 160px !important;
}

.signature-upload {
    background: #E9E9E9;
    border-radius: 10px;
    height: 210px;
    width: 350px;
}

#signature {
    height: 90px;
    width: 300px;
    margin: 10px auto;
}

.signature-viewonly {
    height: 230px !important;
    width: 350px !important;
}

.signature-label {
    font-size: 14px;
    font-weight: bold;
}

.crop-image-container {
    width: 600px;
    height: 400px;
    display: flex;
}

#image-to-crop {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.vertical-line {
    border-left: 1px solid black;
    height: 40px;
    margin-left: 8px;
}

.link-decoration {
    text-decoration: underline !important;
    font-size: large;
}

.image-dim-90 {
    height: 90px;
    width: 90px;
}

.image-dim-60 {
    height: 60px;
    width: 60px;
}

.image-dim-40 {
    height: 40px;
    width: 40px;
}

.height-90 {
    height: 90px;
}

.height-70 {
    height: 70px;
}

.width-160 {
    width: 160px;
}

.text-blue-custom {
    color: #2556E8 !important;
}

.text-orange-custom {
    color: #EC882C !important;
}

.text-green-custom {
    color: #1AA179 !important;
}

.text-yellow-custom {
    color: #723B13 !important;
}

.text-red-custom {
    color: #E11C1C !important;
}

.text-purple-custom {
    color: #836ABB !important;
}

.text-light-grey-custom {
    color: #8C8C8C !important;
}

.text-grey-custom {
    color: #505050 !important;
}

.text-magenta-custom {
    color: #99154B !important;
}

.text-teal-custom {
    color: #107d7d !important;
}

.blink {
    animation: blinker 1s ease-in infinite alternate;
}

.blink-border {
    animation: border-blinker 1s ease-in infinite alternate;
}

.blink-border-red {
    animation: border-blinker 1s ease-in infinite alternate;
    color: #FF0000;
}

.font-family-hind-siliguri {
    font-family: "Hind Siliguri";
}

.font-family-anek-bangla {
    font-family: Anek Bangla, noto, noto-bangla, sans-serif;
}


.tmsReportcardRightGreyArrow {
    height: 20px;
    width: 20px;
}

@keyframes blinker {
    0% {
        text-shadow: 0.1rem 0.2rem 0.3rem;
    }
    100% {
        text-shadow: 0.1rem 0.2rem 0.6rem #77777777;
    }
}

@keyframes border-blinker {
    0% {
        box-shadow: 0.1rem 0.2rem 0.3rem;
    }
    100% {
        box-shadow: 0.1rem 0.2rem 0.6rem #77777777;
    }
}

.status-badge-outline-blue {
    color: blue;
    border: 1px solid blue;
    border-radius: 20px;
    text-align: center;
    padding: 5px 5px;
}

.status-badge-outline-green {
    color: green;
    border: 1px solid green;
    border-radius: 20px;
    text-align: center;
    padding: 5px 5px;
}

.status-badge-outline-cyan {
    color: #13cccc;
    border: 1px solid #13cccc;
    border-radius: 20px;
    text-align: center;
    padding: 5px 5px;
}

.status-badge-outline-red {
    color: red;
    border: 1px solid red;
    border-radius: 20px;
    text-align: center;
    padding: 5px 5px;
}

.otp-input {
    display: inline-block;
    width: 40px !important;
    height: 40px !important;
    text-align: center;
    border-radius: 10px !important;
    margin-right: 1rem !important;
}

.otp-input:focus {
    outline-style: none;
}

#otp-countdown {
    line-height: 27px;
    font-weight: bold;
    color: #FF5F15;
}

@media screen and (min-width: 992px) {
    .float-above-action-bar {
        position: fixed;
        right: 3.5rem;
        bottom: 4.5rem;
        left: 18rem;
        z-index: 1030;
    }
}

@media screen and (max-width: 991px) {
    .float-above-action-bar {
        position: fixed;
        right: 3.5rem;
        bottom: 4.5rem;
        left: 2.5rem;
        z-index: 1030;
    }
}

.table-sticky-header {
    position: -webkit-sticky; /*this is for all Safari*/
    position: sticky;
    top: 0;
    z-index: 2;
}

.table-sticky-body {
    position: -webkit-sticky; /*this is for all Safari*/
    position: sticky;
    z-index: 1;
}

.table-sticky-footer {
    position: -webkit-sticky; /*this is for all Safari*/
    position: sticky;
    inset-block-end: 0;
}

.first-column {
    left: 0;
}

.second-column {
    left: min(13.75em, 220px);
}

.one-liner-text {
    overflow: hidden !important;
    white-space: nowrap !important;
}

.text-vertical-center {
    vertical-align: middle !important;
}

.nav-link.collapsible[data-toggle].collapsed:not(.sidebar-menu):before {
    content: "⮞ ";
}

.nav-link.collapsible[data-toggle]:not(.collapsed):not(.sidebar-menu):before {
    content: "⮟ ";
}

.custom-padding{
    padding: 4px 20px;
}

.add-new-button-box-shadow{
    box-shadow: 0px 4px 4px 0px rgba(8, 8, 8, 0.08), 0px 1px 2px 0px rgba(8, 8, 8, 0.20);
}

.search-bar input{
    border-radius: 5px;
    border: 1px solid #E9EAEB;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(8, 8, 8, 0.08), 0px 1px 2px 0px rgba(8, 8, 8, 0.20);
}
.search-bar input::placeHolder{
    color: rgba(65, 70, 81, 0.60);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.search-bar .input-group-append{
    border-radius: 5px;
    box-shadow: 0px 4px 4px 0px rgba(8, 8, 8, 0.08), 0px 1px 2px 0px rgba(8, 8, 8, 0.20);
}

.width-50{
    width: 50px;
}

.search-bar #advancedFilterContainer{
    border-radius: 7px;
    border: 1px solid white;
    padding: 0px 16px;
    font-weight: bold;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(8, 8, 8, 0.08), 0px 1px 2px 0px rgba(8, 8, 8, 0.20);
    align-items: center;
}

.search-bar .btn-link {
    font-size: 1rem;
    font-weight: 600;
}

.custom-mr-4{
    margin-right: 2rem;
}

.status-text{
    color:  #363F72;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}

.status-box{
    border-radius: 16px;
    background-color: #F8F9FC;
}

.mt260{
    margin-top: 260px;
}
.mt500{
    margin-top: 500px;
}
.mt20{
    margin-top: 50px;
}
.mt30{
    margin-top: 30px;
}

#listContainer{
    z-index: 1;
}

#filterContainer{
    position: fixed;
    top: 0;
    width: 100%;
    overflow: hidden;
    z-index: 100;
    background-color: #fff
}

#profilePicture {

    height: 115px;
    width: 115px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.text-blue-grey{
    color: #535862;
    line-height: 120%;
}

@media screen and (min-width: 1300px) {
    .ml-n {
        margin-left: -10px;
    }
}

@media screen and (min-width: 1600px) {
    .ml-n {
        margin-left: -43px;
    }
}
.border-blue{
    border: 1px solid #1A75FE !important;
}

.form-data-input{
    border-radius: 8px;
    border: 1px solid var(--Gray-50);
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    height: 44px ;
}

.form-data-label{
    color: var(--Gray-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.custom-date{
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    height: 44px ;
    border-width: 1px 0px 1px 1px;
    border-color: var(--Gray-50);
    border-radius: 8px 0px 0px 8px; /* Top-left, top-right, bottom-right, bottom-left */
}

.custom-date-calender{
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    height: 44px ;
    border-width: 1px 1px 1px 10px;
    border-color: var(--Gray-50);
    border-radius: 0px 8px 8px 0px; /* Top-left, top-right, bottom-right, bottom-left */
}

.form-container{
    border-radius: 16px;
    border: 1px solid var(--Gray-50);
    background: #FFF;
    gap: var(--Spacing-xl);
    box-shadow: 0px 6px 12px 0px rgba(255, 255, 255, 0.12) inset, 0px 4px 4px 0px rgba(8, 8, 8, 0.08), 0px 1px 2px 0px rgba(8, 8, 8, 0.20);
}

.checkbox-container{
    border-radius: var(--Border-Radius-m);
    border: 1px solid var(--Gray-50);
    background: var(--HitBox);
    gap: 8px;
    align-self: stretch;
    padding: var(--Spacing-m);
}

.checkbox{
    transform: scale(1.5);
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid var(--Gray-50)
}

.checkbox-label{
    color: var(--Grayscale-800);
}

.manage-button {
    border-radius: 8px;
    background: #FFF;
    color:  #414651;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
}

.manage-button:hover {
    background: #eaebec;
}

.manage-button:focus {
    border-radius: 8px;
    border: 1px solid #D5D7DA;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(8, 8, 8, 0.08), 0px 1px 2px 0px rgba(8, 8, 8, 0.20);
}

.dropdown-item {
    font-size: 16px;
    padding: 0.5rem 1.5rem;
    color: #181D27;
    border-bottom: none;
}

.dropdown-item:focus {
    background: #7a7878;
}

.dropdown-menu {
    border-radius: 8px;
    border: 1px solid #E9EAEB;
    background: #FFF;
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.09), 0px 0px 120px 0px rgba(32, 38, 60, 0.11);
}

.dropdown-menu-left-fixed {
    left: auto !important;
    right: 100% !important;
    margin-right: 20px !important;
    min-width: 220px;
    max-width: 250px;
    position: absolute !important;
    transform: none !important;
    top: auto !important;
}



.movable {
    --x: 0;
    --y: 0;
    transform: translate(var(--x), var(--y)) !important;
}

.translate-x-n100 {
    --x: -100px;
}

.translate-y-34 {
    --y: 34px;
}

.custom-holiday {
    background-color: rgba(230, 94, 94, 0.31) !important;
    color: #131313 !important;
    position: relative;
}

.custom-holiday:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 60%;
    transform: translateY(40%);
    background-color: rgb(154, 189, 151);
    color: #ffffff;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 999;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.weekend-boxes-container{
    display: flex;
    align-items: center;
    align-content: center;
    gap: 24px;
    align-self: stretch;
    flex-wrap: wrap;
    margin-top: 40px!important;
}

.weekend-box{
    gap: var(--Spacing-m);
    flex: 1 0 0;
    height: 164.57px;
    min-width: 164.57px!important;
    max-width: 164.57px;
    padding: var(--Spacing-m);
    border-radius: var(--Border-Radius-m);
    border: 1px solid var(--Text-Link);
    background: var(--Badge-Colors-info-background);
    box-shadow: 0px 0px 0px 4px rgba(65, 109, 239, 0.13), 0px 4px 4px 0px rgba(8, 8, 8, 0.08), 0px 1px 2px 0px rgba(8, 8, 8, 0.20), 0px 6px 12px 0px rgba(255, 255, 255, 0.12) inset;
}

.weekday-box {
    gap: var(--Spacing-m);
    flex: 1 0 0;
    height: 164.57px;
    min-width: 164.57px!important;
    max-width: 164.57px;
    padding: var(--Spacing-m);
    border-radius: var(--Border-Radius-m);
    border: 1px solid var(--Gray-50);
    background: #FFF;
}

.check{
    margin-top: -80px;
    margin-left: 98px;
    width: 32px;
    height: 32px;
    aspect-ratio: 1/1;
    top: 16px;
}

.custom-hover:hover {
    background-color: #cccccc;
    font-weight: 500;
}

.bg-gradient-top-left{
    background: radial-gradient(5.91% 81.09% at 78.05% 25.87%, #FFF 0%, rgba(255, 255, 255, 0.00) 100%),
    radial-gradient(123.05% 133.75% at -21.08% -87.19%, rgba(36, 124, 255, 0.70) 52.07%, rgba(193, 160, 255, 0.00) 100%),
    radial-gradient(114.83% 277.87% at 38.5% 32.84%, #FFF 0%, rgba(255, 255, 255, 0.00) 100%), #F8F8F8;
}

