/* COLORS signin profil-cover-photo connexion ri-search-line*/
:root {
    --red: #DC3545;
    --white: #ffffff;
    --dark-blue: #101828;
    --grey: #888888;
    --blue: #2E6BFF;
    --txt-tertiary: #475467;
    --txt-secondary:#344054;
    --border-primary: #D0D5DD;

    --header-height: 3rem;

    --hue: 174;
    --sat: 63%;

    --first-color: hsl(var(--hue), var(--sat), 40%);
    --first-color-alt: hsl(var(--hue), var(--sat), 36%);
    --title-color: hsl(var(--hue), 12%, 15%);
    --text-color: hsl(var(--hue), 100%, 99%);
    --body-color: hsl(var(--hue), 100%, 99%);
    --container-color: #FFF;

    --body-font: sans-serif;
    --h1-font-size: 1.5rem;
    --normal-font-size: .938rem;
    --tiny-font-size: .625rem;

    --z-tooltip: 10;
    --z-fixed: 100;

}

/* FONTS */
.inter-100 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}
.inter-200 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}
.inter-300 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}
.inter-400 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}
.inter-500 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}
.inter-600 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}
.inter-700 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}
.inter-800 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}
.inter-900 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}

/* CUSTOMS */
body{
    background-color: var(--white);
}

.unread {
    background-color: #f0f8ff;  
    font-weight: 600;
    /*border-left: 5px solid #17b26a;*/
}

.unread-background {
    background-color: rgba(0, 123, 255, 0.1); 
    border-radius: 8px;
    padding: 6px;
}

/*======= loader==========*/

.svg-loader {
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 117px;
    height: 42px;
    left: calc(50% - 58.5px);
    top: calc(50% - 21px);
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.svg-loader svg {
    animation: rotate 1s linear infinite;
}

/* Le cercle animé */
.circle-loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3; /* Couleur de l'arrière-plan du cercle */
    border-top: 5px solid #DC3545; /* Couleur principale (#DC3545) */
    border-radius: 50%; /* Rend le div circulaire */
    animation: spin 1s linear infinite; /* Animation de rotation */
}

/* Animation de rotation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
#de-preloader {
    position: fixed;
    z-index: 20000;
    background: #ffffff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}



/**===== OFCANVAS FOR MOBILE UX ========== ***/
    .offcanvas-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 100%;
        height: 100%;
        background-color: #fff;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
        transition: left 0.5s ease;
        z-index: 999;
        overflow-y: auto; /* Ajout pour permettre le scroll */
    }

    .offcanvas-menu .menu-header {
        display: flex;
        justify-content: flex-end;
        padding: 10px;
    }

    .close-menu-button {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }

    .menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu-item {
        border-bottom: 1px solid #eee;
    }

    .menu-item a {
        display: block;
        padding: 15px;
        text-decoration: none;
        color: #333;
    }

    .menu-item a:hover {
        background-color: #f4f4f4;
    }

    .dropdown-toggle {
        position: relative;
        font-weight: 600;
        font-size: 16px;
    }

    .dropdown__arrow {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 16px; /* Ajustez la taille selon vos besoins */
        transition: transform 0.3s ease; /* Transition pour l'animation de rotation */
    }

    /* Animation pour indiquer le dépliement du dropdown */
    .dropdown-toggle.active .dropdown__arrow {
        transform: translateY(-50%) rotate(180deg);
    }




    .submenu {
        display: none;
        list-style: none;
        padding-left: 20px;
        margin: 0;
        background: #f9f9f9;
    }

    .submenu li a {
        padding: 10px 15px;
        font-size: 14px;
    }


/* notification content scrolldown */
#notification_list {
    max-height: 200px;
    overflow-y: auto; /* Permet le défilement vertical */
    scrollbar-width: thin; /* Ajuste la largeur de la scrollbar (Firefox) */
    scrollbar-color: #ccc #f9f9f9; /* Couleur de la scrollbar (Firefox) */
}

/* Style pour les scrollbars dans Webkit (Chrome, Edge, etc.) */
#notification_list::-webkit-scrollbar {
    width: 6px;
}

#notification_list::-webkit-scrollbar-track {
    background: #f9f9f9; /* Couleur de fond de la track */
}

#notification_list::-webkit-scrollbar-thumb {
    background-color: #ccc; /* Couleur du curseur */
    border-radius: 3px; /* Coins arrondis */
}

.profileImageCircle{
    border-radius: 50px;
}

.container-custom{
    max-width: 1280px;
}

.top-header{
    padding: 19px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-header-left{
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.bottom-header form,
.top-header-left form{
    display: flex;
    align-items: center;
}

.bottom-header form{
    display: none;
}

.bottom-header .input-group,
.top-header-left .input-group{
    padding: 6px 8px 6px 18px;
    background-color: #f3f3f3;
    border-radius: 9999px;
    align-items: center;
}

.bottom-header .input-group input[type=text],
.top-header-left .input-group input[type=text]{
    width: 617px;
    height: 28px;
    border: none;
    box-shadow: none;
    background-color: transparent;
    font-size: 14px;
    color: #667085;
}

.bottom-header .input-group button,
.top-header-left .input-group button{
    width: 28px;
    height: 28px;
    border-radius: 50% !important;
    border: none;
    background-color: var(--dark-blue);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-header .menu{
    gap: 20px;
}

.top-header .menu-actions{
    gap: 4px;
}

.top-header .nav-item{
    display: flex;
    align-items: center;
}

.top-header .nav-link{
    padding: 0;
}

.top-header-cta:hover,
.top-header-cta:focus,
.top-header-cta:active,
.top-header-cta{
    transition: all 0.35s;
    display: flex;
    background-color: var(--red);
    height: 44px;
    padding: 10px 18px !important;
    align-items: center;
    border-radius: 720px;
    font-size: 16px;
    color: var(--white);
    filter: drop-shadow(0 1px 2px rgba(16,24,40,0.05));
}

.top-header-cta:hover,
.top-header-cta:active{
    background-color: #6941C6;
}

.top-header-cta:focus{
    background-color: #7F56D9;
    box-shadow: 0 0 0 4px rgba(158,119,237,0.24);
}

.top-header-cta.disabled{
    background-color: #F2F4F7;
    color: #98A2B3;
}

.top-header .menu-actions .nav-link{
    transition: all 0.35s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.top-header .menu-actions .nav-link:hover,
.top-header .menu-actions .nav-link:active,
.top-header .menu-actions .nav-link.active{
    background-color: #F9FAFB;
}

.top-header .menu-actions .nav-link:focus{
    box-shadow: 0 0 0 4px rgba(152,162,179,0.14);
    background-color: transparent;
    /* filter: drop-shadow(0 0 0 4px rgba(152,162,179,0.14)); */
}

nav .nav::-webkit-scrollbar {
    display: none;
}
  

nav .nav{
    flex-wrap: nowrap;
    /*overflow-y: scroll;*/ 
    -ms-overflow-style: none;
    scrollbar-width: none; 
    justify-content: center;
}


nav .nav-link{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

nav .nav-link .nav-text{
    font-size: 14px;
    color: var(--dark-blue);
    text-wrap: nowrap;
}


/* ======== dropdown =========== */
ul{
    list-style: none;
}

.dropdownP{
    position: relative;
    
}
.dropdownP-menu{
    position: absolute;
    left: 0;
    top: calc(100% + .25rem);
    background: white;
    padding: .75rem;
    border-radius: .25rem;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
    z-index: 999999;
   
}

.dropdownP.active > .link + .dropdownP-menu{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
ul.dropContent{
    display: flex; 
    flex-direction: column;
    margin-top: .3rem;
    gap: .1rem;
    border: 1px solid transparent;
    background-color: #f8f8f8;
    padding-left: .1rem;
    margin: 0rem;
}



ul.dropContent li {
    max-width: 10rem;
    flex-wrap: nowrap;
    margin: 0;

}
ul.dropContent li:hover a.dropdown-item {
   background: var(--red);
}

ul.dropContent li a{
    flex-wrap: nowrap;
    font-size: 15px;
    font-weight: 400;
    padding: 0;
    width: 100%;

    display: block;
    text-align: center;
    padding: .3rem;
    border-radius: 4px; 
    color: #333
}

ul.profil_ul {
    left: -10rem;
    top: calc(100% + .25rem);
    border: 1px solid #EAECF0;
    border-radius: 8px;
    width: 200px;

}
ul.profil_ul li{
    padding: 2.5px 6px;
}


.menu .dropdown-toggle::after{
    display: none;
}

.menu .dropdown-toggle{
    border-radius: 50%;
    box-shadow: none;
    border: 4px solid transparent;
}

.menu .dropdown-toggle:active,
.menu .dropdown-toggle:focus{
    border: 4px solid rgba(152, 162, 179,0.14);
}

.login_drop{
    padding: 0;
    margin-left: -1rem;
}
.dropdown-menu{
    padding: 0;
    border: 1px solid #EAECF0;
    border-radius: 8px;
    overflow: hidden;
    width: 240px;
}

.dropdown-menu li{
    padding: 2.5px 6px;
}

.dropdown-item{
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
    padding: 11px 10px;
}

.dropdown-item:not(.divider):hover{
    background-color: #F9FAFB;
}

li.for-divider{
    padding: 0;
}

.dropdown-item.divider{
    display: block;
    margin: 5px 0;
    padding: 0;
    height: 1px;
    background-color: #EAECF0;
    width: 100%;
}

.dropdown-item-left{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1;
    color: #344054;
}

.menu .dropdown-item:not(.divider):hover .dropdown-item-left{
    color: #182230;
}

.dropdown-item-right{
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    color: #667085;
}

li.for-profile{
    padding: 12px 16px !important;
}

li.for-profile>div{
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
}

.drop-avatar{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drop-avatar img{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.drop-avatar .online-indicator{
    width: 10px;
    height: 10px;
    background-color: #D0D5DD;
    border: 2px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
}

.drop-avatar .online-indicator.online{
    background-color: #17B26A;
}

.drop-profile{
    display: flex;
    flex-direction: column;
}

.drop-profile .name{
    font-size: 14px;
    line-height: 20px;
    color: #344054;
}

.drop-profile .email{
    font-size: 14px;
    line-height: 20px;
    color: #475467;
}

#cta{
    background-image: url('../images/home/cta_section.png');
    min-height: 592px;
    background-position: center;
    background-size: cover;
    padding: 48px 0;
}

.cta-content{
    padding: 35px 32px;
}

.cta-content h1{
    font-size: 48px;
    line-height: 60px;
    color: #475467;
    margin-bottom: 24px;
}

.cta-content p{
    font-size: 20px;
    line-height: 30px;
    color: #475467;
    margin-bottom: 48px;
}

.cta-content form{
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-input{
    background-color: #ffffff;
    border-radius: 9999px;
    height: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    filter: drop-shadow(0 1px 2px rgba(16, 24, 40,0.05));
}

.cta-input select,
.cta-input input{
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    color: #667085;   
    background-color: transparent;
}

.cta-input label{
    margin-left: auto;
}

.cta-input select{
    -webkit-appearance: none;
    -moz-appearance: none;
}

.cta-content form button{
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    background-color: #0C111D;
    border: 1px solid #0C111D;
    border-radius: 9999px;
    margin-top: 12px;
}

.cta-img{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-img img{
    object-fit: contain;
}

#annonces{
    padding: 64px 0 96px 0;
    background-color: #ffffff;
}

.page-title{
    font-size: 36px;
    line-height: 44px;
    color: #101828;
    margin-bottom: 20px;
}

#annonce-create .page-title{
    margin-bottom: 4px;
}
.page-title-desc{
    font-size: 20px;
    line-height: 30px;
    color: #344054;
    margin-bottom: 0;
}

.page-title-desc-2{
    font-size: 14px;
    line-height: 20px;
    color: #475467;
    margin-bottom: 0;
}

.annonce-list{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 64px 0;
}

.annonce-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 calc(33.33% - 24px);
}

.annonce-author{
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 16px;
}

.annonce-author .avatar img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.annonce-author-text{
    display: flex;
    flex-direction: column;
}

.annonce-author-text .name{
    font-size: 14px;
    line-height: 20px;
    color: #101828;
}

.annonce-author-text .time{
    font-size: 14px;
    line-height: 20px;
    color: #344054;
}

.annonce-imgs{
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    /* height: 220px; */
}

.annonce-imgs .img-item img{
    width: 100%;
    object-fit: cover;
}

.annonce-imgs .img-badge{
    position: absolute;
    z-index: 9;
    left: 8px;
    bottom: 8px;
    min-width: 51px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: rgba(16, 24, 40,0.9);
    border-radius: 9999px;
    font-size: 14px;
    color: #ffffff;
}

.annonce-infos{
    padding: 20px 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.annonce-location{
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.annonce-location span{
    font-size: 16px;
    line-height: 24px;
    color: #344054;
}

.annonce-desc{
    font-size: 18px;
    line-height: 28px;
    color: #101828;
    height: 56px;
    overflow: hidden;
    text-decoration: none;
}

.annonce-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.annonce-footer .price{
    font-size: 20px;
    line-height: 30px;
    color: #2E6BFF;
}

.annonce-footer .price .devise{
    font-size: 16px;
}

.annonce-ads{
    border-radius: 12px;
    overflow: hidden;
}

.annonce-ads img{
    width: 100%;
}

.annonce-pagination{
    padding: 30px 0 10px 0;
    border-top: 1px solid #EAECF0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pagination-btn{
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 14px;
    color: #475467;
    outline: none;
}

.pagination-btn:hover svg path{
    stroke: #344054;
}

.pagination-btn:hover{
    color: #344054;
}

.pagination-nums{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.pagination-num{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
    color: #182230;
}

.pagination-num.active,
.pagination-num:hover{
    background-color: #F9FAFB;
    color: #182230;
}

.pagination-num:focus{
    box-shadow: 0 0 0 4px  rgba(152, 162, 179,0.14);
    outline: none;
    background-color: #F9FAFB;
}

#banner{
    padding: 64px 0 96px 0;
}

.banner-content{
    background-color: #101010;
    background-image: url('../images/home/Container.png');
    height: 250px;
    background-size: 500px;
    background-position: left center;
    background-repeat: no-repeat;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0 45px;
}

.banner-title{
    font-size: 30px;
    line-height: 38px;
    color: #ffffff;
    text-align: right;
    margin-bottom: 8px;
}

.banner-desc{
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    text-align: right;
}

#prefooter{
    background-color: #FFE9EB;
    padding: 69px 0;
}

.prefooter-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.prefooter-text h3{
    font-size: 30px;
    line-height: 38px;
    color: #101828;
    margin-bottom: 8px;
}

.prefooter-text p{
    font-size: 16px;
    line-height: 24px;
    color: #475467;
    margin-bottom: 0;
}
.prefooter-cta{
    min-width: 195px;
    justify-content: center;
}

.prefooter-cta a{
    display: flex;
    height: 48px;
    padding: 12px 18px;
    background-color: #DC3545;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    color: #ffffff;
}

#footer-menu{
    padding: 64px 0;
}

.footer-logo img{
    width: 122px;
    margin-bottom: 24px;
}

.footer-desc{
    font-size: 16px;
    line-height: 24px;
    color: #475467;
    max-width: 320px;
}

.footer-nav{
    flex-direction: column;
    gap: 12px;
}

.footer-nav .nav-title{
    font-size: 14px;
    line-height: 20px;
    color: #344054;
}

.footer-nav .nav-link{
    padding: 0;
    font-size: 16px;
    line-height: 24px;
    color: #475467;
}

#footer-copyright>.container-custom{
    border-top: 1px solid #EAECF0;
    padding-top: 32px;
    padding-bottom: 48px;
}

#footer-copyright span,
#footer-copyright a{
    font-size: 16px;
    line-height: 24px;
    color: #475467;
}

.footer-social{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.pagination-desc,
.open-menu-mobile{
    display: none;
}

article{
    padding: 48px 0;
}

.breadcrumb{
    margin-bottom: 24px;
    flex-wrap: nowrap;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none; 
}

.breadcrumb::-webkit-scrollbar {
    display: none;
}

.breadcrumb li{
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.breadcrumb-item a{
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: #475467;
    padding-right: 8px;
    text-decoration: none;
}

.breadcrumb-item a:hover{
    color: #344054;
}

.breadcrumb-item:not(:first-child) a{
    padding-left: 8px;
}

.breadcrumb-item.active{
    font-size: 14px;
    color: #101828;
}

.breadcrumb-item.active::before{
    padding-right: 16px;
}

.breadcrumb-item+.breadcrumb-item::before{
    content: url('../images/home/divider.svg');
}

.article-content{
    max-width: 720px;
}

/*
.article-image-full{
    border-radius: 12px;
    height: 480px;
    background-image: url('../img/Image.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}
*/

.article-tools{
    align-self: flex-end;
    padding: 23px;
    display: flex;
    gap: 24px;
}

.article-tools a{
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-tools a:hover{
    background-color: #F9FAFB;
}

.article-btns-slide{
    position: absolute;
    top: calc(50% - 28px);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 8px;
}

.article-btns-slide a{
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.article-btns-slide a:hover{
    background-color: #F9FAFB;
}

.article-img-list{
    display: flex;
    gap: 26px;
    margin-bottom: 40px;
}

.article-img-list a{
    border-radius: 12px;
    overflow: hidden;
}

.article-img-list img{
    width: 100%;
}

.article-infos .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.article-infos h1{
    font-size: 30px;
    color: #101828;
    margin: 0;
}

.article-infos .price{
    font-size: 30px;
    color: #2E6BFF;
}

.article-infos .price .devise{
    font-size: 20px;
}

.article-infos .bottom{
    display: flex;
    align-items: center;
    gap: 24px;
}

.article-infos .location,
.article-infos .time{
    display: flex;
    height: 34px;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #101828;
}

.article-divider{
    margin: 24px 0;
    height: 1px;
    background-color: #EAECF0;
}

.article-voice{
    background-color: #F9FAFB;
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.article-voice .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0C111D;
}

.article-voice .text{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.article-voice .text .title{
    font-size: 14px;
    line-height: 1;
    color: #0C111D;
}

.article-voice .text .title span{
    font-size: 12px;
}

.article-voice .text .desc{
    font-size: 14px;
    line-height: 1;
    color: #475467;
}

.article-infos-2{
    display: flex;
    align-items: center;
    gap: 100px;
}

.article-info-item{
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 160px;
}

.article-info-item .title{
    font-size: 14px;
    color: #667085;
}

.article-info-item .value{
    font-size: 16px;
    color: #101828;
}

.article-desc-content{
    padding: 24px 0;
}

.article-desc-content .title{
    font-size: 18px;
    color: #101828;
    margin-bottom: 12px;
}

.article-desc{
    font-size: 18px;
    line-height: 28px;
    color: #475467;
}

.article-desc p:last-child{
    margin-bottom: 0;
}

.article-info-3{
    display: flex;
    flex-direction: column;
    padding-top: 24px;
    align-items: center;
    gap: 24px;
}

.article-info-3 .text{
    font-size: 16px;
    line-height: 24px;
    color: #475467;
    text-align: center;
}

.article-info-3 a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 169px;
    height: 40px;
    padding: 10px 14px;
    border-radius: 9999px;
    background-color: #ffffff;
    border: 1px solid #D13649;
    font-size: 14px;
    color: #D13649;
    text-decoration: none;
}

.article-info-3 a:hover{
    background-color: #F9FAFB;
    border-color: #EAECF0;
    color: #182230;
}

.article-info-3 a:focus{
    background-color: #F9FAFB;
    border-color: #EAECF0;
    color: #182230;
    box-shadow: 0 0 0 4px rgba(152, 162, 179,0.14);
    outline: none;
}

#suggest{
    padding: 96px 0;
}

.suggest-title{
    font-size: 30px;
    line-height: 30px;
    color: #101828;
}

.suggest-link{
    display: flex;
    min-width: 167px;
    width: fit-content;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid #D0D5DD;
    border-radius: 9999px;
    margin-left: auto;
    font-size: 16px;
    color: #475467;
    text-decoration: none;
    transition: all 0.25s;
    outline: none;
}

.suggest-link:hover{
    background-color: #F9FAFB;
    border-radius: 8px;
    border-color: transparent;
    color: #344054;
}

.suggest-link:hover svg path{
    stroke: #344054;
}

.article-msg{
    background-color: #F9FAFB;
    border-radius: 16px;
    padding: 32px;
}

.article-msg-author{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.article-msg-author .avatar{
    border-radius: 50%;
    overflow: hidden;
    width: 56px;
    height: 56px;
}

.article-msg-author .name{
    font-size: 18px;
    color: #101828;
}

.article-msg-info{
    font-size: 16px;
    line-height: 24px;
    color: #475467;
    margin-bottom: 32px;
}

.article-msg-form form{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label{
    font-size: 14px;
    line-height: 20px;
    color: #344054;
}


.form-group .dropdown button,
.form-group-input,
.form-group input{
    height: 44px;
    border-radius: 8px;
    background-color: #ffffff;
    border: 1px solid #D0D5DD;
    outline: none;
    padding: 10px 14px;
    font-size: 16px;
    color: #101828;
}

.form-group .dropdown button{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-group .dropdown button span{
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group .dropdown button::after{
    display: none;
}

.drop-menu-content{
    border-radius: 8px;
    box-shadow: 0 4px 6px -2px rgba(16, 24, 40,0.03);
    overflow: hidden;
}

.form-group .dropdown .dropdown-menu{
    width: 100%;
    padding: 5px 6px;
    max-height: 320px;
    overflow: hidden;
    overflow-y: scroll;

}

.form-group textarea::-webkit-scrollbar,
.form-group .dropdown .dropdown-menu::-webkit-scrollbar{
    width: 8px;
    margin-top: 5px;
}

.form-group textarea::-webkit-scrollbar-track,
.form-group .dropdown .dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 9999px;
}

.form-group textarea::-webkit-scrollbar-thumb,
.form-group .dropdown .dropdown-menu::-webkit-scrollbar-thumb {
    background: #EAECF0;
    border-radius: 9999px;
} 

.form-group .dropdown .dropdown-menu .dropdown-item{
    height: 44px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 12px 8px;
    font-size: 16px;
    color: #101828;
}

.form-group .dropdown .dropdown-menu .dropdown-item{
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group-input{
    display: flex;
    align-items: center;
    gap: 8px;
}


.form-group-input [role=textbox]{
    border: none;
    background-color: transparent;
    min-width: 50px;
    padding: 0;
    outline: none;
    font-size: 16px;
    color: #101828;
}

.form-group-input-label{
    font-size: 12px;
    line-height: 18px;
    color: #101828;
}

.form-group textarea{
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    height: 257px;
    padding: 12px 14px;
    outline: none;
    font-size: 16px;
    line-height: 24px;
    color: #101828;
    resize: none;
    background-color: #ffffff;
}

.annonce-favoris svg path{
    fill: transparent;
}

.annonce-favoris.liked svg path{
    fill: var(--red);
    stroke: var(--red);
}

.article-msg-form button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 48px;
    width: 100%;
    border-radius: 9999px;
    background-color: #0C111D;
    border: 1px solid #0C111D;
    font-size: 16px;
    color: #ffffff;
}

.article-msg-form button:hover{
    background-color: #6941C6;
    border-color: #6941C6;
}

.article-msg-form button:focus{
    background-color: #7F56D9;
    border-color: #7F56D9;
    outline: none;
}

#annonces-liked,
#mes-annonces,
#dashboard,
#annonce-edit,
#annonce-create{
    background-color: #F8F8F8;
    padding: 48px 0 96px 0;
}

#annonces-liked,
#mes-annonces,
#dashboard{
    background-color: #fff;
}

#annonces-liked .annonce-create-btns{
    align-items: flex-end;
}

#annonces-liked .annonce-create-btns a{
    min-width: 40px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #D0D5DD;
}

#annonces-liked .page-title{
    margin: 0;
}

#annonces-liked hr{
    margin: 0;
    margin-top: 64px;
    border: none;
    height: 1px;
    background-color: #E4E7EC;
}

.report-form-content button,
#annonce-edit .annonce-create-btns button{
    min-width: 142px;
    padding: 12px 18px;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.report-form-content button{
    background-color: var(--red);
    border: 1px solid var(--red);
    border-radius: 999px;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}

#annonce-edit .annonce-create-btns a{
    gap: 6px;
    border: 1px solid #344054;
    color: #344054;
    font-size: 14px;
    line-height: 24px;
    background-color: transparent;
}

.dashboard-content{
    padding-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.metrics-group{
    display: flex;
    gap: 24px;
    align-items: center;
}

.metrics-item{
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40,0.05);
    max-width: 389px;
    width: 100%;
    position: relative;
    border-radius: 12px;
}

.metrics-item .icon{
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.metrics-item .icon img{
    width: 72px;
    height: 72px;
}

.metrics-item.red{
    background-color: var(--red);
}

.metrics-item.black{
    background-color: #0C111D;
}

.metrics-item.grey{
    background-color: #F9FAFB;
    border: 1px solid #E4E7EC;
}

.metrics-item .title{
    font-size: 14px;
    line-height: 20px;
    color: var(--white);
}

.metrics-item .value{
    font-size: 36px;
    line-height: 44px;
    color: var(--white);
}

.metrics-item .tip{
    font-size: 14px;
    line-height: 20px;
    color: var(--white);
}

.metrics-item.grey .title,
.metrics-item.grey .tip{
    color: var(--txt-tertiary);
}

.metrics-item.grey .value{
    color: var(--dark-blue);
}

#dashboard .page-title{
    margin-bottom: 8px;
}

.dashboard-cards{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dash-card{
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid #E4E7EC;
    padding: 24px;
}

.dash-card-head{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dash-card-head .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dash-card-head .title{
    font-size: 18px;
    line-height: 28px;
    color: var(--dark-blue);
    margin: 0;
}

.dash-card-head .tools{
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.dash-card-head .tools .form-group .dropdown button{
    height: 36px;
    padding: 8px 12px;
    font-size: 14px;
    gap: 6px;
}

.dash-card-head .tools .form-group .dropdown .dropdown-menu .dropdown-item{
    height: 36px;
    padding: 0 12px;
    font-size: 14px;
}

.dash-card-head .bottom{
    display: flex;
    align-items: center;
    gap: 32px;
}

.dash-card-head .legend{
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-card-head .legend .dot{
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--txt-secondary);
}

.dash-card-head .legend .dot.red{
    background-color: var(--red);
}

.dash-card-head .legend .dot.red50{
    background-color: #F8D7DA;
}
.dash-card-head .legend .name{
    font-size: 13px;
    line-height: 18px;
    color: var(--txt-secondary);
}

.dash-card-body{
    padding-top: 32px;
}

.dash-card-body .chart svg{
    width: 100%;
    height: auto;
}

.table th:first-child{
    min-width: 700px;
    width: 700px;
    max-width: 700px;
}

.table{
    margin: 0;
}

.table td,
.table th{
    border-bottom: 1px solid #E4E7EC;
}

.table th{
    font-size: 12px;
    line-height: 18px;
    color: var(--txt-tertiary);
    padding: 13px 24px;
}

.mes-annonces-content .table th{
    background-color: #F9FAFB;
}

.table td{
    font-size: 14px;
    line-height: 20px;
    color: var(--txt-tertiary);
    padding: 13px 24px;
}

.table td{
    vertical-align: middle;
}

.table td:first-child{
    display: flex;
    align-items: center;
    gap: 12px;
}

.table td .desc{
    color: var(--dark-blue);
    text-decoration: none;
}

.table td:first-child img{
    width: 58px;
    border-radius: 4px;
}

.dash-card-foot{
    padding-top: 32px;
}

.view-more{
    width: 96px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #888888;
    background-color: #ffffff;
    border-radius: 999px;
    font-size: 14px;
    color: var(--dark-blue);
    line-height: 24px;
    text-decoration: none;
}

.form-switch .form-check-input:checked[type=checkbox][disabled]:hover,
.form-switch .form-check-input:checked[type=checkbox][disabled],
.form-switch .form-check-input{
    height: 20px;
    flex: 0 0 36px;
    width: 36px;
    background-color: #F2F4F7;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
    border-color: transparent;
}

.form-switch .form-check-input:focus{
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #9E77ED;
    border-color: transparent;
}

.form-switch .form-check-input:checked[type=checkbox]{
    background-color: var(--red);
    border-color: var(--red);
}

.form-switch .form-check-input:checked[type=checkbox]:hover{
    background-color: #6941C6;
    border-color: #6941C6;
}

.mes-annonces-content{
    padding-top: 64px;
}

.mes-annonces-content .tools{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    gap: 32px;
}

.filters{
    display: flex;
    align-items: center;
    gap: 12px;
}

.mes-annonces-content .tools .form-group .dropdown button,
.filter-item{
    background-color: #ffffff;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    width: fit-content;
    height: 36px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    cursor: pointer;
}

.mes-annonces-content .tools .form-group .dropdown button,
.filter-item .name{
    font-size: 14px;
    line-height: 20px;
    color: var(--txt-secondary);
}

.mes-annonces-content .tools .form-group .dropdown button:hover,
.filter-item:hover .name{
    color: var(--dark-blue);
}

.mes-annonces-content .tools .form-group .dropdown button:hover svg path,
.filter-item:hover svg path{
    stroke: var(--dark-blue);
}

.mes-annonces-content .tools .form-group .dropdown button:focus,
.filter-item:focus{
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #9E77ED;
}

.mes-annonces-content .form-group .dropdown .dropdown-menu .dropdown-item{
    padding: 0 8px;
    height: 34px;
}

#annonces-liked .search,
.mes-annonces-content .tools .search{
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 999px;
    border: 1px solid #D0D5DD;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40,0.05);
    height: 40px;
    max-width: 290px;
    width: 100%;
    padding: 9px 12px;
    gap: 7px;
}

#annonces-liked .search .icon,
.mes-annonces-content .tools .search .icon{
    display: flex;
    align-items: center;
}

#annonces-liked .search input,
.mes-annonces-content .tools .search input{
    outline: none;
    border: none;
    font-size: 14px;
    line-height: 21px;
    color: #667085;
    width: calc(100% - 19px);
}

.annonce-create-btns{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    height: 100%;
    padding: 0 24px;
}

.annonce-create-btns a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    min-width: 97px;
    padding: 10px 18px;
    background-color: #ffffff;
    border-radius: 9999px;
    font-size: 16px;
    color: #475467;
    text-decoration: none;
    outline: none;
    text-align: center;
}

.annonce-create-btns a:hover{
    background-color: #F9FAFB;
    color: #344054;
}

.annonce-create-btns button{
    background-color: #DC3545;
    border: 1px solid #DC3545;
    height: 48px;
    border-radius: 9999px;
    min-width: 172px;
    padding: 12px 18px;
    font-size: 16px;
    color: #ffffff;
    outline: none;
}

.annonce-create-btns button:hover{
    background-color: #6941C6;
    border-color: #6941C6;
}

.annonce-create-btns button:focus{
    background-color: #7F56D9;
    border-color: #7F56D9;
    box-shadow: 0 0 0 4px rgba(158, 119, 237,0.24);
}

.annonce-create-form{
    padding-top: 24px;
}

.annonce-create-form-card{
    padding: 24px;
    background-color: #ffffff;
    border-radius: 12px;
    margin-bottom: 24px;
}

.annonce-create-form-title{
    margin-bottom: 24px;
}

.annonce-create-form-title h3{
    font-size: 18px;
    color: #101828;
    line-height: 28px;
    margin-bottom: 8px;
}

.annonce-create-form-title p{
    font-size: 14px;
    color: #475467;
    line-height: 20px;
    margin-bottom: 20px;
}

.annonce-create-form-content{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-upload-files{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dropdown-file{
    min-height: 126px;
    border: 1px solid #EAECF0;
    border-radius: 12px;
    padding: 12px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
}

.dropdown-file input[type=file]{
    display: none;
}

.dropdown-file .icon{
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #EAECF0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-file .text{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.dropdown-file .text .info{
    font-size: 14px;
    line-height: 20px;
    color: #2E6BFF;
    text-align: center;
}

.dropdown-file .text .info span{
    color: #475467;
}

.dropdown-file .text .desc{
    font-size: 12px;
    line-height: 18px;
    color: #475467;
    text-align: center;
}

.form-upload-file-list{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.upload-file-item{
    min-height: 72px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid #EAECF0;
}

.upload-file-content{
    position: relative;
    z-index: 99;
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 12px;
}

.upload-file-content .image{
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #D9D9D9;
    overflow: hidden;
}

.upload-file-content .image img{
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.upload-file-item .bg-overlay{
    position: absolute;
    height: 100%;
    background-color: #F9FAFB;
}

.upload-file-item.finished .bg-overlay{
    display: none;
}

.upload-file-info{
    width: 80%;
}

.upload-file-info .desc{
    font-size: 14px;
    line-height: 20px;
    color: #475467;
}

.upload-file-item.main .upload-file-info .name{
    display: flex;
}

.upload-file-item.main .upload-file-info .name::after{
    content: "Image principale";
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    height: 22px;
    padding: 2px 6px;
    background-color: #FDF2FA;
    border: 1px solid #FCCEEE;
    border-radius: 9999px;
    font-size: 12px;
    line-height: 18px;
    color: #DC3545;
    font-weight: 500;
}

.upload-file-info .name{
    font-size: 14px;
    line-height: 20px;
    color: #344054;
}

.upload-file-item.finished .divider,
.upload-file-item.finished .loader{
    display: none;
}

.upload-file-item .delete-btn{
    margin-left: auto;
    display: none;
    align-self: flex-start;
}

.upload-file-item.finished .delete-btn{
    display: block;
}

.upload-file-item .loader-icon{
    margin-left: auto;
}

.upload-file-item.finished .loader-icon{
    display: none;
}

.form-upload-audio{
    min-height: 72px;
    border-radius: 12px;
    border: 1px solid #EAECF0;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.form-upload-audio .icon{
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #EAECF0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-upload-audio .text{
    font-size: 14px;
    line-height: 20px;
    color: #2E6BFF;
}

.form-upload-audio .text span{
    color: #475467;
}

.form-upload-audio input[type=file]{
    display: none;
}

#messages{
    padding: 48px 0;
    background-color: #F8F8F8;
}

.card-msg{
    background-color: #ffffff;
    border-radius: 12px;
    display: flex;
}

.list-msg{
    flex: 0 0 360px;
    border-right: 1px solid #EAECF0;
}

.list-msg .head{
    height: 92px;
    padding: 20px 24px;
}

.list-msg .head h1{
    font-size: 30px;
    line-height: 38px;
    color: #101828;
}

.msg-search-form{
    padding: 0 16px 12px 16px;
}

.msg-search-form form{
    height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid #D0D5DD;
    border-radius: 9999px;
    gap: 8px;
    
}

.msg-search-form form .icon{
    display: flex;
    align-items: center;
    justify-content: center;
}

.msg-search-form form input{
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    color: #667085;
}

.msg-item{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid #EAECF0;
    text-decoration: none;
}

.msg-item.selected{
    background-color: #F9FAFB;
}

.msg-item .unread-status{
    opacity: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #DC3545;
}

.msg-item.unread .unread-status{
    opacity: 1;
}

.msg-item-head{
    display: flex;
    gap: 12px;
    align-items: center;
}

.msg-item-avatar{
    position: relative;
    width: 40px;
    height: 40px;
}

.msg-item-avatar img{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.msg-item-avatar.with-icon .icon{
    display: block;
}
.msg-item-avatar .icon{
    display: none;
    position: absolute;
    bottom: -4px;
    right: 0;
}

.msg-item-sender{
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.msg-item-sender .name{
    font-size: 14px;
    line-height: 20px;
    color: #101828;
}

.msg-item-sender .username{
    font-size: 14px;
    line-height: 20px;
    color: #475467;
}

.msg-item-time{
    align-self: flex-start;
    margin-left: auto;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
}

.msg-preview{
    padding-left: 20px;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
}

.msg-content{
    width: calc(100% - 360px);
}

.msg-content .head{
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #EAECF0;
}

.msg-options {
    margin-left: auto;
}

.msg-options .dropdown-toggle::after{
    display: none;
}

.msg-content-list{
    padding: 0 24px 32px 24px;
    height: 800px;
    overflow-y: scroll;
    scrollbar-width: none; 
    justify-content: center;
}

.msg-content-list::-webkit-scrollbar {
    display: none;
}

.msg-content-section{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.msg-content-section-time{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
}

.msg-content-section-time hr{
    border: none;
    height: 1px;
    border: none;
    border-top: 1px solid #EAECF0;
    opacity: 1;
    width: 100%;
    margin: 0;
}

.msg-content-section-time span{
    position: absolute;
    display: flex;
    height: 20px;
    padding: 0 8px;
    background-color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
}

.msg-content-section-list{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.msg-content-item{
    display: flex;
    gap: 12px;
    max-width: 66%;
}

.msg-content-item.from-you{
    align-self: flex-end;
}

.msg-content-item.writing .text .top .time{
    display: none;
}

.msg-content-item.writing .text .bottom{
    padding: 10px;
    width: fit-content;
}


.msg-content-item.writing .text .bottom .icon-loading{
    display: flex;
    width: fit-content;
}

.msg-content-item.from-you .avatar{
    display: none;
}

.msg-content-item .avatar{
    position: relative;
    width: 40px;
    height: 40px;
}

.msg-content-item .avatar img{
    border-radius: 50%;
}

.msg-content-item .avatar .icon{
    position: absolute;
    right: 0;
    bottom: -8px;
}

.msg-content-item .text{
    display: flex;
    flex-direction: column;
    gap: 6px;
} 

.msg-content-item .text .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
} 

.msg-content-item .text .top .name{
    font-size: 14px;
    line-height: 20px;
    color: #344054;
}

.msg-content-item .text .top .time{
    font-size: 12px;
    line-height: 18px;
    color: #475467;
}

.msg-content-item .text .bottom{
    background-color: #F9FAFB;
    padding: 10px 14px;
    border-radius: 0 8px 8px 8px;
    font-size: 16px;
    line-height: 24px;
    color: #101828;
}

.msg-content-item.from-you .text .bottom{
    background-color: #0C111D;
    border-radius: 8px 0 8px 8px;
    color: #fff;
}

.msg-content-form{
    padding: 24px;
    padding-top: 0;
}

.msg-content-form form{
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    position: relative;
    padding: 12px 14px;
}

.msg-content-form form textarea{
    min-height: 80px;
    height: auto;
    outline: none;
    border: none;
    width: 100%;
    /* resize: none; */
    font-size: 16px;
    line-height: 24px;
    color: #667085;
}

.msg-content-form form .actions{
    position: absolute;
    bottom: 12px;
    right: 14px;
    display: flex;
    gap: 2px;
    align-items: center;
}

.msg-content-form form .actions a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.msg-content-form form .actions a:hover{
    background-color: #F9FAFB;
}

.msg-content-form form .actions button{
    background-color: #DC3545;
    border: 1px solid #DC3545;
    outline: none;
    border-radius: 8px;
    height: 40px;
    padding: 10px 14px;
    margin-left: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
}

#contact{
    padding: 48px 0 128px 0;
}

.contact-card{
    display: flex;
    gap: 64px;
}

.contact-img{
    padding-left: 32px;
    flex: 0 0 50%;
    width: 50%;
}

.contact-img img{
    border-radius: 24px;
    width: 100%;
}

.contact-form{
    padding: 14px 42px;
}

.contact-form h1{
    font-size: 36px;
    line-height: 44px;
    color: #101828;
    margin-bottom: 20px;
}

.contact-form p{
    font-size: 18px;
    line-height: 30px;
    color: #475467;
    margin-bottom: 48px;
}

.contact-form .inputs{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-form .form-check-input:checked[type=checkbox]{
    background-color: #7F56D9;
    border-color: #7F56D9;
}
.contact-form .form-check-label a,
.contact-form .form-check-label{
    font-size: 16px;
    line-height: 24px;
    color: #475467;
}

.contact-form button{
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #DC3545;
    border: 1px solid #DC3545;
    border-radius: 9999px;
    font-size: 16px;
    color: #fff;
    outline: none;
}

.contact-form button:hover{
    background-color: #6941C6;
    border-color: #6941C6;
}

.contact-form button:focus{
    background-color: #7F56D9;
    border-color: #7F56D9;
}

/* NEW CODE */

#signup,
#signin{
    display: flex;
}

.signin-img-panel{
    background-image: url('../images/home/rect3.png'); /*url('../img/Rectangle\ 3.png');*/
    flex: 0 0 50%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 28px;
}

#signup .signin-img-panel{
    background-image: url('../images/home/rect4.png'); /*url('../img/Rectangle\ 4.png');*/
}

.signup-quote{
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    gap: 32px;
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(60px);
}

.signup-quote .stars{
    display: flex;
    gap: 4px;
}

.signup-quote .quote{
    margin: 0;
    font-size: 30px;
    line-height: 38px;
    color: var(--white);
}

.signup-quote .author{
    font-size: 20px;
    line-height: 30px;
    color: var(--white);
}

.signin-form{
    flex: 0 0 50%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.signin-form .form-card{
    height: calc(100% - 96px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.signin-form .form-card form{
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.signin-form .form-card-head{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.signin-form .form-card-head img{
    width: 133px;
}

#signup .signin-form .form-card-head h1{
    text-align: left;
}

.signin-form .form-card-head h1{
    font-size: 30px;
    line-height: 38px;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 12px;
}

#signup .signin-form .form-card-head p{
    text-align: left;
}

.signin-form .form-card-head p{
    font-size: 16px;
    line-height: 24px;
    color: var(--txt-tertiary);
    margin: 0;
    text-align: center;
}

.signin-form .form-card-body{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.signin-form .form-card-body .inputs{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signin-form .form-card-body input{
    border-radius: 9999px;
    font-weight: 400;
    color: var(--dark-blue);
    transition: all 0.25s;
    height: 44px;
}

.form-group .form-info{
    font-size: 12px;
    line-height: 18px;
    color: var(--txt-tertiary);
}

.signin-form .form-card-body input::placeholder{
    color: #667085;
}

.signin-form .form-card-body input:focus{
    border: 2px solid #9E77ED;
    color: var(--dark-blue);
}

.forgot-pass-link{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.forgot-pass-link a{
    color: var(--red);
    text-align: right;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
}

.signin-form .form-card-body .submits{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.signin-form .form-card-body button{
    width: 100%;
    height: 44px;
    border-radius: 99999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    outline: none;
    transition: all 0.25s;
}

.signin-form .form-card-body button img{
    width: 24px;
    height: 24px;
}

.signin-form .main-submit{
    background-color: var(--red);
    position: relative;
    border: none;
    box-shadow: 0 0 0 1px rgba(16,24,40,0.18) inset,0 -2px 0 0 rgba(16,24,40,0.05) inset,0 1px 2px 0 rgba(16,24,40,0.05);
}

.signin-form .main-submit::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(255,255,255,0.12),rgba(255,255,255,0));
    position: absolute;
    z-index: 9;
    border-radius: 99999px;
}

.signin-form .main-submit::after{
    content: "Inscription";
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: #DC3545;
    position: absolute;
    z-index: 99;
    border-radius: 99999px;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    color: var(--white);
}
.signin-form.connexion .main-submit::after{
    content: "Connexion";
}

.signin-form .social-submit{
    background-color: var(--white);
    border: 1px solid var(--border-primary);
    font-size: 16px;
    line-height: 24px;
    color: var(--txt-tertiary);
    box-shadow: 0 0 0 1px rgba(16,24,40,0.18) inset, 0 -2px 0 0 rgba(16,24,40,0.05) inset, 0 1px 2px 0 rgba(16,24,40,0.05);
}

.signin-form .social-submit:hover{
    background-color: #F9FAFB;
}

.signin-form .social-submit:focus{
    background-color: var(--white);
    box-shadow: 0 0 0 1px rgba(16,24,40,0.18) inset, 0 -2px 0 0 rgba(16,24,40,0.05) inset, 0 1px 2px 0 rgba(16,24,40,0.05), 0 0 0 2px #ffffff, 0 0 0 4px #9E77ED;
}

.signin-copyright{
    height: 96px;
    display: flex;
    align-items: center;
    padding: 32px;
    font-size: 14px;
    line-height: 20px;
    color: var(--txt-secondary);
}

.form-card-footer{
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: var(--txt-tertiary);
}

.form-card-footer a{
    color: var(--red);
    text-decoration: none;
}

.logo-card{
    padding: 32px;
    padding-bottom: 25px;
}

.logo-card img{
    width: 133px;
}

#report-annonce{
    padding: 64px 0;
}

.report-form{
    max-width: 480px;
    margin: 32px auto;
}

.report-form-content{
    padding-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.report-form-content .form-group .dropdown button{
    font-size: 16px;
    line-height: 24px;
    color: #667085;
}

.annonce-to-report{
    background-color: #F9FAFB;
    border-radius: 16px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.annonce-to-report .annonce-item{
    min-width: 384px;
    background-color: var(--white);
    padding: 24px;
    border-radius: 12px;
}

.preview-mode{
    margin-bottom: 24px;
    background-color: #101828;
    min-width: 135px;
    width: fit-content;
    height: 24px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 10px;
    font-size: 14px;
    line-height: 20px;
    color: var(--white);
}

.approve-annonce{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}

.approve-annonce button{
    height: 48px;
    width: 100%;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    color: var(--white);
}

.approve-annonce button.ok{
    background-color: #099250;
}

.approve-annonce button.nok{
    background-color: #0C111D;
}
#profil-cover-photo{
    background-image: url('../images/home/wrap.png');
}
.profil-cover-photo{
    height: 240px;
    background-position: top center;
    background-size: cover;
}

#profil{
    position: relative;
    top: -40px;
}

.profil-info {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 160px;
    margin-bottom: 48px;
}

.profil-info .avatar{
    position: relative;
    width: fit-content;
}

.profil-info .avatar img{
    border-radius: 50%;
    border: 4px solid var(--white);
    width: 160px;
    height: 160px;
}

.profil-info .avatar .verified-tick{
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.profil-info .profil-txt .name{
    font-size: 30px;
    line-height: 38px;
    color: var(--dark-blue);
}

.profil-info .profil-txt .last-login{
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    line-height: 20px;
    color: #475467;
}

.profil-info .profil-contact{
    margin-left: auto;
}

.profil-info .profil-contact button{
    width: 160px;
    height: 44px;
    background-color: #101828;
    border-radius: 9999px;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 14px;
    line-height: 20px;
    color: var(--white);
}

.profil-desc{
    max-width: 360px;
    margin: 0 auto;
    border: 1px solid #E4E7EC;
    border-radius: 12px;
    padding: 24px;
}

.profil-desc .top p{
    font-size: 14px;
    line-height: 20px;
    color: var(--txt-secondary);
}

.profil-desc .top .localisation{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 20px;
    color: var(--txt-secondary);
}

.profil-desc hr{
    border-color: #E4E7EC;
    margin: 24px 0;
}

.profil-desc .bottom{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profil-desc-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profil-desc-item .title{
    font-size: 14px;
    line-height: 20px;
    color: var(--txt-secondary);
}

.profil-desc-item .value{
    font-size: 14px;
    line-height: 24px;
    color: var(--dark-blue);
}

.report-profil{
    max-width: 360px;
    margin: 24px auto;
}

.report-profil a{
    display: flex;
    height: 36px;
    width: 165px;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 9999px;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40,0.05);
    font-size: 13px;
    line-height: 20px;
    gap: 6px;
    text-decoration: none;
    color: var(--red);
}

#profil .annonce-list{
    padding-top: 0;
}

#profil .annonce-item{
    flex: calc(50% - 24px);
}

.legal-about{
    background-color: #F9FAFB;
    padding: 96px 0;
}

.legal-wrap{
    max-width: 768px;
    margin: 0 auto;
}

.legal-about .date{
    font-size: 16px;
    line-height: 24px;
    color: var(--red);
    text-align: center;
    margin-bottom: 12px;
}

.legal-about .title{
    font-size: 46px;
    line-height: 60px;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 24px;
}

.legal-about p{
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: var(--txt-tertiary);
}

.legal-content{
    padding: 96px 0;
}

.legal-content .legal-wrap{
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.legal-content h3{
    font-size: 24px;
    line-height: 32px;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.legal-content p{
    font-size: 18px;
    line-height: 28px;
    color: var(--txt-tertiary);
    margin: 0;
}

#divider hr{
    margin: 0;
    border-color: #E4E7EC;
}



/**** MOBILE MENU SECTION ****/
a{
    text-decoration: none;
}


@media screen and (min-width: 870px) {
    .bottom-section {
        display: none;
    }
}


.bottom-section {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--container-color);
    z-index: var(--z-fixed);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1); 
    padding: 0.5rem 0; 
    transition: transform 0.3s ease-in-out;

    border-top: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}


.nav-bottom {
    height: var(--header-height);
    display: flex;
    justify-content: center;
    align-items: center;
}


.nav__list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}


.nav__link {
    font-size: .8rem;
    display: flex;
    flex-direction: column;
    gap: .10rem;
    align-items: center;
    text-decoration: none;
    color: var(--title-color);
    font-weight: 400;
    transition: color 0.3s ease-in-out;
}


.nav__icon {
    font-size: 1.8rem;
    transition: transform 0.3s ease-in-out;
}


.nav__name {
    font-size: var(--tiny-font-size);
    margin-top: 0.2rem;
    transition: opacity 0.3s ease-in-out;
}

/* Interaction avec les liens */
.nav__link:hover {
    color: var(--first-color);
}

.nav__link:hover .nav__icon {
    transform: scale(1.1);
}


.nav__link.active {
    color: v var(--red);
    font-weight: bold;
}

.nav__link.active .nav__icon {
    transform: scale(1.2); /* Effet de zoom pour l'icône */
    color:  var(--red);
}



.nav__link.active .nav__name {
    opacity: 1;
}


.nav__item .search_form {
    position: relative; 
}

.nav__item .search_form input {
    position: absolute;
    left: 100%; 
    transform: translateX(-100%);
    transition: all 0.3s ease; 
    width: 0;
    opacity: 0;
    border: 2px solid #ddd;
    height: 50px;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
    background: #fff;
    z-index: 1000;
}

.nav__item .search_form input:focus {
    outline: none; /* Supprime le contour par défaut */
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.8); /* Effet lumineux au focus */
    background: #e8f5e9; /* Fond vert clair au focus */
  }
      

.nav__item .ri-close-circle-line {
    cursor: pointer;
}


.nav__item .search_form {
    position: relative;
}


.nav__item .search_form input.active {
    position: absolute;
    bottom: 50px; /* Déplie le champ vers le haut, juste au-dessus du menu */
    right: 10%;
    transform: translateX(-50%); /* Centrer horizontalement */
    width: 300px; /* Largeur relative à l'écran */
    opacity: 1; 
    background: #f9f9f9; 
    border: 2px solid #4caf50; 
    z-index: 10; /* S'assure que le champ est au-dessus des autres éléments */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Ajoute un effet d'ombre */
    transition: all 0.3s ease; /* Animation fluide */
}

.nav__item .ri-close-circle-line {  
    position: absolute;
    top: 60%; 
    left: 10px; 
    transform: translateY(-50%); 
    font-size: 2rem; 
    color: #DC3545;
    cursor: pointer;
    z-index: 11;
    display: none;
}

.nav__item .search_form input.active ~ .ri-close-circle-line {
    display: inline-block;
    font-size: 14px;
}

.nav__item .search_form input.active ~ .ri-search-line {
    display: none;
}

.nav__menu.keyboard-open {
    position: fixed;
    bottom: 50%; /* Déplace le menu au milieu de l'écran */
    transition: bottom 0.3s ease-in-out;
}




/* REPONSIVE */
@media only screen and (max-width: 1440px) {
    .top-header-left .input-group input[type=text]{
        width: 500px;
    }
}

@media only screen and (max-width: 1200px) {
    .filters{
        flex-wrap: wrap;
    }
    .mes-annonces-content{
        padding-top: 48px;
    }
    .mes-annonces-content .tools{
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 16px;
    }
    .dash-card-body .table th:first-child{
        min-width: 600px;
        width: 600px;
        max-width: 600px;
    }
    .top-header-left .input-group input[type=text]{
        width: 300px;
    }
    .contact-form{
        padding: 14px 16px;
    }
    .contact-card{
        gap: 32px;
    }
}

@media only screen and (max-width: 992px) {
    .mes-annonces-content .tools .search{
        max-width: 100%;
    }
    .article-infos .top{
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .banner-content{
        background-size: 350px;
    }
    .footer-desc{
        margin-bottom: 48px;
    }
    /*
    nav .nav{
        justify-content: flex-start;
    }*/  

    nav .nav{
        justify-content: flex-start;
        /*overflow-y: scroll;*/
        -webkit-overflow-scrolling: touch;
    }
    /*
    .theScroll {
        overflow: scroll;

    }*/

    .nav-icon svg,
    .nav-text {
        pointer-events: none;
        display: block;
    }


    a.link {
        display: block; 
        padding: 10px 15px;
    }
    .cta-content h1{
        font-size: 30px;
        line-height: 38px;
    }
    .top-header-left .input-group input[type=text]{
        width: 150px;
    }

}

/* bottom navbar  */
@media screen and (min-width: 968px) {
    :root {
        --h1-font-size: 2.25rem;
        --normal-font-size: 1rem;
    }
}
@media only screen and (max-width: 870px) {
    .top-nav{
        display: none;
    }
    .top-header-left form{
        display: none;
    }
    .open-menu-mobile{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .bottom-header .input-group input[type=text]{
        flex: 0 0 calc(100% - 28px);
    }
    .bottom-header form{
        display: block;
        padding-bottom: 21px;
    }

    /* bottom navbar */
    .nav__menu{
        position: fixed;
        bottom: 0;
        left: 0;
        background: var(--container-color);
        box-shadown: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
        width: 100%; 
        height: 4rem;
        padding: 0 1rem;
        display: grid;
        align-content: center;
        border-radius: 1.25rem 1.25rem 0 0;
        transition: .4s;
    }
    .ads-notif .d-none{
        display: none!important;
    }

    #footer-copyright{
        padding-bottom: 2rem;
    }
    .nav__menu.keyboard-open {
        position: fixed;
        bottom: 10px; /* Ajuster la position en bas de l'écran */
        left: 0;
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .annonce-to-report .annonce-item{
        transform: scale(0.75);
    }
    .dropdown-file .text .info{
        display: flex;
        flex-direction: column;
    }
    .upload-file-info .desc,
    .upload-file-info .name{
        overflow: hidden;
        width: 185px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    .article-image-full{
        height: 380px;
    }
    .article-info-item{
        min-width: 60px;
    }
    nav .nav{
        justify-content: flex-start;
    }
    .top-header-left{
        gap: 20px;
    }
    
}



@media only screen and (max-width: 576px) {
    .legal-content .legal-wrap{
        padding-right: 15px;
    }
    .legal-content h3{
        font-size: 20px;
        line-height: 30px;
    }
    .legal-content,
    .legal-about{
        padding: 64px 0;
    }
    .profil-info .avatar .verified-tick {
        bottom: 5px;
        right: 5px;
    }
    .profil-info .avatar .verified-tick svg{
        width: 24px;
        height: 24px;
    }
    #profil .annonce-item{
        flex: 0 0 100%;
    }
    #profil .annonce-list{
        padding-top: 48px;
    }
    .report-profil,
    .profil-desc{
        max-width: 100%;
    }
    .profil-info .profil-contact button{
        width: 100%;
    }
    .profil-info .profil-contact{
        margin: 0;
        width: 100%;
    }
    .profil-info .profil-txt .name{
        text-align: center;
        font-size: 24px;
        line-height: 32px;
    }
    .profil-info .avatar img{
        width: 96px;
        height: 96px;
    }
    #profil{
        top: -48px;
    }
    .profil-info{
        flex-direction: column;
        height: auto;
    }
    .profil-cover-photo{
        height: 160px;
    }
    .approve-annonce{
        margin-bottom: -24px;
    }
    .annonce-to-report{
        margin: 48px 0;
        height: auto;
    }
    .report-form-content{
        padding-top: 0;
    }
    .report-form{
        margin-top: 0;
    }
    .annonce-to-report .annonce-item{
        transform: scale(0.9);
    }
    #annonces-liked .annonce-create-btns{
        padding-top: 32px;
        flex-direction: row;
    }
    #annonces-liked hr{
        margin-top: 32px;
    }
    .dash-card-body{
        padding-top: 24px;
    }
    .dash-card-head{
        gap: 20px;
    }
    .dash-card-head .top{
        flex-wrap: wrap;
        gap: 20px;
    }
    .metrics-group{
        flex-wrap: wrap;
    }
    #dashboard .page-title{
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 4px;
    }
    .dashboard-content{
        padding-top: 32px;
    }
    #dashboard{
        padding: 32px 0 48px 0;
    }
    #signup .signin-form .form-card-head p,
    #signup .signin-form .form-card-head h1{
        text-align: center;
    }
    .logo-card{
        padding-bottom: 0;
        text-align: center;
    }
    .signin-form .form-card-head h1{
        font-size: 24px;
        margin-bottom: 8px;
    }
    .signin-form{
        flex: 0 0 100%;
    }
    .signin-copyright,
    .signin-img-panel{
        display: none;
    }
    .contact-img{
        display: none;
    }
    .msg-content-item{
        max-width: 85%;
    }
    #messages{
        background-color: #ffffff;
        padding: 0;
    }
    #messages .row>.col-12{
        padding: 0;
    }
    #messages.chat2chat .list-msg{
        display: none;
    }
    .list-msg{
        flex: 0 0 100%;
        border-right: none;
    }
    #messages.chat2chat .msg-content{
        display: block;
        width: 100%;
    }
    .msg-content-list{
        padding: 0 8px 32px 8px;
    }
    .msg-content{
        display: none;
    }
    .form-upload-audio .text{
        display: flex;
        flex-direction: column;
    }
    .form-upload-audio{
        flex-direction: column;
        text-align: center;
    }
    .upload-file-info .desc,
    .upload-file-info .name{
        width: 179px;
    }
    .upload-file-content{
        align-items: flex-start;
    }
    .upload-file-item.main .upload-file-info .name::after{
        margin-left: 0;
    }
    .upload-file-item.main .upload-file-info .name{
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .upload-file-item{
        min-height: 72px;
    }
    .annonce-create-btns button,
    .annonce-create-btns a{
        width: 100%;
    }
    .annonce-create-btns{
        flex-direction: column-reverse;
    }
    .suggest-link{
        width: 100%;
    }
    #suggest .article-msg{
        padding: 48px 0;
    }
    .article-msg{
        margin: 64px 0;
    }
    .article-desc{
        font-size: 16px;
    }
    .article-img-list{
        gap: 8px;
        margin-bottom: 32px;
    }
    .article-img-list a{
        border-radius: 8px;
    }
    .article-img-list{
        padding-top: 12px;
    }
    .article-btns-slide a{
        width: 44px;
        height: 44px;
    }
    .article-btns-slide a svg,
    .article-tools a svg{
        width: 15px;
        height: 15px;
    }
    .article-tools a{
        width: 32px;
        height: 32px;
    }
    .article-tools{
        padding: 16px;
        gap: 16px;
    }
    .article-image-full{
        height: 350px;
        border-radius: 0;
        transform: scale(1.06);
    }
    .footer-social{
        justify-content: flex-start;
        margin-bottom: 24px;
    }
    #footer-menu{
        padding-bottom: 32px;
    }
    .footer-nav{
        margin-bottom: 32px;
    }
    #prefooter{
        padding: 64px 0;
    }
    .prefooter-cta a{
        justify-content: center;
    }
    .prefooter-cta{
        width: 100%;
    }
    .prefooter-text p,
    .prefooter-text h3{
        text-align: center;
        margin-bottom: 16px;
    }
    .prefooter-content{
        flex-direction: column;
        gap: 16px;
    }
    .banner-desc,
    .banner-title{
        text-align: center;
    }
    .banner-title{
        max-width: 250px;
    }
    .banner-content{
        background: transparent;
        height: auto;
        align-items: center;
        justify-content: center;
        padding: 0 16px;
    }
    #banner{
        background-color: #101010;
        background-image: url('../images/home/Container.png');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: bottom center;
        height: 540px;
    }
    #annonces{
        padding-bottom: 48px;
    }
    .annonce-pagination{
        padding-top: 16px;
    }
    .pagination-desc{
        display: block;
        font-size: 14px;
        line-height: 20px;
        color: #344054;
    }
    .pagination-nums{
        display: none;
    }
    .pagination-btn:hover{
        background-color: #F9FAFB;
    }
    .pagination-btn{
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
        background-color: #ffffff;
        border-radius: 8px;
        border: 1px solid #D0D5DD;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .pagination-btn span{
        display: none;
    }
    #annonces{
        overflow: hidden;
    }
    .annonce-ads{
        border-radius: 0;
        overflow: visible;
        position: relative;
        left: -15px;
    }
    .annonce-ads img {
        width: 110%;
    }
    .annonce-list{
        padding: 56px 0 32px 0;
    }
    .annonce-item{
        flex: 0 0 100%;
    }
    .page-title{
        font-size: 28px;
        line-height: 30px;
        margin-bottom: 12px;
    }
    .page-title-desc{
        font-size: 20px;
        line-height: 28px;
    }
    .cta-img img{
        width: 150%;
        max-width: 150%;
    }
    #cta{
        overflow: hidden;
    }
    .cta-content p{
        margin-bottom: 32px;
    }
    .cta-content h1{
        margin-bottom: 16px;
    }
    .cta-content{
        padding: 0;
        padding-bottom: 64px;
    }

    
}

@media only screen and (max-width: 403px) {
    .nav__item .search_form input.active {
        width: 250px;
    }
}


@media only screen and (max-width: 320px) {
    .upload-file-info .desc,
    .upload-file-info .name{
        width: 115px;
    }
}