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

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

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

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

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

@font-face {
    font-family: noto-bangla-bold;
    src: url("/resources/fonts/Noto_Sans_Bengali-Bold-a3d5337b9b35655aafd85da21948ee0d.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
*/
* {
    scrollbar-color: #416def #dfdfdf;
}

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

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

input[type="text"],
input[type="number"],
textarea {
    width: 100%;
    border: 1px solid #bbbbbb;
    border-radius: 4px;
}

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

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;
}

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;
}

.file-view {
    padding: 0.25rem 0.5rem;
}

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

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

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

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

.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;
    font-style: italic;
    opacity: 1;
}

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

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

input[type="email"]::placeholder {
    color: #C0C0C0;
    font-style: italic;
}

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 {
    padding: 88px 40px 30px;
}

@media screen and (min-width:992px) {
    .page-content {
        padding-left: 288px;
    }
}
@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
}

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

.app-modal-header {
    padding: 11px 0 10px 0 !important;
    margin: 0 25px
}

.app-modal-body {
    padding: 0;
    margin: 20px 25px 0 25px;
    border-bottom: 1px solid #dee2e6;
}

.app-modal-footer {
    border-color: white;
    background-color: #f0f1f1;
    border-radius: 0 0 10px 10px;
    margin: 0;
    padding: 20px 20px 20px 0
}

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

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

/*-------------------------- advanced filter -----------------------------*/
.filter-advanced {
    background-color: #e9e9e9;
    margin-bottom: 50px;
    border: 0;
    border-radius: 10px;
}

/*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"] > .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 {
    line-height: 110%;
    text-align: center;
    height: 34px;
    border-radius: 7px;
}

.delete-modal-btn, .request-btn {
    min-width: 144px;
}

.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;
}

/*--------------User status badge------------*/
.user-status-pending-badge {
    color: #FF8515;
    padding: 6px 12px;
    background-color: #FFE7D0;
    border-radius: 12px;
}

.user-status-active-badge {
    color: #28a745;
    padding: 6px 12px;
    background-color: #D4EDDA;
    border-radius: 12px;
}

.user-status-inactive-badge {
    color: #DC3545;
    padding: 6px 12px;
    background-color: #F8D7DA;
    border-radius: 12px;
}

.user-status-terminated-badge {
    color: #C0C0C0;
    padding: 6px 12px;
    background-color: #F2F2F2;
    border-radius: 12px;
}

.released-badge {
    color: #DC3545;
    padding: 6px 12px;
    background-color: #F8D7DA;
    border-radius: 12px;
}

.deputed-badge {
    color: #1E429F;
    padding: 6px 12px;
    background-color: #E1EFFE;
    border-radius: 12px;
}

.order-generated-badge {
    color: #836ABB;
    padding: 6px 12px;
    background-color: #F0EAFF;
    border-radius: 12px;
}

/*--------------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-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;
}

/*--------------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-card-table {
    border-spacing: 0 20px !important;
    background-color: transparent !important;
    padding: 0 40px;
}

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

.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
}

/*--------------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;
    overflow: auto;
}

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

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

.modal-md-lg {
    max-width: 587px;
}

body.modal-open {
    overflow: hidden;
}

.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;
}

.maroon-badge {
    color: #800000;
    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-family: noto-light, noto-bangla-light, sans-serif;
    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-200px {
    height: 200px !important;
}

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

.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;
}

.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;
}

.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-green {
    color: green;
    border: 1px solid green;
    border-radius: 20px;
    text-align: center;
    padding: 5px 5px;
}

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

.status-badge-outline-light-blue {
    color: #6c6eed;
    border: 1px solid #6c6eed;
    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-orange {
    color: #EC882C;
    border: 1px solid #EC882C;
    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;
    }
}

.space-behind-floater {
    height: 50px;
}

.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;
}

.rotated {
    transform: rotate(90deg);
    transition: transform 0.3s ease-in-out;
}

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

@media screen and (min-width:1773px) {
    .mt-custom {
        margin-top: 20px !important;
    }
}
