body  {
    --primary-color: #BC7635;
    --primary-color-700: #FFF5EC;
    --secondary-color: #1F193B;
    --primary-font-color: #070026;
    --secondary-font-color: #E6F2FF;
    --a-hover-color: #BC7635;
    --heading-color: #070026;
    --descprition-color: #73777D;
    --deaf-font-color: #222222;
    --deaf-font-color-600: #8894ad1f;
    --deaf-font-color-400: #8894ad44;
    --label-font-color: #151e42;
    --input-font-color-700: #6d7ca3;
    --input-font-color-500: #484f5f;
    --input-border-color: #d4dcff;
    --faded-font-color: #525c84;
    --primary-disabled: #0075ff22;
    --primary-border-color: #eaeef7;
    --primary-border-color-600: #e5edf966;
    --grid-text-color: #73777D;
    --overlay-color: #000000;
    --stats-bg-color: #F4F5F7;
    --stars-color: #d1e4fa;
    --dashboard-secondary-bg-color: #f5f9fd;
    --black-700: #000000;
    --white-700: #ffffff;
    --white-500: #FFFFFFDE;
    --white-200: #ffffff22;
    --orange-700: #f8b849;
    --purple-700: #4339f2;
    --red-700: #fb295b;
    --green-700: #34b53a;
    --green-500: #00A884;
    --grey-700: #808080;
    --cyan-700: #28F8C0;
    --golden-700: #F8BB18;
    --input-radius: 10px;
    --border-radius-lg: 20px;
    --border-radius: 12px;
    --border-radius-md: 16px;
    --border-radius-xs: 4px;
    --primary-font: 'Urbanist';
    --icons-font: "Font Awesome 6 Free";
    --transition: 300ms;
    --overlay-opacity: 0.6;
    /* Icons Variables */
    --chevron-down-icon-code: "\f078";
    --heart-filled-icon-code: "\f004";
    --star-filled-icon-code: "\f005";
    --square-icon-code: "\f0c8";
    --check-icon-code: "\f00c";
    --circle-icon-code: "\f111";
    --close-icon-code: "\f00d";
    --marker-icon-code: "\f3c5";
    --search-icon-code: "\f002";
    --remove-heart-icon-code: "\e4ff";
    --loading-icon: "\f110";
    --bs-body-font-family: 'Urbanist';
}
/* real-estate-app-view */
 
 .real-estate-app-container {
     overflow: hidden;
 }
 
 .real-estate-app-view-post {
     border-radius: 15px;
     border: 1px solid #DDD;
     background: #FFF;
     padding: 20px;
     display: flex;
     gap: 0px 18px;
     margin: 0 12px;
 }
 
 .real-estate-app-view-post:hover {
     box-shadow: 0px 0px 17px 0px #00000021;
 }
 .realestate-loop-slider .slick-slide {
    width: 517px;
}
 .real-estate-app-view-post-thumbnail {
    width: 160px;
    height: 148px;
    border-radius: 12px;
    overflow: hidden;
 }
 
 .real-estate-app-view-post-thumbnail img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }
 
 .real-estate-app-view-post-content {
     width:calc(100% - 160px); 
     overflow: hidden;
     white-space: nowrap;
 }
 
 .real-estate-app-view-post-content .post-house {
     margin-bottom: 18px;
 }
 
 .real-estate-app-view-post-content .post-house a {
     padding: 6px 18px;
     border-radius: 5px;
     background: #1D64EC;
     color: #FFF;
     font-size: 13px;
     font-weight: 500;
     line-height: normal;
     border: transparent;
     transition: var(--transition);
 }
 
 .real-estate-app-view-post-content .post-house a:hover {
     background-color: var(--primary-color);
 }
 
 .real-estate-app-view-post-content .post-title h2 {
     color: var(--primary-font-color);
     font-size: 18px;
     font-weight: 500;
     line-height: normal;
     margin-bottom: 4px;
     white-space: nowrap;
     width: 100%;
     overflow: hidden;
     text-overflow: ellipsis;
 }
 
 .real-estate-app-view-post-content .post-title h2:hover {
     color: var(--primary-color);
 }
 
 .real-estate-app-view-post-content .post-location {
     margin-bottom: 18px;
 }
 
 .real-estate-app-view-post-content .post-location .location-icon {
     color: #848484;
     font-size: 15px;
     font-weight: 400;
     line-height: normal;
     display: flex;
     align-items: center;
     gap: 0 5px;
 }
 
 .real-estate-app-view-post-content .post-rating-and-price {
     display: flex;
     align-items: center;
     justify-content: space-between;
 }
 
 .real-estate-app-view-post-content .post-rating-and-price span {
     color: var(--primary-font-color);
     font-size: 18px;
     font-weight: 500;
     line-height: normal;
 }
 
 .real-estate-app-view-post-content .post-rating-and-price .rating-stars ul {
     display: flex;
     align-items: center;
     padding: 0;
     margin: 0;
     gap: 2px 2px;
     flex-wrap: wrap;
 }
 
 .real-estate-app-view-post-content .post-rating-and-price .rating-stars ul li {
     list-style: none;
     color: #F7B940;
 }
 
 .real-estate-app-view-post-content .post-rating-and-price .rating-stars ul li.unfill {
     color: #E4E4E3;
 }
 
 .real-estate-app-view-slider .slick-track {
     height: 249px !important;
     padding: 30px 0;
 }
 
 .real-estate-app-view-slider a {
     text-decoration: none;
 }
 
 .real-estate-app-view-post-thumbnail a {
    height: 100%;
    width: 100%;
 }