* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Almarai', sans-serif;
}

:root {
    --main-color: #003A74;
    --second-color: #F5D13D;

}

a {
    text-decoration: none;
}

.main-color {
    color: var(--main-color);
}

/* --------------------------- */
/* register page  */
.register_sec a {
    color: var(--main-color);
    text-decoration: underline;
}

.register_sec .container {
    /* min-height: 100vh; */
    background-color: #fff;
}

.login-top {
    left: 0;
    top: 0;
}

.login-bottom {
    right: 0;
    bottom: 0;
}


.social-media-footer {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: transparent !important;

}

.social-media-footer a {
    color: #003A74;
    text-decoration: none;
}

.social-media-footer .separator {
    color: #003A74;
    margin: 0 5px;
}


.register_sec h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: 0em;
}

.register_sec .register_box {
    border: 3.58px solid #003A741A;
    box-shadow: 0px 0px 20px 4px #4CAF501A;
    border-radius: 50px;
    background-color: #fff;
}

.inputform {
    border: 1px solid #777777;
    border-radius: 50px;
    height: 50px;
    width: 100%;
    outline: none;
    box-shadow: none;
    padding: 16px;
}

textarea.inputform {
    height: 100px;
    border-radius: 16px;
    font-size: 20px;
}

.inputform:focus {
    outline: none;
    box-shadow: none;
}


.input-group.inputform {
    padding: 0;
}

.input-group.inputform input,
.input-group.inputform select {
    border-radius: 50px;
    border: none;
    outline: none;
    box-shadow: none;
    padding-left: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;

}

textarea.inputform::placeholder,
.input-group.inputform input::placeholder {
    color: #D9D9D9;
    font-size: 20px;
}

.input-group.inputform input {
    border-radius: 50px;
}

.input-group.inputform span {
    padding: 16px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border: none;
    background-color: transparent;
    color: var(--second-color);
}

.submit-btn {
    background-color: var(--main-color);
    color: #fff;
    height: 50px;
    border-radius: 0px 16px 0px 16px;
    width: 100%;
    border: none;
    font-size: 20px;
    font-weight: 700;
    line-height: 41px;
    letter-spacing: 0em;
    display: flex;
    align-items: center;
    justify-content: center;

}

.redirect-link {
    color: var(--main-color);
    font-size: 28px;
    font-weight: 700;
    line-height: 41px;
    letter-spacing: 0em;
    text-decoration: underline;
}


.form-check {
    text-align: start;
}

/* /* 
.form-check-label {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    color: #ccc;
    display: flex;
    align-items: center;

}

.form-check-label a {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0em;
    text-decoration: underline;
    color: var(--second-color);
}

.form-check-input {
    cursor: pointer;
    outline: none;
    border-color: #ccc;
    width: 22px;
    height: 22px;
} */

.form-check-input:focus {
    box-shadow: none;
}

.form-check-input[type=checkbox] {
    outline: none;
}

.form-check-input[type=checkbox]:checked {
    background-color: var(--second-color);
    border-color: var(--second-color);

}

.login-type {
    min-height: 100vh;
}

.login-select-type .form-check-label {
    border: 2px solid #003A74;
    background: #003A741A;
    height: 100px;
    gap: 0px;
    border-radius: 0px 16px 0px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 16px;

}

.login-select-type .form-check-input[type=radio]:checked~.form-check-label {
    background-color: var(--main-color);
    color: #fff;
}

.login-select-type .form-check {
    width: 50%;
}

@media (max-width:500px) {

    .login-select-type .form-check {
        width: 100%;
    }
}

.policy-check .form-check-label {
    cursor: pointer;
}

.policy-check a {
    font-size: 18px;
    color: var(--main-color);
}

.policy-check .form-check-input[type=checkbox]:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);

}

/* ------------------ */
/* dashboard */

body {
    overflow-x: hidden;
}

.soon-span {
    color: #FF0000;
    font-size: 12px;

}

.header {
    width: 100%;
    background-color: #fff;
    border: 1px solid #E2E2E2
}

.header .left-menu .btn {
    margin-left: 10px;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 75px;
    width: 250px;
    height: calc(100vh - 75px);
    background-color: var(--main-color);
    color: white;
    padding: 0px;
    transition: all 0.3s;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow-y: auto;

}

.sidebar.collapsed {
    left: -250px;
}

.content {
    margin-left: 250px;
    padding: 16px;
    transition: all 0.3s;
}

.content.expanded {
    margin-left: 0;
}

.aside-link {
    color: #fff;
    border-radius: -10px;
    position: relative;
    border-radius: 50px 0 0 50px;
    background-color: var(--main-color);
    position: relative;
    font-size: 20px;
    font-weight: 300;
    line-height: 26.78px;
    padding: 8px 16px;
    transition: all ease-in-out;

}

.aside-link.active {
    background-color: #fff;
    color: var(--main-color);
}

.aside-link.logout-link img {
    width: 30px;
    height: 30px;
}

.join_btn {
    border-radius: 0px 16px 0px 16px;
    background-color: transparent;
    border: none;
    background-color: var(--main-color);
    padding: 6px 20px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.fav_btn,
.notify_btn {
    background-color: transparent;
    border: none;
    position: relative;
}

.notify_btn span {
    position: absolute;
    top: 0;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_search {
    background-color: transparent;
    display: flex;
    align-items: center;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    padding: 0;
}

.header_search button {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    padding: 8px;
    color: var(--main-color);
    height: 100%;
}

.header_search input {
    border: none;
    outline: none;
    padding: 6px 8px;
}

@media (max-width: 992px) {
    .sidebar {
        left: -250px;
    }

    .sidebar.collapsed {
        left: 0;
    }

    .content {
        margin-left: 0;
    }

    .res-header {
        width: 100%;
    }

}

.collapse-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 8px;
    border: none;
    border-radius: 4px;
    background-color: var(--main-color);
    color: #fff;

}

/* ------------- */
/* index page  */

.page_title {
    font-weight: 400;
    line-height: 37.94px;
}

.box {
    box-shadow: 0px 4px 12px 0px #00000040;
    border-radius: 16px;
}

.time_select .form-check-label {
    color: #777;
    font-size: 17px;
    font-weight: 300;
    line-height: 18.97px;
    cursor: pointer;
}

.time_select input:checked~.form-check-label {
    color: var(--main-color);
    text-decoration: underline;
}

.index_chats h4 {
    font-size: 24px;
    font-weight: 300;
    line-height: 26.78px;
    color: #777;
    border-bottom: 1px solid #ccc;
}

.all_index_chats {
    max-height: 426px;
    overflow-y: auto;
}

.chat_inbox {
    color: #00000080;
    border-bottom: 1px solid #ccc;
}

.chat_inbox img {
    width: 40px;
    height: 40px;
    border-radius: 50%;

}

.custom_table th,
.custom_table td {
    vertical-align: middle;
}

.custom_table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    border: 1px solid #DADADA;
    box-shadow: 0px 4px 12px 0px #00000040;
}

.custom_table tbody {
    border: 1px solid #ccc;
}

.custom_table thead {
    background: #003A741A;
}

.custom_table th {
    background-color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 23.44px;
    color: var(--main-color);
}

.custom_table td {
    font-size: 20px;
    font-weight: 300;
    color: #00000080;
}

.account-lable img {
    width: 30px;
    height: 30px;
    border-radius: 50%;

}



.custom_table thead tr:first-child th:first-child {
    border-top-left-radius: 16px;
}

.custom_table thead tr:first-child th:last-child {
    border-top-right-radius: 16px;
}

.custom_table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}

.custom_table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}


.page-sections .dropdown-toggle {
    background-color: var(--main-color);
    border: var(--main-color);

}

.page-sections .dropdown-toggle::after {
    display: none;
}

.page-sections .dropdown-menu {
    width: 200px;
}

.page-sections .dropdown-menu p {
    border-bottom: 1px solid #DADADA;
    color: var(--main-color);
    text-align: center;
    margin: 0;
    padding: 8px;
    font-weight: 400;
    line-height: 23.44px;

}

.page-sections .dropdown-menu .form-check .form-check-label {
    cursor: pointer;
}

.page-sections .dropdown-menu .form-check-input[type=checkbox]:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.missions_con {
    border: 1px solid #DADADA;
    border-radius: 16px;

}

.missions_con .missions_con_title {
    border-bottom: 1px solid #DADADA
}

.missions_con .missions_con_title h5 {
    font-size: 17px;
    font-weight: 300;
    line-height: 18.97px;
    text-align: right;
    color: #1E1E1E;
}

.missions_con .missions_con_title p {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #4040401A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 300;
    line-height: 18.97px;
    text-align: right;
    color: #00000080;

}

.mission_box {
    box-shadow: 0px 4px 12px 0px #00000040;
    background-color: #fff;
    border-radius: 4px;
}

.mission_status {
    font-size: 14px;
    font-weight: 300;
    line-height: 13.39px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 50px;
    height: fit-content;
}

.mission_status.high {
    background: #006C351A;
    color: #006C35;
}

.mission_dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    color: #00000080;

}

.mission_dropdown .dropdown-toggle::after {
    display: none;
}

/* ------------------------ */
/* plans page  */


.main_plan_card {
    border: 1px solid var(--main-color);
    border-radius: 16px;
    color: var(--main-color);
}

.main_plan_card h4 {
    font-size: 43px;
    font-weight: 300;
    line-height: 47.99px;
}

.customer_plan_card ul,
.main_plan_card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: start;
}

.customer_plan_card li,
.main_plan_card li {
    font-size: 24px;
    font-weight: 300;
    line-height: 37.94px;
    letter-spacing: 0.20000000298023224px;
    text-align: right;
    margin: 8px 0;
}

.main_plan_card .more-link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 300;
    line-height: 26.78px;
    background-color: var(--main-color);
    border-radius: 16px;
    padding: 8px;
    color: #fff;
}

.main_plan_card.active_plan {
    color: #fff;
    background-color: var(--main-color);


}

.main_plan_card.active_plan .more-link {
    background-color: #fff;
    color: var(--main-color);
}

.breadcrumb a {
    color: #777;
}

/* --------------------- */
/* Consultes page  */
.main-btn {
    padding: 8px 24px;
    border-radius: 0px 16px 0px 16px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.second-btn {
    padding: 8px 24px;
    border-radius: 0px 16px 0px 16px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.type_select .form-check-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 20px;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    background: #003A741A;
    color: var(--main-color);
    border-radius: 16px;

}

.type_select input:checked~.form-check-label {
    background-color: var(--main-color);
    color: #fff;
}

.grid_tabs .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 2px solid var(--main-color);
    color: var(--main-color);
}

.grid_tabs .nav-link.active {
    background-color: var(--main-color);
    color: #fff;
}

.consulte_card.archive_card {
    border: 1px solid #DADADA;
    box-shadow: none;
}

.consulte_card {
    box-shadow: 0px 4px 12px 0px #00000040;
    border-radius: 16px;
    color: #777777;
}

.consultes_status {
    gap: 5.85px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 300;
    line-height: 19.57px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
}

.consultes_status.wating {
    background: #003A741A;
    color: var(--main-color);
}

.consultes_status.done {
    background: #3CB3711A;
    color: #3CB371;
}

/* -------------------------- */
/* consulte page */

.consulte_status {
    border-radius: 0px 16px 0px 16px;
    min-width: 150px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #003A741A;
    color: var(--main-color);
    font-size: 20px;
    font-weight: 300;
    line-height: 26.78px;
}

.consulte_notes {
    border: 1px solid #E2E2E2;
    border-radius: 16px;
    min-height: 100px;
}

.main-btn {
    border-radius: 0px 16px 0px 16px;
    height: 45px;
    min-width: 150px;
    border: none;
    background-color: var(--main-color);
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    line-height: 26.78px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--main-color);
    max-width: fit-content;

}

.second-btn {
    border-radius: 0px 16px 0px 16px;
    height: 45px;
    min-width: 150px;
    border: none;
    background-color: transparent;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-size: 20px;
    font-weight: 300;
    line-height: 26.78px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.consulte_card .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background-color: transparent;
    border: none;
}

.consulte_card .dropdown-toggle::after {
    display: none;
}

.archive_drop .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background-color: transparent;
    border: none;
}

.archive_drop .dropdown-toggle::after {
    display: none;
}

.archive_drop .dropdown-menu {
    box-shadow: 0px 4px 12px 0px #00000040;
    border-radius: 8px;
    border: none;
    padding: 0;
}

.archive_drop .dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    border-bottom: 1px solid #ccc;
    color: #777;
}

.archive_drop .dropdown-menu a:hover {
    background-color: transparent;
    color: var(--main-color);
}

.archive_num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--main-color);
    color: #fff;
}

.closeBtn {
    border: none;
    background-color: transparent;
}

.main-modal .modal-content {
    border-radius: 50px;
}

/* --------------- */
.main-table th {
    background: #003A741A !important;
    color: var(--main-color) !important;
}

/* Style checkboxes */
.main-table .dt-checkboxes,
.main-table .dt-checkboxes-select-all {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Center align checkbox column */
.main-table .dt-body-center {
    text-align: center;
    vertical-align: middle;
}

/* Style for selected rows */
.main-table .selected {
    background-color: rgba(0, 0, 0, 0.05) !important;
}

.main-table .form-check-input[type=checkbox]:checked {
    background-color: var(--main-color);
    border: var(--main-color);
}

.main-table.table.dataTable tbody th.dt-body-center,
.main-table.table.dataTable tbody td.dt-body-center {
    vertical-align: middle;

}

/* ---------------- */
/* chat page  */

.message-actions .dropdown-toggle::after {
    display: none;
}



.at-conv .chat-message .message-content {
    word-break: break-all;
}

.in-message p {
    word-break: break-all;
}

.message-date {
    white-space: nowrap;
}


.chat-conv {
    /* box-shadow: 0px 0px 12px 0px #0000001A;
    border-radius: 8px; */
    border: none;
}

.chat-conv .chat-message {
    display: flex;
    width: 100%;
    justify-content: flex-start;
}

.chat-conv .chat-message.inbox-mes {
    justify-content: flex-end;
}

.chat-conv .chat-message img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    min-height: 35px;
    min-width: 35px;
}

.chat-conv .chat-message .message-content {
    border-radius: 8px;
    background: #003A741A;
    color: var(--main-color);
}

.chat-conv .chat-message.inbox-mes .message-content {
    color: #00000080;
    background-color: transparent;
    border-radius: 8px;
    border: 1px solid #003A741A;
}

.message-content.file-mess {
    display: flex;
    align-items: center;
}

.message-content.file-mess .download {
    color: var(--main-color);
    background-color: transparent;
    border: none;
}

.chat-conv .chat-messages {
    height: 400px;
    overflow-y: auto;
}

.send-message {
    width: 100%;
    height: 50px;
    padding: 5px 10px;
    border-radius: 50px;
    border: 1px solid rgba(0, 47, 45, 0.10);
    display: flex;
    align-items: center;

}

.send-message input {
    height: 100%;
    border: none;
    width: 100%;
    outline: none;
    box-shadow: none;
    font-size: 21px;
}

.send-message .file-upload {
    background-color: transparent;
    border: none;
    margin: 0 16px;
    color: var(--second-color);
    width: 45px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-message .sub-message {
    background-color: transparent;
    border: none;
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;

}

.chat-drop a {
    font-size: 16px;
    font-weight: 400;
    line-height: 23.44px;
    color: #00000080;
    border-bottom: 1px solid #E2E2E2;
    padding: 8px 16px;
}

.chat-drop a:hover {
    background-color: transparent;
    color: var(--main-color);
}

.img-btn {
    display: block;
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    color: var(--main-color);
    text-decoration: underline;
}

.chat-container {
    border: 1px solid #D9D9D9;
    border-radius: 16px;
}

.chat-container .chat-header {
    border-bottom: 1px solid #D9D9D9
}

.chat-container .chat-header .dropdown-toggle::after {
    display: none;

}

.chat-container .chat-header .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: none;
    background-color: transparent;
}

.chat-img-con {
    border: 2.26px solid #D9D9D9;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-img-con img {
    width: 110px;
    height: 100px;
}

.user-chat-img-con span {
    position: absolute;
    left: 0;
    bottom: -5px;
}

/* ------------- */
.response-checks .form-check-label {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #003A741A;
    font-weight: 400;
    line-height: 18.97px;
    padding: 12px 16px;
    border-radius: 50px;
    cursor: pointer;
    min-width: 120px;
}

.response-checks input:checked~.form-check-label {
    background-color: var(--main-color);
    color: #fff;
}

.add-response {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 50px;
    height: 42px;
    background: transparent;
    border: none;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}

/* ---------- */
/* programs-page */
.program_card {
    border-radius: 16px;
    box-shadow: 0px 4px 12px 0px #00000040;

}

.program_card img {
    width: 80px;
    height: 80px;
}

.info-drop {
    position: fixed;
    bottom: 30px;
    right: 30px;
}

.info-drop .open-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    border: none;
    border-radius: 50%;
    padding: 4px;
}

.info-drop .dropdown-menu {
    box-shadow: 0px 4px 12px 0px #00000040;
    min-width: 300px;
    background-color: #fff;
    border-radius: 24px;

}

.info-drop .info-drop-header {
    background-color: var(--main-color);
    color: #fff;
    border-radius: 24px 24px 0px 0px;
}

/* -------------- */
/* accountDetails_page */

.account_card {
    border-bottom: 1px solid #D9D9D9
}

.account_card .account_data-img {
    width: 117px;
    height: 117px;
    border-radius: 50%;

}

.account_card .account_data-img img {
    width: 117px;
    height: 117px;
    border-radius: 50%;
}

.account-service {
    background: #003A741A;
    color: var(--main-color);
    font-size: 24px;
    padding: 12px 20px;
    border-radius: 8px;
}

.account_card .account-data-side {
    width: 350px;
    min-width: 350px;
    box-shadow: 0px 4px 12px 0px #00000040;
    border-radius: 16px;
    height: fit-content;
}

.acount-action a,
.acount-action button {
    width: 100% !important;
    max-width: 100% !important;
}

.file-upload-input label {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    border: 2px dashed #DADADA;
    border-radius: 16px 16px !important;
    padding: 12px 30px;
    background: #F5F5F5;

}

/* ---------------- */
/* finacel  */
.chart-item {
    margin: 16px;
}

.pie-chart {
    position: relative;
    width: 170px;
    height: 170px;
}

.pie-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    color: var(--main-color);
}

.pie-label p {
    margin-bottom: 0;
}

.value {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.label {
    font-size: 1em;
    color: #666;
}

.charts-container {
    display: flex;
    flex-wrap: wrap;
}

.dount-data span {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E6EBF1;

}

.dount-data span.active-span {
    background-color: var(--main-color);

}

/* Fix Select2 display in modal */
.select2-container {
    z-index: 100000;
    width: 100% !important;
}

/* RTL support for Select2 */
.select2-container--default .select2-selection--multiple {
    /* text-align: right; */
    /* direction: rtl; */
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    /* float: right; */
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    /* float: left; */
    margin-right: 10px;
}

/* Optional: Style the Select2 to match your theme */
.select2-container--default .select2-selection--multiple {
    border: 1px solid #777777;
    border-radius: 4px;
    height: 45px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.select2-container--default .select2-search--inline .select2-search__field {
    height: 100%;
    font-size: 20px;
    font-family: 'Almarai', sans-serif;
}

.select2-container--default .select2-search--inline .select2-search__field::placeholder {
    color: #7777777d;
}

.plan_dates {
    border-radius: 24px;
    border: 1px solid #D9D9D9;
}


.mission-comment {
    border-bottom: 1px solid #D9D9D9
}

.mission-comment .comment-img {
    width: 40px;
    height: 40px;
    border-radius: 50%
}

.mission-comment .comment-img img {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%
}

.mission-comment .comment-img span {
    right: 0;
    bottom: -3px;

}

/* ------------------- */
/* program page  */


.package-nav .nav-link {
    height: 45px;
    padding: 10px 25px;
    border-radius: 0px 14.87px 0px 14.87px;
    font-size: 20px;
    font-weight: 300;
    line-height: 22.32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #003A74;
    color: var(--main-color);
    background-color: #fff;

}

.package-nav .nav-link.active {
    background-color: var(--main-color);
}



.plan_page ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: start;
}

.plan_page ul li {
    font-size: 28px;
    font-weight: 300;
    line-height: 37.94px;
    letter-spacing: 0.20000000298023224px;
    text-align: left;
    color: #00000099;
    margin: 16px 0;
}

.plan_dates {
    box-shadow: 0px 4px 20px 0px #00000080;
    border-radius: 16px;
    color: var(--main-color);
}

.plan_action {
    border-radius: 0px 16px 0px 16px;
    text-align: start;
}

.plan_action a {
    background-color: var(--main-color);
    color: #fff;
    border-radius: 0px 16px 0px 16px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 250px;
    font-size: 24px;
    font-weight: 300;
    line-height: 47.99px;
    letter-spacing: 0.20000000298023224px;
    border: 1px solid var(--main-color);
}

.plan_action a.chang_plan {
    color: var(--main-color);
    background-color: #fff;

}


.formInput {
    border: 1px solid #777777;
    border-radius: 16px;
    width: 100%;
    outline: none;
    box-shadow: none;
    height: 50px;
    font-size: 20px;
    padding: 16px;
}

.formInput::placeholder {
    color: #D9D9D9;
}

.pay-selection-title {
    background: #003A741A;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 400;
    color: var(--main-color);
}

.pay-selection {
    box-shadow: 0px 4px 10px 0px #00000040;
    border-radius: 16px;

}

.pay-way-select .form-check {
    align-items: center;
    display: flex;
}

.pay-way-select .form-check .form-check-label {
    cursor: pointer;
}

.pay-way-select .form-check-input:checked {
    background-color: var(--main-color);
}



.new_paln {
    border: 1px solid #DADADA;
    border-radius: 24px;
    background-color: #fff;
}

.new_paln .plan_name {
    height: 48px;
    padding: 11px 32px 10px 31px;
    border-radius: 0px 16px 0px 16px;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    color: #fff;
    font-size: 21px;
}

.new_paln .plan_des {
    text-align: start;
    color: #00000080;
}

.new_paln .plan_pric {
    font-size: 18px;
    font-weight: 300;
    line-height: 26.78px;
    letter-spacing: 0.20000000298023224px;
    text-align: start;
}

.new_paln .features_list {
    text-align: start;
    list-style: none;
    padding: 16px 0;
    border-bottom: 1px solid #DADADA;
    border-top: 1px solid #DADADA;
}

.new_paln .features_list li {
    display: flex;
    align-items: center;
    justify-content: start;
    color: #00000099;
    font-size: 17px;
    font-weight: 400;
}

.new_paln .more-link {
    height: 48px;
    gap: 0px;
    border-radius: 0px 16px 0px 16px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-weight: 300;
    line-height: 23.44px;
}

.new_paln .more-link:hover {
    background-color: var(--main-color);
    color: #fff;
}

.new_paln.recommend_plan {
    background: linear-gradient(180deg, #003A74 0%, #006DDA 100%);
    color: #fff;
}

.new_paln.recommend_plan .plan_name {
    background: #fff;
    color: var(--main-color);
}

.new_paln.recommend_plan .more-link {
    background: #fff;
    color: var(--main-color);
    border-color: #fff;
}

.new_paln.recommend_plan .more-link:hover {
    background: var(--main-color);
    color: #fff;
    border: var(--main-color);
}

.new_paln.recommend_plan .features_list li {
    color: #ffff;
}

.new_paln.recommend_plan .plan_des {
    color: #ffffff71;
}


.user-image-select img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.user-image-select label {
    border-radius: 0px 16px 0px 16px !important;
    cursor: pointer;
}

.delete-img-btn {
    border: none;
    background-color: transparent;
    color: red;
    text-decoration: underline;
    white-space: nowrap;
}

.userInfo_sec .second-btn {
    width: fit-content !important;
}

.userInfo_sec .submit-change-btn {
    min-width: 200px;
}

.cons-data {
    border: 1px solid #D9D9D9;
    width: 500px;
    max-width: 100%;
    border-radius: 24px;
}

.cons-data p {
    color: #00000099;
    font-size: 24px;
    font-weight: 300;
}

.table-naves .nav-link {
    font-size: 24px;
    font-weight: 400;
    color: #00000099;

}

.table-naves .nav-link.active {
    background-color: transparent;
    color: var(--main-color);
    text-decoration: underline;
}

.program-actions button,
.program-actions a {
    white-space: nowrap;
}

.roles-drop .dropdown-toggle {
    background-color: transparent;
    border: none;
    color: #00000099;
    font-size: 17px;
    font-weight: 300;

}


.actions_drop .dropdown-menu,
.roles-drop .dropdown-menu {
    box-shadow: 0px 4px 12px 0px #00000040;
    border-radius: 8px;
    border: none;
    padding: 0;
}

.actions_drop .dropdown-menu h5,
.roles-drop .dropdown-menu h5 {
    font-size: 18px;
    font-weight: 400;
    line-height: 23.44px;
    color: var(--main-color);
    border-bottom: 1px solid #ccc;

}

.actions_drop .dropdown-menu a,
.roles-drop .dropdown-menu a {
    padding: 6px 12px;
    color: #777;
}

.actions_drop .dropdown-menu a:hover,
.roles-drop .dropdown-menu a:hover {
    background-color: transparent;
    color: var(--main-color);
}

.actions_drop .dropdown-toggle {
    background-color: transparent;
    border: none;
    color: #00000099;
    font-size: 17px;
    font-weight: 300;
}

.actions_drop .dropdown-toggle::after {
    display: none;
}

.program-accordion .accordion-item {
    border-radius: 16px;
    border: 1px solid #003A7466;
}

.program-accordion .accordion-item .accordion-header {
    background-color: var(--main-color);
    border-radius: 16px;
}

.program-accordion .accordion-item .accordion-header .accordion-button {
    background-color: transparent;
    color: #fff;
    outline: none;
    box-shadow: none;
}

.program-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg width='48' height='24' viewBox='0 0 48 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_674_332)'%3E%3Cpath d='M13.1605 4.90397L11.0405 7.02597L22.5945 18.584C22.7796 18.7703 22.9998 18.9181 23.2423 19.019C23.4848 19.1199 23.7448 19.1719 24.0075 19.1719C24.2701 19.1719 24.5302 19.1199 24.7727 19.019C25.0152 18.9181 25.2353 18.7703 25.4205 18.584L36.9805 7.02597L34.8605 4.90597L24.0105 15.754L13.1605 4.90397Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_674_332'%3E%3Crect width='24' height='48' fill='white' transform='matrix(0 1 1 0 0 0)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.policy-box {
    box-shadow: 0px 4px 12px 0px #00000040;
    border-radius: 4px;

}




.replay-box {
    border-radius: 8px;
    background: #003A741A;
    color: var(--main-color);
}

.replay-box .message-content {
    background-color: #fff !important;
}

.inbox-mes .replay-box {
    border: 1px solid #DADADA;
    background-color: transparent;

}

.inbox-mes .replay-box .message-content {
    background-color: #003A741A !important;
}

.chat-conv .chat-messages {
    height: 500px;
    /* overflow-x: hidden; */
}

.replay-input {
    border: none;
    outline: none;
    box-shadow: none;
}

.open-replay {
    cursor: pointer;
}

.driver-popover-title {
    font-size: 20px;
    font-weight: bold;
    font-family: "Almarai", sans-serif;
}

.driver-popover-description {
    font-size: 16px;
    font-weight: normal;
    font-family: "Almarai", sans-serif;
}

.driver-popover-prev-btn {
    margin-left: 10px;
    margin-right: 0;
}

.driver-popover-footer button {
    font-size: 16px;
    font-weight: normal;
    font-family: "Almarai", sans-serif;
    padding: 2px 16px;
}

/* Menu item highlight effect */
.highlighted-menu-item {
    background-color: rgba(52, 152, 219, 0.2);
    border-right: 3px solid #3498db;
    border-left: none;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

/* Tour button styling */
#start-tour {
    margin: 15px auto;
    display: block;
    background-color: #3498db;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

#start-tour:hover {
    background-color: #2980b9;
}

.driver-popover-navigation-btns button+button {
    margin-left: 0;
    margin-right: 4px;
}

.driver-popover-close-btn {
    right: unset;
    left: 0px;
}