/* ========================================================================== */
/* Base Styles                                                               */
/* ========================================================================== */
@font-face {
    font-family: "Lufga Regular";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/LufgaRegular.woff") format("woff");
}

@font-face {
    font-family: "Lufga Italic";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/LufgaItalic.woff") format("woff");
}

@font-face {
    font-family: "Lufga Thin";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/LufgaThin.woff") format("woff");
}

@font-face {
    font-family: "Lufga Thin Italic";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/LufgaThinItalic.woff") format("woff");
}

@font-face {
    font-family: "Lufga ExtraLight";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/LufgaExtraLight.woff") format("woff");
}

@font-face {
    font-family: "Lufga ExtraLight Italic";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/LufgaExtraLightItalic.woff") format("woff");
}

@font-face {
    font-family: "Lufga Light";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/LufgaLight.woff") format("woff");
}

@font-face {
    font-family: "Lufga Light Italic";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/LufgaLightItalic.woff") format("woff");
}

@font-face {
    font-family: "Lufga Medium";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/LufgaMedium.woff") format("woff");
}

@font-face {
    font-family: "Lufga Medium Italic";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/LufgaMediumItalic.woff") format("woff");
}

@font-face {
    font-family: "Lufga SemiBold";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/LufgaSemiBold.woff") format("woff");
}

@font-face {
    font-family: "Lufga SemiBold Italic";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/LufgaSemiBoldItalic.woff") format("woff");
}

@font-face {
    font-family: "Lufga Bold";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/LufgaBold.woff") format("woff");
}

@font-face {
    font-family: "Lufga Bold Italic";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/LufgaBoldItalic.woff") format("woff");
}

@font-face {
    font-family: "Lufga ExtraBold";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/LufgaExtraBold.woff") format("woff");
}

@font-face {
    font-family: "Lufga ExtraBold Italic";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/LufgaExtraBoldItalic.woff") format("woff");
}

@font-face {
    font-family: "Lufga Black";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/LufgaBlack.woff") format("woff");
}

@font-face {
    font-family: "Lufga Black Italic";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/LufgaBlackItalic.woff") format("woff");
}

/* Define CSS variables for theme and colors */
:root {
    --primary-color: #33057e;
    --secondary-color: #cfa0ff;
    --green-primary: #0bde7c;
    --dark-bleu: #015baf;
    --stare-red: #f00;
    --gradiant-primary: linear-gradient(
            180deg,
            rgba(70, 24, 142, 0) -52.46%,
            #000 100%
        ),
        #202020;
    --standard-yellow: #f6e860;
    --primary-color-dash: #cfa0ff;
    --primary-h1-dash: #1f1431;
    --light-gray-dash: #748aa1;
    --Color-Brand-Lavande: #33057e;
    --Color-Gray-900: #202020;

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

    --font-Lufga: "Lufga Regular";
}

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

body {
    font-family: "Lufga Regular";
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
}

h1 {
    color: #000;
    font-family: var(--font-Lufga);
    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 0px 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: var(--gradiant-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 0px;
    transition: all 0.5s ease; /* Smooth transition */
    width: 80px; /* Collapsed width */
    position: relative;
    height: 100vh; /* Full height */
    position: sticky;
    top: 0; /* Stick to the top */
}
.expanded .sidebar-content{
    padding-inline:24px ;
}
.sidebar-content{
    padding-inline: 5px;
    width: 100%;
    overflow-y: scroll;
    scrollbar-color: #CFA0FF transparent;
    scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px; /* for horizontal scrollbar */
}

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

::-webkit-scrollbar-thumb {
  background-color: #CFA0FF;
  border-radius: 10px;
  border: none;
}
.sidebar-nav {
    list-style: none;
    padding: 0;
}
.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(--primary-color-dash);
}
.sidebar-nav .nav-item a:hover img,
.sidebar-nav .nav-item .active_url img {
    filter: brightness(0) saturate(100%);
}
.sidebar-nav .nav-item a:hover span {
    color: var(--pure-black);
}
.sidebar-nav .nav-item .active_url {
    background-color: var(--primary-color-dash);
}
.sidebar-nav .nav-item .active_url span {
    color: var(--pure-black);
}
.sidebar-nav .nav-item a span {
    color: var(--pure-white);
    font-family: var(--font-Lufga);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.nav_icon {
    width: 22px;
    height: 22px;
    opacity: 0.6;
}
.sidebar-logo img {
    width: 61px;
    height: auto;
    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: 15px;
}

.expanded {
    width: 295px;
    transition: all 0.5s cubic-bezier(0.25, 1.25, 0.5, 1.5);
}
.expanded .sidebar-logo img {
    width: 120px;
    height: 86px;
    object-fit: cover;
}
.toggle_nav {
    position: absolute;
    right: -29px;
    top: 25px;
    background: var(--standard-yellow);
    border: none;
    border-radius: 0px 8px 8px 0px;
    padding: 15px 8px;
}

.toggle_nav img {
    transform: rotateY(180deg);
}
.expanded .toggle_nav img {
    transform: rotateY(0deg);
}
.sidebar-user {
    padding-top: 24px;
    position: relative; /* Required for absolute positioning of ::before */
}

.sidebar-user::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #544761;
    
}
/* ========================================================================== */
/* Main                                                                       */
/* ========================================================================== */
.main_contaienr {
    padding: 32px 48px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0px 4px 16px 0px rgba(4, 104, 198, 0.08);
    height: 100%;
    position: relative;
}

.nav_top {
    flex: 0 0 auto; /* Allow nav_top to have its natural height */
    min-height: 40px;
}

.main_contaienr {
    flex: 1 1 auto; /* Take up the remaining height */
    overflow-y: auto; /* Add scroll if content exceeds height */
}

.user_login {
    background: rgba(207, 160, 255, 0.26);
    backdrop-filter: blur(22px);
    border-radius: 40px 0px 0px 40px;
    height: 55px;
    width: 307px;
    padding: 0px 10px;
    position: absolute;
    right: 0;
    top: 30px;
}
.user_profile {
    width: 45px;
    height: 45px;
    border-radius: 22.727px;
    border: 0.909px solid var(--white, #fff);
}
.left_part {
    position: relative;
    margin-right: 13px;
}
.update_profile_icon {
    right: 1px;
    position: absolute;
    bottom: 1px;
}
.meiddle_part h2 {
    color: var(--White, var(--white, #fff));
    /* P BOLD */
    font-family: var(--font-Lufga);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 0px;
}
.meiddle_part h3 {
    color: var(--White, var(--white, #fff));
    font-family: var(--font-Lufga);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 0px;
}
.right_part {
    margin: auto;
    background-color: white;
    border-radius: 50%;
    width: 42px;
    height: 42px;
}
.user_name {
    color: var(--pure-white);
    font-family: var(--font-Lufga);
    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-Lufga);
    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-Lufga);
    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-Lufga);
    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-Lufga);
    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-Lufga);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.16px;
    transition: all 0.3s ease;
}

.filter_modal_footer {
    padding: 2px 40px;
    border-top: none;
}
.filter_accepte {
    color: var(--pure-white);
    background-color: var(--Color-Brand-Lavande);
    border: 1px solid #ae86d8;
}
.filter_accepte:hover {
    background-color: #25025f;
}
.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_refused img {
    transition: all 0.3s ease;
}
.filter_refused:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
        hue-rotate(283deg) brightness(105%) contrast(103%);
}
.filter_deleted {
    border: 1px solid rgba(255, 0, 0, 0.5);
    background: var(--stare-red);

    color: var(--pure-white);
}
.filter_deleted:hover {
    border: 1px solid rgba(255, 0, 0, 0.5);
    background: rgba(255, 0, 0, 0.04);
    color: var(--stare-red);
}
.filter_deleted img {
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
        hue-rotate(283deg) brightness(105%) contrast(103%);
}
.filter_deleted:hover img {
    filter: none;
}
.filter_annuler {
    background-color: transparent;
    color: var(--primary-h1-dash);
    border: 1px solid #1f1431;
}
.filter_annuler img {
    transition: all 0.3s ease-in-out;
}
.filter_annuler:hover img {
    transform: rotate(-45deg);
}
.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: 5px 12px;
    width: 100%;
}

.title_page::before {
    content: "";
    background-color: var(--standard-yellow);
    position: absolute;
    width: 13px;
    height: 60px;
    left: 0;
    top: 25px;
    border-radius: 0px 50px 50px 0px;
}
.custom_close_btn {
    position: absolute;
    top: 7px;
    right: 7px;
    background: transparent;
    border: none;
}
.filter-white {
    filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(0%)
        hue-rotate(115deg) brightness(108%) contrast(108%);
}
/* Modal detail */
.fs-7{
    font-size: 14px !important;
}
.title_detail {
    color: var(--primary-h1-dash);
    font-family: var(--font-Lufga);
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0px;
    width: 60%;
    text-align: center;
    padding: 1rem 0px;
    margin: 0 auto;
}
.user_profile {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    object-fit: cover;
}
h3.full_name {
    color: #31394d;
    font-family: var(--font-Lufga);
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0;
}
.locale {
    color: #748aa1;
    font-family: var(--font-Lufga);
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 0;
}
.label_detail {
    color: #31394d;
    font-family: var(--font-Lufga);
    font-size: 12px;
    font-weight: 500;
}
.before_border::before {
    content: "";
    width: 1px;
    height: 50%;
    background: var(--primary-color);
    position: absolute;
    left: 28%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.shadow_row {
    background: white;
    padding: 16px 5px;
    border-radius: 10px;
    box-shadow: 0px 2px 6px 0px #00000008;
}
.h4_detail {
    color: var(--primary-color);
    font-family: var(--font-Lufga);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.wp__infos{
    border: 1px solid var(--primary-color-dash);
    padding: .7rem .5rem .7rem .8rem;
    background: #CFA0FF0D;
    border-radius: 12px;
    font-family: 'Lufga Regular';
    font-weight: 400;
    color: #202020;
    font-size: 14px;
    position: relative;
}
.infos__label{
    color: var(--primary-color);
    font-family: var(--font-Lufga);
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    position: absolute;
    top: -8px;
    background: white;
}
.row_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    height: 250px;
}
.row_grid div:nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}
.row_grid div:nth-child(2) {
    grid-column: 3 / span 2;
    grid-row: 1 / span 2;
}
.row_grid div:nth-child(3) {
    grid-column: 5 / span 1;
    grid-row: 1 / span 1;
}
.row_grid div:nth-child(4) {
    grid-column: 5 / span 1;
    grid-row: 2 / span 1;
}
.row_grid div {
    position: relative;
    overflow: hidden;
}
.row_grid img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
.plus-overlay {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    pointer-events: none;
}


/* .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-Lufga);
    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-Lufga);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.16px;
}
th div {
    width: 10vw;
}
.checkBox {
    display: block;
    cursor: pointer;
    width: 15px;
    height: 15px;
    border: 3px 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-dash);
    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-Lufga);
    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-Lufga);
    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-Lufga);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    min-width: 122px;
}
.modal_title {
    color: var(--primary-h1-dash);
    font-family: var(--font-Lufga);
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.small_info {
    font-family: var(--font-Lufga);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px; /* 100% */
    display: flex;
    gap: 5px;
}
.small_info span {
    color: #000;
}
.small_info p {
    color: rgba(0, 0, 0, 0.48);
}
.small_info__cnt {
    align-items: center;
    gap: 15px; /* Espace entre les éléments */
}
.small_info:not(:last-child)::after {
    content: "";
    width: 1.3px;
    height: 12px;
    background: #33057ed6;
    display: inline-block;
    margin: 0 10px;
}
.user_div img {
    width: 47px;
    height: 47px;
    border-radius: 100%;
    object-fit: cover;
}
.user_div span {
    color: var(--primary-h1-dash);
    font-family: var(--font-Lufga);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}
.user_div p {
    margin-bottom: 0px;

    color: var(--light-gray-dash);
    font-family: var(--font-Lufga);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.modal_devis {
    padding: 30px 0px;
    border-radius: 24px;
    border: 1px solid rgba(66, 75, 84, 0.1);
    background: #fafafa;
}
.modal_devis .modal-header {
    border-bottom: none;
}
.modal_devis .iteme {
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.03);
}
.modal_devis .iteme2 {
    padding: 6px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.03);
}
.role_top_modal > div:nth-child(2) {
    border-left: 1px solid var(--Color-Brand-Lavande);
    border-right: 1px solid var(--Color-Brand-Lavande);
}
.col-50 {
    width: 50%;
    height: 100%;
}
.title_prop {
    color: #000;
    font-family: var(--font-Lufga);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
}
.price_prop {
    color: #000;
    font-family: var(--font-Lufga);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
}
.description_prop {
    color: #000;
    font-family: var(--font-Lufga);
    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: 2px 40px;
}
.modal-body .iteme {
    border-bottom: 1px solid #dbdbdb;
}
.input_item label {
    display: block;
    color: var(--Black, #000);
    font-family: var(--font-Lufga);
    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-Lufga);
    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-Lufga);
    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-Lufga);
    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-Lufga);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    margin-left: 10px;
}
.pdf_devis {
    display: flex;
    gap: 5px;
    align-items: center;
}
.level-user-tag {
    width: 22px;
    height: auto;
}
.user_level {
    display: flex;
    align-items: center;
}
.user_level p {
    color: var(--primary-h1-dash);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 0px;
}
/* Conteneur de la barre de progression */
.percentage_line {
    flex: 1;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 20px;
}

/* Barre de progression */
.progress-bar {
    height: 100%;
    width: 0;
    background-color: var(--primary-color-dash);
    border-radius: 5px;
    transition: width 0.5s ease;
}
.modal_devis h3:not(.full_name) {
    color: var(--Color-Brand-Lavande);
    font-size: 16px;
    font-weight: 600;
}
/* From Uiverse.io by kamehame-ha */
.input__cnt,
.textarea__cnt {
    position: relative;
}

/* Input styling */
.input__cnt input,
.input__cnt select,
.textarea__cnt textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--Color-Gray-900, #202020);
    border: 1px solid #cfa0ff;
    border-radius: 12px;
    background: rgba(207, 160, 255, 0.05);
}
.input__cnt select:focus{
    border-color: var(--Color-Brand-Lavande);
    box-shadow: none;
}

.input__cnt input:focus,
.input__cnt select:focus,
.textarea__cnt textarea:focus {
    outline: none;
}

/* Placeholder opacity based on container state */
.input__cnt:not(.active) input::placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.input__cnt.active input::placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Label styling */
.input__cnt label {
    text-transform: capitalize;
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s ease all;
    font-size: 14px;
    color: var(--Color-Gray-900, #202020);
    pointer-events: none;
    background-color: transparent;
}
.textarea__cnt label {
    text-transform: capitalize;
    position: absolute;
    left: 14px;
    top: 10px;
    transition: 0.3s ease all;
    font-size: 14px;
    color: var(--Color-Gray-900, #202020);
    pointer-events: none;
    background-color: transparent;
    font-weight: 900;
}

/* When active, float the label above */
.input__cnt.active label {
    top: 0px;
    font-size: 10px;
    background: #fff;
    padding: 0 5px;
    color: var(--Color-Brand-Lavande);
}
.textarea__cnt.active label {
    background: #fff;
    padding: 0 5px;
    color: var(--Color-Brand-Lavande);
    font-size: 14px;
    font-weight: 900;
    top: -9px;
}
.input__item_col {
    padding-inline: 5px;
}
.input__item_col:not(:last-child) {
    margin-bottom: 13px;
}
.intrest_tag {
    color: var(--primary-h1-dash);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 200% */
    letter-spacing: -0.362px;
    border-radius: 12px;
    border: 1px solid #cfa0ff;
    background: rgba(207, 160, 255, 0.2);
    padding: 4px 10px;
    display: inline-flex;
    margin-bottom: 7px;
}
.intrest_tagv2 {
    color: var(--primary-h1-dash);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 200% */
    letter-spacing: -0.362px;
    border-radius: 12px;
    border: 1px solid #cfa0ff;
    background: rgba(207, 160, 255, 0.2);
    padding: 4px 25px;
    display: inline-flex;
}
.grid__imgs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 108px);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}
.grid__img-1 {
    grid-area: 1 / 1 / 3 / 2;
}
.grid__img-2 {
    grid-area: 1 / 2 / 2 / 3;
}
.grid__img-3 {
    grid-area: 2 / 2 / 3 / 3;
}
.grid__imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.grid__img-more {
    grid-area: 2 / 2 / 3 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: contrast(0.5);
}
.view-more-btn {
    color: #8100c1;
}
.intrests__cnt {
    flex: 1;
}
.page-link.active,
.active > .page-link {
    background-color: var(--standard-yellow);
    border: 1px solid rgba(74, 32, 116, 0.396);
    color: black;
}
.page-link {
    color: black;
}
.page-link:hover,
.page-link:focus {
    color: black;
    box-shadow: none;
}
/* ========================================================================== */
/* 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-Lufga);
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    margin-bottom: 7vh;
}
.input_label {
    color: #2d2d2d;
    
    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-size: 14px;
    font-style: normal;
    font-weight: 400;
    width: 100%;
}
.login_input:focus {
    border: 1px solid var(--primary-color-dash);
    box-shadow: none;
    background-color: #cfa0ff0d;
    transition: all 0.3s ease-in-out;
}
.content_login {
    max-width: 404px;
    margin-inline: auto;
}
.muted_text {
    color: #2d2d2d;
    
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    opacity: 0.75;
}
.login_submit {
    border-radius: 8px;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--font-Lufga);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    outline: none;
    border: none;
    width: 100%;
    padding: 12px;
}

.form-control {
    outline: none;
    box-shadow: none;
    border-color: var(--primary-color-dash);
}
.content_login .form-check {
    display: flex;
    gap: 10px;
    align-items: center;
}
.login_submit:hover {
    background: var(--primary-color-dash);
    transition: all 0.3s ease-in-out;
}
.p_tag_login {
    color: #828282;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
}
.p_tag_login strong {
    color: #000;
    
}
.add_btn {
    border-radius: 50px;
    background: var(--primary-color-dash);
    color: black;
    font-family: var(--font-Lufga);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    outline: none;
    border: none;
    padding: 13px 20px;
    gap: 10px;
    display: flex;
    gap: 10px;
}
.add_btn img {
    transition: all 0.2s ease-in;
}
.add_btn:hover img {
    transform: rotate(45deg);
}
.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-Lufga);
    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-Lufga);
    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-Lufga);
    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-Lufga);
    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-Lufga);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
}
.delete_p {
    color: #525252;
    font-family: var(--font-Lufga);
    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: 5px 9px;
    color: #0468c6;
    font-family: var(--font-Lufga);
    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: black;
    color: white;
    opacity: 1;
    border: none;
}
.btn_block .active {
    background: black;
    color: white;
    opacity: 1;
    border: none;
    font-weight: 700;
}
.admin_tag {
    display: block;
    color: var(--pure-white);
    text-align: center;
    font-family: var(--font-Lufga);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: 0.16px;
    width: 100%;
    padding: 7px;
    max-width: 115px;
    border-radius: 60px;
    border: 1px solid #1f1431;
    background: var(--primary-h1-dash);
}
.admin-supp_tag {
    background: var(--Color-Brand-Lavande);
    color: var(--pure-white);

    display: block;
    text-align: center;
    font-family: var(--font-Lufga);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: 0.16px;
    width: 100%;
    padding: 7px;
    max-width: 115px;
    border-radius: 60px;
}
.editor-tag {
    color: var(--primary-h1-dash);
    border-radius: 60px;
    border: 1px solid var(--Color-Brand-Lavande-200, #cfa0ff);
    background: rgba(207, 160, 255, 0.1);

    display: block;
    text-align: center;
    font-family: var(--font-Lufga);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: 0.16px;
    width: 100%;
    padding: 7px;
    max-width: 115px;
    border-radius: 60px;
}
.investisseur_tag {
    display: block;
    border-radius: 50px;
    background: rgba(253, 174, 3, 0.04);
    color: #fdae03;
    text-align: center;
    font-family: var(--font-Lufga);
    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-Lufga);
    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-Lufga);
    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-Lufga);
    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-Lufga);
    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-Lufga);
    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-Lufga);
    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-Lufga);
    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-Lufga);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.comission_badge .value {
    color: #fff;
    font-family: var(--font-Lufga);
    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-Lufga);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.sidebar .user-info img {
    border-radius: 27.98px;
    border: 1.119px solid #fff;
    width: 55px ;
    height: 55px ;
}
.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-Lufga);
    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%;
}

.role_top_modal {
    display: flex;
    align-items: anchor-center;
}
.modal-body {
    scrollbar-color: var(--primary-color-dash); /* For Firefox */
}

/* For WebKit Browsers (Chrome, Safari, Edge) */
.modal-body::-webkit-scrollbar {
    width: 8px; /* Scrollbar width */
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color-dash); /* Thumb (scroll handle) color */
    border-radius: 4px; /* Rounded edges */
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color-dash); /* Color when hovered */
}
.modal .text-danger {
    font-size: 12px;
    line-height: 12px;
}
#interest-fields-container {
    display: flex;
    flex-wrap: wrap;
}
#add-interest-btn {
    height: fit-content;
}
.input-container {
    margin-right: 8px;
    width: 30%;
    position: relative;
    margin-bottom: 8px;
}
.input-container .remove-btn {
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border-radius: 50%;
    padding: 3px 4px;
    line-height: 9px;
    font-size: 10px;
    border: 1.5px solid #ff0000;
    color: #ff0000;
    opacity: 0.7;
}
.input-container input {
    width: 100%;
    outline: none;
}
.curser-pointer {
    cursor: pointer;
}
.intrest_img {
    width: 18px;
    height: auto;
}
#add-interest-btn {
    border-radius: 12px;
    border: 1px solid var(--Color-Brand-Lavande-200, #cfa0ff);
    background: rgba(207, 160, 255, 0.4);
    padding: 11px 11px;
    font-size: 33px;
    line-height: 16px;
}
.text-transparent {
    color: transparent !important;
}
.input__cnt.no-toggle .lab_img {
    top: 0px;
    font-size: 10px;
    background: #fff;
    padding: 0 5px;
    color: var(--Color-Brand-Lavande);
}
label[for="description"]{
    font-size: 11px !important;
    font-weight: 400 !important;
}
.wp_is_anonyme{
    padding: 7px;
    border: 1px solid var(--primary-color-dash);
    background: rgba(207, 160, 255, 0.05);
}
.form-check-input:checked {
    background-color: var(--primary-color-dash);
    border-color: var(--primary-color-dash);
}
.content_login .form-check-input {
    width: 25px;
    height: 25px;
}
.content_login .form-check-input:focus {
    box-shadow: none;
}
.form-switch .form-check-input:focus{
    box-shadow: none;
    border-color: #dee2e6;
}




/* ========================================================================== */
/* Media Queries                                                             */
/* ========================================================================== */

@media (min-width: 1200px) {
    .content_login {
        max-width: 650px !important;
    }
}

@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: 13px;
    }
    th {
        font-size: 13px;
    }
    .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: 15px;
        height: auto;
    }
    .sidebar-nav .nav-item a {
        padding: 9px 9px;
    }
    .expanded .sidebar-logo img {
        width: 120px;
        height: 86px;
    }
    .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) {
    .wrapper_cnt {
        justify-content: center;
    }
    .title_detail {
        font-size: 1.5rem;
    }
    .row_grid {
        gap: .25rem;
        height: 175px;
    }    
}
@media (max-width: 375px) {
    .row_grid {
        height: 150px;
    }
    .plus-overlay {
        font-size: 1rem;
    }  
    .title_detail {
        font-size: 1.3rem;
    }  
}
@media (min-width: 576px) {
    .modal-dialog-user {
        max-width: 800px !important;
        margin-right: auto;
        margin-left: auto;
    }
    .modal-dialog-md {
        max-width: 700px !important;
        margin-right: auto;
        margin-left: auto;
    }
    .modal-dialog-sm {
        max-width: 600px !important;
        margin-right: auto;
        margin-left: auto;
    }
}

.btn_group {
    border-radius: 100px;
    background: linear-gradient(
            0deg,
            rgba(207, 160, 255, 0.08) 0%,
            rgba(207, 160, 255, 0.08) 100%
        ),
        #fff;
    padding: 10px 9px;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}
.btn-item {
    width: fit-content;
    padding: 4px 9px;
    margin: 5px 5px;
    display: flex;
    align-items: flex-start;
    gap: 5px;
    transition: all 0.2s ease-in;
    color: #000;
}
.btn-item img {
    transition: all 0.2s ease-in;
}
.btn-item.active {
    border-radius: 100px;
    background: #1f1431;
    color: white;
}
.btn-item.active img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
        hue-rotate(38deg) brightness(107%) contrast(103%);
}
.btn-item:hover {
    border-radius: 100px;
    border-right: 1px solid rgba(207, 160, 255, 0.3);
    background: #1f1431;
    color: white;
}
.btn-item:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
        hue-rotate(38deg) brightness(107%) contrast(103%);
}
.group_line {
    height: 32px;
    width: 1px;
    background: black;
    padding: 4px 0px;
    margin: 5px 5px;
}
.btn_group div {
    display: flex;
    flex: auto;
    justify-content: center;
}
/* checkbox */
.switch
{
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    appearance: none;
    cursor: pointer;
}


.switch::before {
    content: "";
    width: 41px;
    height: 20px;
    border-radius: 27.43px;
    background: rgba(235, 235, 235, 0.26);
    transition: 0.2s;
}

.switch:checked::before {
    background-color: #CFA0FF;
}

.switch::after {
    content: "";
    position: absolute;
    left: 2px;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    transition: 0.2s ease-out;
    border: 4 solid #D6D6D6;
    background-color: #D6D6D6;
}

.switch:checked::after {
    left: 20px;
    transition: 0.2s ease-in;
    border: 4px solid #1F1431;
    background-color: #FFFFFF; 
}
/* pop-ups */
.pop-ups-item{
    padding-block: 30px;
}
.pop-ups-item:not(:last-child) {
    border-bottom: 1px solid rgba(4, 104, 198, 0.10);
}
.pop-ups-item h3 {
    color: var(--Color-Gray-900, #202020);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: normal;
}
.pop-ups-item p {
    color: var(--Color-Gray-900, #202020);
    font-family: var(--font-Lufga);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 20px;
}
.pop-up__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.pop-up__content-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  border-radius: 12px;
  border: 1px solid rgba(207, 160, 255, 0.36);
  background: rgba(245, 248, 249, 0.10);
  padding: 12px 16px;
  flex-grow: 1;
}
.pop-up__content-left.is_active {
  
    border: 1px solid #CFA0FF;
    background: rgba(207, 160, 255, 0.20);
}
.pop-up__content-right {
  display: flex;
  justify-content: end;
  gap: 8px;
}
.icon-delete {
    width: 16px;
    height: 16px;
}
.input_check{
  
  border-radius: 12px;
  border: 1px solid rgba(207, 160, 255, 0.36);
  background: rgba(245, 248, 249, 0.10);
  display: flex;
  align-items: center;
}