* {
    user-select: none; 
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    margin: 0px;
    padding: 0px;
    height: 100%;
    background: #F7F7F7;
}

.container {
    width: 100%;  
    max-width: 1250px;  
    margin: 0 auto;  
}

strong {
    color: rgb(43, 43, 43);
}

.chats-box {
    min-height: 70vh;
}

small {
    font-size: 12px;
    color: gray;
    float: right;
}

li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

li a {
    text-decoration: none;
    color: black;
    display: block;
}

li a:hover {
    background: #f1f1f1;
}

.properties {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.realities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.logo img {
    width: 130px;
}

.reality img {
    width: 100%;
    height: 200px;
    object-fit: cover; 
    border-radius: 5px;
}

.reality-agents {
    position: sticky;
    top: 80px;
}

.property {
    width: auto;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    background: #fff;
    display: inline-block; 
    vertical-align: top;
    padding: 10px;
    border: 1px solid rgb(231, 231, 231);
}

.reality {
    width: auto;
    height: fit-content;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    background: #fff;
    display: inline-block; 
    vertical-align: top;
    padding: 10px;
    border: 1px solid rgb(231, 231, 231);
}

.reality button {
    width: 100%;
}

.reality h2 {
    margin-bottom: 0;
}

.photo-property img {
    width: 100%;
    height: 220px; 
    border-radius: 10px;
}

h2 {
    font-weight: 600;
    color: black;
}

.title-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.seller-logo {
    background: rgb(43, 43, 43);
    border-radius: 100px;
    color: white;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seller-logo p {
    margin: 0px;
}

.details {
    margin-top: 0px;
    font-size: 12px;
    color: grey;
}

header {
    padding-top: 120px;
    padding-bottom: 60px;
    background: url('../../assets/img/bg_header.jpg');
    background-size: cover;
}

.all-chats {
    padding-left: 0px;
    list-style-type: none;
}

.all-chats a {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.user_avatar p {
    opacity: 1 !important;
}

.title-cont h2 {
    padding-top: 25px;
}

.texts_header h1 {
    font-size: 3.5rem;
    width: 900px;
    margin: 0;
}

.texts_header p {
    width: 650px;
    color: grey;
    margin: 1rem 0rem 2rem 0rem;
}

.search form {
    display: flex;
    gap: 10px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 21px 0px rgba(0,0,0,0.2); 
    box-shadow: 0px 0px 21px 0px rgba(0,0,0,0.2);
}

.search form .find-inputs {
    flex: 1;
}

.find-inputs {
    border: 1px solid rgb(231, 231, 231);
    border-radius: 10px;
    padding: 5px 15px;
}

.find-inputs label {
    font-size: 10px;
    color: grey;
}

.find-inputs input, .find-inputs select {
    appearance: none; 
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100% !important;
    padding: 5px 0px !important;
    font-family: "Montserrat";
    border: none !important;
    font-size: 14px;
    font-weight: 500;
    outline: none !important;
}

.find-inputs input {
    padding-left: 5px !important;
}

.find-inputs-btn button {
    height: 100%;
    width: 58.5px;
    border-radius: 100px !important;
}

.cookies-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 9999;
    bottom: 20px;
    left: 20%;
    right: 20%;
    padding: 3px 10px;
    border-radius: 11px;
    background: white;
    -webkit-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.4);
}

.cookies-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 10px;
}

.cookies-info a {
    text-decoration: underline;
    color: #4357FF;
}

.unread-mes {
    color: white;
    background: red;
    width: 25px;
    height: 25px;
    display: flex;
    font-size: 12px;
    font-weight: 400;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
}

#menu_animation {
    font-weight: bold;
    background: linear-gradient(135deg, #7f5af0, #2cb67d, #ff8906);
    background-size: 300% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: gradientDarkFlow 3s ease infinite;
}

@keyframes gradientDarkFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.chat-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.all-chats a p {
    margin: 0px;
    font-size: 14px;
    color: grey;
}

.all-chats li {
    padding: 0px;
    border-bottom: 1px solid #f1f1f1; 
}

.search-text h1 {
    font-weight: 600;
    margin: 0;
    color: white;
    font-size: 3rem;
}

.search-text p {
    margin: 0;
    color: rgb(242, 242, 242);
    opacity: .7;
}

.search-text {
    margin-bottom: 2rem;
}

.main-text h2 {
    font-weight: 600;
    margin-top: 0;
}

.search-btns {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1rem 0px;
}

.search-btns p {
    margin: 0;
    color: rgb(242, 242, 242);
}

.search-btn button {
    background:#dfe2fd;
    padding: 5px 10px;
    border-radius: 10px;
    color: #5d68c6;
    border: none;
    font-family: "Poppins";
    transition: .2s;
    cursor: pointer;
    transition: .2s;
}

.search-btn button:hover {
    background: #4357FF;
    padding: 5px 10px;
    border-radius: 10px;
    color: white ;
    border: none;
    font-family: "Poppins";
    transition: .2s;
}

section {
    padding: 50px 0px;
    background: #F7F7F7;
}

.similar-properties { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 1rem; }
.title_avatar { display: flex; justify-content: space-between; align-items: center;}
.details { margin: 0px; font-size: 14px; color: #333; font-weight: 600;}
.title_avatar h2 { color: black; font-weight: 600; }
.details_address { margin-top: 5px; font-size: 12px; color: grey; }
.seller-logo img { width: 60px; height: 60px; border-radius: 100px; object-fit: cover; }
.title_avatar { display: flex; justify-content: space-between; align-items: center;}
.property_box { display: flex; gap: 20px; }
.date { position: absolute; top: 24px; left: 15px; border-radius: 100px; border: none; z-index: 999; padding: 5px 10px; margin: 0px; background: #4357FF; color: white; font-size: 12px; }
.property_card { flex: 1 1 calc(26% - 20px); width: 60px; border-radius: 15px; position: relative; overflow: hidden; background: #fff; display: inline-block; vertical-align: top; padding: 10px; border: 1px solid rgb(231, 231, 231); max-width: calc(33.333% - 7px); }
.no_find { background: white; border-radius: 15px; border: 1px solid rgb(231, 231, 231); width: 100%; display: grid; height: 40vh; display: flex; justify-content: center; align-items: center;}

.open-btn {
    padding: 10px 20px;
    font-size: 16px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.menu_main {
    list-style-type: none;
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.menu_main li {
    border: none !important;
    font-size: 13px;
    font-weight: 500;
    background: white !important;
    transition: .2s;
    cursor: pointer;
    color: #333;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #4357FF;
    color: white;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 15px 0px;
}
  
.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}
  
.marquee-content span {
    display: inline-block;
    padding-right: 2rem; 
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

.marquee-content span {
    font-size: 16px;
    font-weight: 500;
}

.menu_main li:hover {
    color: #4357FF;
    transition: .2s;
}

.message-date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: .2rem;
}

.unread-box h4 {
    font-weight: 500;
    font-size: 18px;
    margin: 0;
    margin-top: 20px;
}

.unread-box p {
    font-size: 12px;
    color: #333;
}

.all-chats {
    background: white;
    border-radius: 20px;
    border: 1px solid rgb(231, 231, 231);
    overflow: hidden;
}

.btns-filter button {
    font-family: "Montserrat";
    padding: 10px 15px;
    border-radius: 100px;
    background: #4357FF;
    border: none;
    cursor: pointer;
    color: white;
}

.crm-primary {
    font-family: "Montserrat" !important;
}

.lg-btn .crm-primary {
    width: 100% !important;
}

.property a button{
    width: 100%;
}

.real-agents {
    display: flex;
    gap: 50px;
}

.agent {
    display: flex;
    gap: 15px;
}

.agent p {
    margin: 0;
}

.agent_hr {
    border: 0.1px solid rgb(231, 231, 231);
}

.reality-agents {
    width: 250px;
}

.info-agents {
    border-radius: 10px;
    background: url('../../img/bg.png');
    background-position: center;
    background-size: cover;
    display: flex;
    gap: 50px;
    border: 1px solid rgb(231, 231, 231);
}

.left-side {
    padding: 20px 40px;
}

.left-side button {
    background: #4357FF;
    color: white;
}

.right-side {
    width: auto;
    height: 400px;
}

.ul-agent {
    padding-left: 20px;
    margin: 15px 0px;
}

.ul-agent li {
    border: none;
    padding: 5px;
}