@import url("https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

/* ========================================================================== */
/* Base Styles                                                               */
/* ========================================================================== */

/* Define CSS variables for theme and colors */
:root {
    --primary-color: #0468c6;
    --secondary-color: #fdae03;
    --green-primary: #0bde7c;
    --dark-bleu: #015baf;
    --stare-red: #f00;

    --light-gray: #b2b2b2;
    --normal-gray: #525252;
    --pure-white: #fff;
    --pure-black: #000000;
    --text-text-primary: #161616;

    --font-Urbanist: "Urbanist";
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Urbanist";
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
}

h1 {
    color: #000;
    font-family: var(--font-Urbanist);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.my-custom-table {
    --bs-table-striped-bg: rgba(4, 104, 198, 0.02) !important; /* New value */
}
/* ========================================================================== */
/* Layouts                                                                    */
/* ========================================================================== */
.wrapper_cnt {
    min-height: 100vh;
    display: flex;
}
main {
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto; /* Allow vertical scrolling if content exceeds height */
}
.content {
    height: 100%;
    padding: 20px 20px;
    background-image: url("/assets/images/BG.png");
    display: flex;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
}
/* ========================================================================== */
/* Components                                                                */
/* ========================================================================== */

/* Buttons */
.button {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* ========================================================================== */
/* SideBar                                                                    */
/* ========================================================================== */
.sidebar {
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 32px 20px;
    transition: all 0.5s ease; /* Smooth transition */
    width: 80px; /* Collapsed width */
    position: relative;
}

.sidebar-nav {
    list-style: none;
    padding: 0px;
}
.sidebar-nav .nav-item {
    display: flex;
    margin-bottom: 13px;
}
.sidebar-nav .nav-item a {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 10px 15px;
    width: 100%;
    border-radius: 8px;
}
.sidebar-nav .nav-item a:hover {
    background-color: var(--dark-bleu);
}
.sidebar-nav .nav-item .active_url {
    background-color: var(--green-primary);
}

.sidebar-nav .nav-item a span {
    color: var(--pure-white);
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.nav_icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
}
.sidebar-logo img {
    width: 51.544px;
    height: 52.137px;
    transition: all 0.5s ease; /* Smooth transition */
}
.nav-link span {
    /* max-width: 0px;
    opacity: 0;
    transition: opacity 0.4s ease, max-width 0.4s ease; 
    overflow: hidden;  */
    display: none;
}
/* Show span (text) in expanded mode */
.sidebar.expanded .nav-link span {
    /* max-width: 1000px;
    opacity: 1; */
    display: flex;
}
.sidebar.expanded .user-info div {
    /* max-width: 1000px;
    opacity: 1; */
    display: flex;
}
.user-info div {
    display: none;
}
.sidebar.expanded .sidebar-nav .nav-item a {
    gap: 10px;
}

.expanded {
    width: 295px;
    transition: all 0.5s cubic-bezier(0.25, 1.25, 0.5, 1.5);
}
.expanded .sidebar-logo img {
    width: 147px;
    height: 147px;
}
.toggle_nav {
    position: absolute;
    right: -29px;
    top: 40px;
}
.toggle_nav {
    background-color: transparent;
    background: var(--secondary-color);
    border: none;
    border-radius: 0px 8px 8px 0px;
    padding: 20px 8px;
}
/* ========================================================================== */
/* Main                                                                       */
/* ========================================================================== */
.main_contaienr {
    padding: 32px 48px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0px 4px 16px 0px rgba(4, 104, 198, 0.08);
}
.main_contaienr {
    height: 100%;
}
.nav_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 15px;
}
.nav_top {
    flex: 0 0 auto; /* Allow nav_top to have its natural height */
}

.main_contaienr {
    flex: 1 1 auto; /* Take up the remaining height */
    overflow-y: auto; /* Add scroll if content exceeds height */
}
.user_name {
    color: var(--pure-white);
    font-family: var(--font-Urbanist);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.log_out {
    border-radius: 78px;
    background: var(--stare-red);
    padding: 4px 18px;
    border: none;
}
.page_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.buttoun_cnt {
    border-radius: 50px;
    border: 1px solid #0bde7c;
    background: rgba(11, 222, 124, 0.04);
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.buttoun_cnt button {
    background-color: transparent;
    border: none;
    outline: none;
    font-family: var(--font-Urbanist);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    border-radius: 45px;
}
.buttoun_cntv2 button {
    background-color: transparent;
    border: none;
    outline: none;
    font-family: var(--font-Urbanist);
    font-size: 10px !important;
    font-style: normal;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    border-radius: 45px;
}
.icon_filter {
    width: 14.609px !important;
    height: 14.609px !important;
}
.active_green {
    color: var(--green-primary);
}
.active_bleu {
    color: var(--primary-color);
}
.active_green.active_click {
    color: var(--pure-white) !important;
    background-color: var(--green-primary);
}
.active_bleu.active_click {
    color: var(--pure-white) !important;
    background-color: var(--primary-color);
}
.active_click img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(3%) saturate(7481%)
        hue-rotate(214deg) brightness(100%) contrast(109%);
}
.nbr_selected {
    color: var(--primary-color);
    font-feature-settings: "liga" off, "clig" off;
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.16px;
}
.buttoun_action button {
    border-radius: 50px;
    padding: 12px 16px;
    font-feature-settings: "liga" off, "clig" off;
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.16px;
    transition: all 0.5s ease;
}
.filter_modal_footer button {
    border-radius: 50px;
    padding: 12px 30px;
    font-feature-settings: "liga" off, "clig" off;
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.16px;
    transition: all 0.5s ease;
}
.filter_modal_footer .filter_annuler {
    padding-inline: 0px !important;
    border: none !important;
}
.filter_modal_footer .filter_annuler:hover {
    border: none !important;
}
.filter_modal_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.filter_accepte {
    color: var(--pure-white);
    background-color: var(--primary-color);
    border: none;
}
.filter_accepte:hover {
    background-color: var(--dark-bleu);
}
.filter_refused {
    border: 1px solid rgba(255, 0, 0, 0.5);
    background: rgba(255, 0, 0, 0.04);
    color: var(--stare-red);
}
.filter_refused:hover {
    border: 1px solid rgba(255, 0, 0, 0.5);
    background: var(--stare-red);
    color: var(--pure-white);
}
.filter_annuler {
    background-color: transparent;
    border: 1px solid transparent;
    color: var(--primary-color);
    text-decoration: underline;
}
.filter_annuler:hover {
    border: 1px solid var(--primary-color);
}
.input_fliter_cnt {
    position: relative;
    border-radius: 20px;
    border: 0.5px solid var(--primary-color);
    opacity: 0.4;
}
.input_fliter_cnt img {
    position: absolute;
    right: 8px;
    top: 50%; /* Center vertically based on the element's top */
    transform: translateY(-50%);
}
.filter_input {
    background: transparent;
    border: none;
    outline: none;
    padding: 8px 12px;
    width: 100%;
}
/* .data_name{
    max-width: 145px;
}
.data_id_table{
    max-width: 170px;
}
.data_statu_table{
    max-width: 133px;
}
.data_date_table{
    max-width: 133px;
}
.data_date_debut_table{
    min-width: 133px;
}
.data_action_table{
    min-width: 200px;
} */
tbody,
td,
tfoot,
th,
thead {
    border-color: unset !important;
    border-style: unset !important;
    border-width: unset !important;
}
tbody tr {
    border-top: 1px solid #e6f0f9 !important;
    border-bottom: 1px solid #e6f0f9 !important;
}
td {
    color: #525252;
    font-feature-settings: "liga" off, "clig" off;
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.16px;
}
th {
    color: var(--pure-black);
    font-feature-settings: "liga" off, "clig" off;
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.16px;
}
th div {
    width: 8vw !important;
}
.checkBox {
    display: block;
    cursor: pointer;
    width: 20px;
    height: 20px;
    border: 4px solid transparent;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 0px 2px #b4b4b4;
}
.checkBox div {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    top: -52px;
    left: -52px;
    position: absolute;
    transform: rotateZ(45deg);
    z-index: 100;
}

.checkBox input[type="checkbox"]:checked + div {
    left: -10px;
    top: -10px;
}

.checkBox input[type="checkbox"] {
    position: absolute;
    left: 50px;
    visibility: hidden;
}
.checkBox input[type="checkbox"]:checked {
    box-shadow: 0px 0px 0px 2px var(--primary-color) !important;
}
.transition {
    transition: 300ms ease;
}
.id_cellule {
    display: flex;
    align-items: center;
    gap: 8px;
}
.dropstart .dropdown-toggle::before {
    content: unset !important;
}
.details_btn {
    background-color: transparent;
    border: 1px solid transparent;
}
.btn_tbl {
    border: 1px solid transparent;
    height: fit-content;
    background-color: transparent;
}
.dropdown-menu {
    padding: 0px !important;
    border-radius: 0px !important;
    transform: translate3d(1px, 29px, 0px) !important;
}
.details_btn.show {
    background-color: var(--pure-white);
    border: 1px solid #0000002d;
}
.success_Statut {
    padding: 4px 16px;
    border-radius: 50px;
    border: 1px solid rgba(11, 222, 124, 0.3);
    background: rgba(11, 222, 124, 0.02);
    color: var(--green-primary);
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    min-width: 122px;
}
.invalid_Statut {
    padding: 4px 16px;
    border-radius: 50px;
    border: 1px solid rgba(222, 11, 11, 0.3);
    background: rgba(222, 11, 11, 0.02);
    color: #de0b0b;
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    min-width: 122px;
}
.null_Statut {
    padding: 4px 16px;
    border-radius: 50px;
    border: 1px solid rgba(4, 104, 198, 0.3);
    background: rgba(4, 104, 198, 0.02);
    color: var(--primary-color);
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    min-width: 122px;
}
.modal_title {
    color: #000;
    font-family: var(--font-Urbanist);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.small_info {
    font-family: var(--font-Urbanist);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px; /* 100% */
}
.small_info span {
    color: #000;
}
.small_info p {
    color: rgba(0, 0, 0, 0.48);
}
.user_div img {
    width: 47px;
    height: 47px;
    border-radius: 100%;
    border-left: 1px solid var(--green-primary);
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    border-right: 1px solid var(--secondary-color);
}
.user_div span {
    color: #000;
    font-family: var(--font-Urbanist);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
.user_div p {
    margin-bottom: 0px !important;
    border-radius: 50px;
    border: 1px solid rgba(4, 104, 198, 0.3);
    background: rgba(4, 104, 198, 0.02);

    color: var(--primary-color);
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 5px 9px;
    text-align: center;
}
.modal_devis {
    padding: 30px 45px !important;
    border-radius: 24px !important;
}
.col-50 {
    width: 50%;
    height: 100%;
}
.title_prop {
    color: #000;
    font-family: var(--font-Urbanist);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
}
.price_prop {
    color: #000;
    font-family: var(--font-Urbanist);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
}
.description_prop {
    color: #000;
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 128.571% */
    opacity: 0.4;
}
.property_sqaure div {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: #d9d9d9;
}
.property_sqaure {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 20px;
}
.pro_stri_cnt {
    display: ruby;
}
.modal_devis .modal-body {
    padding: 0px;
}
.modal-body .iteme {
    border-bottom: 1px solid #dbdbdb;
}
.input_item label {
    display: block;
    color: var(--Black, #000);
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.input_item input,
.input_item textarea {
    border-radius: 8px;
    border: 0.5px solid #e2e2e2;
    background: #fff;
    padding: 10px;
    color: #000;
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    outline: none;
}
.devis_link {
    color: var(--primary-color);
    font-feature-settings: "liga" off, "clig" off;
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 128.571% */
    letter-spacing: 0.16px;
    text-decoration-line: underline;
}
.devis_label {
    color: #000;
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
}
.devis_label img {
    margin-right: 8px;
}
.date_devis {
    color: rgba(0, 0, 0, 0.48);
    font-family: var(--font-Urbanist);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    margin-left: 10px;
}
.pdf_devis {
    display: flex;
    gap: 5px;
    align-items: center;
}
/* ========================================================================== */
/* LOGIN                                                                      */
/* ========================================================================== */
.image_side_login {
    background-image: url("/assets/images/img_side_login.png");
    background-repeat: no-repeat;
    background-size: cover;
}
.login_content h1 {
    color: #1b1d21;
    font-family: var(--font-Urbanist);
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    margin-bottom: 7vh;
}
.input_label {
    color: #2d2d2d;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    display: block;
}
.login_input {
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #fff;
    outline: none;
    /* text */
    color: #828282;
    text-overflow: ellipsis;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    width: 100%;
}
.content_login {
    max-width: 404px;
    margin-inline: auto;
}
.muted_text {
    color: #2d2d2d;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    opacity: 0.75;
}
.login_submit {
    border-radius: 8px;
    background: var(--Color-3, #0bde7c);

    color: #fff;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    outline: none;
    border: none;
    width: 100%;
    padding: 12px;
}
.p_tag_login {
    color: #828282;
    text-align: center;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    text-align: justify;
}
.add_btn {
    border-radius: 50px;
    background: var(--Color-2, #0468c6);
    color: #fff;
    font-family: var(--font-Urbanist);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    outline: none;
    border: none;
    padding: 10px 20px;
}
.top_part .div_items {
    min-width: 128px;
}
.top_part {
    width: 100%;
    border-radius: 160px;
    border-left: 1px solid var(--green-primary);
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    border-right: 1px solid var(--secondary-color);
    background: rgba(4, 104, 198, 0);
    padding: 10px 15px;
    position: relative;
    z-index: 1;
}
.user_id {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    padding: 4px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.09);
    background: rgba(0, 0, 0, 0.02);
    /* text */
    color: #d9d9d9;
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.select_cnt {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    padding: 4px 0px;
    border-radius: 50px;
    border: 1px solid rgba(4, 104, 198, 0.3);
    background: rgba(4, 104, 198, 0.02);
    /* text */
    color: #0468c6;
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.select_cnt select {
    background-color: transparent;
    border: none;
    outline: none;
    /* text */
    color: #0468c6;
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.profile_img img {
    width: 104px;
    height: 104px;
    border-radius: 100%;
    border-left: 1px solid var(--green-primary);
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    border-right: 1px solid var(--secondary-color);
}
.profile_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.input_iteme input {
    background-color: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid #b2b2b2;
    width: 100%;
    padding: 10px 30px;
}
.input_iteme input::placeholder {
    color: var(--Color-5, #b2b2b2);
    font-family: var(--font-Urbanist);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
}
.input_iteme {
    position: relative;
}
.input_iteme img {
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
}
.modal_user .modal-header,
.modal_user .modal-footer {
    border: none !important;
}
.delete_title {
    color: #161616;
    font-family: var(--font-Urbanist);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
}
.delete_p {
    color: #525252;
    font-family: var(--font-Urbanist);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 0px !important;
}
.supp_annuler {
    background-color: transparent;
    border: 1px solid transparent;
    color: var(--Black);
}
.btn_block button {
    border-radius: 20px;
    border: 0.5px solid #0468c6;
    opacity: 0.4;
    padding: 8px 10px;

    color: #0468c6;
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background-color: transparent;
    min-width: 45px;
    transition: all 0.4s ease;
}
.btn_block button:hover {
    background: #0bde7c;
    color: white;
    opacity: 1;
    border: none;
}
.btn_block .active {
    background: #0bde7c;
    color: white;
    opacity: 1;
    border: none;
    font-weight: 700;
}
.admin_tag {
    display: block;
    border-radius: 50px;
    background: rgba(51, 51, 51, 0.1);
    color: #333;
    text-align: center;
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.16px;
    width: 100%;
    padding: 7px;
    max-width: 115px;
}
.poseur_tag {
    display: block;
    border-radius: 50px;
    background: rgba(11, 222, 124, 0.04);
    color: #0bde7c;
    text-align: center;
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.16px;
    width: 100%;
    padding: 7px;
    max-width: 115px;
}
.loueur_tag {
    display: block;
    border-radius: 50px;
    background: rgba(4, 104, 198, 0.04);
    color: #0468c6;
    text-align: center;
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.16px;
    width: 100%;
    padding: 7px;
    max-width: 115px;
}
.investisseur_tag {
    display: block;
    border-radius: 50px;
    background: rgba(253, 174, 3, 0.04);
    color: #fdae03;
    text-align: center;
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.16px;
    width: 100%;
    padding: 7px;
    max-width: 115px;
}
.comission_btn {
    border: none;
    outline: none;
    font-family: var(--font-Urbanist);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 45px;
    color: white;
    min-width: 180px;
    text-align: center;
}
.comission_btn img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(3%) saturate(7481%)
        hue-rotate(214deg) brightness(100%) contrast(109%);
}
.comiss_cnt {
    border-radius: 8px;
    border: 1px solid rgba(4, 104, 198, 0.1);
    background: #fafcfe;
    padding: 25px 20px;
}
.comission_contenu {
    border-radius: 4px;
    display: flex;
    flex: 1;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
}
.poseur_cnt .comission_contenu {
    background: rgba(11, 222, 124, 0.06);
}
.poseur_cnt .comission_btn {
    background-color: #0bde7c;
}
.loueur_cnt .comission_contenu {
    background: rgba(4, 104, 198, 0.06);
}
.loueur_cnt .comission_btn {
    background-color: #0468c6;
}
.investisseur_cnt .comission_contenu {
    background: rgba(253, 174, 3, 0.06);
}
.investisseur_cnt .comission_btn {
    background-color: #fdae03;
}
.comission_contenu label {
    color: #000;
    font-family: var(--font-Urbanist);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.comission_contenu input {
    text-align: end;
    border: none;
    outline: none;
    background-color: transparent;
    color: #000;
    font-family: var(--font-Urbanist);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-right: 8px;
}
.triger_update {
    border: none;
    outline: none;
    background-color: transparent;
}
.save_comiss {
    border-radius: 4px;
    background: #0468c6;
    color: var(--Color-4, #fff);
    text-align: center;
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    padding: 8px 20px;
    outline: none;
    border: none;
}
.anull_comiss {
    border-radius: 4px;
    background: transparent;
    color: var(--Black);
    text-align: center;
    font-family: var(--font-Urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    padding: 8px 20px;
    border: 1px solid var(--carbon-400, #bdbdc6);
}
.modal_paiment .small_info p {
    margin-bottom: 0px;
}
.paiment_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.span_value {
    color: rgb(0, 0, 0);

    font-family: var(--font-Urbanist);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.span_info {
    color: rgba(0, 0, 0, 0.42);

    font-family: var(--font-Urbanist);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.paiment_info {
    padding: 10px 0px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.comission_badge {
    position: relative;
}
.comission_badge .comiss_txt {
    color: #fff;
    font-family: var(--font-Urbanist);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.comission_badge .value {
    color: #fff;
    font-family: var(--font-Urbanist);
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.comission_badge div {
    position: absolute;
    top: 50%; /* Position at the middle vertically */
    left: 50%; /* Position at the middle horizontally */
    transform: translate(
        -50%,
        -50%
    ); /* Offset the element by 50% of its width/height */
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}
.user-info span {
    color: var(--Color-4, #fff);
    font-family: var(--font-Urbanist);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.user-info img {
    border-radius: 27.98px;
    border: 1.119px solid #fff;
    width: 55.4px !important;
    height: 55.4px !important;
}
.span_row {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.user__datatag {
    background: var(--Color-3, #0bde7c);
}
.revnu__datatag {
    background: var(--Color, #fdae03);
}
.order__datatag {
    background: var(--Color-2, #0468c6);
}
.money__datatag {
    color: #000 !important;
    background: #f2f9ff;
}
.data__tag {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(4, 104, 198, 0.1);
    font-family: var(--font-Urbanist);
    color: var(--pure-white);
}
.dashboard__title {
    font-size: 20px !important;
}
.data__tag .nbr__count {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}
.data__tag .percnetage__nbr {
    font-size: 16px;
    font-weight: 400;
}
.data__tag .data_breaf {
    font-size: 14px;
    font-weight: 700;
    opacity: 0.7;
}
.data__tag .date__tag {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
}
.domaind_dash {
    border-radius: 16px;
    border: 1px solid rgba(4, 104, 198, 0.1);
    padding: 16px;
    height: 100%;
}
.table-responsive {
    padding-bottom: 40px;
}
.password-container {
    position: relative;
}
.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

#user_modalupdate form {
    overflow-y: scroll;
}

#user_modalupdate form::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
}

#user_modalupdate form::-webkit-scrollbar-thumb {
    border-radius: 2px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #0468c6;
}
/* ========================================================================== */
/* Media Queries                                                             */
/* ========================================================================== */

@media (max-width: 1368px) {
    .data__tag .nbr__count {
        font-size: 19px;
    }
    .data__tag .percnetage__nbr {
        font-size: 15px;
    }
    .data__tag .data_breaf {
        font-size: 11px;
    }
    .data__tag .date__tag {
        font-size: 12px;
    }
    .dashboard__title {
        font-size: 16px !important;
    }
    td {
        font-size: 11px;
    }
    th {
        font-size: 12px;
    }
    .investisseur_tag,
    .poseur_tag,
    .loueur_tag {
        font-size: 12px;
        padding: 4px;
    }
    .null_Statut,
    .success_Statut {
        font-size: 12px;
        min-width: 115px;
    }

    .img_dash {
        width: 40px;
        height: auto;
    }
    .btn_tbl img {
        width: 25px;
        height: auto;
    }
    .sidebar-nav .nav-item a {
        padding: 7px 8px;
    }
    .expanded .sidebar-logo img {
        width: 122px;
        height: 122px;
    }
    .comiss_cnt {
        padding: 20px 15px;
    }
    .comission_btn {
        font-size: 14px;
    }
    .comission_btn img {
        width: 18px;
        height: auto;
    }

    .comission_contenu label,
    .comission_contenu input,
    .comission_contenu span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 690px !important;
        margin-right: auto;
        margin-left: auto;
    }
}
