@import url("https://fonts.googleapis.com/css2?family=Readex+Pro:wght@160..700&display=swap");

*,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

[type="email"],
[type="number"],
[type="tel"],
[type="url"] {
    direction: rtl;
}

*,
:focus {
    outline: 0 !important;
    scroll-behavior: smooth;
}

:root {
    --main-color: #0033a0;
    --white-color: #ffffff;
    --main-dark-color: #1a3065;
    --main-dark-color-B: #1b3065;
    --bg-main-color: #22499d;
    --alt-color: #ae9e79;
    --alt-text-color: #9a7a44;
    --alt-dark-color: #b39d74;
    --text-color: #5e6d8c;
    --text-alt-color: #3d5862;
    --box-shadow: 0px 7px 9px #6c5b3e0d;
    --border-raduis-large: 38px;
    --border-raduis-largest: 48px;
    --font-size-heading-4-01: 35px;
    --font-size-heading-5: 21px;
    --font-size-text-largest: 27px;
    --font-size-text-25: 25px;
    --font-size-text-24: 24px;
    --font-size-text-01: 19px;
    --font-size-text-17: 17px;
    --font-size-text-sm: 15px;
}

body {
    font-family: "Readex Pro", serif;
    direction: rtl;
    font-optical-sizing: auto;
    background-image: url("../images/Yasir_Main_BG.png");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
    font-size: 17px;
    font-weight: 400;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.form-check,
.form-switch {
    cursor: pointer;
}

.checkboxes .form-check {
    padding-left: 0;
}

.form-check .form-check-input {
    float: right;
    margin-left: unset;
    margin-top: unset;
    width: 31.87px;
    height: 31.87px;
    border-radius: 11px;
    border: 1px solid #a0b6be;
    cursor: pointer;
}

    .form-check .form-check-input:focus {
        box-shadow: none;
    }

    .form-check .form-check-input:checked {
        background-color: #b39d74;
        border-color: #b39d74;
    }

        .form-check .form-check-input:checked[type=checkbox] {
            background-image: url("../images/checked-done.svg");
            background-size: 15px 15px;
            background-repeat: no-repeat;
            background-position: center;
        }

.form-check .form-check-label {
    padding-inline-start: 11.16px;
    color: #60481f;
    font-size: var(--font-size-text-01);
    line-height: 24px;
    cursor: pointer;
}

.search_btn {
    display: block;
    margin-inline: auto;
    border-radius: 31px;
    font-size: 23px;
    line-height: 29px;
    font-weight: 350;
    padding: 12px 39.87px 15.65px 47px;
}

    .search_btn svg {
        margin-inline-end: 8px;
    }

.highlighted_text {
    background: linear-gradient( 228.87deg, #c2cce5 13.18%, #22499d 74.81% );
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
    font-weight: 600;
}

    .highlighted_text img {
        position: absolute;
        bottom: -10px;
        inset-inline-start: 0;
    }

.chat_button {
    position: fixed;
    z-index: 9999999;
    bottom: 77px;
    inset-inline-start: 4.8%;
    cursor: pointer;
}

.menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient( 252.57deg, #22499d 14.94%, rgba(31, 63, 135, 0.604) 63.47%, rgba(26, 48, 101, 0) 104.15% );
    transition: right 0.3s ease-in-out;
    z-index: 2000;
    color: var(--white-color);
    padding-top: 67px;
    padding-bottom: 81px;
    padding-inline-start: 5px;
}

    .menu .container-fluid {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

.menu_content ul li a {
    color: var(--white-color);
    margin-bottom: 50px;
    display: block;
    font-size: 33px;
    line-height: 41.25px;
    font-weight: 350;
}

    .menu_content ul li a.active {
        color: var(--alt-color);
        font-weight: 450;
    }

.menu.active {
    right: 0;
}

.menu_footer {
    gap: 43px;
}

.menu-icon {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}

.menu_icon_container {
    position: fixed;
    z-index: 3000;
    top: 45px;
    transition: all 0.3s ease-in-out;
    width: 100%;
    height: 0;
}

    .menu_icon_container .container-fluid {
        height: 0;
    }

    .menu_icon_container.moveToTop {
        top: 40px;
    }

.no-scroll .menu-icon::after,
.no-scroll .menu-icon::before,
.no-scroll .menu-icon span {
    background-color: var(--white-color);
}

.menu-icon span {
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: "";
    position: absolute;
}

.menu-icon span,
.menu-icon::before,
.menu-icon::after {
    width: 40px;
    height: 3px;
    background-color: var(--main-dark-color);
    transition: transform 0.3s, opacity 0.3s;
    display: block;
    border-radius: 9999px;
}

.menu-icon:not(.active):after {
    width: 30px;
    inset-inline-start: 0;
}

.menu-icon::before {
    top: 8px;
}

.menu-icon::after {
    bottom: 7px;
}

.menu-icon.active span {
    opacity: 0;
}

.menu-icon.active::before {
    transform: translateY(14px) rotate(45deg);
}

.menu-icon.active::after {
    transform: translateY(-8px) rotate(-45deg);
}
/*================================= Login Page ====================================*/
.login,
.branch_page {
    min-height: 100vh;
    position: relative;
}

    .login main {
        padding-top: 80px;
    }

    .login footer,
    .none_bg_footer {
        position: absolute;
        inset-inline-start: 50%;
        transform: translateX(50%);
        bottom: 0;
        line-height: 16.25px;
        padding-bottom: 46px;
    }

.main_lg_btn lottie-player {
    width: 72px;
    height: 72px;
    transform: matrix(0, 1, -1, 0, 0, 0);
    opacity: 1;
}

.main_footer_copyright {
    font-weight: 300;
    font-size: 13px;
    opacity: 79%;
    white-space: nowrap;
}

footer .main_footer_copyright {
    color: #3f6272;
    opacity: 79%;
    white-space: nowrap;
}

.heart {
    margin-inline: 4px;
}

.main_footer_copyright span {
    font-size: 11px;
    margin-top: 6px;
    display: inline-block;
}

.go_back {
    color: var(--main-dark-color);
    font-size: 23px;
}

.switch_btn {
    color: var(--main-dark-color);
    font-size: var(--font-size-heading-5);
    background-color: transparent;
    border: 0;
}

.login .section_heading_2 {
    color: var(--main-dark-color-B);
}

.section_heading_2 {
    font-size: 61px;
    font-weight: 450;
    white-space: nowrap;
}

.subtitle {
    font-size: 29px;
    font-weight: 400;
    color: var(--main-dark-color);
    margin-top: 32px;
    margin-bottom: 12px;
}

    .subtitle + p {
        font-size: var(--font-size-text-01);
        color: var(--text-color);
        font-weight: 450;
        margin-bottom: 28px;
    }

.login_form {
    max-width: 522px;
    margin-inline: auto;
}

.input_group {
    position: relative;
    width: 100%;
}

    .input_group .form-control {
        padding: 16px;
        padding-inline-start: 70.73px;
        background-color: var(--white-color);
        color: var(--main-dark-color-B);
        height: 76px;
        box-shadow: var(--box-shadow);
        border-radius: var(--border-raduis-large);
        font-size: 25px;
        border: 0;
        margin-bottom: 21px;
    }

.targeted_input_moving.input_group .form-control {
    color: #0c3443;
    height: 65.42px;
}

.input_group .form-control::placeholder {
    color: #3d586240;
}

.input_group span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.input_group_icon {
    inset-inline-start: 22px;
}

.form-control {
    padding: 10px;
    padding-inline-end: 30px;
}

.toggle-password {
    cursor: pointer;
    font-size: var(--font-size-heading-5);
    inset-inline-end: 36px;
}

.request_support {
    padding-top: 11px;
    color: var(--text-alt-color);
    line-height: 21.25px;
    font-weight: 300;
    margin-bottom: 37px;
}

    .request_support a {
        color: var(--alt-text-color);
        padding-inline-start: 12px;
    }

.main_btn {
    border: 0;
    background-color: var(--bg-main-color);
    color: var(--white-color);
}

.main_lg_btn {
    box-shadow: var(--box-shadow);
    border-radius: var(--border-raduis-large);
    font-size: 24px;
    display: flex;
    padding-inline-start: 49px;
    align-items: center;
    padding-inline-end: 21px;
    gap: 15.5px;
    margin-inline: auto;
}
/*=================================  Login Modal ====================================*/
.remote_sessions_Yasir_logo {
    width: 78px;
}

.reset_btn_css {
    background-color: transparent;
    border: 0;
}

.btn-modal-back {
    color: var(--main-dark-color);
    font-size: 23px;
    line-height: 29px;
}

    .btn-modal-back img {
        margin-inline-end: 18.76px;
        margin-bottom: -4px;
    }

.modal-content {
    border-radius: 63px;
    direction: rtl;
}

.main_login_modal {
    gap: 37px;
}

    .main_login_modal .main_login_modal_text h3 {
        font-size: 39px;
        color: var(--main-dark-color);
        line-height: 49px;
        margin-top: 21.13px;
        margin-bottom: 20px;
        font-weight: 450;
    }

    .main_login_modal .main_login_modal_text p {
        color: #4e717e;
        font-size: var(--font-size-heading-5);
        line-height: 26px;
        max-width: 269px;
        font-weight: 300;
    }

    .main_login_modal .main_login_modal_text + div {
        gap: 37px;
    }

.popup-tab-btn {
    background-color: var(--bg-main-color);
    color: var(--white-color);
    border-radius: 38px;
    flex: 1;
    text-align: center;
    padding-top: 66.55px;
    padding-bottom: 34px;
    padding-inline: 24px;
}

    .popup-tab-btn p {
        font-size: 25px;
        max-width: 258px;
        line-height: 31px;
        font-weight: 300;
        margin-inline: auto;
    }

.hid_verify_btn p {
    max-width: 170px;
}

.hid_verify_btn img {
    margin-bottom: 18.61px;
}

.google_verify_btn img {
    margin-bottom: 25.07px;
}

.choice_body {
    background-color: #ebeff7;
    border-radius: 38px;
    margin-top: 36.62px;
    margin-bottom: 46.71px;
    margin-inline: 54px;
}

    .choice_body h4 {
        font-size: var(--font-size-heading-5);
        color: var(--main-dark-color-B);
        line-height: 26px;
        margin-bottom: 13px;
        font-weight: 350;
    }

.lottie_area {
    gap: 34px;
}

.verify_lottie {
    width: 92px;
    height: 80px;
}

.choice_body h4 img {
    width: 33.57px;
    height: 34.34px;
    margin-inline-end: 18px;
}

.documents_modal .head-line span {
    font-size: var(--font-size-text-25);
    color: #1c3065;
    line-height: 31px;
}

.modal.show .modal-dialog {
    margin-inline: auto;
}

.modal_btns {
    padding-inline-start: 57.78px;
    padding-inline-end: 57.23px;
    padding-top: 42.75px;
}

.main_modal .modal_btns {
    padding-bottom: 54.62px;
}

.modal.zoom .modal-dialog, #casesModal .modal-body {
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal.show.zoom .modal-dialog, #casesModal.show .modal-body {
    transform: scale(1);
    opacity: 1;
}

.main_modal.modal.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

    .main_modal.modal.zoom-in.show {
        opacity: 1;
        transform: scale(1);
    }

.modal-slider {
    overflow-y: auto;
}

.display_text_modal .control-bar {
    padding: 14px 8px;
    background: #080B14;
    opacity: 87%;
    bottom: 28px;
}

    .display_text_modal .control-bar button {
        padding: 6px 32px;
        font-size: 17px;
        color: var(--white-color);
        line-height: 21px;
        font-weight: 250;
    }

        .display_text_modal .control-bar button svg {
            margin-inline-start: 18px;
        }

.modal-slide {
    width: 100%;
    transition: transform 0.5s ease;
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

    .modal-slide.active {
        position: relative;
        opacity: 1;
        pointer-events: all;
    }

.verification_text {
    font-size: 34px;
    color: var(--main-dark-color-B);
    font-weight: 300;
    line-height: 43px;
}

.hip_img {
    display: block;
    margin-top: 12px;
    margin-inline: auto;
}

.otp-container {
    margin-top: 54.28px;
    display: flex;
    align-items: center;
    gap: 15.99px;
}

.otp-box {
    position: relative;
    flex: 1;
    width: 120.01px;
    padding-bottom: 21.5px;
    height: 129px;
    box-shadow: 0px 7px 9px 0px rgba(108, 91, 62, 0.05);
    border-radius: 38px;
    overflow: hidden;
    background-color: var(--white-color);
}

.otp-input {
    text-align: center;
    font-size: 77px;
    display: block;
    border: none;
    height: 96px;
    line-height: 96px;
    color: var(--main-dark-color-B);
    padding: 0;
    direction: ltr !important;
    text-align: center;
}

.otp-box::after {
    content: "";
    position: absolute;
    bottom: 21.5px;
    left: 50%;
    width: 24px;
    height: 3px;
    background-color: var(--main-dark-color-B);
    transform: translateX(-50%);
}

.otp-input::placeholder {
    color: #d8e4e8;
    font-weight: 300;
    font-size: 77px;
}

.otp-input:focus {
    box-shadow: none;
    color: var(--main-dark-color-B);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}
/*=============================  Remote Sessions   ================================*/
.search_result .table-responsive::-webkit-scrollbar {
    display: none;
}

.search_result .search_group .form-control {
    border: 0;
    background-color: rgba(255, 255, 255, 0.33);
    margin-bottom: 18.42px;
}

.search_result h3 {
    font-size: 36px;
    font-weight: 450;
    color: var(--main-dark-color-B);
    margin-bottom: 28.02px;
}
/* ===========================================aside ==================================================*/
.page-menu li.item .icon {
    border-radius: 30px;
    margin-inline-end: 13.53px;
}

.page-menu li.item .list-title h6 {
    margin-bottom: 0;
}

.page-menu li.item .count {
    font-size: 1.8rem;
    font-weight: 400;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.page-menu {
    border-radius: 43px;
    background: rgba(255, 255, 255, 0.28);
    padding: 18px 15.73px 24.94px 15.73px;
}

    .page-menu li.item a {
        display: flex;
        padding: 20px 29px 28px;
        border-radius: 31px;
        background-color: rgba(255, 255, 255, 0.42);
        align-items: center;
        color: #577c8e;
        position: relative;
    }

    .page-menu li.item:not(:last-of-type) {
        margin-bottom: 22.94px;
    }

    .page-menu li.item.active a {
        background-color: #22499d;
        color: #fff;
        z-index: 2;
    }

    .page-menu li.item.active {
        position: relative;
    }
        /* ======================================= dashboard content =====================================*/
        .page-menu li.item.active::after {
            content: "";
            position: absolute;
            width: 80%;
            inset-inline-start: 50%;
            transform: translateX(50%);
            height: 50%;
            background: var(--alt-dark-color);
            z-index: 1;
            bottom: -4px;
            border-radius: 31px;
        }

    .page-menu li.item .list-title {
        text-align: start;
    }

        .page-menu li.item .list-title h6 {
            font-size: 23px;
            font-weight: 400;
            margin-bottom: 0.9px;
            white-space: nowrap;
            color: var(--main-dark-color-B);
        }

    .page-menu li.item.active .list-title h6,
    .page-menu li.item.active .list-title span {
        color: var(--white-color);
    }

    .page-menu li.item.active .list-title h6 {
        font-weight: 350;
    }

    .page-menu li.item.active .list-title span {
        opacity: 0.79;
    }

    .page-menu li.item .list-title span {
        font-size: 13px;
        display: block;
        font-weight: 300;
        color: #577c8e;
    }

    .page-menu li.item .count {
        font-size: 1.8rem;
        font-weight: 400;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

.view_btn {
    border-radius: 31px;
    padding: 10px 23.58px 18px 37px;
    font-weight: 350;
    font-size: 23px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

    .view_btn.document_btn {
        padding: 14px 23.58px 14px 28px;
    }

    .view_btn img {
        padding-inline-end: 15.05px;
        margin-top: 6px;
    }

.c-cardIII {
    position: relative;
}

.dash_card_hover {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    width: 85%;
    height: 100%;
    background-color: rgba(179, 157, 116, 0.9);
    border-radius: 31px;
    display: none;
}

.c-cardIII:hover .dash_card_hover {
    display: block;
    bottom: -4px;
}

.c-cardIII .inner_dash_card {
    background: #ffffff6c;
    border-radius: 57px;
    padding: 16px 16px 24px 16px;
    text-align: center;
    display: block;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    flex: 1;
    transition: all 0.2s ease-in;
}

.c-cardIII:hover .inner_dash_card {
    transform: translateY(-4px);
}

.c-cardIII h4 {
    font-size: var(--font-size-heading-4-01);
    color: #1c3065;
    margin-bottom: 2px;
    font-weight: 400;
}

.c-cardIII span {
    color: #577c8e;
    font-size: 20px;
    font-weight: 300;
}

.c-cardIII:hover .inner_dash_card {
    background: #224a9c;
}

.c-cardIII:hover h4 {
    color: #fff
}

.c-cardIII:hover span {
    color: #fff;
}

.modal.multi-modal.show {
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-backdrop.show {
    opacity: 0.4 !important;
    z-index: 1040 !important;
}

#casesModal {
    z-index: 1050;
}

.assign_qadi {
    z-index: 1060 !important;
    background-color: rgba(0, 0, 0, 0.21) !important;
    backdrop-filter: blur(9px) !important;
}

#Documents, #sessionsRedistributionModal {
    z-index: 1060;
    background-color: rgba(27, 44, 80, 0.6);
}

.modal-backdrop {
    background: rgba(27, 44, 80, 0.6);
    box-shadow: 0px 17px 69px 0px rgba(67, 84, 121, 0.15);
}

.modal_top {
    margin-bottom: 37.56px;
    padding-inline-start: 46px;
    padding-inline-end: 17px;
}

.modal-body {
    padding: 0;
}

.bg-ofblue_scrolled {
    overflow-y: auto;
}

    .bg-ofblue_scrolled::-webkit-scrollbar {
        display: none;
    }

.detailed_cell .detailed_cell_text {
    font-size: var(--font-size-heading-5);
    display: inline-block;
    line-height: 33px;
    color: #0b3443;
    white-space: normal;
    width: 100%;
    font-weight: 350;
    padding-inline: 16px;
    /* padding-inline-start: 16px; */
    text-align: start;
}

    .detailed_cell .detailed_cell_text span {
        display: block;
        max-width: 550px;
    }

.document_table div p label {
    font-size: 13px;
    color: #7e929d;
    line-height: 16px;
    font-weight: 300;
}
/* .c-table__indicator--up {
  background: rgba(103, 154, 74, 0.034) !important;
}
.c-table__indicator--up img {
  margin-inline-end: 6.08px;
}
.c-table__indicator--down img {
  margin-inline-end: 6.08px;
}
.c-table__indicator--down {
  background-color: rgba(142, 44, 44, 0.0352941176) !important;
} */
.gray_light_sm_text {
    font-size: var(--font-size-text-sm);
    line-height: 19px;
    color: #577c8d;
    font-weight: 300;
}

.gray_light_text {
    font-size: var(--font-size-text-17);
    line-height: 21px;
    color: #4e707d;
    font-weight: 300;
    white-space: nowrap;
}

.indicator_titles .gray_light_text {
    margin-bottom: 8.5px;
}

.indicator_details h5 {
    font-size: var(--font-size-heading-5);
    line-height: 26px;
    font-weight: 400;
}

.indicator_titles h5 {
    font-weight: 550;
    font-size: var(--font-size-heading-5);
    line-height: 26px;
    white-space: nowrap;
    color: var(--main-dark-color);
}

    .indicator_titles h5 img {
        width: 28px;
        height: 28px;
        margin-inline-end: 8px;
    }

.grayed_indicator .indicator_titles h5,
.grayed_indicator .group_title_blue {
    color: #4e707c !important;
}

.grayed_indicator .group_header {
    margin-bottom: 16.25px;
}

.indicator_details.active h5 {
    margin-bottom: 5px;
}

.modal_positive .indicator_details .indicator_num {
    color: #3b6026;
}

.modal_negative .indicator_details .indicator_num {
    color: #641717;
}

.indicator_num {
    font-size: 33px;
    line-height: 41px;
    font-weight: 450;
}

.modal_positive .indicator {
    background-color: rgba(233, 244, 224, 0.61);
    border: 1px solid rgba(188, 206, 176, 0.61);
}

.modal_negative .indicator {
    background: #faf6f6;
    border: 1px solid #e4cbca;
}

.modal_positive .indicator_details h5 {
    color: #3a6026;
}

.modal_negative .indicator_details h5 {
    color: #641717;
}
/* .modal_positive .indicator__boxbrsent {
  background: #e4f2d9;
}
.modal_negative .indicator__boxbrsent {
  background: #8e2c2c15;
}
.indicator__boxbrsent .indicator_num {
  color: var(--main-dark-color-B);
  margin-top: 3.5px;
}
.indicator__boxbrsent h5 {
  font-size: var(--font-size-heading-5);
  font-weight: 400;
  line-height: 26px;
  color: var(--main-dark-color-B);
  margin-bottom: 12px;
  white-space: nowrap;
} */
/* .indicator--nigative {
  background-color: rgba(142, 44, 44, 0.0352941176);
  border: 1px solid rgba(142, 44, 44, 0.1568627451);
}
.indicator--nigative .indicator__boxbrsent {
  background-color: #eedddd;
} */
.modal.centered.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal_bck_to_home {
    top: 22.34px;
    inset-inline-start: 28.43px;
}

    .modal_bck_to_home img {
        width: 24px;
    }

    .modal_bck_to_home span {
        font-size: var(--font-size-text-17);
        color: var(--main-dark-color);
        font-weight: 450;
    }
/* .grid_row .colored_cell {
  font-weight: 350;
  font-size: var(--font-size-text-01);
  color: #8b7b57;
} */
.colored_cell span:not(.span-title-colored) {
    display: block;
    color: #577C8D;
    text-align: start;
    font-weight: 300;
    font-size: var(--font-size-text-sm);
}

.colored_cell .span-title-colored {
    color: #8B7B57;
    display: block;
    font-size: var(--font-size-text-01);
    line-height: 24px;
    font-weight: 350;
    margin-bottom: 7px;
    marg
}

.grid_row .blue_th,
.grid_row .black_th {
    font-weight: 500;
    line-height: 21px;
}

.grid_row .blue_th {
    color: #22499c;
}

.grid_row .black_th {
    color: #261905;
}

.lg_modal .modal-content, .pdf_modal_content {
    max-width: 1601.89px;
    margin-inline: auto;
}

.pdf_modal_content {
    position: relative;
}

.sessions_table .body_row div:nth-child(3),
.sessions_table .body_row div:nth-child(4),
.sessions_table .body_row div:nth-child(5),
.sessions_table .body_row div:nth-child(6)
.blue_th div, .black_th div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid_row .blue_th span,
.grid_row .black_th span {
    font-weight: 300;
    font-size: var(--font-size-text-sm);
}

.c-text-blue,
.c-text-black {
    font-weight: 450;
    font-size: var(--font-size-text-largest) !important;
}

.c-text-blue {
    color: #22499c !important;
}

.c-text-black {
    color: #261905 !important;
}

.table-bg-blue {
    background-color: rgba(235, 240, 246, 0.99);
    padding: 12.57px 38px 27.2px 38px;
    border-radius: 45px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .table-bg-blue::-webkit-scrollbar {
        display: none;
    }

.documents_modal .table-bg-blue:first-child {
    margin-top: 44.68px;
}

.documents_modal .table-bg-blue:last-child {
    margin-top: 21.56px;
}

.inner_bg_blue {
    padding-top: 27px;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-item {
    padding: 23.5px 37.43px 23.5px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--font-size-text-17);
    color: #0c3443;
}

    .dropdown-item svg {
        margin-inline-end: 22.68px;
    }

.dropdown-menu li .dropdown-item {
    border-top: 1px solid #eaf0f2;
}

.favourite_notification {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #ebf0f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile_area:has(.dropdown-menu.show) {
    border-radius: 43px 43px 0 0;
    background: var(--white-color);
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #22499d;
}

    .dropdown-item.active .favourite_notification, .dropdown-item:active .favourite_notification {
        color: var(--alt-text-color);
    }

    .dropdown-item:active .favourite_notification {
        background-color: var(--white-color);
    }

.c-dropdown:has(.dropdown-menu.show) .c-dropdown__title {
    background-color: #ebf0f6;
}

.c-dropdown .judge_name {
    font-size: var(--font-size-heading-5);
    font-weight: 450;
    line-height: 26px;
    color: #09183d;
    margin-bottom: 7px;
    margin-inline-end: 39.17px;
}

.judge_name .c-text-light {
    color: #4e717e;
    font-weight: 300;
}

.c-dropdown .c-dropdown__img {
    border-radius: 50%;
    border: 3px solid var(--white-color);
    width: 56px;
    height: 56px;
}

.c-dropdown .dropdown-menu {
    width: 100%;
    border: 0;
    overflow: hidden;
    border-radius: 43px;
    transform: translate3d(0, 0, 0px) !important;
    /* padding-top: 85.78px; */
    padding-top: 90.78px;
    z-index: -1;
    padding-bottom: 0;
    overflow: hidden;
    border: 0;
    box-shadow: 0px 33px 69px 0px #6c5b3e36;
}

.c-dropdown {
    background: rgba(255, 255, 255, 0.28);
    border-radius: 43px;
    position: relative;
    padding: 11.36px 16px 11.64px 33.24px;
}

    .c-dropdown:has(.dropdown-menu.show) .dropdown-toggle::after {
        top: 25px;
        transform: rotate(180deg);
    }

    .c-dropdown:has(.dropdown-menu.show) {
        border-radius: 43px 43px 0 0;
        background: var(--white-color);
        position: relative;
        border-bottom: 1px solid #eaf0f2;
        z-index: 99;
    }

    .c-dropdown .dropdown-toggle::after {
        background-image: url("../images/Arrow-Down.svg");
        border: unset;
        display: inline-block;
        margin-right: 0.255em;
        vertical-align: 0.255em;
        content: "";
        width: 20px;
        height: 20px;
        background-repeat: no-repeat;
        position: absolute;
        left: 20px;
        top: 39px;
    }

    .c-dropdown .btn:focus {
        box-shadow: none;
    }

.c-dropdown__title {
    background-color: var(--white-color);
    border-radius: 15px;
    font-size: 14px;
    line-height: 18px;
    padding: 5.71px 11px 5.29px 16px;
    color: #4d717e;
    width: fit-content;
    display: block;
}

.c-dropdown .c-dropdown__img {
    margin-inline-end: 17.5px;
}

.favourite_check {
    margin-inline-end: 13.29px;
}

.head-line span {
    display: inline-block;
    background-color: #fff;
    position: relative;
    z-index: 101;
    font-size: var(--font-size-text-24);
    line-height: 30px;
    font-weight: 400;
}

    .head-line span.grayed_bg {
        background-color: #ebf0f6;
    }

.head-line .head-title--section {
    background-color: transparent;
}

.head-line .head-title--section-bga {
    background-color: #efeeeb;
}

.head-line .head-title--section-bgb {
    background-color: #ebf0f6;
}

.head-title--blue {
    color: var(--main-dark-color-B);
}

.tab-content--edit .tab-pane {
    position: relative;
}

.nav-pills--edit .nav-link svg path {
    fill: rgba(11, 52, 67, 0.33);
}

.nav-pills--edit .nav-link.active {
    color: #1c3065;
    background-color: transparent;
    position: relative;
    font-weight: 450;
}

.nav-pills--edit .nav-link:focus-visible {
    box-shadow: none;
}

.nav-pills--edit .nav-link.active svg path {
    fill: #9a7a44;
}

.logocontainer h5 {
    font-size: var(--main-dark-color-B);
    font-size: 17px;
    font-weight: 450;
    margin-top: 8px;
}

.header__layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60.09px;
}

.notificatio-profile {
    display: flex;
    justify-content: end;
    gap: 47px;
}

@media (min-width: 0) and (max-width: 767px) {
    .notificatio-profile {
        justify-content: space-between;
    }
}

.notificatio-profile .profile {
    border-radius: 50%;
    padding: 2px;
    background-color: #fff;
}

    .notificatio-profile .profile image {
        width: 3.125rem;
    }

.notificatio-profile .notifiction button {
    border: none;
    position: relative;
    background: transparent;
}

.noti-count {
    background-color: #cb3131;
    border-radius: 50%;
    color: var(--white-color);
    width: 26px;
    height: 26px;
    position: absolute;
    bottom: -13px;
    right: -19px;
}

.c-dropdown .noti-count {
    display: flex;
    align-items: center;
    justify-content: center;
    right: -2px;
    bottom: -2px;
}

.notificatio-profile .logout,
.notificatio-profile .switch_btn {
    margin-top: 5.2px;
}

    .notificatio-profile .logout span {
        font-size: 15px;
        line-height: 19px;
        color: var(--main-dark-color-B);
    }

    .notificatio-profile .logout img {
        margin-inline-start: 15.15px;
    }

.header_heading {
    font-size: 24px;
    color: var(--main-dark-color-B);
    font-weight: 450;
}

.login_btn {
    padding: 17px 22px 19px 36px;
    border-radius: 50px;
    font-weight: 350;
    margin-inline: 46px;
    font-size: 20px;
    line-height: 25px;
}

    .login_btn img {
        margin-inline-end: 23px;
    }

.search_group {
    position: relative;
}

    .search_group .form-control {
        background-color: rgba(255, 255, 255, 0.85);
        height: 64px;
        width: 100%;
        border-radius: 0;
        color: var(--main-dark-color-B);
        padding-inline-start: 93px;
        border: 5px solid #d1dbde;
        border-radius: var(--border-raduis-large);
    }

        .search_group .form-control:focus {
            box-shadow: none;
        }

        .search_group .form-control::placeholder {
            color: #b8c3c7;
        }

.search_icon {
    position: absolute;
    inset-inline-start: 30px;
    top: 50%;
    z-index: 9;
    transform: translateY(-50%);
}

.social_links {
    margin-bottom: 20px;
}

    .social_links a {
        margin-inline-end: 23px;
    }

.menu_footer p span {
    padding-inline-start: 16px;
}

.session_status {
    box-shadow: 0px 7px 9px 0px rgba(108, 91, 62, 0.05);
    background: rgba(255, 255, 255, 1);
    border-radius: 38px;
    margin-bottom: 20.28px;
    padding-inline-start: 10px;
    padding-inline-end: 11px;
    padding-bottom: 12px;
    padding-top: 11.22px;
}

.light_gray_text {
    display: block;
    color: var(--text-color);
    font-size: 15px;
    margin-bottom: 3.22px;
    font-weight: 300;
}

.status {
    color: var(--main-dark-color-B);
    font-size: 21px;
    height: 57px;
    width: 121.55px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10.16px;
}

.session_status.positive .status {
    background-color: rgba(103, 154, 74, 0.034);
}

.session_status.negative .status {
    background: rgba(142, 44, 44, 0.034);
}

.session_items h5 {
    color: var(--main-dark-color-B);
    font-size: 17px;
    font-weight: 400;
}

.session_items .modal-body::-webkit-scrollbar {
    display: none;
}

.session_status .main_btn,
.session_date_details .main_btn {
    width: 100%;
    padding-bottom: 18px;
    padding-top: 10px;
    border-radius: 31px;
    font-size: 23px;
    font-weight: 350;
}

.session_details {
    margin-top: 7.5px;
    padding-inline-start: 8.77px;
    padding-inline-end: 28.89px;
}

.session_status .main_btn {
    line-height: 29px;
    margin-top: 19.22px;
}

    .session_status .main_btn img {
        margin-inline-end: 15.05px;
    }

    .session_status .main_btn img {
        margin-top: 3px;
    }

.session_view .nav-tabs .nav-item {
    flex: 1;
}

.session_view .head-line span {
    font-size: 31px;
    color: #1c3064;
    line-height: 39px;
    font-weight: 500;
}

.session_view .search_group .form-control {
    border: unset;
}

.session_view .nav-link {
    width: 100%;
    border-radius: 33px;
    padding-top: 18.34px;
    padding-bottom: 11.69px;
}

    .session_view .nav-link svg {
        margin-bottom: 13.73px;
    }

    .session_view .nav-link .label {
        font-size: var(--font-size-text-01);
        line-height: 24px;
        font-weight: 450;
        margin-bottom: 11px;
    }

    .session_view .nav-link .label_total {
        font-size: 13px;
        font-weight: 300;
        margin-bottom: 2px;
        line-height: 16px;
    }

    .session_view .nav-link .number {
        font-size: var(--font-size-text-largest);
        line-height: 34px;
        font-weight: 350;
    }

    .session_view .nav-link.gray_case {
        background: #ebf0f6;
        color: #1b3065;
    }

    .session_view .nav-link.beige_case {
        background: #26190517;
        color: #261905;
    }

    .session_view .nav-link.active {
        color: var(--white-color);
        position: relative;
    }

    .session_view .nav-link svg path {
        opacity: 0.55;
    }

    .session_view .nav-link.active svg path {
        opacity: 1;
    }

    .session_view .nav-link.beige_case.active svg path {
        fill: var(--white-color);
    }

    .session_view .nav-link.gray_case.active {
        background: #22499c;
    }

    .session_view .nav-link.beige_case.active {
        background: var(--alt-color);
    }

.modal:not(.session_main_modal) .modal-body {
    padding: 0 35px 0 31px;
}

.modal_title_icon {
    margin-inline-end: 18px;
}

.modal_title {
    font-size: var(--font-size-text-25);
    color: #1c3065;
    font-weight: 400;
    line-height: 31px;
    margin-bottom: 8.73px;
}

    .modal_title.bold_title {
        font-weight: 450;
    }

.sm_text {
    font-size: 13px;
    color: #4f717e;
    margin-inline-end: 25px;
}

.session_view .nav-link.more_content svg,
.session_view .nav-link.first svg {
    margin-bottom: 6.73px;
}

.session_view .no_cases_found .table-bg-blue {
    height: 481px;
}

.no_cases_found p {
    font-size: 49px;
    line-height: 61px;
    padding-top: 92px;
    padding-bottom: 229.43px;
}

.opacity_notfound_text {
    text-align: center;
    color: #577c8d;
    opacity: 39%;
}

.no_found p {
    font-size: 33px;
    padding-top: 30px;
    padding-bottom: 73px;
}

.session_items h4 {
    font-size: 19px;
    color: var(--main-dark-color-B);
    font-weight: 400;
}

.session_indicator {
    padding-inline-start: 8.77px;
    text-align: start;
}
/*================================================== PDF Modal ==============================================*/
.pdf-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-block: 100px;
    height: 100%;
    background: rgba(8, 11, 20, 0.83);
    z-index: 100000;
    overflow: auto;
    display: none;
}

    .pdf-modal.active {
        display: block;
    }

.pdf-viewport {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
}

.textLayer {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
}

    .textLayer span {
        color: transparent !important;
        transform-origin: 0 0;
    }

.control-bar {
    position: fixed;
    bottom: 63px;
    left: 0;
    right: 0;
    margin-inline: auto;
    background: rgba(8, 11, 20, 0.87);
    color: var(--white-color);
    width: fit-content;
    padding: 8.7px 18.6px 13px 0;
    border-radius: 21px;
    z-index: 1000;
    transition: transform 0.3s;
}

.restore-controls button {
    background: rgba(8, 11, 20, 0.87);
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 31px;
    font-size: 15px;
    cursor: pointer;
}

.control-bar button {
    background: transparent;
    border: none;
    padding-inline: 24px;
    padding-block: 5px;
    min-height: 46px;
}

.zooms_btn button:first-child {
    padding-inline-end: 14px;
}

.zooms_btn button:last-child {
    padding-inline-start: 14px;
}

.control-bar .bordered_end {
    border-inline-end: 1px solid rgba(255, 255, 255, 0.15);
}

.tooltip-wrapper {
    position: relative;
}

.tooltip-text {
    display: none;
}

.zooms_btn {
    display: flex;
}

.control-bar h5 {
    font-size: var(--font-size-heading-5);
    line-height: 26px;
    font-weight: 300;
    margin-bottom: 3.71px;
}

.control-bar span:not(.tooltip-text) {
    opacity: 51%;
    font-size: 13px;
    font-weight: 300;
    margin-inline-end: 19px;
}

.pdf_info {
    gap: 18.66px;
    padding-inline-end: 12px;
}

.nav-buttons {
    position: fixed;
    top: 50%;
    inset-inline: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10%;
    box-sizing: border-box;
}

.nav-btn {
    width: 50.1px;
    height: 50.1px;
    border-radius: 18px;
    transform: rotate(45deg);
    border: none;
    z-index: 99;
    background-color: var(--white-color);
}

.page-indicator label {
    font-size: var(--font-size-text-17);
    line-height: 21px;
    font-weight: 150;
}

.nav-btn img {
    width: 24px;
}

#nextBtn img {
    transform: rotate(134deg);
}

#prevBtn img {
    transform: rotate(315deg);
}

.nav-buttons button:disabled {
    opacity: 33%;
}

.pdf-viewport canvas {
    box-shadow: 0px 3px 55px 0px #050814;
    zoom: 1.4;
}
/* judge services search Page */
.colored_tabs .nav-tabs .nav-link {
    background-color: transparent;
    color: rgba(87, 124, 141, 0.67);
    font-size: var(--font-size-text-25);
    line-height: 31px;
    padding: 10px 22px 17px 22px;
    border: none;
}

    .colored_tabs .nav-tabs .nav-link.active {
        color: var(--alt-dark-color);
        position: relative;
    }

        .colored_tabs .nav-tabs .nav-link.active::after {
            content: "";
            position: absolute;
            background: var(--alt-dark-color);
            height: 4.5px;
            width: 100%;
            bottom: 0;
            inset-inline-start: 0;
            border-radius: 32px 32px 0 0;
        }

.flatpickr-wrapper {
    width: 100%;
}

.bordered_opacity {
    border-radius: 43px;
    background: rgba(255, 255, 255, 0.33);
    padding: 24.63px 20.93px 26.37px 22.34px;
}

    .bordered_opacity .search_group .form-control {
        padding-inline-start: 70.73px;
        height: 100%;
        font-size: var(--font-size-heading-5);
        color: #0c3443;
    }

    .bordered_opacity .flatpickr-input {
        position: relative;
    }

.input-label {
    position: absolute;
    inset-inline-start: 72.5px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: var(--font-size-heading-5);
    font-weight: 350;
    color: rgba(12, 52, 67, 0.33);
    font-size: 25px;
}

.bordered_opacity .search_group.date_group .input-label {
    color: #0c3443;
}

.targeted_input_moving:focus-within .input-label,
.targeted_input_moving:focus-within .input-label,
.targeted_input_moving .form-control:not(:placeholder-shown) + .input-label,
.custom-select.has-value .input-label {
    top: 18px;
    line-height: 19px;
    color: #577c8d !important;
    font-weight: 300;
    font-size: var(--font-size-text-sm);
}

.targeted_input_moving .form-control:not(:placeholder-shown),
.targeted_input_moving:focus-within .form-control,
.targeted_input_moving:focus-within .form-control {
    padding-top: 34px;
}

.star-container {
    cursor: pointer;
}

.form-control.flatpickr-input {
    cursor: pointer;
    min-height: 65.42px;
    max-height: 65.42px;
}

.custom-switch .form-check-input {
    width: 148px;
    height: 41px;
    margin-left: 0;
}

.custom-switch .form-check-label {
    position: absolute;
    inset-inline-start: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #a0b6be;
    font-weight: 350;
    pointer-events: none;
    text-align: center;
}

.form-switch .form-check-input:checked + .form-check-label {
    color: #73905b;
    inset-inline-end: -6px;
}

.form-switch .form-check-input:focus {
    box-shadow: none;
}

.form-switch .form-check-input:checked {
    background-color: #e9f4e1;
    border-color: #73905b;
}

.form-switch .form-check-input:not(:checked) {
    background-color: #eaf0f2;
    border-color: #aabec5;
}

.form-switch {
    padding-left: 0;
}

    .form-switch .form-check-input {
        background-image: none;
        position: relative;
        cursor: pointer;
    }

        .form-switch .form-check-input:after {
            content: "";
            position: absolute;
            top: 4px;
            left: 3px;
            width: 33px;
            height: 33px;
            background-color: #a0b6be;
            border-radius: 28px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .form-switch .form-check-input:checked:after {
            transform: translateX(calc(148px - 41px));
            background-color: #73905b;
        }

.bordered_opacity .checkboxes_container h4 {
    font-size: var(--font-size-heading-5);
    line-height: 26px;
    color: #0c3443;
    font-weight: 350;
    padding-inline-end: 30px;
}

.search_found {
    padding-top: 3px;
    display: none;
}

    .search_found
    .search_result_num {
        font-size: var(--font-size-text-01);
        color: #123948;
        line-height: 24px;
        text-align: center;
        position: relative;
        overflow: hidden;
        margin-bottom: 12px;
    }

    .search_found .body_row {
        cursor: pointer;
    }

.search_result_num::before {
    width: calc(50% - 110px);
    inset-inline-start: 0;
}

.search_result_num::before,
.search_result_num::after {
    position: absolute;
    content: " ";
    top: 18px;
    background: #e2e8ef;
    height: 1px;
}

.search_result_num::after {
    width: calc(50% - 82px);
    inset-inline-start: calc(50% + 110px);
}

.search_result_num span {
    color: #8b7b57;
    padding-inline-start: 9px;
    font-weight: 450;
}

.grid_row .judge_description > span {
    color: #0b3443;
    line-height: 31px;
    display: inline-block;
    white-space: normal;
    font-size: var(--font-size-text-17);
}

.highlighted_search {
    display: inline-block;
    background-color: #ffeb00;
    border-radius: 7px;
    height: 32px;
    line-height: 24px;
    padding-inline-end: 6px;
}

.search_lottie {
    display: none;
    margin-inline: auto;
    width: 172px;
    height: 172px;
}

.star-svg,
.favourite_check svg {
    transition: fill 0.3s;
}

    .star-svg:not(.active),
    .favourite_check:not(.checked) svg {
        opacity: 41%;
    }

        .star-svg:not(.active) path,
        .favourite_check:not(.checked) svg path {
            fill: #85a1af;
        }

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.big-star-svg {
    fill: #c4a032;
    animation: pop 0.3s ease-out;
}

@keyframes pop {
    0% {
        transform: scale(0);
    }

    90% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.open_file_btn {
    font-weight: 350;
}

    .open_file_btn svg {
        margin-inline-end: 12px;
    }

.agreement-section {
    max-width: 1191px;
    padding-top: 30px;
    margin: 0 auto;
    font-size: var(--font-size-text-17);
    color: #0b3443;
}

.agreement-title {
    margin-bottom: 32px;
}

.agreement-text p {
    margin-bottom: 20px;
}
/* Settings Page */
.page_name {
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 19.91px;
    color: #1c3063;
}

.breadcrumb {
    color: #9a7a44;
    font-size: 17px;
    line-height: 21px;
    gap: 12px;
}

.white_bordered_card {
    background-color: var(--white-color);
    border-radius: 63px;
    padding: 31px 30.63px 16.96px 33px;
}

.settings .white_bordered_card {
    gap: 22.19px;
    margin-top: 22px;
}

.settings_sidebar .nav-link {
    width: 100%;
    padding: 24px 32px 25.1px 32px;
    min-width: 281.81px;
    font-size: var(--font-size-heading-5);
    line-height: 26px;
    background-color: #ebf0f6 !important;
    color: #1c3063 !important;
    border-radius: 38px;
}

    .settings_sidebar .nav-link img {
        margin-inline-end: 11.84px;
        width: 21.58px;
    }

.bg_blue_opacity {
    background-color: #ebf0f6;
    border-radius: 45px;
    padding: 33.79px 43.77px 23.93px 31.81px;
}

.form_heading {
    margin-bottom: 21.8px;
}

    .form_heading img {
        margin-inline-end: 26.58px;
    }

    .form_heading h5 {
        font-size: var(--font-size-heading-5);
        line-height: 26px;
        color: #9a7a44;
        margin-bottom: 9px;
        font-weight: 350;
    }

    .form_heading p {
        color: #4e717e;
        font-size: 18px;
        font-weight: 300;
        line-height: 23px;
    }

.edit_password_fields .input_group .form-control {
    margin-bottom: 3px;
}

.edit_password_fields .input_group.first_child .form-control {
    margin-bottom: 23.58px;
}

.password-strength {
    color: #4e717e;
}

    .password-strength::before {
        position: absolute;
        content: " ";
        background-color: #d5e1e8;
        width: 1px;
        height: 222.48px;
        inset-inline-start: 0;
        top: 11px;
    }

    .password-strength h6 {
        font-size: var(--font-size-text-17);
        line-height: 21px;
        color: #4e717e;
        margin-bottom: 19.71px;
    }

.card-title {
    color: #0d6efd;
    font-weight: bold;
}

.password-strength ul li {
    margin-bottom: 17.15px;
    white-space: nowrap;
    font-size: var(--font-size-text-sm);
    line-height: 19px;
}

    .password-strength ul li:before {
        content: url("../images/password-check.svg");
        margin-left: 5px;
        width: 21.42px;
        height: 21.42px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        background: rgba(121, 149, 105, 1);
        opacity: 0.4;
        color: var(--white-color);
        justify-content: center;
    }

    .password-strength ul li.valid::before {
        opacity: 1;
    }

.strength-text {
    font-size: 13px;
    color: #4e717e;
    font-weight: 250;
    line-height: 16px;
    white-space: nowrap;
}

.alert_lottify {
    width: 101px;
    height: 81px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 39px;
}

.success_lottify {
    margin-inline: auto;
}

.reset_success h2 {
    font-size: 43px;
    line-height: 54px;
    font-weight: 450;
    margin-bottom: 20px;
    color: #b39d74;
}

.reset_success p {
    color: #577c8d;
    font-size: 18px;
    font-weight: 250;
    line-height: 23px;
}

#verificationViaHIP .sending_request.hide {
    display: none;
}
/* Progress bar segments */
.progress_area {
    margin-bottom: 11.35px;
    padding-inline-start: 32px;
    padding-inline-end: 40px;
}

.progress-container {
    display: flex;
    gap: 2px;
    height: 7px;
    padding-inline-end: 7.93px;
    width: 100%;
}

.progress-segment {
    flex: 1;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.progress-container .progress-segment:first-child {
    border-radius: 0 4px 4px 0;
}

.progress-container .progress-segment:last-child {
    border-radius: 4px 0 0 4px;
}

.progress-segment.active-weak {
    background-color: #cc9494;
}

.progress-segment.active-medium {
    background-color: #d5ba96;
}

.progress-segment.strong-medium {
    background-color: #ced18a;
}

.progress-segment.active-strong {
    background-color: #799569;
}

.alert-success {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #bacb99;
    background-color: #d6e0d0e8;
    z-index: -1;
}

    .alert-success.show {
        z-index: 1000000;
    }

    .alert-success span {
        color: #5b7749;
        font-size: 22px;
        line-height: 28px;
        font-weight: 450;
        margin-inline-start: 33px;
    }

.copy_btn {
    display: none;
    border-radius: 31px;
    padding: 9.79px 16.96px 11.78px 17.57px;
    top: 50%;
    inset-inline-end: 67.07px;
    transform: translateY(-50%);
}

    .copy_btn label {
        cursor: pointer;
    }

.trans_main_btn {
    border: 1px solid #1c3063;
    font-size: 16px;
    line-height: 20px;
    color: #1c3063;
    background: transparent;
}

    .trans_main_btn svg {
        margin-inline-end: 11.39px;
    }

.copy_btn svg {
    margin-inline-start: 10.9px;
}

.main_alt_btn {
    padding: 13.23px 20.71px 17.05px 21.24px;
    border-radius: 38px !important;
}

.submit_area.disabled {
    opacity: 50%;
}

.submit_area .main_btn {
    padding: 24.76px 63.39px 21.31px 63px;
    border-radius: 38px;
}

.submit_area p {
    font-size: 13px;
    color: #4e717e;
    line-height: 16px;
    font-weight: 250;
    margin-inline-start: 12.3px;
    margin-inline-end: 26.26px;
}

.grid_row.table_large_header {
    padding-bottom: 18.03px;
}

.body_row {
    background-color: var(--white-color);
    box-shadow: 0px 7px 9px rgba(108, 91, 62, 0.05);
    border-radius: 38px;
    font-size: var(--font-size-heading-5);
    color: #1b3065;
    font-weight: 400;
}

    .body_row:not(:last-child) {
        margin-bottom: 13.03px;
    }

.numbered_table .grid_row:not(.table_large_header) > div:first-child,
.numbered_table .grid_row:not(.table_large_header) > div:nth-child(2) {
    font-size: var(--font-size-heading-5);
}

.body_row > *:not(.detailed_cell) {
    display: inline-flex;
}

.numbered_table .body_row > * {
    justify-content: center;
}

.table_large_header > div {
    display: inline-flex;
    flex-direction: column;
    position: relative;
}

    .table_large_header > div:nth-child(n+1):not(:last-child)::after {
        content: " ";
        position: absolute;
        background-color: #e2e8ef;
        width: 1px;
        height: 70%;
        bottom: 0;
        inset-inline-end: 0;
    }

    .table_large_header > div:not(:first-child) {
        align-items: center;
    }

.grid_row.table_large_header h2 {
    max-width: 153px;
    color: #1c3064;
    font-size: 31px;
    padding: 0;
    line-height: 39px;
    text-align: start;
    font-weight: 400;
    margin-bottom: 15.66px;
}

.grid_row.table_large_header h3 {
    font-size: var(--font-size-text-largest);
    color: #1c3063;
    line-height: 34px;
    margin-top: 14.61px;
    margin-bottom: 17px;
}

.grid_row.table_large_header > div:last-child .table_judge_name {
    color: #4F717D;
    font-weight: 300;
}

.grid_row.table_large_header .table_sm_text {
    margin-bottom: 9px;
    font-size: 13px;
    color: #4f717e;
    padding: 0;
    text-align: start;
    line-height: 16px;
}

.after_bordered_div {
    width: 100%;
    position: relative;
}

    .after_bordered_div::after {
        content: " ";
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: #e2e8ef;
        width: 100%;
        height: 1px;
    }

.shadowed_table {
    position: relative;
    width: 100%;
}
    /* .shadowed_table::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(66.9px + ((100% - 66.9px) * 2 / 6));
  width: calc((100% - 66.9px) / 6);
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(219, 207, 184, 0) 0%,
    rgba(219, 207, 184, 0.11) 42.5%
  );
  pointer-events: none;
} */
    .shadowed_table::after {
        content: "";
        position: absolute;
        top: 0;
        right: calc(66.9px + ((100% - 66.9px) * 1 / 6));
        width: calc((100% - 66.9px) / 6);
        height: 100%;
        background: linear-gradient( 180deg, rgba(219, 207, 184, 0) 0%, rgba(219, 207, 184, 0.11) 42.5% );
        pointer-events: none;
    }

/* .grayed_span {
  padding: 8px 29px 8px 27px;
  background-color: #ebf0f6;
  border-radius: 29px;
  color: #1b3065;
  display: flex;
  align-items: center;
}
.grayed_span.sm_span {
  padding: 8px 17px 8px 16px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.table_large_header .grayed_span {
  background-color: var(--white-color);
  padding: 12px 23px 11px 23px;
  margin-top: 7px;
}
.grayed_span div{
  display: none;
}
.grayed_span span {
  color: #1b306579;
} */
.judge_img {
    width: 40.03px;
    height: 40.03px;
    border-radius: 50%;
    margin-bottom: 11px;
}

.table_large_header .judge_position {
    color: #b39d74;
    font-size: 27px;
    line-height: 34px;
    font-weight: 350;
    margin-bottom: 14.97px;
}

.table_judge_name {
    font-size: var(--font-size-text-17);
    color: #415258;
    font-weight: 450;
    margin-top: 9.03px;
    margin-bottom: 12.3px;
}

.number_spans {
    display: flex;
    align-items: center;
    gap: 3px;
}

    .number_spans > span {
        background-color: var(--white-color);
        font-size: var(--font-size-text-largest);
        line-height: 34px;
        padding: 12px 16.43px 14px 17px;
        display: block;
        display: flex;
        align-items: center;
        position: relative;
    }

.table_large_header .number_spans > span:hover {
    border: 1px solid var(--white-color);
    background: #F4F7F8;
}

.number_spans > span svg {
    margin-inline-end: 9px;
}

.number_spans > span:first-child {
    border-radius: 0 30px 30px 0;
    color: var(--main-dark-color-B);
}

.number_spans > span:last-child {
    border-radius: 30px 0 0 30px;
    color: #407B1F;
}

.president_active_spans > span {
    background-color: #DBCFB7;
}

.hover_span {
    display: block;
    position: absolute;
    background-color: var(--white-color);
    font-size: 13px;
    border-radius: 30px;
    white-space: nowrap;
    padding: 12px 18px;
    line-height: 16px;
    z-index: 1;
    top: -45px;
    inset-inline-start: -13px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    visibility: hidden;
    transition: none;
}
/* .span_shadow{
  background-color: rgba(255, 255, 255, 0.4);
  display: block;
  backdrop-filter: blur(11px);
  --webkit-backdrop-filter: blur(11px);
  width: 50%;
  height: 100%;
  border-radius: 50%;
  inset-inline-start: 0;
  top: 0;
  position: absolute;
} */
.card-circle-subtitle {
    font-weight: 300;
}

.body_row .number_spans > span {
    /* padding: 8px 24px; */
    background-color: #EBF0F6;
}

.incoming_issues .hover_span {
    color: #577C8D;
}

.external_issues .hover_span {
    color: #679A4A;
}

.incoming_issues:hover .incoming_issues_span, .external_issues:hover .external_issues_span {
    animation: fadeInUp 0.4s ease forwards;
    pointer-events: auto;
    visibility: visible;
}

.incoming_issues:not(:hover) .incoming_issues_span, .external_issues:not(:hover) .external_issues_span {
    animation: none;
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* .number_span {
  background-color: var(--white-color);
  width: 57.36px;
  height: 57.36px;
  border-radius: 50%;
  font-size: 27px;
  line-height: 34px;
  color: #1b3065;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
} */
.number_span.active {
    background-color: #dbcfb7;
}

.current_judge {
    width: 47.72px;
    height: 47.72px;
    border-radius: 50%;
    margin-inline-end: 13.48px;
}

.current_judge_info {
    text-align: start;
}

    .current_judge_info h5 {
        font-size: var(--font-size-heading-5);
        line-height: 26px;
        margin-bottom: 3.87px;
    }

    .current_judge_info span {
        font-size: var(--font-size-text-sm);
        line-height: 19px;
        color: #577c8d;
        font-weight: 300;
        display: block;
    }

.modal-title {
    color: #1c3063;
    font-size: 44px;
    line-height: 55px;
    font-weight: 450;
    margin-bottom: 25.54px;
    text-align: center;
}

    .modal-title.dark_modal_title {
        color: #0C3443;
    }

.modal-subtitle {
    color: #4f717e;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 67.35px;
    text-align: center;
    font-weight: 300;
}

    .modal-subtitle span:not(:last-child) {
        margin-inline-end: 31px;
    }

.judge-card {
    background-color: #e2e8ef;
    border-radius: 41px;
    padding: 13.78px 22.62px 12.92px 44.46px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
    text-align: center;
}

.judge-info {
    display: flex;
    align-items: center;
}

.judge-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-left: 14.77px;
    object-fit: cover;
}

.judge-details {
    color: #415258;
    text-align: start;
    white-space: nowrap;
}

    .judge-details h3 {
        font-size: var(--font-size-heading-5);
        font-weight: 450;
        margin-bottom: 5.71px;
    }

    .judge-details span {
        font-size: 14px;
        line-height: 18px;
        display: block;
        white-space: nowrap;
    }

.sessions-info {
    margin-top: 21.45px;
}

    .sessions-info span {
        display: block;
        font-size: 13px;
        line-height: 16px;
        color: #4f717e;
        margin-bottom: 7.67px;
    }

    .sessions-info strong {
        display: flex;
        width: 45.15px;
        align-items: center;
        justify-content: center;
        height: 45.15px;
        border-radius: 50%;
        color: #1b3065;
        font-size: var(--font-size-text-largest);
        font-weight: 350;
        margin-inline: auto;
        background-color: var(--white-color);
    }

.selection-circle {
    min-width: 40px;
    height: 40px;
    border: 2px solid #cbd5e1;
    background-color: var(--white-color);
    border-radius: 50%;
    margin-inline-end: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .selection-circle span {
        display: flex;
        background-color: #22499c;
        opacity: 0;
        width: 28px;
        height: 28px;
        border-radius: 50%;
    }

.judge-card .selection-circle span {
    transition: opacity 0.3s ease, visibility 0.3s ease;
    align-items: center;
    justify-content: center;
}

.judge-card.selected .selection-circle span {
    opacity: 1;
    visibility: visible;
}

.judge-card.president-card.selected {
    border-color: #22499C;
}

.judge-card .selection-circle span svg {
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.judge-card.selected .selection-circle span svg {
    transform: translateY(0);
    transition-delay: 0.1s;
    opacity: 1;
}
/* Modal Footer */
.modal-footer {
    border-top: none;
    justify-content: center;
}

.group_header {
    display: flex;
    align-items: center;
    gap: 40.06px;
    white-space: nowrap;
}

.group_title_blue {
    color: #1c3064;
    font-size: var(--font-size-text-24);
    font-weight: 400;
}

.group_title_line {
    background: rgba(126, 146, 157, 0.17);
    height: 1px;
    width: 100%;
}

.case-header {
    display: flex;
    align-items: center;
}

.colored_header {
    color: #8b7b57;
}

.table_header {
    font-size: var(--font-size-text-01);
    font-weight: 350;
    margin-bottom: 21px;
}

    .table_header:not(.colored_header) {
        color: #5e6d8c;
    }

.case-row {
    margin-top: 5px;
    border-radius: 38px;
    cursor: pointer;
    border: 1px solid transparent;
}

    .case-row:hover {
        background-color: #f7f6f4;
    }

.case-group .case-row:not(:last-child) {
    margin-bottom: 13.53px;
}

.table_row {
    font-size: 23px;
    color: #0c3443;
    font-weight: 450;
}

.reset_checboxes .form-check .form-check-input {
    float: unset !important;
    margin-inline-start: 30.47px;
    margin-inline-end: 27.41px;
}

.reset_checboxes .form-check {
    padding: unset;
    margin: unset;
}

.case-row input {
    cursor: pointer;
}

.case-row.selected {
    background: #f7f6f4;
    border-color: #dbd6c5;
}

.select_all_label {
    font-size: var(--font-size-text-01);
    color: #8b7b57;
    font-weight: 350;
}

.distribute_btn {
    padding: 20px;
    min-width: 287px;
    border-radius: 50px;
    height: 79px;
    font-size: 31px;
    line-height: 39px;
    font-weight: 350;
    margin-top: 25px;
}

    .distribute_btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.unallocated_provisions_num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #cb3131;
    font-size: 15px;
    line-height: 19px;
    font-weight: 300;
    color: var(--white-color);
}

.table {
    display: block;
}

.grid_row {
    display: grid;
    position: relative;
}

.search_result .grid_row {
    align-items: center;
}

.numbered_table .grid_row {
    text-align: center;
}

.search_result .main_table_group .body_row {
    margin-top: 18.42px;
    background-color: rgba(255, 255, 255, 0.67);
}

.search_found .main_table_group .table_header > div:not(:nth-last-child(2)),
.align_top_table.main_table_group .table_header > div:not(:nth-last-child(2)) {
    text-align: center;
}

.fixed_wrapper .container-fluid {
    margin-inline: auto;
}

.highlighted_search.weak {
    background-color: #F8EECF;
}

.indicator_info .indicator_details {
    min-height: 108px;
}

.inner_indicator_info {
    position: relative;
    gap: 37px;
}

.united_date {
    width: 100%;
    position: absolute;
    top: 31px;
}

.custom-select {
    position: relative;
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 310px;
    overflow-y: auto;
    background: white;
    padding: 0;
    margin: 0;
    display: none;
    z-index: 1000;
    border-radius: 0 0 33px 33px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .select-options::-webkit-scrollbar {
        display: none;
    }

    .select-options li {
        padding: 12px 73px;
        cursor: pointer;
        font-size: var(--font-size-heading-5);
        color: #0C3443;
        line-height: 26px;
        font-weight: 350;
    }

        .select-options li:hover {
            background: #f5f5f5;
        }

.custom-select.active .select-options {
    display: block;
}

.card-box {
    border-radius: 45px;
    text-align: center;
}

.green-card {
    background-color: rgba(121, 149, 105, 0.13);
    color: #4C5F40;
}

.blue-card {
    background-color: rgba(87, 124, 140, 0.13);
    color: #3B525C;
}

.brown-card {
    background-color: rgba(173, 163, 154, 0.13);
    color: #968777;
}

.gold-card {
    background-color: rgba(179, 157, 116, 0.13);
    color: #6E634F;
}

.circle-number {
    width: 177px;
    height: 178px;
    color: var(--white-color);
    font-size: var(--font-size-text-01);
    font-weight: 250;
    margin-inline: auto;
    margin-bottom: 22px;
    border-radius: 50%;
    padding-top: 16px;
}

.green-card .circle-number {
    background-color: #799569;
}

.blue-card .circle-number {
    background-color: #577C8C;
}

.gold-card .circle-number {
    background-color: #B39D74;
}

.brown-card .circle-number {
    background-color: #968777;
}

.circle-number p {
    max-width: 52px;
    margin-inline: auto;
    line-height: 21px;
}

.circle-number span {
    font-size: 79px;
    color: var(--white-color);
    line-height: 99px;
    display: block;
    font-weight: 450;
    margin-top: -6px;
}

.card_box_title {
    font-size: var(--font-size-heading-4-01);
    line-height: 34px;
    font-weight: 450;
    margin-top: 12.18px;
}

.green-card .card_box_title {
    color: #799569;
}

.blue-card .card_box_title {
    color: #577C8C;
}

.gold-card .card_box_title {
    color: #B39D74;
}

.card_box_arrange_details span {
    font-size: var(--font-size-text-largest);
    line-height: 24px;
}

.card_box_arrange_details div {
    font-size: 64px;
    line-height: 80px;
    font-weight: 500;
    margin-top: -5px;
}

.card_box_arrange_details p {
    max-width: 115px;
    font-size: 13px;
    line-height: 19px;
    font-weight: 300;
    margin-inline: auto;
}

.green-card .card_box_arrange_details div {
    color: #799569;
}

.blue-card .card_box_arrange_details div {
    color: #577C8C;
}

.gold-card .card_box_arrange_details div {
    color: #B39D74;
}

.gold-card .circle-number p {
    max-width: 112px;
}

.circle-number p {
    font-size: var(--font-size-text-17);
}

#pills-statics .head-line::before {
    left: 20px;
    width: 87%;
}

.statistics_page .header_heading {
    font-size: 15px;
}

.statistics_page .nav-tabs {
    gap: 16px;
    margin-bottom: 39.25px;
}

.box_tabs_container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .box_tabs_container::-webkit-scrollbar {
        display: none;
    }

.box_tabs {
    display: flex;
    flex-wrap: nowrap;
    min-width: max-content;
    white-space: nowrap;
}

    .box_tabs .nav-link {
        position: relative;
        border-radius: 33px;
        background: transparent;
        width: 100%;
        padding-top: 28px;
        padding-bottom: 36.66px;
        z-index: 1;
    }

        .box_tabs .nav-link::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #F2F6F9;
            border-radius: 33px;
            z-index: -1;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .box_tabs .nav-link:hover:not(.active)::before {
            background-color: #ffffff;
            transform: scale(1.03);
        }

        .box_tabs .nav-link svg {
            opacity: 0.5;
            transition: opacity 0.3s ease;
            z-index: 1;
            position: relative;
        }

        .box_tabs .nav-link:not(.active):hover svg,
        .box_tabs .nav-link.active svg {
            opacity: 1;
        }

        .box_tabs .nav-link p {
            color: var(--main-dark-color-B);
            font-size: var(--font-size-text-01);
            line-height: 24px;
            font-weight: 450;
            margin-top: 13.35px;
            z-index: 1;
            position: relative;
        }

        .box_tabs .nav-link.active::before {
            background-color: var(--bg-main-color);
        }

        .box_tabs .nav-link.active p {
            color: var(--white-color);
        }

    .box_tabs .nav-link {
        position: relative;
    }

        .box_tabs .nav-link p {
            color: var(--main-dark-color-B);
            font-size: var(--font-size-text-01);
            line-height: 24px;
            font-weight: 450;
            margin-top: 13.35px;
        }

.civil_departments_table {
    margin-top: 17px;
}

.gold_header {
    color: #B39D74;
}

    .gold_header svg {
        margin-inline-start: 15.36px;
    }

.blue_header {
    color: #577C8C
}

.green_header {
    color: #799569;
    padding-inline-start: 61px;
}

.department_man {
    width: 47.72px;
    height: 47.72px;
    border-radius: 50%;
    margin-inline-end: 13.48px;
}

.department_position h5 {
    font-size: var(--font-size-heading-5);
    font-weight: 350;
    line-height: 26px;
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    color: #0C3443;
    transform: translateY(0);
    margin: 0;
    white-space: nowrap;
}

.department_position p {
    font-size: 15px;
    line-height: 19px;
    color: #577C8D;
    font-weight: 300;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.3s ease;
    white-space: nowrap;
}

.civil_departments_table .body_row:hover .department_position h5 {
    transform: translateY(-8px);
}

.civil_departments_table .body_row:hover .department_position p {
    transform: translateY(-6px);
    opacity: 1;
}
/* .department_position h5{
  font-size: var(--font-size-heading-5);
  font-weight: 350;
  line-height: 26px;
  transition: all 0.3s ease;
  margin-bottom: 3.87px;
  color: #0C3443;
}
.department_position p {
  font-size: 15px;
  line-height: 19px;
  color: #577C8D;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, visibility 0s linear 0.3s;
  font-weight: 300;
}

.civil_departments_table .body_row:hover .department_position p {
  visibility: visible;
  max-height: 200px;
  transition: max-height 0.3s ease, visibility 0s linear 0s;
} */
.department_table_circle_number {
    width: 73px;
    height: 73px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 33px;
    line-height: 41px;
    font-weight: 450;
    color: var(--white-color);
    margin-bottom: 6px;
    margin-top: 15px;
}

.table_order_total {
    font-weight: 450;
}

.tiny_text {
    font-size: 9px;
    line-height: 11px;
    font-weight: 350;
}

.table_gold_mini_card {
    color: #6E634F;
    background: rgba(179, 157, 116, 0.13);
}

.table_blue_mini_card {
    color: #3B525C;
    background-color: rgba(87, 124, 140, 0.13)
}

.table_green_mini_card {
    color: #4C5F40;
    background-color: rgba(121, 149, 105, 0.13);
}

.table_brown_mini_card {
    color: #726352;
    background-color: rgba(173, 163, 154, 0.13);
}

.table_gold_mini_card .department_table_circle_number {
    background: #B39D74;
}

.table_blue_mini_card .department_table_circle_number {
    background: #577C8C;
}

.table_green_mini_card .department_table_circle_number {
    background: #799569;
}

.table_brown_mini_card .department_table_circle_number {
    background-color: #968777;
}

.table_gold_mini_card .arrange_table_result {
    color: #B39D74;
}

.table_blue_mini_card .arrange_table_result {
    color: #577C8C;
}

.table_green_mini_card .arrange_table_result {
    color: #799569;
}

.statistics_page .group_header {
    gap: 18px;
}

    .statistics_page .group_header p {
        font-size: 36px;
        font-weight: 500;
        color: var(--main-dark-color-B);
        margin-top: -6px;
    }

.green_indicator_table span {
    color: var(--main-dark-color-B);
}

.civil_departments_table .body_row {
    position: relative;
    z-index: 0;
}

    .civil_departments_table .body_row::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border: 3px solid transparent;
        border-radius: inherit;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
        z-index: -1;
    }

    .civil_departments_table .body_row:hover::before {
        border-color: var(--white-color);
        z-index: 10;
        box-shadow: 0px 7px 9px rgba(0, 0, 0, 0.25);
    }

.preloader_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
    flex-direction: column;
    transition: transform 1.5s ease-in-out, opacity 1.5s ease-in-out;
}

.preloader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preloader_container.slide-up {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.preloader .preloader_logo {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards, logoFlip 1s ease-in-out;
    animation-delay: 0.2s, 0.2s;
}

@keyframes logoFlip {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(0deg);
    }
}

.preloader_heading {
    font-weight: 450;
    font-size: 48px;
    color: var(--main-dark-color-B);
    margin-bottom: 18.79px;
    opacity: 0;
    transform: translateY(100px);
    animation: springUp 0.4s ease-out forwards;
    animation-delay: 1.3s;
}

.preloader p {
    color: #577C8D;
    font-size: 24px;
    font-weight: 350;
    line-height: 35px;
    opacity: 0;
    transform: translateY(100px);
    animation: springUp 0.8s ease-out forwards;
    animation-delay: 1.3s;
    text-align: center;
    max-width: 324px;
}

    .preloader p .highlighted_text {
        background: unset;
        color: #577C8D;
        font-size: 24px;
        font-weight: 350;
    }

.preloader .highlighted_text img {
    bottom: -20px;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes springUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(10px);
    }
}

.modal-dialog-scrollable .modal-body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .modal-dialog-scrollable .modal-body::-webkit-scrollbar {
        display: none;
    }

.issues-modal-footer {
    font-size: 13px;
}

.incoming-issues-symbol {
    color: #1B3065;
}

.external-issues-symbol {
    color: #679A4A;
}

.statistics_page header, .statistics_page main, .statistics_page footer {
    display: none;
}

@media (max-width: 991px) {
    body {
        background-image: url(../images/Yasir-mobile-bg.png);
    }

    :root {
        --font-size-heading-4-01: 28px;
        --font-size-text-25: 19px;
        --font-size-heading-5: 17px;
        --font-size-text-01: 14px;
        --font-size-text-largest: 17px;
        --border-raduis-largest: 23px;
    }

    body,
    html {
        font-size: 13px;
    }

    .colored_cell .span-title-colored {
        margin-bottom: 0;
        font-size: 13px;
    }

        .colored_cell .span-title-colored + span {
            margin-bottom: 8px;
            font-size: 11px;
        }

    .preloader p {
        max-width: 200px;
        line-height: 21px;
    }

        .preloader p, .preloader p .highlighted_text {
            font-size: 15px;
        }

    .preloader_heading {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .statistics_page .nav-tabs .nav-item {
        min-width: 120px;
    }

    .statistics_page .nav-tabs {
        gap: 12px;
        margin-bottom: 22.25px;
    }

    .nav_scroll_mobile {
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .nav-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }

    .nav_scroll_mobile .nav-pills--edit {
        flex-wrap: nowrap;
    }

    .box_tabs .nav-link p {
        margin-top: 4px;
    }

    .box_tabs .nav-link svg {
        max-width: 28px;
    }

    .table_green_mini_card {
        position: relative;
    }

    .box_tabs .nav-link::before {
        border-radius: 26px;
    }

    .green_indicator_table {
        position: absolute;
        inset-inline-end: 8px;
        top: 4px;
        font-size: 13px;
    }

        .green_indicator_table svg {
            width: 19px;
        }

    .department_position p {
        font-size: 13px;
        margin-top: -2px;
    }

    .modal {
        --bs-modal-margin: unset;
    }

    .display_text_modal .modal-body {
        padding-bottom: 80px;
    }

    .nav-buttons button img {
        width: 14px;
    }

    .tooltip-wrapper img {
        width: 18px;
    }

    .page-indicator {
        display: flex;
        gap: 8px;
        min-height: 28px;
        margin-block: 8px;
        padding-block: 4px;
        padding-inline: 14px;
    }

    .control-bar {
        padding: 0;
        bottom: 100px;
        max-width: 90%
    }

    .display_text_modal .control-bar button {
        padding: 4px 16px;
        font-size: 15px;
    }

        .display_text_modal .control-bar button svg {
            width: 16px;
            margin-inline-start: 8px;
        }

    .nav-buttons {
        padding: 0 10px;
    }

        .nav-buttons button {
            width: 24px;
            height: 24px;
            border-radius: 6px;
        }

    .control-bar button {
        min-height: 32px;
        padding-inline: 14px;
    }

    .page-indicator label {
        font-size: 13px;
    }

        .page-indicator label:first-child {
            display: none;
        }

    .pdf-viewport canvas {
        max-width: 100% !important;
        width: 80% !important;
        height: auto !important;
        display: block;
        margin-inline: auto;
    }

    .document_table div p {
        margin-top: -4px;
    }

    .no_found p {
        font-size: 21px;
    }

    .sessions_table .body_row div:nth-child(3)::before,
    .sessions_table .body_row div:nth-child(4)::before,
    .sessions_table .body_row div:nth-child(5)::before,
    .sessions_table .body_row div:nth-child(6)::before,
    .sessions_table .body_row div:nth-child(3),
    .sessions_table .body_row div:nth-child(4),
    .sessions_table .body_row div:nth-child(5),
    .sessions_table .body_row div:nth-child(6) {
        color: #22499c !important;
    }

    .sessions_table .body_row div:nth-child(8),
    .sessions_table .body_row div:nth-child(9),
    .sessions_table .body_row div:nth-child(10),
    .sessions_table .body_row div:nth-child(8)::before,
    .sessions_table .body_row div:nth-child(9)::before,
    .sessions_table .body_row div:nth-child(10)::before {
        color: #261905 !important;
    }

    .sessions_table .body_row {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: auto auto auto auto;
        justify-items: center;
        align-items: center;
    }

        .sessions_table .body_row div:nth-child(1) {
            display: none;
        }

        .sessions_table .body_row div:nth-child(2) {
            grid-row: 1;
            grid-column: 1 / span 6;
            text-align: center;
        }

        .sessions_table .body_row div:nth-child(3),
        .sessions_table .body_row div:nth-child(8) {
            grid-row: 2;
            margin-bottom: 13px;
        }

        .sessions_table .body_row div:nth-child(3) {
            grid-column: 1 / span 3;
        }

        .sessions_table .body_row div:nth-child(8) {
            grid-column: 4 / span 3;
        }

        .sessions_table .body_row div:nth-child(4),
        .sessions_table .body_row div:nth-child(5),
        .sessions_table .body_row div:nth-child(6),
        .sessions_table .body_row div:nth-child(9),
        .sessions_table .body_row div:nth-child(7),
        .sessions_table .body_row div:nth-child(10) {
            grid-row: 3;
            font-size: 23px;
        }

            .sessions_table .body_row div:nth-child(4):before,
            .sessions_table .body_row div:nth-child(5):before,
            .sessions_table .body_row div:nth-child(6):before,
            .sessions_table .body_row div:nth-child(9):before,
            .sessions_table .body_row div:nth-child(7):before,
            .sessions_table .body_row div:nth-child(10):before {
                font-weight: 400;
            }

        .sessions_table .body_row div:nth-child(4) {
            grid-column: 1;
        }

        .sessions_table .body_row div:nth-child(5) {
            grid-column: 2;
        }

        .sessions_table .body_row div:nth-child(6) {
            grid-column: 3;
        }

        .sessions_table .body_row div:nth-child(7) {
            grid-column: 5;
        }

        .sessions_table .body_row div:nth-child(9) {
            grid-column: 4;
            margin-inline-end: -28px;
        }

        .sessions_table .body_row div:nth-child(10) {
            grid-column: 6;
            margin-inline-start: -18px;
        }

        .sessions_table .body_row div:nth-child(11) {
            grid-row: 4;
            grid-column: 1 / span 6;
        }

    .session_view .nav-link svg {
        display: none;
    }

    .session_view .nav-tabs {
        gap: 8px;
        margin-bottom: 16px;
    }

    .session_view .head-line span {
        display: none;
    }

    .documents_modal .head-line {
        text-align: start;
    }

    .documents_modal .inner_bg_blue .head-line {
        padding-inline-start: 12px;
    }

    .main_table_group.total_cases_table .grid_row {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto auto;
    }

    .main_table_group:not(.search_table) .grid_row {
        padding-top: 12px;
    }

    .main_table_group.total_cases_table .grid_row > * {
        text-align: start;
    }

    .main_table_group.total_cases_table .body_row div:nth-child(2),
    .main_table_group.total_cases_table .body_row div:nth-child(3) {
        grid-row: 1;
        margin-bottom: 10px;
    }

    .main_table_group.total_cases_table .body_row div:nth-child(2) {
        grid-column: 1;
    }

    .main_table_group.total_cases_table .body_row div:nth-child(3) {
        grid-column: 2;
    }

    .main_table_group.total_cases_table .body_row div:nth-child(4),
    .main_table_group.total_cases_table .body_row div:nth-child(5) {
        grid-row: 2;
        font-size: 14px;
        white-space: normal;
    }

    .main_table_group.total_cases_table .body_row > *:nth-last-child(n + 2),
    .document_table .body_row > *:nth-last-child(n + 2) {
        padding-inline-start: 10px;
    }

    .documents_modal .modal__tap-pan-top {
        margin-bottom: 16px;
        text-align: start;
    }

    .main_table_group.total_cases_table .body_row div:nth-child(4) {
        grid-column: 1;
    }

    .main_table_group.total_cases_table .body_row div:nth-child(5) {
        grid-column: 2;
    }

    .main_table_group.total_cases_table .body_row div:nth-child(6) {
        grid-row: 3;
        grid-column: 1 / span 2;
    }

    .main_table_group.total_cases_table .body_row div:nth-child(7) {
        grid-row: 4;
        grid-column: 1 / span 2;
    }

    .main_table_group.total_cases_table .grid_row > div:first-child {
        display: none;
    }

    .main_table_group.total_cases_table .body_row {
        font-size: 15px;
    }

    .session_view .nav-link {
        max-height: 100px;
    }

    .sm_text {
        font-size: 11px;
        margin-inline-end: 8px;
    }

    .view_btn.document_btn {
        padding-top: 10px;
        padding-bottom: 16px;
        font-size: 19px;
        line-height: 21px;
    }

    .modal_title {
        margin-bottom: unset;
    }

    .session_view .nav-link .number {
        font-weight: 450;
    }

    .form-switch {
        padding-block: 8px;
    }

    .redistribution-title svg {
        margin-inline-end: 9px;
        width: 25px;
    }

    .modal-title {
        font-size: 31px;
        line-height: 33px;
        margin-bottom: 16px;
    }

    .judges-container > .row {
        --bs-gutter-x: 1rem;
    }

    .selection-circle span {
        width: 24px;
        height: 24px;
    }

        .selection-circle span svg {
            width: 16px;
        }

    .modal-subtitle {
        width: 90%;
        margin-inline: auto;
        font-size: 17px;
        margin-bottom: 16px;
    }

    .sessions-info strong {
        width: 32px;
        height: 32px;
        font-size: 15px;
        font-weight: 400;
    }

    .judge-info {
        flex-direction: column;
    }

    .judge-card {
        padding: 6px 12px;
        border-radius: 33px;
        margin-bottom: 20px;
    }

        .judge-card.president-card {
            transform: scale(1.1);
            margin-inline: 6px;
        }

        .judge-card > div:first-child {
            justify-content: space-between;
        }

    .sessions-info {
        margin-top: 14.45px;
    }

    .judge-details h3 {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .selection-circle {
        min-width: 32px;
        width: 32px;
        height: 32px;
        margin-inline-end: unset;
    }

    .judge-details span {
        font-size: 13px;
        text-align: center;
    }

    .judge-avatar {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        margin-left: unset;
    }

    .reset_checboxes .form-check .form-check-input {
        margin-inline-end: 6.41px;
    }

    .group_header .form-check .form-check-input,
    #select-all {
        margin-inline-start: 12px;
    }

    .unallocated_provisions .table-bg-blue {
        padding-top: 20px;
    }

    .align_top_table .view_btn span {
        font-size: 19px;
    }

    .group_title_line {
        display: none;
    }

    .numbered_table .grid_row {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto auto;
        gap: 14px;
    }

    .sm-president, .sm-president .grayed_span, .sm-president span {
        color: #22499c !important;
    }

    .numbered_table .body_row > * > span:not(.d-lg-none) {
        font-size: 23px;
    }

    .sm-president .d-lg-none {
        font-weight: 450 !important;
    }

    .numbered_table .grid_row div:nth-child(2),
    .numbered_table .grid_row div:last-child {
        grid-column: 1 / span 2;
        text-align: center;
    }

    .numbered_table .grid_row div:nth-child(2) {
        grid-row: 1;
    }

    .numbered_table .grid_row div:last-child {
        grid-row: 4;
        justify-content: center;
    }

        .numbered_table .grid_row div:last-child::before {
            margin-bottom: 8px;
        }
    /* .grayed_span, .colored_tabs nav{
    justify-content: center;
  } */
    .case-group .grid_row {
        grid-template-columns: 1fr 1fr;
        position: relative;
        padding-right: 57px;
        padding-top: 24px;
        min-height: 100px;
    }

    .case-group .redist-case-row > div:last-child {
        grid-row: 1;
        grid-column: 1 / span 2;
        margin-bottom: 16px;
    }

        .case-group .redist-case-row > div:last-child > div {
            margin-top: -11px;
        }

    .table_row {
        font-size: 15px;
        border-radius: 31px;
    }

    .case-group .grid_row > div:nth-child(2) {
        display: none;
    }

    .group_header {
        gap: 5px;
        margin-block: 18px;
    }

    .group_title_blue {
        font-size: 15px;
    }

    .case-group .grid_row .form-check {
        position: absolute;
        right: -15px;
        top: 26px;
    }

    .distribute_btn {
        width: 100%;
        height: unset;
        padding-top: 8px;
        padding-bottom: 12px;
        font-size: 23px;
        margin-top: 24px;
    }

    .numbered_table .body_row > div:first-child {
        display: none;
    }

    .unallocated_provisions_num {
        width: 21px;
        height: 21px;
        font-size: 13px;
    }

    .detailed_cell {
        white-space: normal !important;
    }

    .page_name {
        font-size: 17px;
        line-height: 26px;
        margin-bottom: 10px;
        padding-inline-start: 12px;
    }

    .success_lottify {
        width: 148px;
        height: 148px;
    }

    .reset_success p {
        font-size: 13px;
    }

    .reset_success h2 {
        font-size: 21px;
        margin-bottom: 12px;
        line-height: 26px;
    }

    .alert-success {
        width: 90%;
        padding-inline-end: 20px;
        border-radius: 31px;
        height: 67px;
    }

    .alert_lottify {
        width: 71px;
        height: 50px;
    }

    .alert-success span {
        font-size: 15px;
        margin-inline-start: 16px;
    }

    .white_bordered_card {
        border-radius: 38px;
        padding: 12.44px 8.72px 16.44px 8.72px;
    }

    .password-strength ul li {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .progress_area {
        padding-inline: 15px;
    }

    .list-unstyled {
        margin-bottom: 18px;
    }

    .strength-text {
        font-size: 12px;
    }

    .password-strength ul li:before {
        width: 16px;
        height: 16px;
    }

    .main_alt_btn {
        padding: 4px 12px;
        font-size: 12px;
    }

    .trans_main_btn svg {
        margin-inline-end: 5px;
        width: 14px;
    }

    .settings .bg_blue_opacity {
        border-radius: 38px;
        padding: 13.5px 9.28px 10px 10px;
    }

    .form_heading img {
        width: 18px;
        margin-inline-end: 12px;
    }

    .form_heading h5 {
        line-height: 21px;
        margin-bottom: 4px;
    }

    .form_heading p {
        font-size: 13px;
    }

    .agreement_label {
        margin-bottom: 20px;
        padding-inline: 4px;
    }

    .breadcrumb {
        font-size: 15px;
        gap: 8px;
        padding-inline-start: 12px;
    }

    .suggest_btn {
        display: block;
        margin-inline-start: auto;
        margin-top: 16px;
        margin-bottom: 12px;
    }

    .submit_area img {
        width: 15px;
    }

    .submit_area p {
        font-size: 12px;
        margin-inline-start: 4px;
        margin-inline-end: 0;
    }

    .copy_btn {
        border: none;
        padding: 0;
    }

    .shadowed_table::after {
        display: none;
    }

    .grid_row.table_large_header {
        display: none;
    }

    .grid_row div:last-child {
        border-bottom: none;
    }

    .grid_row div::before {
        content: attr(data-label);
    }

    .grid_row div::before, .numbered_table .grid_row > div span.d-lg-none {
        font-weight: 300;
        color: #5e6d8c;
        font-size: var(--font-size-text-sm);
        line-height: 19px;
        display: block;
        margin-bottom: 3.22px;
    }

    .numbered_table .grid_row:not(.table_large_header) > div:nth-child(2) {
        font-size: 22px;
    }

    .numbered_table .body_row {
        font-size: 21px;
        position: relative;
    }

        .numbered_table .body_row:after, .numbered_table .body_row:before, .sessions_table .body_row:before, .sessions_table .body_row:after {
            position: absolute;
            content: " ";
            width: 90%;
            height: 1px;
            background-color: #D5E1E8;
            top: 50%;
            inset-inline-start: 5%;
        }

        .numbered_table .body_row:before,
        .sessions_table .body_row:before {
            height: 58%;
            width: 1px;
            inset-inline-start: 50%;
            top: 21%;
        }

    .sessions_table .body_row:before {
        height: 46%;
        top: 27%;
    }
    /* .grayed_span.sm_span{
    width: 34px;
    height: 34px;
  } */
    .numbered_table .grid_row > div span.d-lg-none {
        margin-bottom: 8px;
    }

    .sm_span {
        width: fit-content;
        margin-inline: auto;
    }

    .custom-container {
        position: relative;
    }

        .custom-container::after {
            content: attr(data-label) " - الإجمالي";
        }

        .custom-container::before {
            content: attr(data-label);
            margin-left: 40px;
            font-size: 17px !important;
            font-weight: 500 !important;
        }

        .custom-container::after {
            content: "الإجمالي";
            font-size: 12px;
            line-height: 15px;
            font-weight: 300;
            position: absolute;
            top: 2px;
            right: 60px;
        }

    .black_one.custom-container::after {
        right: 55px;
    }

    .search_found .grid_row div::before {
        font-size: 13px;
    }

    .main_lg_btn {
        font-size: 19px;
        line-height: 24px;
        gap: 19.72px;
        padding-inline-start: 34.41px;
        padding-inline-end: 12px;
    }

        .main_lg_btn lottie-player {
            width: 60.53px !important;
            height: 60.53px !important;
        }

    .chat_button {
        bottom: 26px;
        inset-inline-start: 26px;
    }

    .request_support {
        padding-top: 8.79px;
        margin-bottom: 30.93px;
        line-height: 16px;
    }

    .toggle-password {
        inset-inline-end: 28.87px;
    }

    .search_group .form-control {
        padding-inline-start: 51px;
        height: 50px;
    }

    .search_result .search_group .form-control {
        height: 51.75px;
        padding-inline-start: 55.27px;
    }

    .search_result .search_group .search_icon {
        width: 15.3px;
        inset-inline-start: 24.6px;
    }

    .bordered_opacity .search_icon {
        inset-inline-start: 20px;
    }

    .services_header {
        padding-bottom: 16px;
        padding-inline: 28px;
    }

    .highlighted_text img {
        width: 140%;
    }

    .login main {
        padding-top: 12%;
    }
    /* .subtitle {
    margin-top: 20px;
    margin-bottom: 26px;
  } */
    .request_support img {
        width: 15px;
    }

    .request_support a {
        padding-inline-start: 6px;
    }

    .chat_button img {
        width: 69px;
    }

    .Yasir_logo img,
    .Moj_logo img {
        width: 70px;
        margin-inline: 10px;
    }

    .menu {
        padding-top: 40px;
        padding-bottom: 62px;
    }

    .menu_content ul li a {
        margin-bottom: 42px;
        font-size: 27px;
        line-height: 33.75px;
    }

    .login_btn span {
        display: none;
    }

    body:has(.header) {
        padding-block-start: 72px;
    }

    .login_btn img {
        margin-inline-end: 0;
        width: 16px;
        margin-bottom: 2px;
    }

    #openMenuBtn img {
        width: 24px;
    }

    .Yasir_logo {
        padding-inline-start: 42px;
    }

    .login .Yasir_logo {
        padding-inline-start: 0;
    }

    .menu-icon {
        width: 30px;
        height: 30px;
    }

    .menu_icon_container {
        top: 32px;
    }

        .menu_icon_container.moveToTop {
            top: 21px;
        }

    .menu-icon span,
    .menu-icon::before,
    .menu-icon::after {
        width: 27.9px;
        height: 1.7px;
    }

    .menu-icon:not(.active):after {
        width: 21.7px;
    }

    .login footer {
        width: 100%;
    }

    .main_footer_copyright span {
        margin-top: 10.5px;
        line-height: 14px;
    }

    .main_footer p span,
    .menu_footer p span {
        display: block;
    }

    .menu_footer {
        gap: 32px;
    }

    .social_links a {
        margin-inline-end: 0;
    }

        .social_links a img {
            width: 29.88px;
        }

            .social_links a img.youtube {
                width: 42.5px;
            }

    .social_links {
        margin-top: 28.71px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 27px;
        margin-bottom: 28.07px;
    }

    .main_footer p span,
    .menu_footer p span {
        padding-inline-start: unset;
    }

    .by {
        font-size: 11px;
        color: #0c3443;
        font-weight: 200;
        margin-bottom: 18px;
    }

    .menu-icon.active::before {
        transform: translateY(5px) rotate(45deg);
    }

    .modal-content {
        border-radius: 35px;
    }

    .modal:not(.session_main_modal) .modal-body {
        padding-inline: 21px;
        padding-bottom: 19.83px;
        text-align: center;
        padding-top: 0;
    }

    .session_view .nav-link {
        padding-inline: 15px;
    }

    .modal-header {
        padding-bottom: 24px;
    }

    .modal.google_verification_model .choice_body {
        margin-top: 16.14px;
        margin-inline-start: 11.65px;
        margin-inline-end: 21.89px;
        margin-bottom: 26.08px;
        padding-inline-start: 11.65px;
        padding-inline-end: 12.11px;
        padding-bottom: 0;
    }

    .main_modal .modal-body {
        padding-top: 38.6px;
    }

    .main_login_modal .main_login_modal_text h3 {
        font-size: 27px;
        line-height: 34px;
        margin-top: 0;
        margin-bottom: 10.63px;
    }

    .modal_btns {
        padding: 21px 20.34px 0 21.89px;
    }

    .popup-tab-btn p {
        font-size: 17px;
        line-height: 21px;
        max-width: 127px;
    }

    .popup-tab-btn {
        padding: 16px;
    }

    .hid_verify_btn img {
        margin-bottom: 10.5px;
        width: 62.75px;
    }

    .hid_verify_btn {
        order: 2;
    }

    .google_verify_btn img {
        margin-bottom: 17.5px;
        width: 53.55px;
    }

    .main_login_modal .main_login_modal_text + div {
        gap: 12px;
    }

    .btn-modal-back img {
        width: 25px;
        margin-inline-end: unset;
    }

    .btn-modal-back {
        font-size: 17px;
    }

    .close-all img,
    .modal-header button[aria-label="Close"] img {
        width: 27.25px;
        height: 27.25px;
    }

    .main_login_modal .main_login_modal_text p {
        font-size: 17px;
        line-height: 21px;
        max-width: 223px;
        margin-inline: auto;
        margin-bottom: 34.78px;
    }

    .lottie_area {
        flex-direction: column;
        gap: 13px;
    }

    .choice_body {
        border-radius: 38px;
        margin-top: 16.14px;
        margin-inline-start: 20.34px;
        margin-inline-end: 21.89px;
        margin-bottom: 26.08px;
        padding-inline-start: 11.65px;
        padding-inline-end: 12.11px;
    }

    .otp-container {
        gap: 3.99px;
        margin-block: 16px;
    }

    .choice_body h4 {
        color: var(--alt-dark-color);
        font-size: 21px;
        margin-top: 17.5px;
        margin-bottom: 17.7px;
        line-height: 26px;
    }

        .choice_body h4 img {
            width: 42.74px;
            height: 43.73px;
            display: block;
            margin-top: 25.1px;
            margin-bottom: 17.7px;
            margin-inline: auto;
        }

    .hid_model h4 img {
        width: 44.37px;
        height: 44.13px;
    }

    .verification_text {
        font-size: 25px;
        line-height: 31px;
        font-weight: 300;
        margin-inline: auto;
        max-width: 242px;
    }

    .otp-box {
        padding-bottom: 9.99px;
        height: 68.99px;
        border-radius: 15px;
        width: unset;
    }

    .otp-input {
        font-size: 47px;
        height: 52px;
        padding: 0;
        padding-top: 7px;
    }

        .otp-input::placeholder {
            font-size: 47px;
        }

    .otp-box::after {
        bottom: 13px;
        left: 50%;
        width: 50%;
        height: 3px;
        transform: translateX(-50%);
    }

    .view_btn {
        padding-top: 10px;
        padding-bottom: 18px;
        justify-content: center;
        line-height: 29px;
        margin-top: 20px;
    }

    .main-sec .page-menu {
        padding: 12px 12px 1px 12px;
    }

    .dashboard .c-dropdown {
        width: 100%;
        padding: 10px 19px 10px 22px;
        margin-top: 25px;
        margin-bottom: 17.72px;
    }

    .c-dropdown .dropdown-toggle::after {
        left: 33px;
    }

    .main_dash_card .inner_dash_card {
        padding-top: 31.03px;
        padding-bottom: 50.84px;
        margin-bottom: 17.72px;
        height: 187.28px;
    }

    .calc_dash .inner_dash_card {
        padding-top: 37.44px;
        padding-bottom: 56.12px;
        height: 229.55px;
    }

    .search_card .inner_dash_card {
        padding-top: 39.44px;
        padding-bottom: 60.12px;
        height: 229.55px;
    }

    .c-cardIII .inner_dash_card {
        border-radius: 31px;
    }

    .c-cardIII h4 {
        font-size: 25px;
        line-height: 31px;
    }

    .c-cardIII span {
        font-size: 15px;
        font-weight: 300;
    }

    .c-cardIII:hover .icon {
        transform: scale(1.1);
    }

    .main_dash_card h4 {
        margin-top: 9.74px;
        margin-bottom: 8.07px;
    }

    .calc_dash h4 {
        margin-top: 10.68px;
        margin-bottom: 5px;
    }

    .search_card h4 {
        margin-top: 27.91px;
        margin-bottom: 17px;
    }

    .calc_dash .icon img {
        width: 29.4px;
    }

    .search_card .icon img {
        width: 35.15px;
    }

    .main_dash_card .icon img {
        width: 46.06px;
    }

    .login {
        padding-top: 34.55px;
        padding-bottom: 280.8px;
    }

    .remote_sessions_Yasir_logo {
        width: 64px;
    }

    .go_back,
    .switch_btn {
        font-size: 21px;
    }

        .go_back span {
            display: none;
        }

        .go_back img {
            width: 21.74px;
            margin-inline-end: 6.56px;
        }

    .table-bg-blue .search_group {
        margin-bottom: 20px;
    }

    .Moj_logo {
        display: none;
    }

    .container-fluid,
    .menu .container-fluid {
        padding-inline: 28px;
    }

    .login main {
        padding-top: 80px;
    }

    .login .section_heading_2 {
        font-size: 38px;
    }

    .login .highlighted_text img {
        inset-inline-start: -4px;
        width: 120%;
    }

    .subtitle {
        font-size: 19px;
        font-weight: 450;
        margin-top: 21px;
        margin-bottom: 8px;
    }

    .judge_icon {
        width: 67.5px;
        margin-bottom: 4.52px;
    }

    .input_group_icon img,
    .toggle-password img {
        width: 27.5px;
    }

    .input_group .form-control {
        padding-inline-start: 65.85px;
        height: 60.53px;
        border-radius: 38px;
        font-size: 25px;
        border: 0;
        padding-top: 15.96px;
        padding-bottom: 20.57px;
        margin-bottom: 16.73px;
    }

    .input_group:nth-child(2) .input_group_icon img,
    .password-field .input_group_icon img {
        width: 19.43px;
        height: 22.17px;
    }

    .input_group .form-control::placeholder {
        font-size: 19px;
    }

    .input-label {
        font-size: 15px;
        inset-inline-start: 60px;
    }

    .targeted_input_moving:focus-within .input-label,
    .targeted_input_moving:focus-within .input-label,
    .targeted_input_moving .form-control:not(:placeholder-shown) + .input-label,
    .date_group.has-value .input-label {
        font-size: 13px;
        top: 16px;
    }

    .targeted_input_moving .form-control:not(:placeholder-shown),
    .targeted_input_moving:focus-within .form-control,
    .targeted_input_moving:focus-within .form-control {
        padding-top: 30px;
    }

    .date_group.has-value .form-control {
        padding-top: 24px;
    }

    .custom-select.active .form-control {
        border-radius: 38px 38px 0 0;
    }

    .form-check .form-check-input:checked[type=checkbox] {
        background-size: 10px 10px;
    }

    .bordered_opacity .search_group .form-control,
    .targeted_input_moving.input_group .form-control {
        height: 54px;
        min-height: 54px;
        padding-inline-start: 60px;
        font-size: 17px;
    }

    .select-options li {
        padding: 10px 60px;
    }

    .bordered_opacity .search_group,
    .edit_password_fields .input_group.first_child .form-control {
        margin-bottom: 15px;
    }

    .bordered_opacity {
        border-radius: 33px;
        padding: 20px 8px 16px 8px;
    }

    .search_btn,
    .submit_area .main_btn {
        font-size: 17px;
        padding: 8px 32.87px 8px 34px;
        margin-top: 18px;
        width: 100%;
    }

        .search_btn svg {
            width: 18px;
        }

    .search_lottie {
        width: 112px;
        height: 112px;
    }

    .date_group .search_icon svg {
        width: 20px;
    }

    #togglePassword,
    #toggleConfirmPassword {
        width: 19.09px;
    }

    .login footer {
        padding-bottom: 59px;
    }

    .login .footer_logo {
        margin-bottom: 10.66px;
    }

    body:not(:has(.login)) .switch_btn {
        position: absolute;
        inset-inline-end: 28px;
        top: 57px;
        transition: all 0.3s ease-in-out;
    }

    .menu_icon_container {
        top: 60px;
        inset-inline-start: 0;
        transition: all 0.3s ease-in-out;
    }

        .menu_icon_container.moveToTop {
            top: 27px;
        }

    body:not(:has(.login)) .Yasir-mobile-logo {
        position: absolute;
        inset-inline-start: 50%;
        inset-block-start: 34.5px;
        transform: translateX(50%);
        transition: all 0.3s ease-in-out;
    }

    .login_btn_mobile {
        padding: 18.26px 22.69px 17.35px 36px;
        background-color: var(--white-color);
        border-radius: 50px;
        color: var(--bg-main-color);
        font-size: 20px;
        position: absolute;
        top: 41px;
        inset-inline-end: 29px;
    }

    .menu {
        background: linear-gradient( 263.73deg, #22499d -2.67%, rgba(31, 63, 135, 0.851) 120.65%, rgba(26, 48, 101, 0) 224.03% );
        transition: right 0.3s ease-in-out;
        z-index: 2000;
        color: var(--white-color);
        padding-top: 177px;
        padding-bottom: 99px;
        padding-inline-start: 5px;
    }

    body:has(.header.scrolled) .menu .login_btn_mobile {
        top: 7px;
    }

    .menu .login_btn_mobile {
        transform: translateX(-100px);
        opacity: 0;
        transition: transform 0.1s ease-in-out 0.2s, opacity 0.1s ease-in-out 0.2s, visibility 0.5s ease-in-out;
        visibility: hidden;
    }

    .menu.active .login_btn_mobile {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .menu.closing .login_btn_mobile {
        transform: translateX(-100px);
        opacity: 0;
        transition: transform 0.1s ease-in-out, opacity 0.2s ease-in-out, visibility 0.5s ease-in-out;
        visibility: hidden;
    }

    .menu .login_btn_mobile img {
        margin-inline-end: 16.96px;
    }

    .menu_footer {
        opacity: 0;
        position: absolute;
        inset-inline-start: 50%;
        transform: translateX(50%) translateY(50px);
        bottom: 99px;
        transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    }

    .menu.active .menu_footer {
        transform: translateX(50%) translateY(0);
        opacity: 1;
    }

    .menu.closing .menu_footer {
        transform: translateX(50%) translateY(50px);
        opacity: 0;
        transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    }

    .statistics {
        padding-top: 185px;
        padding-bottom: 80px;
        background-image: url(../images/statistics-mobile-bg.svg);
        margin-top: -20px;
        z-index: 2;
    }

    .nav_card.active .nav_card_next {
        margin-top: -35px;
    }

    .popup-tab-btn {
        min-width: 0;
    }

    .popup-tab-btn {
        flex: 1;
        padding-block: 21px;
        border-radius: 29px;
        line-height: 21px;
    }

    .modal .modal-dialog {
        padding-inline: 11px;
        max-width: 100% !important;
    }

    .search_icon {
        width: 22.02px;
        inset-inline-start: 15.95px;
    }

    .c-dropdown__title {
        padding: 4.71px 13px 8.29px 13px;
        line-height: 16px;
        font-size: 12px;
    }

    .header_responsive_page .c-dropdown, .header_responsive_page .c-dropdown:has(.dropdown-menu.show) {
        background-color: transparent;
        padding: 0;
    }

        .header_responsive_page .c-dropdown .dropdown-toggle::after {
            display: none;
        }

        .header_responsive_page .c-dropdown .c-dropdown__img {
            margin-inline-end: 0;
        }

    .main_modal .modal_btns {
        padding-bottom: 32px;
    }

    .hid_model .modal-body {
        padding-bottom: 0 !important;
    }

    .services .nav-link.active {
        font-weight: 500;
    }

    .outer_hero_card.disabled_card .clear_text {
        font-size: 11px;
        bottom: 28px;
        line-height: 16px;
    }

    .nav-pills .nav-link {
        font-size: 17px;
        font-weight: 450;
        line-height: 23px;
        border: 0;
        color: rgba(11, 52, 67, 0.33);
        padding: 0;
        padding-inline-end: 12px;
        padding-bottom: 15px;
        margin-inline-end: 20px;
        text-align: start;
        position: relative;
        border-radius: 0;
    }

        .nav-pills .nav-link.active {
            color: #1c3065;
            border-bottom: 2.5px solid #9a7a44;
        }

        .nav-pills .nav-link span {
            display: block;
            max-width: 60px;
            text-align: start;
            white-space: normal;
        }

        .nav-pills .nav-link svg {
            display: block;
            width: 24px;
            margin-bottom: 6px;
            margin-inline-start: 5px;
        }

    .gray_light_text {
        font-size: 15px;
        line-height: 19px;
    }

    .session_meta {
        margin-top: 7.5px;
        padding-inline-start: 8.77px;
        padding-inline-end: 28.89px;
        /* gap: 55px; */
        justify-content: space-between;
        max-width: 500px;
    }

    .card_box_arrange_details div {
        font-size: 36px;
        line-height: 62px;
    }

    .card-circle-subtitle {
        font-size: 13px;
        margin-top: 0;
        margin-bottom: 18px;
    }

    .session_meta .indicator_titles h5 {
        font-size: 15px;
        line-height: 21px;
    }

    .indicator {
        padding: 17.29px 19px 11.29px 11px;
        margin-top: 16.21px;
        border-radius: 28px;
        margin-bottom: 18.63px;
    }

    .indicator_titles .gray_light_text {
        margin-bottom: 3.22px;
    }

    .indicator_titles h5 {
        font-size: 19px;
        line-height: 24px;
        font-weight: 400;
    }

    .indicator_details h5 {
        font-size: 15px;
        line-height: 19px;
        margin-bottom: 3px;
    }

    .gray_light_sm_text {
        font-size: 13px;
        line-height: 16px;
        color: #577c8d;
        margin-bottom: 4px;
        font-weight: 300;
    }

    .modal_positive .indicator {
        background: #f8fbf7;
        border: 1px solid #d6e1cdb5;
    }

    .indicator_info {
        justify-content: space-between;
        margin-bottom: 10px;
        padding-inline-end: 13px;
    }

    .current_rolling > div {
        flex: 1;
    }

    .indicator_num {
        font-size: 20px;
        line-height: 25px;
    }
    /* .indicator__boxbrsent {
    padding-top: 13px;
    padding-bottom: 21px;
    border-radius: 23px;
  }
  .indicator__boxbrsent h5 {
    font-size: 13px;
    font-weight: 300;
    line-height: 16px;
    margin-bottom: 7px;
  }
  .indicator__boxbrsent img {
    width: 26px;
    margin-top: -9px;
    margin-inline-end: 4.16px;
  } */
    .indicator_details.active .indicator_num {
        font-size: 38px;
        line-height: 48px;
    }

    .session_main_modal .modal-header {
        padding-inline: 0;
        padding-top: 21px;
        margin-inline: 18.5px;
        padding-bottom: 0;
    }

    .session_main_modal:not(.documents_modal) .modal-header {
        border-bottom: 1px solid #7e929d2b !important;
    }

    .session_main_modal.assign_qadi .modal-header {
        border-bottom: 0 !important;
    }

    .session_main_modal .modal-body {
        padding-top: 16.28px;
        padding-inline: 16px;
    }

    .pb_modal .modal-content {
        padding-bottom: 19.83px;
    }

    .session_date_details {
        background-color: #ebeff7;
        text-align: center;
        border-radius: 38px;
        padding: 12.44px 8.72px 16.44px 8.72px;
    }

    .table-bg-blue {
        border-radius: 38px;
        padding: 12.44px 8.72px 16.44px 8.72px;
    }

    .the_date {
        color: var(--main-dark-color-B);
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 21px;
    }

    .colored > * {
        color: #22499c;
    }

    .c-text-black, .c-text-blue {
        font-size: 33px !important;
        font-weight: 450;
        line-height: 41px;
        padding-bottom: 3px;
    }

    .session_date_details .main_btn {
        line-height: 26px;
        margin-top: 13px;
        font-size: 21px;
    }

    .modal-dialog-scrollable {
        height: calc(100vh - 116px);
    }

    .bold_label {
        font-size: 17px;
        font-weight: 500;
        margin-inline-end: 5.7px;
    }

    .services_dashboard .c-dropdown .noti-count {
        bottom: 14px;
        right: 14px;
    }

    .c-dropdown:has(.dropdown-menu.show) .noti-count {
        display: none;
    }

    .body_row > * {
        flex-direction: column;
        white-space: nowrap;
    }
    /* .c-table__indicator--up,
  .c-table__indicator--down {
    padding: 15.56px 21px 10.56px 23.35px;
    flex-direction: row;
    border-radius: 28px;
    font-size: 21px;
    box-shadow: 0px 7px 9px 0px #6c5b3e0d;
  } */
    .grid_row.table_header {
        display: none;
    }

    .search_result .main_table_group {
        margin-top: 23.42px;
    }

    .body_row {
        padding: 11.22px 10px 12px 11px;
    }

        .body_row:not(:last-child) {
            margin-bottom: 20.28px;
        }

    .search_found .body_row {
        margin-bottom: 12px;
    }

    .no_cases_found p {
        font-size: 32px;
        line-height: unset;
    }

    .search_result .main_table_group .body_row > *:first-child {
        padding-inline-start: 10px;
        font-size: var(--font-size-text-17);
    }
    /* .search_result .main_table_group .body_row > *:nth-last-child(n + 3) {
    padding-inline-start: 10px;
    font-size: var(--font-size-text-17);
  } */
    .header__layout {
        margin-bottom: 30.55px;
    }

    .colored_tabs .nav-tabs .nav-link {
        font-size: 19px;
        padding: 10px 14px 12px 14px;
    }

    .form-check .form-check-input {
        width: 20px;
        height: 20px;
        border-radius: 6px;
    }

    .custom-switch .form-check-input {
        width: 112px;
        height: 37px;
    }

    .form-switch .form-check-input:after {
        width: 21px;
        height: 21px;
        top: 7px;
    }

    .form-check .form-check-label,
    .custom-switch .form-check-label {
        font-size: 12px;
    }

    .form-check .form-check-label {
        padding-inline-start: 6px;
    }

    .custom-switch .form-check-label {
        inset-inline-start: 12px;
    }

    .form-switch .form-check-input:checked:after {
        transform: translateX(calc(148px - 67px));
    }

    .form-switch .form-check-input:checked + .form-check-label {
        inset-inline-start: 16px;
    }

    .bordered_opacity .checkboxes {
        margin-bottom: 8px;
        flex-wrap: wrap;
    }

        .bordered_opacity .checkboxes .form-check {
            margin-top: 8px;
        }

            .bordered_opacity .checkboxes .form-check:not(:last-child) {
                margin-inline-end: 20px;
            }

    .checkboxes .form-check {
        display: flex;
        align-items: center;
    }

    .search_result_num {
        margin-top: 12px;
    }

    .c-dropdown .dropdown-menu {
        border-radius: 33px;
    }

    .dropdown-menu li:last-child .dropdown-item svg {
        width: 22.5px;
        height: 22.5px;
    }

    .dropdown-item svg {
        margin-inline-end: 10px;
        margin-top: -3px;
    }

    .dropdown-item {
        padding: 24px;
        font-size: 15px;
        gap: 28px;
    }

    .favourite_notification {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .header_responsive_page .c-dropdown .dropdown-menu.show {
        transform: translate3d(0px, 55px, 0px) !important;
        padding-block: 0;
        width: auto;
    }

    .header_responsive_page .c-dropdown .dropdown-menu li:first-child .dropdown-item {
        border-top: unset;
    }

    .case-header {
        display: none;
    }

    .case-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .main_table_group:not(.sessions_table):not(.civil_departments_table) .body_row > :nth-child(1),
    .main_table_group:not(.sessions_table):not(.civil_departments_table) .body_row > :nth-child(5) {
        margin-bottom: 7.5px;
    }
    /* .search_result .main_table_group .grid_row {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
      "col1 col1 col5"
      "col2 col3 col4"
      "col6 col6 col6";
  } */
    .search_result .main_table_group .body_row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr; /* 4 equal columns */
        grid-template-areas:
            "col1 col1 col1 col1"
            "col2 col2 col3 col3 "
            "col4 col4 col4 col4";
    }

        .search_result .main_table_group .body_row > div:last-child:before {
            display: none;
        }
    /* .main_table_group.align_top_table .grid_row {
    grid-template-columns: 1fr;
    font-size: 15px;
    grid-template-areas:
      "col1"
      "col2"
      "col3"
      "col4";
  } */
    .main_table_group.align_top_table .body_row {
        display: flex;
        flex-direction: column;
    }

    .main_table_group.align_top_table .grid_row div:first-child {
        padding-inline-start: 10px;
    }

    .main_table_group.align_top_table .body_row {
        padding-top: 13.22px;
    }

    .main_table_group.align_top_table .grid_row div::before {
        text-align: start;
    }

    .main_table_group.align_top_table .body_row > *:not(:last-child) {
        padding-inline: 6px;
    }

    .search_result .main_table_group .body_row > :nth-child(1) {
        grid-area: col1;
        font-size: var(--font-size-text-01);
    }

    .main_table_group .body_row > :nth-child(2) {
        grid-area: col2;
        padding-inline-start: 10px;
    }

    .search_result .main_table_group .body_row > :nth-child(3) {
        grid-area: col3;
        margin-inline: auto;
    }
    /* .search_result .main_table_group .body_row > :nth-child(3),
  .main_table_group.align_top_table .body_row > :nth-child(3) {
    grid-area: col3;
    margin-inline: auto;
  } */
    .search_result .main_table_group .body_row > :nth-child(4) {
        grid-area: col4;
        margin-inline: auto;
    }
    /* .search_result .main_table_group .body_row > :nth-child(4),
  .main_table_group.align_top_table .body_row > :nth-child(4) {
    grid-area: col4;
    margin-inline: auto;
  } */
    .main_table_group .body_row > :nth-child(5) {
        grid-area: col5;
    }

    .main_table_group .body_row > :nth-child(6) {
        grid-area: col6;
    }

    .main_table_group .body_row > :last-child {
        min-width: unset;
        width: 100%;
    }

    .bg_img_bck {
        width: 85px;
    }

    .modal_bck_to_home {
        top: 15.34px;
        inset-inline-start: 20.43px;
    }

        .modal_bck_to_home img {
            width: 20px;
        }

    .search_found .main_table_group .body_row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 20px;
        gap: 13px;
        font-size: 15px;
        grid-template-areas:
            "col2 col3 col4 col6"
            "col5 col5 col5 col5";
    }

        .search_found .main_table_group .body_row > *:not(:last-child) {
            padding-inline-start: 10px;
        }

    .document_table .grid_row {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto auto;
        text-align: start;
        font-size: 15px;
    }

        .document_table .grid_row > div:nth-child(1) {
            display: none;
        }

        .document_table .grid_row div:nth-child(2),
        .document_table .grid_row div:nth-child(3),
        .document_table .grid_row div:nth-child(5) {
            grid-row: 1
        }

        .document_table .grid_row div:nth-child(2) {
            grid-column: 1;
        }

            .document_table .grid_row div:nth-child(2) img {
                width: 24px;
                margin-top: 6px;
            }

        .document_table .grid_row div:nth-child(3) {
            grid-column: 2;
            font-size: 15px;
        }

        .document_table .grid_row div:nth-child(5) {
            grid-column: 3;
            text-align: center;
        }

        .document_table .grid_row div:nth-child(4) {
            grid-row: 2;
            grid-column: 1 / span 3;
            width: 100%;
        }

        .document_table .grid_row div:nth-child(6) {
            grid-row: 3;
            grid-column: 1 / span 3;
        }

    .star-container svg {
        width: 18px;
    }

    .overlay svg {
        width: 140px;
    }

    .grid_row .judge_description > span {
        font-size: 13px;
        line-height: 21px;
    }

    .highlighted_search {
        height: 24px;
        line-height: 20px;
        padding-inline-end: 4px;
    }

    .search_found .main_table_group .body_row div:nth-child(1) {
        display: none;
    }

    .open_file_btn svg {
        margin-inline-end: 6px;
        width: 18px;
    }

    .documents_modal .indicator_titles h5 {
        font-size: 15px;
    }

    .display_text_modal .modal_sub_details {
        padding-inline-start: 10px;
    }

    .open_file_btn {
        padding: 0;
        padding-top: 10px;
        padding-bottom: 14px;
        border-radius: 31px;
        font-size: 17px;
        line-height: 26px;
        position: absolute;
        width: 90%;
        inset-inline-start: 5%;
        bottom: 8px;
    }

    .favourite_check svg {
        width: 30px;
    }

    .documents_modal .indicator_titles_area {
        width: 100%;
        gap: 14px;
        padding-bottom: 12px;
        flex-wrap: wrap;
    }

    .favourite_check {
        position: absolute;
        inset-inline-end: 14px;
        top: 13px;
    }

    .modal_title_icon {
        margin-inline-end: 8px;
        width: 21px;
    }

    .documents_modal .table-bg-blue {
        border-radius: 38px;
    }

    .branch_page {
        padding: 32px 0 120px 0;
    }

    .success_modal .modal-body {
        padding-bottom: 58px !important;
    }

    .progress-container {
        height: 4px;
    }

    .detailed_cell {
        /* padding-top: 6px; */
        display: flex;
        flex-direction: row;
    }

        .detailed_cell p {
            /* padding-block: 0; */
            flex: 1;
        }
        /* .detailed_cell p:first-child {
    padding-top: 0;
  } */
        .detailed_cell .detailed_cell_text {
            font-size: 11px;
            line-height: 16px;
            text-align: start;
            padding-inline-start: 0;
            padding-inline-end: 8px;
        }
    /* .body_row .detailed_cell:first-child{
    font-size: 15px;
  } */
    .main_table_group.align_top_table .grid_row .view_btn {
        margin-top: 12px;
    }

    .documents_modal .head-line span {
        margin-bottom: 18px;
    }

    .agreement-section {
        font-size: 15px;
        padding-inline: 16px;
    }

    .agreement-title {
        margin-bottom: 20px;
    }

    .indicator_info {
        gap: 10px;
    }

    .inner_indicator_info {
        gap: 24px;
    }

    .indicator_info .indicator_details {
        min-height: 80px;
    }

    .united_date {
        top: 20px;
    }

    .box_tabs .nav-link {
        padding: 24px 24px;
    }

    .statistics_page .group_header p {
        font-size: 21px;
    }

    .main_table_group.civil_departments_table .grid_row {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto auto;
        padding-bottom: 12px;
    }

        .main_table_group.civil_departments_table .grid_row > div:first-child {
            display: none;
        }

        .main_table_group.civil_departments_table .grid_row > div:before {
            font-size: 13px;
        }

        .main_table_group.civil_departments_table .grid_row > div:nth-child(2) {
            grid-row: 1;
            grid-column: 1 / span 5;
            text-align: center;
        }

        .main_table_group.civil_departments_table .grid_row > div:nth-child(3) {
            grid-row: 2;
            grid-column: 1 / span 5;
            /* margin-top: 0; */
            margin-bottom: 20px;
            padding-inline-start: 6px;
        }

        .main_table_group.civil_departments_table .grid_row > div:nth-child(4),
        .main_table_group.civil_departments_table .grid_row > div:nth-child(5),
        .main_table_group.civil_departments_table .grid_row > div:nth-child(6),
        .main_table_group.civil_departments_table .grid_row > div:nth-child(7),
        .main_table_group.civil_departments_table .grid_row > div:nth-child(8) {
            grid-row: 5;
            padding: 10px 10px 12px;
        }

            .main_table_group.civil_departments_table .grid_row > div:nth-child(4):before,
            .main_table_group.civil_departments_table .grid_row > div:nth-child(5):before,
            .main_table_group.civil_departments_table .grid_row > div:nth-child(6):before,
            .main_table_group.civil_departments_table .grid_row > div:nth-child(7):before,
            .main_table_group.civil_departments_table .grid_row > div:nth-child(8):before {
                color: unset;
                text-align: center;
            }

        .main_table_group.civil_departments_table .grid_row > div:nth-child(4) {
            grid-column: 1;
            border-radius: 0 21px 21px 0
        }

        .main_table_group.civil_departments_table .grid_row > div:nth-child(5) {
            grid-column: 2;
        }

        .main_table_group.civil_departments_table .grid_row > div:nth-child(6) {
            grid-column: 3;
        }

        .main_table_group.civil_departments_table .grid_row > div:nth-child(7) {
            grid-column: 4;
        }

        .main_table_group.civil_departments_table .grid_row > div:nth-child(8) {
            grid-column: 5;
            border-radius: 21px 0 0 21px;
        }

    .department_table_circle_number {
        width: 38px;
        height: 38px;
        font-size: 15px;
        line-height: 22px;
        margin-top: 6px;
        margin-bottom: 10px;
        margin-inline: auto;
    }

    .table_order_total {
        font-size: 19px;
        line-height: 27px;
    }

    .department_position h5 {
        font-size: 14px;
        line-height: 21px;
    }

    .card-box {
        padding: 24px;
        margin-top: 24px;
    }

    .card_box_title {
        font-size: 18px;
        margin-top: 0;
    }

    .circle-number {
        margin: 12px auto 12px;
    }

        .circle-number span {
            font-size: 38px;
            line-height: 45px;
        }

        .circle-number p {
            font-size: 11px;
            line-height: 17px;
            margin-bottom: 8px;
        }

    .gold-card .circle-number p {
        max-width: 71px;
    }

    .circle-number {
        width: 124px;
        height: 124px;
    }

    .card_box_details > div > div {
        font-size: 41px;
        line-height: 65px;
    }

    .body_row .number_spans > span {
        padding: 6px 16px;
    }

    .colored_before_table .grid_row div:not(:nth-child(2))::before {
        color: #B39D74 !important;
    }

    .colored_before_table .grid_row div:nth-child(3),
    .colored_before_table .grid_row div:nth-child(4) {
        margin-bottom: 16px;
    }

    .colored_before_table .body_row:after {
        top: 48.5%;
    }
}

@media (max-width: 768px) {
    .modal .modal-dialog {
        width: 100% !important;
    }

    .department_man {
        width: 38px;
        height: 38px;
        margin-inline-end: 8px;
    }

    .department_position p {
        display: none;
    }

    .preloader .preloader_logo {
        max-width: 140px;
        margin-bottom: 21px;
    }

    .issues-modal-footer svg {
        width: 12px;
    }
}

@media (min-width: 767px) {
    .container-fluid,
    .menu .container-fluid {
        padding-inline: 3.6%;
    }

    .verification_text {
        width: 496px;
    }

        .verification_text span {
            color: var(--alt-dark-color);
            font-weight: 450;
        }

    .popup-tab-btn {
        min-width: 316px;
    }

    .login_form {
        width: 522px;
    }
}

@media (min-width: 992px) {
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(100%);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .department_position {
        margin-top: 12px;
    }

    .body_row .number_spans > span {
        padding: 8px 24px;
    }

    .card-circle-subtitle {
        font-size: var(--font-size-text-sm);
        margin-top: 6px;
        margin-bottom: 21px;
        line-height: 19px;
    }

    .colored_cell > span {
        width: fit-content;
    }

    .detailed_cell p {
        min-height: 103px;
        padding-block: 18px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .detailed_cell p:not(:last-child) {
            border-bottom: 1px solid #e2e8ef;
        }

    .issues-modal-footer {
        padding-inline-start: 56px;
        transform: translateY(30px);
        gap: 55.8px;
        font-size: var(--font-size-text-17);
        line-height: 21px;
    }

        .issues-modal-footer svg {
            margin-inline-start: 6.78px;
            margin-inline-end: 9.92px;
        }

    .card-box {
        opacity: 0;
        transform: translateY(70px);
        animation: slideUp 0.4s ease-out forwards;
        padding: 25.5px 36px 41.97px 36px;
        min-height: 533px;
    }

    .gold-card {
        animation-delay: 0.05s;
    }

    .blue-card {
        animation-delay: 0.1s;
    }

    .brown-card {
        animation-delay: 0.15s;
    }

    .green-card {
        animation-delay: 0.2s;
    }

    .statistics_page .nav-tabs .nav-item {
        min-width: 177.09px;
        min-height: 137px;
    }

    .table_order_total {
        font-size: 26px;
        line-height: 33px;
        margin-bottom: 13px;
    }

    .green_indicator_table {
        padding-inline-start: 32px;
    }

    .login {
        padding-top: 45px;
    }

    .login,
    .branch_page {
        padding-bottom: 133px;
    }

    .branch_page {
        padding-top: 83.41px;
    }

    .table-bg-blue.reset_checboxes {
        max-height: 341px;
    }

    .pb_modal .modal-content {
        padding-bottom: 29.67px;
    }

    .table-bg-blue {
        overflow: auto;
        max-height: 605px;
    }

        .table-bg-blue.sm_height_table_bg_blue {
            min-height: 254px;
            max-height: 254px;
        }
    /* .search_result .main_table_group .grid_row {
    grid-template-columns:
    20.87% 20.87% 11.85% 13.85% 13.85% auto;
  } */
    .search_result .main_table_group .grid_row {
        grid-template-columns: 33.87% 22.87% 14.85% 28.41%;
    }

        .search_result .main_table_group .grid_row > *:nth-last-child(n + 3) {
            padding-inline-start: 21px;
        }

        .search_result .main_table_group .grid_row > *:nth-last-child(2) {
            text-align: center;
            justify-content: center;
        }

    .c-cardIII .inner_dash_card {
        gap: 21.39px;
        min-height: 350px;
    }

    .open_file_btn {
        padding: 13px 26px 22px 37px;
        border-radius: 35px;
        font-size: 27px;
        line-height: 34px;
        margin-inline-end: 29px;
    }

    .grid_row .blue_th div, .grid_row .black_th div {
        max-width: 100px;
        text-align: center;
    }

    .c-cardIII:hover .icon img {
        transform: scale(1.4);
    }

    .shadowed_table {
        padding-top: 12px;
    }
    /* .grayed_span{
    font-size: 25px;
    font-weight: 400;
    line-height: 31px;
    gap: 16px;
  }
  .grayed_span div {
    font-size: 13px;
    transition: all 0.3s ease-out;
    font-weight: 250;
  }
  .grayed_span div svg {
    width: 18px;
    margin-inline-end: 4px;
  }
  .grayed_span.sm_span:hover {
    color: var(--white-color);
    font-weight: 350;
    background-color: var(--bg-main-color);
  }
  .grayed_span.sm_span:hover div {
    display: block;
  } */
    .tooltip-text {
        position: absolute;
        top: -40px;
        right: 50%;
        transform: translateX(50%);
        color: #fff;
        font-size: 14px;
        white-space: nowrap;
        pointer-events: none;
        z-index: 10000000;
    }

    .tooltip-wrapper:hover .tooltip-text {
        display: block;
    }

    .page-indicator {
        padding-inline: 24px;
        padding-block: 10px;
        min-height: 46px;
    }

    .head-line span {
        padding-inline-end: 30px;
    }

    #currentPageNum {
        padding-inline-start: 26.3px;
        padding-inline-end: 19.05px;
    }

    #totalPages {
        padding-inline-start: 15.78px;
    }

    .session_view .head-line span {
        padding-inline-end: 40px;
    }

    .document_table div p label:not(:first-child) {
        margin-inline-start: 10px;
    }

    .documents_modal .modal__tap-pan-top {
        padding-inline-end: 34px;
    }

    .document_table div p {
        margin-top: -10px;
    }

    .centered_cell .grid_row > * {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .session_view .head-line {
        margin-bottom: 31.39px;
    }

    .head-line::before {
        content: "";
        position: absolute;
        width: 85%;
        top: 50%;
        height: 2px;
        background-color: rgba(126, 146, 157, 0.1);
        z-index: 80;
        left: 0;
    }

    .head-line {
        position: relative;
        margin-bottom: 16.25px;
    }

    .session_view .nav-link.active::after,
    .box_tabs .nav-link.active::after {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -32px;
    }

    .session_view .nav-link.gray_case.active::after,
    .box_tabs .nav-link.active::after {
        content: url(../images/active-link-down.svg);
    }

    .session_view .nav-link.beige_case.active::after {
        content: url(../images/active-link-down-colored.svg);
    }

    .session_view .nav-tabs {
        margin-inline: 42px;
        gap: 15.27px;
        margin-bottom: 35.74px;
    }

    .sessions_table .body_row div:first-of-type {
        border-top-right-radius: var(--border-raduis-large);
        border-bottom-right-radius: var(--border-raduis-large);
    }

    .sessions_table .body_row div:last-of-type {
        border-top-left-radius: var(--border-raduis-large);
        border-bottom-left-radius: var(--border-raduis-large);
        white-space: nowrap;
        padding-inline-start: 25px;
        padding-inline-end: 11.27px;
    }

    .total_cases_table {
        margin-top: 21px;
    }

        .total_cases_table .grid_row {
            grid-template-columns: 4.63% 9.80% 9.680% 18.79% 22.49% 18.86% auto;
        }

    .document_table .grid_row {
        grid-template-columns: 5.64% 8.30% 14.37% 32.61% 10.40% auto;
    }

        .document_table .grid_row .justify-content-lg-start {
            padding-inline-start: 28px;
        }

    .total_cases_table .grid_row > * {
        padding-inline: 17px;
    }

        .total_cases_table .grid_row > *:last-child,
        .document_table .grid_row > *:last-child {
            padding-inline-start: 16px;
        }

    .table-bg-blue.bg-ofblue_scrolled {
        max-height: 718.95px;
    }

    .case-header > *,
    .case-row > * {
        padding-inline: 40px;
    }

    .redistribution-title svg {
        margin-inline-end: 22px;
    }

    .judges-container {
        margin-bottom: 75.17px !important;
    }

    .judge-card.president-card {
        padding: 33.53px 22.62px 37.67px 29.46px;
    }

    .btn-container {
        text-align: end;
        margin-top: 28.54px;
    }

    .unallocated_provisions .select_all_label {
        margin-bottom: 30.28px !important;
    }

    .case-group .group_header {
        padding-inline-start: 30px;
        margin-bottom: 27.85px;
        margin-top: 30px;
    }

    .unallocated_provisions .table-bg-blue {
        padding: 31px 33.03px 51px 43px;
        max-height: 586.85px;
    }

    .numbered_table .grid_row {
        grid-template-columns: 66.9px 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .numbered_table .body_row {
        font-size: 25px;
    }

    .colored_tabs .nav-tabs {
        gap: 44px;
    }

    .detailed_cell .colored_cell {
        display: inline-block;
        min-width: 131px;
    }
    /* .detailed_cell p {
    padding: 16px 37px;
  } */
    .detailed_cell {
        display: block;
        padding-top: 10px;
        padding-bottom: 8px;
    }

    .reset_success {
        padding-top: 46.48px;
        padding-inline: 161.57px;
        padding-bottom: 113px;
    }

    .success_lottify {
        width: 326px;
        height: 325px;
    }

    .submit_area {
        padding: 7.86px 29.76px 6.93px 9.81px;
        background-color: rgba(218, 227, 234, 0.49);
        border-radius: 40px;
    }

    .password-strength {
        padding-inline-start: 29.21px;
        padding-block: 37px;
        position: relative;
    }

    .alert-success {
        min-width: 542px;
        padding: 13.5px 14px 11.5px 39.37px;
        border-radius: 41px;
    }

    .sessions_table .grid_row {
        grid-template-columns: 5.86% 15.55% 11.91% 7.08% 6.74% 6.74% 0.5% 11.64% 6.61% 7.08% auto;
        background-color: transparent;
    }

    .sessions_table .body_row > *:not(.table_separate) {
        background-color: var(--white-color);
    }

    .main_table_group.align_top_table .table_header {
        margin-bottom: 24px;
    }

    .amended_rulings .inner_bg_blue {
        padding-inline: 38px;
    }

    .main_table_group.align_top_table .body_row:not(:last-child) {
        margin-bottom: 18px;
    }

    .main_table_group.align_top_table .body_row:last-child {
        margin-bottom: 0;
    }

    .main_table_group.align_top_table {
        margin-top: 20.34px;
    }

        .main_table_group.align_top_table .table_header > div:nth-last-child(2) {
            padding-inline-start: 37px !important;
        }

    .documents_modal .modal_sub_details {
        margin-bottom: 37.43px;
    }

    .modal_sub_details {
        padding-inline-start: 29.42px;
        padding-inline-end: 20.5px;
    }
    /* .main_table_group.align_top_table .body_row > div:not(.detailed_cell) {
    padding-inline: 14px;
    padding-block: 27px;
  } */
    .main_table_group.align_top_table .body_row > div:not(.detailed_cell) {
        justify-content: center;
    }

    .main_table_group.align_top_table .body_row > div {
        justify-content: center;
        text-align: center;
    }
    /* .main_table_group.align_top_table .body_row > div:not(:last-child) {
    align-items: start;
  } */
    .grid_row .judge_description {
        text-align: start;
        padding-block: 32px;
    }

    .search_found .main_table_group .grid_row {
        grid-template-columns: 7.05% 13.54% 17.54% 8.26% 45.08% 8.54%;
    }

    .case-group .grid_row {
        grid-template-columns: 89.74px 89px 200px auto;
    }

    .case-group.redistrub .grid_row {
        grid-template-columns: 9.77% 9.77% 21.84% 21.84% 36.34%;
    }

    .colored_tabs .bordered_opacity {
        margin-bottom: 28px;
    }

    .bordered_opacity .input_groups .search_group .form-control {
        border-radius: 0;
        border-inline-end: 1px solid #e2e8ef !important;
    }

    .bordered_opacity .input_groups .col-12:last-child .search_group .form-control {
        border-inline-end: unset !important;
    }

    .bordered_opacity
    .input_groups
    .col-12:first-child
    .search_group
    .form-control {
        border-radius: 0 33px 33px 0;
    }

    .bordered_opacity
    .input_groups
    .col-12:last-child
    .search_group
    .form-control {
        border-radius: 33px 0 0 33px;
    }

    .inner_hero_card:not(.disabled_inner_card):hover .hero_card::before {
        transform: rotate(45deg) scale(1.4);
    }

    .inner_hero_card:not(.disabled_inner_card):hover .card_text h2 {
        transform: scale(1.1);
    }

    .inner_hero_card:hover .enter_btn {
        opacity: 0;
        visibility: hidden;
    }

    .inner_hero_card:not(.disabled_inner_card):hover .login_btn {
        visibility: visible;
        opacity: 1;
        bottom: 2px;
    }

    .inner_hero_card:not(.disabled_inner_card):hover {
        transform: translateY(-20px);
    }

    .view_all {
        margin-top: 38px;
    }

    .learn_more {
        margin-top: 30px;
        margin-bottom: 12px;
    }

    .one_section_content .learn_more {
        margin-top: 38px;
        padding-bottom: 42px;
    }

    .hero_card .card_text h2 {
        max-width: 170px;
        margin-top: 21px;
        margin-inline: auto;
    }

    .nav_card.active h3 + div {
        margin-top: -29.5px;
    }

    .c-cardIII .icon .card_sessions_icon {
        width: 56px;
    }

    .card_calculator_icon {
        width: 35px;
    }

    .card_search_icon {
        width: 45px;
    }

    .c-cardIII h4 {
        line-height: 44px;
    }

    .menu_content {
        margin-top: 112px;
    }

    .header__layout {
        padding-inline-end: 21.66px;
    }

    .dash_cards {
        margin-top: 32px;
    }

        .dash_cards.row {
            --bs-gutter-x: 2rem;
        }

    .main_modal .modal-body {
        padding: 0 57.87px 42.71px 49.12px !important;
    }

    .hid_model .choice_body {
        padding: 52.37px 71px 0 64px !important;
    }

    .google_verification_model .choice_body {
        padding: 52.37px 78.92px 64.86px 78.92px !important;
    }

    .otp-box {
        padding-top: 11.92px;
    }

    body.darker_body {
        background-image: url("../images/darker-bg.png");
    }

    .two_services .hero_card .card_text h2 {
        max-width: unset;
        font-size: 47px;
    }

    .modal-header {
        padding: 45.67px 75px 36.56px 51px;
    }

    .documents_modal .modal-header {
        padding: 45.67px 66.31px 37.56px 39.29px;
    }

    .nav-pills--edit .nav-link {
        color: rgba(12, 52, 67, 0.33);
        line-height: 31px;
        font-size: var(--font-size-text-25);
        padding: 0;
        padding-inline-end: 31.61px;
    }

        .nav-pills--edit .nav-link svg {
            margin-inline-end: 12.63px;
        }

    .modal__tap-pan-top {
        padding-inline-start: 41.21px;
        padding-inline-end: 17px;
        gap: 36px;
        margin-bottom: 40px;
    }

    .indicator_titles_area,
    .session_meta {
        gap: 44.66px;
    }

    .indicator {
        padding: 34px 37.5px 22.42px 27px;
        border-radius: 33px;
        margin-inline-end: 16px;
    }

    .indicator_info {
        gap: 41px;
        margin-inline-end: 45px;
    }

    .current_rolling {
        gap: 29.57px;
    }

    .indicator_details p {
        margin-top: 6px;
        margin-bottom: 16px;
        white-space: nowrap;
    }
    /* .indicator__boxbrsent {
    border-radius: 31px;
    padding: 17px 49.43px 18.92px 51px;
  } */
    .indicator_details.active .indicator_num {
        font-size: 65px;
        line-height: 81px;
    }

    .modal .modal-body {
        padding: 0 57.87px 42.71px 49.12px;
    }

    .session_main_modal .modal-body {
        min-width: 83%;
    }

    .modal .modal-dialog {
        max-width: fit-content !important;
        width: auto !important;
    }

    .session_main_modal .modal-dialog {
        min-width: 83%;
    }
    /* .session_main_modal .colored_tabs .nav-tabs {
    margin-inline-start: 55.05px;
  } */
    .second_modal .modal-dialog {
        min-width: 76%;
    }

    .third_modal .modal-dialog {
        min-width: 54.5%;
    }

    .fixed_wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        pointer-events: none;
    }

    aside,
    .dashboard_content {
        pointer-events: all;
    }

    .fixed_wrapper .container-fluid {
        max-width: 100%;
        width: 100%;
        height: 100%;
        display: flex;
        gap: 24px;
        padding-block-start: 243px;
    }

    .dash-inner .dashboard-footer {
        width: max-content;
        position: relative;
        right: 50%;
        transform: translateX(50%);
        line-height: 16.25px;
        padding-block: 46px;
    }

    .dashboard_content {
        flex: 1;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .dash-inner {
        display: flex;
        flex-direction: column;
        min-height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }

        .dash-inner::-webkit-scrollbar {
            display: none;
        }

    .main-content {
        flex: 1;
    }

    .search_result .main_table_group .body_row > *:last-child {
        padding-inline: 11px;
    }

    .body_row > *:not(:last-child) {
        border-inline-end: 1px solid #e2e8ef;
    }

    .body_row > *:not(.detailed_cell) {
        min-height: 76px;
        align-items: center;
    }

    .search_found .body_row > * {
        justify-content: center;
    }
    /* .c-table__indicator--up img {
    margin-top: -6px;
  } */
    .checkboxes .form-check {
        padding-right: 23px;
    }

    .custom-switch {
        margin-inline-end: 10px;
    }

    .bordered_opacity .input_groups:nth-child(2) {
        margin-top: 12.5px;
    }

    .bordered_opacity .search_group {
        height: 65.41px;
    }

    .bordered_opacity .checkboxes {
        margin-block: 25px;
    }

    .search_found .main_table_group .grid_row > div {
        padding-inline: 8px;
    }

    .edit_password_fields {
        padding-inline-end: 44.09px;
    }

    .edit_password_footer {
        margin-top: 50px;
    }

    .bordered_opacity .input_groups .col-12:last-child .custom-select.active .form-control {
        border-radius: 33px 0 0 0;
    }

    .civil_departments_table .grid_row {
        /* grid-template-columns:5.2% 8.1% 33% 17.9% 17.9% 17.9%; */
        grid-template-columns: 5.52% 8.61% 35.07% 12.7% 12.7% 12.7% 12.7%;
        overflow: hidden;
    }

    .table_department_president, .table_department_president_header {
        padding-inline: 28px;
    }
    /* .table_green_mini_card{
    padding-inline-start: 61px;
  } */
    .main_table_group.align_top_table .grid_row {
        grid-template-columns: 12.5% 12.21% 13.47% 1fr 20%;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    :root {
        --font-size-heading-4-01: 27px;
        --font-size-text-25: 20px;
        --font-size-text-largest: 19px;
        --font-size-text-01: 14px;
        --font-size-heading-5: 16px;
        --font-size-text-17: 14px;
        --font-size-text-01: 17px;
        --font-size-text-sm: 12px;
    }

    .grid_row.table_large_header h2 {
        font-size: 21px;
        line-height: 29px;
    }

    .grid_row.table_large_header .table_sm_text {
        font-size: 10px;
    }

    .preloader .preloader_logo {
        width: 180px;
    }

    .preloader_heading {
        font-size: 32px;
    }

    .preloader p, .preloader p .highlighted_text {
        font-size: 18px;
        line-height: 26px;
        max-width: 240px;
    }

    .department_table_circle_number {
        width: 48px;
        height: 48px;
        font-size: 21px;
    }

    .table_order_total {
        font-size: 21px;
        line-height: 30px;
    }

    .table_department_president, .table_department_president_header {
        padding-inline: 14px;
    }

    .table_green_mini_card, .green_header {
        padding-inline-start: 14px;
    }

    .statistics_page .group_header p {
        font-size: 21px;
    }

    .green_indicator_table {
        padding-inline-start: 18px;
    }

    .department_man {
        width: 40px;
        height: 40px;
        margin-inline-end: 9.48px;
    }

    .card-box {
        padding: 25.5px 36px 32px 36px;
        min-height: 430px;
    }

    .circle-number span {
        font-size: 54px;
        line-height: 72px;
    }

    .circle-number {
        width: 152px;
        height: 152px;
        padding-top: 22px;
    }

    .card_box_details > div > div {
        font-size: 42px;
        line-height: 68px;
    }

    .card_box_details > div > p {
        font-size: 13px;
    }

    .total_cases_table .grid_row {
        grid-template-columns: 4.63% 9.80% 9.680% 16.79% 22.49% 18.86% auto;
    }

    .nav-buttons {
        padding: 0 2%;
    }

        .nav-buttons button {
            width: 32px;
            height: 32px;
            border-radius: 10px;
        }

    .modal .modal-dialog {
        margin-top: 110px;
    }

    .body_row > *:not(.detailed_cell) {
        min-height: 61px;
    }

    .pdf-viewport canvas {
        zoom: 1.2;
    }

    .nav-buttons button img {
        width: 18px;
    }

    .bg_img_bck {
        width: 110px
    }

    .modal_bck_to_home {
        top: 4.34px;
        inset-inline-start: 22.43px;
    }

        .modal_bck_to_home img {
            width: 18px
        }

    .grid_row .judge_description > span {
        line-height: 26px;
    }

    .highlighted_search {
        height: 28px;
        line-height: 21px;
    }

    .page-menu li.item .icon {
        margin-inline-end: 8px;
    }

        .page-menu li.item .icon img {
            width: 24px;
        }

    .page-menu li.item a {
        padding: 16px 12px;
    }

    .page-menu li.item .list-title h6 {
        font-size: 17px;
    }

    .page-menu li.item .list-title span {
        font-size: 11px;
    }

    .c-dropdown .c-dropdown__img {
        width: 38px;
        height: 38px;
        margin-inline-end: 8px;
    }

    .c-dropdown .judge_name {
        margin-bottom: 4px;
        margin-inline-end: 26px;
        line-height: 23px;
    }

    .c-dropdown__title {
        font-size: 12px;
        line-height: 16px;
        padding: 2.71px 8px 2.29px 12px;
    }

    .logocontainer h5 {
        font-size: 15px;
    }

    .dropdown-item {
        padding: 18px 16px 18px 16px;
    }

    .c-dropdown .dropdown-toggle::after {
        top: 31px;
    }

    .c-dropdown .dropdown-menu {
        padding-top: 83px;
    }

    .page-menu li.item:not(:first-child) .icon img {
        width: 16px;
    }

    .notificatio-profile {
        gap: 24px;
    }

    .form-check .form-check-input {
        width: 28px;
        height: 28px;
    }

    .form-check .form-check-label {
        padding-inline-start: 6px;
    }

    .search_icon {
        inset-inline-start: 18px;
    }

    .control-bar span:not(.tooltip-text) {
        font-size: 11px;
        margin-inline-end: 11px;
    }

    .control-bar h5 {
        line-height: 12px;
    }

    .pdf_info img {
        width: 32px;
    }

    .bordered_opacity .search_group .form-control {
        padding-inline-start: 52px;
    }

    .select-options li {
        padding: 10px 52px;
    }
    /* .indicator__boxbrsent {
    padding: 8px 22.43px 9.92px 16px;
    white-space: nowrap;
  } */
    .indicator_num {
        font-size: 28px;
    }

    .input-label {
        font-size: 17px;
    }

    .search_group .input-label {
        inset-inline-start: 52px;
    }

    .search_icon svg {
        width: 18px;
    }

    .flatpickr-months {
        padding: 14px 12px 0 14px;
    }

        .flatpickr-months .flatpickr-prev-month.flatpickr-prev-month {
            left: 9px;
        }

        .flatpickr-months .flatpickr-next-month.flatpickr-next-month {
            right: 9px;
        }

    .login_btn {
        font-size: 17px;
        padding: 12px 16px;
    }

    .flatpickr-day {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .login_btn img {
        margin-inline-end: 10px;
        width: 18px;
    }

    .Moj_logo img,
    .Yasir_logo img {
        width: 150px;
    }

    .Yasir_logo {
        padding-inline-start: 52px;
    }

    .chat_button img {
        width: 64px;
    }

    .chat_button {
        bottom: 65px;
    }

    .search_result h3 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .main_login_modal .main_login_modal_text h3 {
        font-size: 32px;
        margin-top: 8px;
        margin-bottom: 17px;
    }

    .popup-tab-btn {
        min-width: 250px;
    }

        .popup-tab-btn p {
            font-size: 21px;
        }

    .main_login_modal .main_login_modal_text + div {
        gap: 21px;
    }

    .c-cardIII span {
        font-size: 16px;
    }

    .body_row {
        font-size: 14px;
    }

    .search_btn {
        font-size: 20px;
        line-height: 24px;
        padding: 10px 39.87px 13.65px 47px;
    }

    .search_lottie {
        width: 140px;
        height: 140px;
    }

    .modal .modal-body {
        padding: 0 32px 24px 32px;
    }

    .open_file_btn {
        font-size: 21px;
        line-height: 26px;
        margin-inline-end: 16px;
        padding: 10px 26px 16px 37px;
    }

        .open_file_btn svg {
            width: 20px;
            margin-inline-end: 6px;
        }

    .favourite_check svg {
        width: 46px;
    }

    .modal-header, .documents_modal .modal-header {
        padding: 24.67px 39.31px 24.56px 39.29px;
    }

    .head-line span {
        font-size: 19px;
    }

    .head-line span {
        padding-inline-end: 21px;
    }

    .remote_sessions_Yasir_logo {
        width: 68px;
    }

    .view_btn, .view_btn.document_btn {
        padding: 6px 12px 12px 20px;
        font-size: 17px;
        margin-inline: auto;
    }

    .session_view .modal-dialog {
        min-width: 100% !important;
    }

    .view_btn img {
        padding-inline-end: 9px;
    }

    .edit_password_footer {
        margin-top: unset;
    }

    .main_alt_btn {
        margin-bottom: 24px;
    }

    .password-strength {
        padding-block: 14px;
    }

    .submit_area .main_btn {
        padding-block: 12px;
    }

    .input_group .form-control {
        font-size: 20px;
    }

    .settings_sidebar .nav-link {
        padding-block: 18px;
        min-width: 228.81px;
    }

        .settings_sidebar .nav-link img {
            width: 18.58px;
        }

    .form_heading img {
        margin-inline-end: 18.58px;
        width: 25px;
    }

    .page_name {
        font-size: 28px;
        line-height: 35px;
        margin-bottom: 12.91px;
    }

    .targeted_input_moving.input_group .form-control {
        height: 62px;
    }

    .targeted_input_moving .form-control:not(:placeholder-shown), .targeted_input_moving:focus-within .form-control, .targeted_input_moving:focus-within .form-control, .date_group.has-value .form-control {
        padding-top: 28px;
    }

    .indicator_titles_area, .session_meta {
        gap: 18.66px;
    }

    .indicator_info {
        gap: 18px;
        margin-inline-end: 21px;
    }
    /* .indicator {
    padding: 7px 22.5px 7px 9px;
  } */
    .indicator_details h5 {
        font-size: 18px;
    }

    .indicator_details.active .indicator_num {
        font-size: 51px;
        line-height: 64px;
    }

    .close-all img {
        width: 32px;
    }

    .modal__tap-pan-top {
        padding-inline: 0;
        gap: 18px;
    }

    .session_status .main_btn, .session_date_details .main_btn {
        font-size: 19px;
        padding-bottom: 14px;
        padding-top: 8px;
    }

    .table_header {
        font-size: 14px;
    }

    .document_table .grid_row .justify-content-lg-start {
        padding-inline-start: 18px;
    }

    .document_table .body_row div[data-label="النوع"] img {
        width: 32px;
    }

    .document_table div p label {
        font-size: 11px;
    }

    .document_table div p {
        margin-top: -4px;
    }

    .session_view .head-line span {
        padding-inline-end: 20px;
        font-size: 24px;
    }

    .total_cases_table .grid_row > * {
        padding-inline: 8px;
        justify-content: center;
    }

        .total_cases_table .grid_row > *:last-child, .document_table .grid_row > *:last-child {
            padding-inline-start: 8px;
        }

    .table-bg-blue {
        padding-inline: 21px;
    }

    .sessions_table .grid_row {
        grid-template-columns: 5.86% 13.55% 9.91% 7.08% 6.74% 6.74% 0.5% 9.64% 6.61% 7.08% auto;
    }

    .no_found p {
        font-size: 26px;
    }

    #currentPageNum {
        padding-inline-start: 9.3px;
        padding-inline-end: 6.05px;
    }

    .control-bar button {
        padding-inline: 12px;
    }

        .control-bar button img {
            width: 24px;
        }

    .modal_bck_to_home span {
        font-size: 13px;
    }

    .branch_page {
        padding-top: 40px;
    }

    .fixed_wrapper .container-fluid {
        padding-block-start: 170px;
    }

    .page-menu {
        margin-top: 25px;
    }
}

@media (min-width: 1024px) {
    .login .Yasir_logo {
        padding-inline-start: 51px;
    }

    .go_back img {
        padding-inline-end: 20px;
    }

    header:not(.header) .Moj_logo {
        margin-inline-end: 72px;
    }
}

@media (min-width: 1200px) and (max-width: 1600px) {
    :root {
        --font-size-heading-5: 18px;
        --font-size-text-01: 17px;
        --font-size-text-17: 15px;
        --font-size-text-sm: 13px;
    }

    .preloader .preloader_logo {
        max-width: 190px;
        margin-bottom: 24px;
    }

    .preloader p {
        max-width: 300px;
    }

        .preloader p, .preloader p .highlighted_text {
            font-size: 21px;
        }

    .preloader_heading {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .table_department_president, .table_department_president_header {
        padding-inline: 16px;
    }

    .department_table_circle_number {
        width: 58px;
        height: 58px;
        font-size: 24px;
        line-height: 32px;
    }

    .table_green_mini_card, .green_header {
        padding-inline-start: 32px;
    }

    .green_indicator_table {
        padding-inline-start: 24px;
    }

    .search_group .form-control {
        padding-inline-start: 71px;
    }

    .circle-number span {
        font-size: 54px;
        line-height: 78px;
    }

    .circle-number {
        width: 154px;
        height: 154px;
        padding-top: 27px;
    }

    .card_box_title {
        font-size: 28px;
    }

    .card_box_details > div > span {
        font-size: 19px;
    }

    .card-box {
        min-height: 492px;
        padding: 25.5px 36px 36px 36px;
    }

    .card_box_details > div > div {
        font-size: 54px;
    }

    .card_box_details > div > p {
        max-width: 95px;
    }

    .branch_page {
        padding-top: 52px;
    }
    /* .detailed_cell p {
    padding: 10px 20px;
  } */
    .modal-header {
        padding: 36.56px 51px 36.56px 51px;
    }

    .no_cases_found p {
        font-size: 38px;
    }
    /* .bordered_opacity .search_group */
    .modal_bck_to_home {
        top: 9.34px;
        inset-inline-start: 20.43px;
    }

        .modal_bck_to_home span {
            font-size: 13px;
        }
    /* .detailed_cell .detailed_cell_text{
    display: block;
  } */
    .sessions_table .grid_row {
        grid-template-columns: 5.86% 15.55% 9.91% 7.08% 6.74% 6.74% 0.5% 9.64% 6.61% 7.08% auto;
    }
    /* .indicator__boxbrsent{
    padding: 8px 22.43px 10.92px 20px;
  } */
    .view_btn, .view_btn.document_btn {
        padding: 10px 14px 16px 26px;
        font-size: 21px;
        justify-content: center;
    }

    .lg_modal .modal-dialog {
        min-width: 95%
    }

    .total_cases_table .grid_row {
        grid-template-columns: 4.63% 9.80% 9.680% 17.79% 21.49% 18.86% auto;
    }

    .dropdown-item {
        padding: 23.5px 22.43px 23.5px 22px;
    }

    .submit_area .main_btn {
        padding: 8px 32px;
    }

    .main_alt_btn {
        padding: 9.23px 20.71px 13.05px 20.24px;
    }

    .targeted_input_moving.input_group .form-control, .bordered_opacity .search_group, .form-control.flatpickr-input {
        height: 56.42px;
    }

    .form-control.flatpickr-input {
        cursor: pointer;
        min-height: 56.42px;
        max-height: 56.42px;
    }

    .input_group_icon img {
        width: 20px;
    }

    .input_group .form-control, .bordered_opacity .search_group .form-control {
        padding-inline-start: 56px;
    }

    .select-options li {
        padding: 15px 56px;
    }

    .input-label {
        inset-inline-start: 56px;
    }

    .search_icon {
        inset-inline-start: 20px;
    }

    .targeted_input_moving .form-control:not(:placeholder-shown),
    .targeted_input_moving:focus-within .form-control,
    .targeted_input_moving:focus-within .form-control,
    .date_group.has-value .form-control {
        padding-top: 32px;
    }

    .flatpickr-calendar.static.open {
        width: auto;
    }

    .remote_sessions_Yasir_logo {
        width: 62px;
    }

    .documents_modal .modal-header {
        padding: 38px 50px;
        font-size: 20px;
        line-height: 30px;
    }

    .indicator_titles h5 {
        font-size: 18px;
    }

    .modal .modal-body {
        padding: 0 40.87px 42.71px 40.12px;
    }

    .documents_modal .modal_sub_details {
        margin-bottom: 27.43px;
    }

    .open_file_btn {
        font-size: 21px;
        padding: 9px 26px 18px 37px;
    }

    .page-menu li.item a {
        padding: 20px 16px 24px;
    }

    .page-menu li.item .list-title h6 {
        font-size: 19px;
    }

    .c-dropdown .c-dropdown__img {
        width: 48px;
        height: 48px;
        margin-inline-end: 13px;
    }

    .c-dropdown {
        padding: 10.36px 13px 10.64px 24.24px;
    }

    .notificatio-profile {
        gap: 40px;
    }

        .notificatio-profile .logout img {
            margin-inline-start: 10.15px;
        }

    .input-label {
        font-size: 16px;
    }

    .flatpickr-months .flatpickr-next-month.flatpickr-prev-month,
    .flatpickr-months .flatpickr-prev-month.flatpickr-prev-month {
        left: 8px;
    }

    .flatpickr-months .flatpickr-next-month.flatpickr-next-month,
    .flatpickr-months .flatpickr-prev-month.flatpickr-next-month {
        right: 8px;
    }

    .targeted_input_moving:focus-within .input-label,
    .targeted_input_moving:focus-within .input-label,
    .targeted_input_moving .form-control:not(:placeholder-shown) + .input-label,
    .date_group.has-value .input-label {
        font-size: 13px;
    }

    .input_group .form-control {
        font-size: 16px;
    }

    .toggle-password {
        inset-inline-end: 22px;
    }

    .body_row {
        font-size: 19px;
    }

    .search_result .main_table_group .body_row > *:last-child {
        justify-content: end;
    }

        .search_result .main_table_group .body_row > *:last-child button {
            width: 100%;
            font-size: 20px;
        }

    .grid_row .judge_description > span {
        font-size: 13px;
        line-height: 26px;
    }

    .copy_btn {
        padding: 4px 10px;
        font-size: 12px;
        inset-inline-end: 56px;
    }

    .page_name {
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 15.91px;
    }

    .settings_sidebar .nav-link {
        padding: 16px 32px;
        font-size: 18px;
    }

    .form_heading img {
        margin-inline-end: 19.58px;
        width: 28px;
    }

    .alert-success {
        min-width: 482px;
        padding: 13.5px 14px 11.5px 39.37px;
        height: 90px;
    }

    .copy_btn img {
        width: 14px;
    }

    .highlighted_search {
        height: 28px;
    }

    .overlay svg {
        width: 160px;
    }

    .search_lottie {
        width: 150px;
        height: 150px;
    }

    .colored_tabs .bordered_opacity {
        margin-bottom: 18px;
    }

    .search_btn {
        padding: 9px 39.87px 12.65px 47px;
        font-size: 20px;
    }

    .colored_tabs .nav-tabs .nav-link {
        font-size: 20px;
    }

    .bordered_opacity .checkboxes_container h4 {
        padding-inline-end: 15px;
    }

    .form-check .form-check-input {
        width: 28px;
        height: 28px;
    }

    .bordered_opacity .checkboxes {
        flex-wrap: wrap;
    }

    .form-check .form-check-label {
        font-size: 15px;
        padding-inline-start: 4.16px;
    }

    .nav-buttons {
        padding: 0 4%;
    }

    .indicator_details.active .indicator_num {
        font-size: 54px;
        line-height: 68px;
    }

    .indicator_info {
        gap: 21px;
        margin-inline-end: 24px;
    }

    .total_cases_table .grid_row > * {
        justify-content: center;
    }

    .bg_img_bck {
        width: 120px;
    }

    .fixed_wrapper .container-fluid {
        padding-block-start: 200px;
    }

    .page-menu {
        margin-top: 18px;
    }
}

@media (min-width: 1440px) {
    .container-fluid,
    .menu .container-fluid {
        padding-inline: 9.6%;
    }

    .main_login_modal .main_login_modal_text {
        padding-inline-end: 41.88px;
    }

    .session_view .nav-tabs .nav-item {
        min-width: 147px;
    }

    .date_group.has-value .flatpickr-input {
        padding-top: 24px;
    }
}

@media (min-width: 1600px) {
    #pills-statics {
        margin-left: -20px;
        margin-right: -28px;
    }

    .table_large_header > div:first-child {
        padding-inline-start: 42.16px;
        padding-top: 16px;
    }

    .container-fluid,
    .menu .container-fluid {
        padding-inline: 13.5%;
    }

    .fixed_wrapper .container-fluid {
        max-width: 1430px;
        padding-inline: 0;
        gap: 39px;
    }

    .search_result .main_table_group .grid_row > *:first-child {
        padding-inline-start: 31px;
    }

    .search_result .main_table_group .grid_row > *:nth-child(2) {
        padding-inline-start: 48px;
    }

    .c-cardIII .inner_dash_card {
        gap: 51.39px;
        min-height: 519.64px;
    }

    .document_table .grid_row {
        grid-template-columns: 5.64% 8.30% 12.37% 40.61% 10.40% auto;
    }

    .indicator_details.active h5 {
        white-space: nowrap
    }

    .date_group.has-value .flatpickr-input {
        padding-top: 28px;
    }

    .main_table_group.align_top_table .grid_row {
        grid-template-columns: 12.5% 12.21% 13.47% 1fr 18.5%;
    }
}

@media (min-width: 1900px) {
    .logocontainer h5 {
        margin-top: 11.76px;
    }

    .session_view .nav-tabs .nav-item {
        min-width: 153.73px;
    }

    .documents_modal .modal-dialog {
        min-width: 1339px;
    }

    .c-cardIII .icon .card_sessions_icon {
        width: 124px;
        height: 101px;
    }

    .card_calculator_icon {
        width: 71.3px;
        height: 95.35px;
    }

    .card_search_icon {
        width: 80.34px;
        height: 80.2px;
    }

    .c-cardIII h4 {
        line-height: 44px;
    }

    .session_view .nav-tabs .nav-item {
        min-width: 193.73px;
    }

    .dash_cards.row {
        --bs-gutter-x: 3rem;
    }

    .search_result .main_table_group .grid_row {
        grid-template-columns: 36.87% 22.87% 14.85% 25.41%;
    }
}

@media (min-width: 1921px) {
    .container-fluid,
    .container-fluid,
    .menu .container-fluid {
        max-width: 1401.6px;
        padding-inline: unset;
    }

    .login main {
        height: calc(100vh - 252px);
        padding-top: unset;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .nav-buttons {
        max-width: 1680px;
        margin-inline: auto;
        padding-inline: 0;
    }

    .modal.show .modal-dialog {
        height: fit-content;
    }

    .assign_qadi .modal-dialog-scrollable .modal-content {
        width: fit-content;
        margin-inline: auto;
    }
}

@media (max-height: 730px) and (max-width: 992px) {
    .menu {
        padding-top: 130px;
    }

    .menu_content ul li a {
        margin-bottom: 24px;
    }

    .menu_footer {
        bottom: 32px;
    }
}

@media (max-width: 400px) {
    .highlighted_text img {
        width: 100%;
    }

    .modal .modal-dialog,
    .modal .modal-body {
        padding-inline: 10px;
    }

    .hid_verify_btn img {
        width: 54px;
    }

    .google_verify_btn img {
        margin-bottom: 14px;
        width: 49px;
    }

    .main_login_modal .main_login_modal_text p {
        margin-bottom: 20px;
    }

    .popup-tab-btn p {
        font-size: 13px;
    }

    .main_login_modal .main_login_modal_text + div {
        gap: 5px;
    }

    .container-fluid, .menu .container-fluid {
        padding-inline: 14px;
    }

    .session_meta .indicator_titles h5 {
        font-size: 13px;
    }
}
#agreement_text {
    overflow-wrap: anywhere;
}