@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html,
body {
    background: #fff;
    color: #545454;
    font-family: "Roboto", sans-serif;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #121a26;
    font-weight: 600;
    line-height: 1.3;
}

h2 {
    margin-top: 1.3em;
}

a {
    color: #0083e8;
    text-decoration: none;
}

b,
strong {
    font-weight: 600;
}

samp {
    display: none;
}

img {
    max-width: 100%;
}

header {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    background: #fff;
    box-shadow: 0 2px 10px rgb(0 0 0 / 11%);
}

header.stricky-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 5px 0;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    animation-name: 'fadeInDown';
    animation-duration: 1s;
    animation-fill-mode: both
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

header .container-fluid {
    padding: 0 30px;
}

header .logo {
    padding: 3px 0;
    max-width: 145px;
}

header .topLinks {
    width: 100%;
    color: #fff;
    padding: 0px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    height: 100%;
}

header .topLinks li {
    list-style-type: none;
    display: inline-block;
    margin: 0;
    line-height: 20px;
    vertical-align: middle;
    position: relative;
}

header .topLinks li:first-child a {
    border: 0;
}

header .topLinks li a {
    padding-left: 10px;
    padding-right: 10px;
    border-left: 1px solid rgba(0, 0, 0, .106);
    font-size: 14px;
    text-decoration: none;
    color: #464646;
}

header .topLinks li a:hover,
header .topLinks li a:focus {
    color: #ef3b24;
}

header .topLinks li a.postProperty {
    height: 30px;
    font-weight: 400;
    padding: 5px 12px;
    background: #ef3b24;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
}

header .topLinks li a.postProperty:hover,
header .topLinks li a.postProperty:focus {
    background: #143e74;
    color: #fff;
}


/* Menu */
.navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.navigation .nav-header {
    display: none;
    padding: 12px 20px
}

.navigation .navbar button {
    float: right;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 25px;
    border-radius: 0;
    text-align: center;
    line-height: 40px;
    position: relative;
    z-index: 99;
    padding: 5px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.navigation .navbar button span {
    display: block;
    position: absolute;
    height: 3px;
    width: 70%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 15%;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.navigation .navbar button span:nth-child(1) {
    top: 8px;
}

.navigation .navbar button span:nth-child(2),
.navigation .navbar button span:nth-child(3) {
    top: 18px;
}

.navigation .navbar button span:nth-child(4) {
    top: 28px;
}

.navigation .navbar button.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.navigation .navbar button.open span:nth-child(2) {
    transform: rotate(45deg);
}

.navigation .navbar button.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.navigation .navbar button.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.navigation .menu {
    display: block
}

.navigation .menu ul {
    margin: 0;
    padding: 0;
    width: 100%;
}

.navigation .menu ul li {
    position: relative
}

.navigation .menu ul li a {
    padding: 18px 18px;
    display: block;
    color: #333;
    text-transform: capitalize;
    transition: all .3s ease;
    font-size: 14px;
}

.navigation .menu ul li.active a,
.navigation .menu ul li:hover a {
    color: #ef3b24;
    background: transparent;
}

.navigation .menu ul li ul.cs-dropdown {
    top: 100%;
    left: 0;
    text-align: left
}


.navigation .menu ul li ul.cs-dropdown li:last-child {
    border: 0
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown {
    left: 100%;
    margin-top: -36px
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown li ul.cs-dropdown {
    left: -100%;
    margin-top: -31px
}

.navigation .menu ul li ul.cs-dropdown {
    position: absolute;
    width: 250px;
    display: none;
    z-index: 9;
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.4);
    background: #fff;
    margin: 0;
    padding: 0;
    transition: all .3s ease
}

.navigation .menu ul li:hover ul.cs-dropdown {
    display: block
}

.navigation .menu ul li:hover ul.cs-dropdown li ul.cs-dropdown {
    display: none;
    transition: all .3s ease
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown {
    display: block
}

.navigation .menu ul li ul.cs-dropdown li {
    display: block;
    padding: 0;
    width: 100%
}

.navigation .menu ul li ul.cs-dropdown li:last-child a {
    border-bottom: 0
}

.navigation .menu ul li ul.cs-dropdown li:last-child a:after {
    display: none
}

.navigation .menu ul li ul.cs-dropdown li a:hover {
    color: #fff;
    background: #ef3b24;
}

.navigation .menu ul li ul.cs-dropdown li:hover a {
    color: #fff;
    background: #ef3b24;
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown li a {
    color: #333;
    background: #fff;
    font-size: 13px;
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown li a:hover {
    color: #fff;
    background: #ef3b24;
}

.navigation .menu ul li ul.cs-dropdown li a {
    color: #333;
    font-size: 13px;
    padding: 5px 15px;
    position: relative;
    display: block;
    text-transform: capitalize;
    font-weight: normal;
    line-height: normal;
    background: #fff;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
}


.navigation ul li.cs-submenu a button {
    border: 0;
    background: transparent;
    outline: 0;
    padding: 0;
    margin: 0 0 0 3px;
    color: #333;
}

.navigation ul li.cs-submenu a button svg {
    width: 16px;
    height: 16px;
}

.navigation ul li.cs-submenu:hover svg {
    transform: rotateZ(180deg);
    color: #ef3b24;
}

.navigation ul li.cs-submenu:hover ul.cs-dropdown li.cs-submenu svg {
    color: #ef3b24;
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button {
    float: right;
    color: #333;
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button svg {
    transform: rotateZ(-90deg);
}

.navigation ul li.cs-submenu ul.cs-dropdown li.cs-submenu:hover svg {
    color: #fff;
}

.navigation .navbar {
    display: none;
    padding: 7px 0;
    margin: 0
}

/*Mega*/
.navigation .menu ul li.agents {
    position: relative;
}

.navigation .menu ul li.agents ul.cs-dropdown {
    width: 580px;
    left: -230%;
}

.navigation .menu ul li.agents ul.cs-dropdown li {
    width: 50%;
    float: left;
    position: relative
}

.navigation .menu ul li.agents ul.cs-dropdown li:nth-child(2n) {
    border-left: 1px solid #eee
}



.navigation .menu ul li.cs_mega {
    position: relative;
}

.navigation .menu ul li.cs_mega ul.cs-dropdown {
    width: 850px;
    left: -180%;
    height: auto;
    padding: 10px;
    border-top: 1px solid #eee;
}

.navigation .menu ul li.cs_mega:hover ul.cs-dropdown {
    display: flex;
    gap: 15px;
}

.navigation .menu ul li.cs_mega ul.cs-dropdown li {
    width: 33.33%;
    border: 0;
    float: left;
}


.navigation .menu ul li.cs_mega ul.cs-dropdown li ul.cs-dropdown {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 5px;
    box-shadow: none;
    padding: 0;
    top: 0;
    left: 0;
}

.navigation .menu ul li.cs_mega ul.cs-dropdown li ul.cs-dropdown li {
    display: inline-block;
    width: 100%;

}

.navigation .menu ul li.cs_mega ul.cs-dropdown li ul.cs-dropdown li a {
    display: block;
    width: 100%;
    padding: 2px 0;
    line-height: normal;
    border: 0;
}

.navigation .menu ul li.cs_mega ul.cs-dropdown li a {
    padding: 0;
}

.navigation .menu ul li.cs_mega ul.cs-dropdown li a button {
    display: none;
}

.navigation .menu ul li.cs_mega ul.cs-dropdown li a {
    border: 0;
}

.navigation .menu ul li.cs_mega ul.cs-dropdown li:hover a {
    background-color: transparent;
    color: #ef3b24;

}

.navigation .menu ul li.cs_mega ul.cs-dropdown li ul.cs-dropdown li:hover a {
    background-color: transparent;
    color: #ef3b24;
}

.navigation .menu ul li.cs_mega ul.cs-dropdown li a span {
    font-weight: 600;
    color: #ef3b24;
    font-size: 14px;
    padding-bottom: 5px;
    display: block;
}


/* Menu Ends*/

.homeBannerForm {
    position: relative;
    width: 100%;
    float: left;
    background-image: url('../images/jharkhand-map.jpg');
    background-position: center;
    background-repeat: no-repeat;
}

.homeBannerForm:before {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    content: "";
    background: #f2f2f2;
    opacity: 0.9;
}

.homeBannerForm .container {
    position: relative;
}

.homeSearchForm {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10% 0px;
}

.homeBannerText {
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: normal;
}

.homeBannerText h1 {
    color: #ef3b24;
    margin-bottom: 0;
    font-size: 42px;
    font-weight: 600;
}

.homeBannerText .BannerTitle {
    color: #333;
    font-size: 30px;
    font-weight: 500;
    margin: 0 0 5px;
}

.homeBannerText p {
    font-size: 16px;
    color: #424242;
}

.searchTabs {
    width: 800px;
    margin: 50px auto;
}

.searchTabs .nav-tabs li a {
    padding: 10px 25px;
    color: #424242;
    background: #fff;
    margin-bottom: -2px;
    border: 1px solid #eee;
}

.searchTabs .nav-tabs li a.active {
    color: #fff;
    background: #ef3b24;
    border-color: #ef3b24 #ef3b24;
}

.searchTabs .tabsForm {
    display: flex;
    background: #fff;
    margin: 0px;
    padding: 0px;
    align-items: center;
    border: 1px solid #dee2e6;
    border-top: 0;
    height: 45px;
}

.searchTabs .tabsForm .formDropdown {
    position: relative;
    border-right: solid 1px #ddd;
    width: auto;
    font-size: 13px;
    padding: 0 15px;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
}

.searchTabs .tabsForm .formDropdown .allSelect {
    position: relative;
    display: flex;
    padding: 0 20px 0 0;
    align-items: center;
}

.searchTabs .tabsForm .formDropdown .allSelect:after {
    position: absolute;
    top: 3px;
    right: 0;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23424242' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/></svg>");
}

.searchTabs .tabsForm .formDropdown.active .allSelect:after {
    top: -3px;
    transform: rotateZ(180deg);
}


.searchTabs .tabsForm .formDropdown .formDropdownList {
    background: #fff;
    width: 595px;
    top: 100%;
    left: 0;
    position: absolute;
    padding: 20px;
    border: solid 1px #eee;
    box-shadow: 0 0 10px #ccc;
    display: none;
    z-index: 999;
}


/**/
.tag_filter {
    display: flex;
    flex-wrap: wrap
}

.tag_filter label {
    margin: 7px 7px 0 0;
    position: relative;
    cursor: pointer;
    font-size: 13px
}

.tag_filter label small {
    text-align: center;
    padding: 3px 10px 3px 25px;
    display: inline-block;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #ddd
}

.tag_filter label small:after {
    content: "";
    position: absolute;
    left: 9px;
    top: 12px;
    width: 10px;
    height: 2px;
    background-color: #909090
}

.tag_filter label small:before {
    content: "";
    position: absolute;
    left: 9px;
    top: 12px;
    width: 10px;
    height: 2px;
    background-color: #909090;
    transform: rotate(90deg)
}

.tag_filter label input {
    position: absolute;
    height: 1px;
    width: 1px;
    opacity: 0
}

.tag_filter input:checked+small {
    background: #f9e8e5;
    color: #ef3b24;
    border-color: #f9a196;
}

.tag_filter input:checked+small:after {
    display: none
}

.tag_filter input:checked+small:before {
    content: "";
    position: absolute;
    left: 9px;
    top: 10px;
    width: 11px;
    height: 6px;
    background: none;
    border-left: 2px solid #ef3b24;
    border-bottom: 2px solid #ef3b24;
    transform: rotate(-45deg)
}

/**/

.checkbox {
    display: block;
    text-align: left;
    position: relative;
}

.checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.checkbox label {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.checkbox label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #424242;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.checkbox input:checked+label:before {
    border-color: #ef3b24;
}

.checkbox input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 7px;
    width: 6px;
    height: 12px;
    border: solid #ef3b24;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox input:checked+label,
.checkbox:hover label {
    color: #ef3b24;
}

/**/

/**/
.checkList {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.checkList li {
    width: 33.33%;
    list-style: none;
    margin-bottom: 5px;
}

.homeBannerText .lookingCP {
    margin: 10px 0 5px;
    font-size: 13px;
    border-bottom: solid 1px #eee;
    padding-bottom: 5px;
    text-align: left;
}

.homeBannerText .lookingCP span {
    font-weight: 500;
    color: #ef3b24;
    cursor: pointer;
}

/**/

/**/
.tagWrapData .tagWrap {
    margin-top: 20px;
    padding: 0;
    text-align: left;
}

.tagWrapData .tagWrap li {
    margin-right: 7px;
    display: inline-block;
    position: relative;
    color: #333;
    font-size: 14px;
    border-radius: 20px;
    padding: 6px 26px 5px 15px;
    box-sizing: border-box;
    cursor: pointer;
    border: solid 1px #ddd;
    line-height: 18px;
}

.tagWrapData .tagWrap li.on {
    background: #f9e8e5;
    color: #ef3b24;
    border-color: #f9a196;
}

.tagWrapData .tagDataShow {
    margin: 0;
    text-align: left;
    padding: 0;
}

.tagWrapData .tagDataShow>li {
    display: none;
    padding: 4px;
    list-style: none;
}


.tagWrapData .tagWrap li:after {
    content: '\f107';
    font-family: 'FontAwesome';
    position: absolute;
    right: 10px;
    top: 15px;
    font-size: 17px;
    color: #666;
    line-height: 0
}

.tagWrapData .tagWrap li:last-child {
    margin-right: 0
}


.tagWrapData .tagDataShow>li.on {
    display: block;
}

.tagWrapData .tag_title {
    font-weight: 600;
}

/**/

/**/

.searchTabs .tabsForm .formSearch {
    flex-grow: 1;
}

.searchTabs .tabsForm .nearSearch {
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.searchTabs .tabsForm .nearSearch svg {
    width: 18px;
    height: 18px;
}

.searchTabs .tabsForm .searchBtn {
    background: #ef3b24;
    border: solid 1px #ef3b24;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 15px;
    float: right;
    cursor: pointer;
    width: 110px;
}

/**/
.tagWrapData .price-range {
    padding: 10px 5px 0
}

.tagWrapData .price-range .range {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: space-between
}

.tagWrapData .price-range .range>div {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
}

.tagWrapData .price-range .range i.fa {
    margin-right: 5px;
    color: #999
}

.tagWrapData .price-range .ui-slider {
    border: none;
    border-radius: 0;
    height: 4px;
    background: #d9d9d9;
    margin: 0 7px
}

.tagWrapData .price-range .ui-widget-header {
    background: #ef3b24
}

.tagWrapData .price-range .ui-slider-horizontal .ui-slider-handle {
    height: 16px;
    width: 16px;
    top: -6px;
    border: solid 2px #ef3b24;
    border-radius: 50%;
    background: #fff;
    outline: 0;
}

.range-values {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: space-between;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}



/**/
.mainTitle {
    width: 100%;
    max-width: 800px;
    font-size: 30px;
    font-weight: 700;
    display: block;
    padding-bottom: 15px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px;
    position: relative;
    color: #333;
}

.mainTitle span {
    background: #ef3b24;
}

.mainTitle:after {
    content: "";
    background: #ef3b24;
    width: 40px;
    left: 0;
    height: 3px;
    position: absolute;
    bottom: 0;
    bottom: 0;
    right: 0;
    margin: 0 auto;
}

.maxWidth {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 10px
}

.maxWidth p {
    display: inline-block;
    max-width: 850px;
    width: 100%;
    margin: 0 auto 10px;
    font-size: 16px;
    text-align: center
}


/**/
.csTabs {
    width: 100%;
    display: flex;
    justify-content: center;
    cursor: pointer;
    gap: 10px;
    margin-bottom: 20px;
}

.tabLink {
    padding: 5px 25px;
    background: transparent;
    border-radius: 30px;
    line-height: normal;
    border: 1px solid #ef3b24;
    font-size: 14px;
    color: #ef3b24;
}

.tabLink.active {
    background: #ef3b24;
    color: white;
}

.tabContent {
    display: none;
    padding: 0;
}

.tabContent.active {
    display: block;
}

/**/

/**/
.homeProperties {
    float: left;
    width: 100%;
    padding: 40px 0;
    margin: 0;
    background: #fff;
}

.propertyBox {
    width: 100%;
    position: relative;
}

.propertyBox .images {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
}

.propertyBox .images:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-out 0s;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 53.85%, #000000 100%);
    z-index: 1;
    opacity: 0.7;
}

.propertyBox .images img {
    aspect-ratio: 4 / 3;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.propertyBox .images a {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}

.propertyBox .images a img {
    text-align: center;
    position: relative;
    width: 60px;
    height: 60px;
    aspect-ratio: 1 / 1;
}

.propertyBox .content {
    position: absolute;
    bottom: 10px;
    left: 20px;
    color: #fff;
    z-index: 2;
}

.propertyBox .content .tabTitle {
    margin-bottom: 2px;
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
}

.propertyBox .content .tabTitle a {
    text-decoration: none;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.propertyBox .content p {
    font-weight: 400;
    font-size: 13px;
    line-height: normal;
    color: #fff;
    margin: 0;
}

.propertyBox:hover .images:after {
    height: 200%;
}

.propertyBox:hover .images a {
    opacity: 1;
    transition-delay: 0.3s;
}

/**/

.PropertyTypeSection {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #fff;
}

.categories-item {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    position: relative;
    overflow: hidden;
    flex-direction: row;
    padding: 0;
    gap: 16px;
    margin-bottom: 25px;

}

.categories-item .icon-box {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 75px;
    width: 75px;
    border-radius: 12px;
    border: 1px solid rgb(236, 236, 236);
    overflow: hidden;
}

.categories-item .icon-box svg {
    position: relative;
    z-index: 5;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    width: 50px;
    height: 50px;
    color: #2c2e33;
}

.categories-item .content {
    position: relative;
    z-index: 5;
}

.categories-item .content .categoryTitle,
.categories-item .content p {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.categories-item .content .categoryTitle {
    font-size: 16px;
    line-height: normal;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.categories-item p {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 400;
    font-size: 13px;
    line-height: normal;
    color: #333;
    margin: 0 0 5px;
}

.categories-item p svg {
    width: 18px;
    height: 18px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.categories-item:hover .icon-box {
    background-color: #ef3b24;
    border-color: #ef3b24;
}

.categories-item.active .icon-box svg,
.categories-item:hover .icon-box svg {
    color: #ffffff;
}

.categories-item:hover .content .categoryTitle {
    color: #ef3b24;
}

/**/

.sectionTrusted {
    float: left;
    width: 100%;
    margin: 0;
    padding: 80px 0 120px;
    background: #ffe3df;
    position: relative;
    overflow: hidden;
}

.sectionTrusted .content {
    position: relative;
    z-index: 99;
}

.titleLeft {
    font-size: 35px;
    line-height: 50px;
    color: #2c2e33;
    margin: 0 0 15px;
    text-rendering: optimizeLegibility;
    font-weight: 600;
}

.text-1 {
    font-size: 16px;
    line-height: normal;
}

.gridLayout2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.trustedBox {
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.trustedBox .headingSection {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
}

.trustedBox .icon {
    margin-bottom: 32px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: rgba(239, 61, 39, 16%);
    border-radius: 16px;
    flex-shrink: 0;
}

.trustedBox .icon svg {
    transition: all 0.6s ease-in-out;
}

.trustedBox .titleSub {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 600;
    line-height: normal;
}

.trustedBox .titleSub a {
    color: #333;
}

.learnMoreBtn {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #ef3b24;
    gap: 8px;
    width: max-content;
}

.learnMoreBtn span {
    position: relative;
}

.learnMoreBtn span::after {
    position: absolute;
    content: "";
    width: 0;
    left: 0;
    bottom: -1px;
    background: #ef3b24;
    height: 2px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.learnMoreBtn:hover {
    color: #ef3b24;
}

.learnMoreBtn:hover span::after {
    width: 100%;
}


.sectionTrusted .person {
    bottom: 0;
    right: 167px;
    z-index: 2;
    position: absolute;
}

.sectionTrusted .item {
    bottom: 0;
    right: 34px;
    position: absolute;
}

.sectionTrusted img {
    width: 100%;
    max-width: 520px;
}

/**/

/**/
.propertiesRent {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #fff;
}

/**/
.owl-carousel {
    display: block;
}

.owl-carousel .item:not(:first-child) {
    display: none;
}

/* .owl-carousel img {
    width: 100%;
} */


.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transform: translate(0, -50%);
    border: 0;
    outline: 0;
    background: #fff;
    border-radius: 100%;
    z-index: 50;
    cursor: pointer;
    transition: all .3s ease;
    color: #ef3b24;
    box-shadow: 0 0 49px rgba(0, 0, 0, .02);
}

.owl-carousel .owl-next svg,
.owl-carousel .owl-prev svg {
    width: 18px;
    height: 18px;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -20px;
    top: 48%;
    transform: rotate(180deg);
}

.owl-carousel .owl-nav .owl-next {
    right: -20px;
    top: 48%
}

.owl-carousel .owl-nav .owl-next:hover,
.owl-carousel .owl-nav .owl-prev:hover {
    background: #ef3b24;
    color: #fff;
}

/**/
.swiper-wrapper {
    margin-bottom: 20px;
}

.swiper-pagination {
    position: relative;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transform: translate(0, -50%);
    border: 0;
    outline: 0;
    background: #fff;
    border-radius: 100%;
    z-index: 50;
    cursor: pointer;
    transition: all .3s ease;
    color: #ef3b24;
    box-shadow: 0 0 49px rgba(0, 0, 0, .02);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #ef3b24;
    color: #fff;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

/**/
.sectionHelp {
    float: left;
    width: 100%;
    padding: 40px 0;
    background: #eee;
}

.helpBox {
    padding: 40px 30px;
    border-radius: 12px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
}

.helpBox .icon {
    margin-bottom: 15px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.helpBox .icon svg {
    transition: all 0.6s ease-in-out;
    width: 70px;
    height: 70px;
}

.helpBox .title {
    font-size: 18px;
    line-height: 30px;
    color: #2c2e33;
    text-rendering: optimizeLegibility;
    font-weight: 600;
    margin-bottom: 10px;
}

.helpBox .title a {
    color: #2c2e33;
}

.helpBox p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: normal;
}

.readMoreBtn {
    font-size: 14px;
    line-height: normal;
    height: 40px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-radius: 6px;
    width: max-content;
    gap: 10px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    border: 1px solid #ef3b24;
    color: #ef3b24;
    background-color: transparent;
    z-index: 1;
    padding: 0 25px;
    margin: 0 auto;
}

.readMoreBtn:after {
    content: "";
    position: absolute;
    background-color: #ef3b24;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 0;
    height: 100%;
    left: -5%;
    border-radius: 12px;
    z-index: -1;
}

.readMoreBtn:hover {
    background-color: transparent;
    color: #ffffff;
}

.readMoreBtn:hover::after {
    width: 115%;
}

.readMoreBtn svg {
    width: 16px;
    height: 16px;
}

.helpBox:hover {
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.07);
}

.helpBox:hover .icon svg {
    transform: rotateY(360deg);
}

.helpBox:hover .title a {
    color: #ef3b24;
}

.textLine {
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    color: rgb(44 46 51 / 60%);
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
}

.textLine a {
    color: #ef3b24;
    text-decoration: underline;
    margin-left: 6px;
}

/**/
.homeProjects {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #fff;
}

.projectItem {
    border-radius: 16px;
    border: 1px solid #eee;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
    background: #fff;
    padding: 0;
    transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.projectItem .image {
    display: block;
    margin: 0;
    position: relative;
    aspect-ratio: 80 / 51;
    overflow: hidden;
}

.projectItem .image:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.projectItem:hover .image:after {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.projectItem .image img {
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    aspect-ratio: 80 / 51;
}

.projectItem:hover .image img {
    transform: scale(1.1);
}

.viewBtn {
    z-index: 2;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition-delay: 0s;
    opacity: 0;
    visibility: hidden;
    font-size: 13px;
    line-height: normal;
    background-color: #ffffff;
    transition: all 0.5s ease;
    border-radius: 4px;
    width: max-content;
    color: #ef3b24;
    padding: 5px 12px;

}

.projectItem:hover .viewBtn {
    opacity: 1;
    visibility: visible;
}


.boxTag {
    z-index: 2;
    position: absolute;
    top: 7px;
    left: 8px;
    gap: 5px;
    display: flex;
}

.boxTag span {
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 25px;
    border-radius: 20px;
    background: #ef3b24;
    color: #fff;
    font-size: 13px;
    line-height: normal;
}

.projectItem .projectInfo {
    display: inline-block;
    width: 100%;
    padding: 10px 15px 15px;
}

.projectItem .projectTitle {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    color: #ef3b24;
    margin: 0;
}

.projectItem a {
    text-decoration: none;
    color: #ef3b24;
}

.projectItem .projectInfo .location {
    font-size: 14px;
    line-height: normal;
    color: #333;
    font-weight: 400;
    display: block;
}

.bhk {
    font-size: 14px;
    color: #333;
    line-height: normal;
    font-weight: 600;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.sqft {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.price {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: normal;
    margin-top: 10px;
}

/**/
.workTogether .partner {
    float: left;
    width: 100%;
    background-color: #2c2e33;
    padding-bottom: 320px;
    padding-top: 70px;
}

.workTogether .partner .mainTitle {
    color: #fff;
}

.workTogether .partner .maxWidth p {
    color: #fff;
}

.marqueeSection {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.MarqueeRow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200vw;
    height: 20vh;
    animation: Scroll 50s linear infinite;
    animation-direction: reverse;
}

.marquee {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    width: 7.1%;
    margin: 5px;
    color: #cccccc;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    height: 100px;
}

.marquee:hover {
    border-color: #ef3b24;
}

.marquee svg {
    color: #B9B9B9;
}

.marquee:hover svg {
    fill: #ef3b24 !important;
}

@keyframes Scroll {
    0% {
        transform: translateX(-50vw);
        -webkit-transform: translateX(-50vw);
    }

    100% {
        transform: translateX(50vw);
        -webkit-transform: translateX(50vw);
    }
}

/**/
.workTogether .appraisal {
    float: left;
    width: 100%;
    margin-top: calc(-11% - 13px);
    padding-bottom: 40px;
}

.appraisal .content {
    background-color: #fef7f1;
    padding: 50px 0 80px 70px;
    position: relative;
    border-radius: 24px;
    position: relative;
    z-index: 2;
}

.leftSection {
    display: flex;
    gap: 12px;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.leftSection .title {
    font-size: 28px;
    line-height: 1.2;
    color: #2c2e33;
    margin: 0 0 15px;
    font-weight: 600;
}

.appraisal .content:after {
    content: "";
    position: absolute;
    background-image: url(../images/cta-1.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.appraisal .content p {
    font-size: 18px;
    line-height: normal;
    color: #2c2e33;
    margin: 0 0 20px;
    font-weight: 600;
    max-width: 400px;
}

.appraisal .content .person {
    position: absolute;
    bottom: 0;
    right: 103px;
    z-index: 2;
}

.appraisal .content .readMoreBtn {
    margin: 0;
}


/**/
.latestProperties {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0 0 40px;
    background: #fff;
}

.latestProperties .projectItem {
    border-radius: 6px;
}

.latestProperties .projectItem:hover {
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.07);
}

.projectItem .images {
    display: block;
    margin: 0;
    position: relative;
    aspect-ratio: 80 / 51;
    overflow: hidden;
}

.projectItem .images img {
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    aspect-ratio: 80 / 51;
}

.projectItem:hover .images img {
    transform: scale(1.1);
}

.projectItem .boxTag span {
    border-radius: 4px;
    padding: 0 10px;
}

.projectItem .boxTag span i {
    margin-right: 3px;
}


.latestProperties .readMoreBtn {
    margin: 10px 0 0;
    padding: 0px 15px;
    height: 35px;
    font-size: 13px;
}



/**/
.realEstateMarket {
    float: left;
    width: 100%;
    padding: 40px 0;
    margin: 0;
    background: #eee;
}

.marketGroup {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 20px;
}

.marketItem {
    border: 1px solid #E9ECF5;
    cursor: pointer;
    display: flex;
    padding: 15px 9px 15px 15px;
    max-width: 200px;
    min-width: 200px;
    background: #FFFFFF;
    box-shadow: 0px 2px 8px rgba(216, 216, 216, 0.4);
    border-radius: 6px;
    margin-bottom: 8px;
    flex-direction: column;
    margin-right: 8px;
}

.marketItem svg {
    height: 55px;
    width: 56px;
}

.marketItemInfo {
    margin: 16px 0 0 0;
    display: flex;
    flex-direction: column;
    line-height: normal;
}

.marketItemInfo a {
    cursor: pointer;
    pointer-events: none;
    text-decoration: none;
}

.marketItemInfo a span {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #191B1F;
}

.marketItemInfo:hover a span {
    color: #ef3b24;
}

.marketItemInfo .marketItemInfo_flex {
    color: #333;
    display: flex;
    font-size: 14px;
    align-items: center;
    font-weight: 500;
    line-height: 19px;
}

.marketItemInfo .marketItemInfo_flex img {
    margin-left: 6px;
    padding-top: 2px;
    height: 48px;
    max-width: 56px;
    width: 14px;
}

.marketItemInfo_flex p {
    margin: 0;
}

.marketItemInfo_flex p span {
    color: #ef3b24;
}








/* Footer */
footer {
    float: left;
    width: 100%;
    background: #2c2e33;
    padding: 40px 0 0;
}

footer .footerTitle {
    width: 100%;
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.footerLinks {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.footerLinks li {
    line-height: 1.6;
    list-style: none;
    color: #fff;
    font-size: 13px;
    margin-bottom: 5px;
}

.footerLinks li a {
    color: #ddd;
    text-transform: capitalize;
    position: relative;
    display: flex;
    align-items: center;
}

.footerLinks li a:hover {
    color: #ef3b24;
}

.footerMenu {
    margin-top: 20px;
    background: #fff;
    border-top: solid 4px #aaa;
}

.menuList {
    width: auto;
    max-width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    height: 35px;
}

.menuList a,
.menuList b {
    color: #333;
    font-weight: 400;
    cursor: pointer;
    display: inline-block;
    font-size: 13px;
}

.menuList span {
    padding: 0 8px;
    color: #ddd;
}

.menuList a:hover,
.menuList a:focus {
    color: #ef3b24;
}

.footerNote {
    border-top: solid 1px #ddd;
    font-size: 12px;
    line-height: 1.4;
    padding: 10px 0;
    background: #fff;
}

.footerNote p {
    margin: 0;
}

.footerCopy {
    background: #2c2e33;
    font-size: 11px;
}

.footerCopy p {
    color: #eee;
    padding: 7px;
    text-align: center;
    margin: 0;
    font-size: 13px;
}

.footerCopy p a {
    color: #ff8c7e;
    font-weight: 500;
}


/**/
.socialMedia {
    margin: 0;
    list-style: none;
    padding: 0px;
    width: auto;
    margin-left: auto;
}

.socialMedia li {
    margin: 0px;
    display: inline-block;
}

.socialMedia li a {
    transition: background 400ms ease-in-out;
    text-align: center;
    width: 28px;
    height: 28px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.socialMedia li a svg {
    width: 12px;
    height: 12px;
    margin: 0;
    padding: 0;
}

.socialMedia li.facebook a {
    background: #3C5B9B;
}

.socialMedia li.twitter a {
    background: #000;
}

.socialMedia li.linkedin a {
    background: #027ba5;
}

.socialMedia li.youtube a {
    background: #f70000;
}

.socialMedia li.instagram a {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.socialMedia li a:hover,
.socialMedia li a:focus {
    color: #fff;
}



/* Go To Top */
.goToTop {
    position: fixed;
    z-index: 8030;
    bottom: 65px;
    right: 30px;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
    display: none;
    background: #ef3b24;
}

.goToTop:hover {
    background: #333;
    color: #fff;
}


.goToTop svg {
    width: 18px;
    height: 18px;
}

/**/


/* Breadcrumbs */
.breadcrumbs {
    float: left;
    width: 100%;
    margin: 0;
    padding: 10px 0;
    background: #eee;
}

.breadcrumbs ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.breadcrumbs ul li {
    list-style: none;
    color: #ef3b24;
    font-size: 13px;
}

.breadcrumbs ul li+li:before {
    content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="%23333" class="bi bi-chevron-right" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708"/></svg>');
    padding: 0 10px 0 0;
}

.breadcrumbs ul li a {
    color: #333;
}

.breadcrumbs ul li a:hover {
    color: #ef3b24;
}


/*Property Listing*/
.propertyListing {
    float: left;
    width: 100%;
    padding: 40px 0;
    background: #fff;
    margin: 0;
}

.propertyText {
    width: 100%;
    padding: 0;
    margin: 0 0 15px;
}

.propertyTextTitle {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #ef3b24;
}

.propertyText p {
    font-size: 14px;
    line-height: 24px;
    color: #333;
    text-align: justify;
    margin-bottom: 10px;
}

.descriptionText {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    transition: all 0.3s ease;
}

.morelessBtn {
    color: #fff;
    background: #ef3b24;
    padding: 5px 15px;
    cursor: pointer;
    text-align: left;
    display: inline-block;
    font-size: 13px;
    border-radius: 4px;
    margin-top: 5px;
}

.descriptionText.active {
    -webkit-line-clamp: unset;
}

.propertyText h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #333;
}

.propertyText h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #333;
}

/*filter*/
.filterBox {
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
}

.filterTitle {
    font-size: 18px;
    border-bottom: 1px solid #eaeaea;
    padding-left: 15px;
    text-transform: uppercase;
    padding-top: 11px;
    padding-bottom: 12px;
    margin: 0px;
    color: #222;
}

.sidebarGroup {
    width: 100%;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.sidebarToggle {
    font-size: 14px;
    line-height: 28px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}


.sidebarToggle::after {
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
    position: absolute;
    right: 10px;
}

.sidebarToggle.active::after {
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/></svg>");
}

.sidebarPanel {
    padding: 10px 0;
    /* display: none; */
}

/* Auto-open first section */
.sidebarGroup:first-child .sidebarToggle {}

.sidebarGroup:first-child .sidebarToggle.active::after {
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/></svg>")
}

.sidebarGroup:first-child .sidebarPanel {
    display: block;
}

.sidebarPanel ul {
    margin: 0;
    padding: 0;
}

.sidebarPanel ul li {
    list-style: none;
    font-size: 13px;
    margin-bottom: 5px;
}

/*Price*/
.sidebarPanel .price-range {
    padding: 10px 5px 0
}

.sidebarPanel .price-range .range {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: space-between
}

.sidebarPanel .price-range .range>div {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
}

.sidebarPanel .price-range .range b {
    margin-right: 5px;
    color: #999
}

.sidebarPanel .price-range .ui-slider {
    border: none;
    border-radius: 0;
    height: 4px;
    background: #d9d9d9;
    margin: 0 7px
}

.sidebarPanel .price-range .ui-widget-header {
    background: #ef3b24
}

.sidebarPanel .price-range .ui-slider-horizontal .ui-slider-handle {
    height: 16px;
    width: 16px;
    top: -6px;
    border: solid 2px #ef3b24;
    border-radius: 50%;
    background: #fff;
    outline: 0;
}

/*Radio*/
.radio {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding-left: 25px;
    position: relative;
    vertical-align: middle;
    font-size: 13px;
}

.radio input[type=radio] {
    appearance: none;
    border-radius: 100px;
    margin-top: 2px;
    padding: 8px;
    border: 2px solid #ef3b24;
    outline: none;
}

.radio input[type=radio] {
    left: 0;
    position: absolute;
}

.radio input[type=radio]:checked:before {
    background: #ef3b24;
    border-radius: 50px;
    content: "";
    height: 10px;
    left: 3px;
    opacity: 1;
    position: absolute;
    top: 3px;
    width: 10px;
}

.radio input[type=radio]:checked~span {
    color: #ef3b24;
    ;
}


/*listingItem*/
.listingItem {
    background: #fff;
    border: 1px solid #d9d9d9;
    box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    margin-bottom: 20px;
}

.listImage {
    width: 100%;
    margin: 0px;
    padding: 10px 0 10px 10px;
}

.listImage .image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 10px;
}

.listImage .image img {
    aspect-ratio: 4 / 3;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.verified {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 12px;
    color: #fff;
    padding: 3px 8px;
    line-height: normal;
    background: #ef3b24;
    border-radius: 4px;
}


/**/
.agentInfo {
    float: left;
    width: 100%;
    padding: 0px;
    margin: 0;
}

.agentInfo li {
    float: left;
    list-style: none;
    padding: 0px;
    vertical-align: middle;
}

.agentInfo li:first-child {
    width: calc(100% - 35%);
    float: left;
    list-style: none;
    padding: 0px;
}

.agentInfo li .advisor {
    display: inline-block;
    width: 50px;
    margin-bottom: 3px;
    border-radius: 3px;
    width: 50px;
    border: 1px solid #eee;
    padding: 5px;
}

.agentInfo li .advisor img {
    margin: 0px;

}

.agentInfo li .agentTitle {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    float: right;
    text-align: left;
    width: calc(100% - 60px);
}

.agentInfo li .agentTitle span {
    display: block;
    color: #666;
    font-size: 13px;
    z-index: 9
}

.posted {
    font-size: 13px;
    font-weight: 600;
}

/**/
.listInfo {
    width: 100%;
    padding: 10px 10px 10px 0;
}

.listInfoTitle {
    line-height: normal;
    display: flex;
}
.propertyTitle3{
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin: 0;
    padding: 0;
    margin-right: 15px;
}

.listInfoTitle a {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-right: 15px;
}

.listInfoTitle .share {
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    background: #ef3b24;
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    margin: 0;
}

.listInfoTitle .share span {
    display: none;
    position: absolute;
    top: 120%;
    right: 0;
    background: #333;
    width: auto;
    border-radius: 3px;
    font-size: 10px;
    line-height: normal;
    margin: 0;
    padding: 2px 8px;
    color: #fff;
    padding: 5px 8px;
    color: #fff;
    width: max-content;
}

.listInfoTitle .share:hover span {
    display: block;
}

.listInfoTitle .share:hover span:before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    right: 10px;
    top: -5px;
    border-width: 0 6px 5px 6px;
    border-color: transparent transparent #333 transparent;
}

.listLocation {
    font-size: 13px;
    color: #666;
    margin: 0 0 10px;
}

.propertyFeatures ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

.propertyFeatures ul li {
    padding: 0;
    text-align: left;
    width: 32.333%;
    vertical-align: middle;
    height: 55px;
    position: relative;
    align-items: center;
    background: #fff !important;
    color: #999;
    font-size: 15px;
    font-weight: normal;
    border: 1px solid #eee;
    margin-bottom: 10px;
    float: left;
    margin-right: 1%;
    border-radius: 4px;
}

.propertyFeatures ul li:nth-of-type(3n+3) {
    margin-right: 0;
}

.propertyFeatures ul li .feature {
    display: block;
    color: #222;
    padding: 6px 0 0;
    font-size: 12px;
    font-weight: 600;
}


.propertyFeatures ul li .featureNum {
    float: left;
    color: #666;
    font-size: 12px;
    font-weight: normal;
}

.propertyFeatures ul li .icon {
    float: left;
    width: 40px;
    height: 55px;
    text-align: center;
    border-right: 1px solid #eee;
    margin-right: 10px;
    color: #f35863;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;

}

.propertyFeatures ul li .icon img {
    width: 30px;
}

.listInfo .description p {
    font-size: 14px;
    line-height: normal;
    text-align: justify;
    margin: 0;
    display: -webkit-box;
    width: 100%;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.postedBy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px 10px;
    border-top: 1px solid #eee;
}

.postedBy .readMoreBtn {
    margin: 0;
    margin-left: auto;
    height: auto;
    padding: 5px 15px;
}

/**/
.topCitySection {
    background: #ebf1f8;
    border: 1px solid #c8d6e7;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 12px;
}

.topCitySection .topCitySectionTitle {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.topCitySection p {
    font-size: 14px;
    line-height: 20px;
    color: #666;
}

.topCitySection ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 15px -5px 0px;
    max-height: 200px;
    overflow-y: auto;
    gap: 5px;
}

.topCitySection ul li {
    margin: 0;
    align-items: center;
    display: flex;
    color: #333;
    font-size: 12px;
}

.topCitySection ul li a {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 15px;
    color: #333;
    border: solid 1px #f9a196;
    border-radius: 16px;
    background: #fff;
    transition: .3s;
}

.topCitySection ul li a strong {
    font-weight: 400;
    padding-left: 5px;
    color: #ef3b24;
}

.topCitySection ul li a:hover {
    background: #f9e8e5;
    transition: .3s;
}

.textMoreBtn {
    color: #ef3b24;
    font-size: 14px;
}

/*adsBox*/
.adsBox {
    background: #fff;
    border: 1px solid #d9d9d9;
    box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.06);
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 12px;
}

.adsBox img {
    border-radius: 12px;
}


/*Property Details*/

.propertyDetails {
    float: left;
    width: 100%;
    padding: 40px 0;
    background: #fff;
    margin: 0;
}

.detailsTitleGrid {
    border: 1px solid #e2e2e2;
    display: flex;
    border-radius: 12px;
    margin: 0 0 15px;
}

.logoIcon {
    border-right: 1px solid #e2e2e2;
    max-height: 90px;
    min-height: 60px;
    padding: 5px 10px 3px;
    text-align: center;
    line-height: normal;
}

.logoIcon svg {
    width: 50px;
    height: 50px;
    color: #ef3b24;
}

.logoIcon .logoIconText {
    font-size: 12px;
}

.detailsTitleBox {
    max-width: 45%;
    min-width: 40%;
    padding: 10px;
    position: relative;
    display: flex;
    align-items: center;
}

.propertyDetailsTitle {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
    white-space: nowrap;
    color: #ef3b24;
}

.propertyDetailsTitleSub {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #787676;
    font-size: 13px;
}

.detailsTitlePrice {
    display: flex;
    justify-content: flex-end;
    padding-left: 0;
    width: 56%;
    align-items: center;
}

.priceNegotiable {
    border-left: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    max-height: 90px;
    max-width: 30%;
    height: 100%;
    min-width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.priceNegotiable .price {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
    margin: 0;

}

.negotiableLine {
    color: #787676;
    font-size: 13px;
}

.detailsTitleArea {
    max-height: 90px;
    max-width: 30%;
    min-height: 60px;
    min-width: 20%;
    width: 100%;
    text-align: center;
}

.areaNumber {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
}

.areaText {
    color: #787676;
    font-size: 13px;
}

.propertyGallery {
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    padding: 0;
    margin-bottom: 20px;
    border-radius: 12px;
}

.propertyImages {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
    padding: 15px;
    cursor: pointer;
}

.propertyBigImg {
    width: 40%;
    border-radius: 10px 0 0 10px;
    background: #f4f4f4;
    overflow: hidden;
}

.propertyBigImg .image {
    width: 100%;
    aspect-ratio: 5/3;
    background-color: #ccc;
}

.propertyBigImg .image img {
    aspect-ratio: 5/3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.propertySmallImage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 10px;
    width: 30%;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
}

.smallImg {
    width: 100%;
    aspect-ratio: 5/4;
    background-color: #ddd;
    position: relative;
}

.smallImg img {
    aspect-ratio: 5/4;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.moreImages {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    text-align: center;
    font-size: 13px;
}

.moreImages svg {
    display: inline-flex;
}

.moreImages .photoText {
    display: block;
}

.propertyImgInfo {
    width: 30%;
    background: #fff;
}

.propertyImgInfo ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

.propertyImgInfo ul li {
    padding: 0;
    text-align: left;
    width: calc(50% - 5px);
    vertical-align: middle;
    height: 57px;
    position: relative;
    color: #999;
    font-size: 15px;
    font-weight: normal;
    border: 1px solid #eee;
    border-radius: 4px;
}

.propertyImgInfo ul li:nth-of-type(3n+3) {
    margin-right: 0;
}

.propertyImgInfo ul li .feature {
    display: block;
    color: #222;
    padding: 6px 0 0;
    font-size: 12px;
    font-weight: 600;
}


.propertyImgInfo ul li .featureNum {
    float: left;
    color: #666;
    font-size: 12px;
    font-weight: normal;
}

.propertyImgInfo ul li .icon {
    float: left;
    width: 40px;
    height: 55px;
    text-align: center;
    border-right: 1px solid #eee;
    margin-right: 10px;
    color: #f35863;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;

}

.propertyImgInfo ul li .icon img {
    width: 30px;
}

/**/
.detailsContactPanel {
    width: 100%;
    border-top: 1px solid #ddd;
    margin: 0;
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: flex-end;
}

.detailsContactPanel .readMoreBtn {
    margin: 0;
    margin-left: 10px;
    padding: 0 32px;
    display: inline-flex;
}

.detailsContactPanel .readMoreBtn svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
}

.detailsContactPanel .agentInfo {
    width: 100%;
}

.detailsContactPanel .agentInfo li .advisor {
    margin: 0;
}

.reportProperty {
    background: #fafafa;
    border: 1px dashed #e5e5e5;
    font-size: 16px;
    padding: 10px;
    margin: 0 10px;
}

.reportPropertyTitle {
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
}

.reportPropertyTitle svg {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/*property Overview*/
.propertyOverview {
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 12px;
}

.propertyOverviewTitle {
    color: #434343;
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

.propertyOverview p {
    font-size: 14px;
    text-align: justify;
    /* margin: 0; */
}

.overViewList {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.overViewList li {
    list-style: none;
    text-align: center;
    width: calc(100% / 4 - 8px);
    padding: 15px 10px;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bed1db;
    transition: all .3s ease-in-out;
    background: #fff;
    border-radius: 6px;
    height: 100px;
}

.overViewList li .iconInfo svg {
    width: 24px;
    height: 24px;
    color: #ef3b24;
    margin-bottom: 10px;
}

.overViewList li .iconInfo .iconText {
    font-size: 14px;
    color: #333;
    line-height: normal;
    display: block;
}

/**/
.expProperty {
    border-top: solid 1px #eee;
    padding: 15px 0 0;
    margin: 20px 0 0;
}

.expProperty ul {
    display: flex;
    margin: 0px;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    gap: 10px;
}

.expProperty ul li {
    display: flex;
    align-items: center;
    border-radius: 25px;
    padding: 7px 20px;
    background: #fff;
    box-shadow: 0 3px 6px 0 rgb(3 3 3 / 6%);
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
    border: solid 1px #e5e5e5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.expProperty ul li:before {
    display: inline-block;
    content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-check-lg" viewBox="0 0 16 16"><path d="M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z"/></svg>');
    margin-right: 3px;
    margin-top: 5px;
}

/**/
.amenitiesList {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.amenitiesList li {
    list-style: none;
    width: calc(100% / 3 - 8px);
    position: relative;
    box-sizing: border-box;
    padding-right: 15px;
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #333;
    line-height: 25px;
}

.amenitiesList li img {
    width: 20px;
    height: 20px;
    margin-right: 7px;
}

/**/
.pd-landmark {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.pd-landmark li {
    width: calc(100% / 4 - 8px);
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    font-size: 13px;
    color: #666;
    line-height: 20px;
    list-style: none;
}

.pd-landmark li img {
    vertical-align: middle;
    margin-right: 5px;
}

.propertyMap {
    width: 100%;
    height: 350px;
    border-radius: 12px;
}

/**/
.propertyOverviewRight {
    position: sticky;
    top: 68px;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 12px;

}

.agentTop {
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: solid 1px #eee;
    margin-bottom: 10px;
    border-radius: 20px 20px 0 0;
    padding-bottom: 10px;
}

.agentTop .sellerLogo {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    overflow: hidden;
    border-radius: 5px;
    margin-right: 10px;
    box-sizing: border-box;
    padding: 5px;
}

.agentTop .sellerLogo img {
    width: auto;
    height: auto;
    max-width: 100%;
}

.agentTop .sellerInfo {
    width: calc(100% - 50px);
}

.agentTop .sellerInfo .sellerInfoTitle {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.agentTop .sellerInfo p {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    line-height: 20px;
    margin: 0;
}


.propertyOverviewRightFormTitle {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    margin-bottom: 10px;
}

.form-group {
    display: block;
    position: relative;
    margin-bottom: 15px;
}

.form-control {
    border-radius: 4px;
    height: 40px;
    font-size: 13px;
}

.form-control:focus {
    border-color: #ef3b24;
    box-shadow: none;
}

textarea.form-control {
    height: 100px;
}

/* Radio Group*/
.radioGroup {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: 15px;
}

.radioGroup .csRadio {
    position: relative;
    width: 50%;
    box-sizing: border-box;
    padding-left: 5px;
    padding-right: 5px;
}

.csRadio input[type='radio'] {
    height: 1px;
    width: 1px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: 0;
    visibility: hidden;
}

.csRadio input[type='radio']+label {
    display: block;
    border: 1px solid #ccc;
    padding: 8px 0px 8px 35px;
    position: relative;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    cursor: pointer;
    border-radius: 6px;
}

.csRadio input[type='radio']+label:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 9px;
    padding: 8px;
    border-radius: 20px;
    background: #f7f7f7;
    border: solid 1px #aaa;
}

.csRadio input[type='radio']:checked+label {
    border-color: #ef3b24;
    color: #ef3b24;
}

.csRadio input[type='radio']:checked+label:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 7px;
    padding: 9px;
    border-radius: 20px;
    background: #ef3b24;
    border-color: #ef3b24;
}

.csRadio input[type='radio']:checked+label:after {
    content: '';
    position: absolute;
    top: 13px;
    left: 12px;
    background: #fff;
    border-radius: 20px;
    padding: 5px;
}



.propertyOverviewRight .checkbox {
    margin-bottom: 15px;
}

.propertyOverviewRight .checkbox label {
    font-size: 12px;
    color: #666;
    line-height: 1.2;
}


.propertyOverviewRight input:checked+label:after {
    top: 6px;
}

.propertyOverviewRight .readMoreBtn {
    width: 100%;
}

.cs-atac {

    font-size: 10px;
    color: #999;
    text-align: center;
    line-height: 20px;
    margin: 0;
    margin-top: 5px;
}

.cs-atac a {
    color: #ef3b24;
}

.iti__search-input {
    width: 100%;
    border-width: 0;
    border-radius: 3px;
    padding: 5px 10px;
}

.iti__search-input:focus-within {
    outline: 0;
    box-shadow: none;
    color: #ef3b24;
    border-color: #ef3b24;
}

/*similarProperties*/
.similarProperties {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #eee;
}

.similarProperties .mainTitle2 {
    text-align: left;
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    position: relative;
    color: #333;
}

.similarProperties .mainTitle2+p {
    display: inline-block;
    width: 100%;
    margin: 0 auto 30px;
    font-size: 14px;
    text-align: left;

}

/* Property Full Popup*/
.propertPopupHeader {
    width: 100%;
    display: flex;
    align-items: center;
}

.propertPopupHeader .backButton {
    width: 35px;
    height: 35px;
    background: transparent;
    border: 1px solid #eee;
    margin: 0;
    border-radius: 4px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modalTitle {
    color: #333;
    font-weight: 500;
    margin: 0;
    line-height: normal;
    font-size: 16px;
}

.propertPopupHeader ul {
    margin: 0;
    padding: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.propertPopupHeader ul li {
    list-style: none;
    margin-left: 10px;
}

.propertPopupHeader ul li a {
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    background: #ef3b24;
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    margin: 0;
}

.propertPopupHeader ul li button {
    font-weight: 400;
    padding: 4px 12px;
    background: #ef3b24;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 13px;
}

/**/
.propertyPopSlider {
    width: 100%;
    margin: 0;
    padding: 0;
}

.propertyPopSlider .sliderTabs {
    display: flex;
    margin: 0 0 15px;
}

.propertyPopSlider .categoryTab {
    margin-right: 5px;
    cursor: pointer;
    padding: 6px 15px;
    border-radius: 5px;
    background: #f9e8e5;
    color: #ef3b24;
    border: 1px solid #f9a196;
    font-size: 13px;
}

.propertyPopSlider .categoryTab.active {
    background: #ef3b24;
    color: #fff;
    border-color: #ef3b24;
}

.largeSlider {
    aspect-ratio: 8 / 3;
    background: #f9e8e5;
    border: 1px solid #f9a196;
    border-radius: 12px;
    margin-bottom: 15px;
}

.propertyPopSlider .swiper-slide .slideImg {
    aspect-ratio: 8 / 3;
}

.propertyPopSlider .swiper-slide .slideImg img {
    aspect-ratio: 8 / 3;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.thumbImgSlider {
    display: flex;
    justify-content: center;
}

.thumbImgSlider .swiper-slide img {
    aspect-ratio: 5/3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 1px solid #f9a196;
    border-radius: 12px;
    overflow: hidden;
}

.thumbImgSlider .swiper-slide.swiper-slide-thumb-active img {
    border-color: #ef3b24;
}

#propertyFullPopup .propertyOverviewRight {
    margin: 0;
}

#propertyFullPopup textarea.form-control {
    height: 90px;
}

/**/
.login_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #fff;
    background: url(../images/login-bg2.jpg)no-repeat;
    background-position: center right;
    background-size: 100%;

}

.panel-lite {
    float: left;
    width: 100%;
    margin: 20px auto;
    max-width: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    position: relative
}

.title_style {
    margin-bottom: 15px;
}
.title_style h1,
.title_style h2 {
    width: 100%;
    padding: 0;
    margin: 0;
    color: #ef3b24;
    font-size: 18px;
    margin-bottom: 5px;
}

.title_style p {
    font-size: 13px;
    text-align: left;
    margin: 0 0 25px;
    color: #333;
}

.form-group {
    position: relative;
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.form-group+.form-group {
    margin-top: 15px;
}

.form_input {
    position: relative;
    padding: 12px 15px 8px 15px;
    width: 100%;
    outline: 0;
    border: 0;
    box-shadow: 0 1px 0 0 #ccc;
    -webkit-transition: box-shadow 150ms ease-out;
    transition: box-shadow 150ms ease-out;
    font-size: 15px;
    font-weight: normal;
    background: transparent;
    z-index: 100;
    border: 1px solid #ccc;
    border-radius: 6px;
    z-index: 2;
}

input.form_input {
    height: 40px;
}

input.form_input:-webkit-autofill,
input.form_input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
    background-color: transparent !important;
}

input.form_input[data-autocompleted] {
    background-color: transparent !important;
}

input.form_input:-webkit-autofill,
input.form_input:-webkit-autofill:hover,
input.form_input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #333;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

.input_label {
    position: relative;
    display: block;
    width: 100%;
}

.input_label.active .placeholder {
    font-size: 14px;
    top: -9px;
    left: 10px;
    z-index: 5;
    background: #fff;
    padding: 0 5px;
    color: #777;
    opacity: 1;

}

.input_label.active .form_input:not(:focus):not(:hover)~.placeholder {
    color: #777;
    opacity: 1;
}

.input_label>.form_input:-webkit-autofill~.placeholder {
    font-size: 14px;
    top: -9px;
    left: 10px;
    z-index: 5;
    background: #fff;
    padding: 0 5px;
    color: #777;
    opacity: 1;
}


/*.input_label .form_input:focus,
        .input_label .form_input:hover {
            border-color: #333;
        }
*/
.form-group .placeholder {
    position: absolute;
    z-index: 1;
    left: 15px;
    top: 8px;
    transition: .3s;
    background: #fff;
    padding: 0px;
    color: #333;
    font-weight: normal;
    line-height: 20px;
    font-size: 13px;
}

.password_visable {
    position: absolute;
    z-index: 99;
    top: 0;
    right: 0;
    width: 50px;
    cursor: pointer;
    padding: 0 10px;
    height: 40px;
    border-left: 1px solid #eee;
}

.password_visable:before {
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    font-weight: 700;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'><path d='M16 8s-3-5.5-8-5.5S0 8 0 8s3 5.5 8 5.5S16 8 16 8zM1.173 8a13.133 13.133 0 0 1 1.66-2.043C4.12 4.668 5.88 3.5 8 3.5c2.12 0 3.879 1.168 5.168 2.457A13.133 13.133 0 0 1 14.828 8c-.058.087-.122.183-.195.288-.335.48-.83 1.12-1.465 1.755C11.879 11.332 10.119 12.5 8 12.5c-2.12 0-3.879-1.168-5.168-2.457A13.134 13.134 0 0 1 1.172 8z'/><path d='M8 5.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5zM4.5 8a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0z'/></svg>");
    font-size: 18px;
    color: #333;
    position: absolute;
    right: 0;
    top: 2px;
    text-align: center;
    line-height: 40px;
    width: 100%;
}

.eye_slash:before {
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    font-weight: 700;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'><path d='M13.359 11.238C15.06 9.72 16 8 16 8s-3-5.5-8-5.5a7.028 7.028 0 0 0-2.79.588l.77.771A5.944 5.944 0 0 1 8 3.5c2.12 0 3.879 1.168 5.168 2.457A13.134 13.134 0 0 1 14.828 8c-.058.087-.122.183-.195.288-.335.48-.83 1.12-1.465 1.755-.165.165-.337.328-.517.486l.708.709z'/><path d='M11.297 9.176a3.5 3.5 0 0 0-4.474-4.474l.823.823a2.5 2.5 0 0 1 2.829 2.829l.822.822zm-2.943 1.299.822.822a3.5 3.5 0 0 1-4.474-4.474l.823.823a2.5 2.5 0 0 0 2.829 2.829z'/><path d='M3.35 5.47c-.18.16-.353.322-.518.487A13.134 13.134 0 0 0 1.172 8l.195.288c.335.48.83 1.12 1.465 1.755C4.121 11.332 5.881 12.5 8 12.5c.716 0 1.39-.133 2.02-.36l.77.772A7.029 7.029 0 0 1 8 13.5C3 13.5 0 8 0 8s.939-1.721 2.641-3.238l.708.709zm10.296 8.884-12-12 .708-.708 12 12-.708.708z'/></svg>");
    font-size: 18px;
    color: #333;
    position: absolute;
    right: 0;
    top: 2px;
    text-align: center;
    line-height: 40px;
    width: 100%;
}

.forgotPwd {
    text-align: center;
    line-height: 22px;
    font-size: 16px;
    color: #333;
}

.forgotPwd a {
    color: #333;
    text-decoration: none;
    display: inline-block;
}

.forgotPwd a span {
    color: #0c71a2;
}


.register_btn {
    padding: 10px 50px;
    background: #333;
    color: #fff !important;
    display: block;
    text-align: center;
    border-radius: 3px;
    z-index: 1;
    width: 100%;
    font-size: 16px;
    border: 0;
    margin-bottom: 15px;
}

.register_btn:hover,
.register_btn:focus {
    background: #ef3b24;
    color: #fff;
}

.newUser {
    font-size: 14px;
    color: #333;
    text-align: left;
    display: flex;
    align-items: center;
}

.newUser a {
    margin-left: auto;
    color: #ef3b24;
}

/**/
.registerPage {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #fff;
    background: url(../images/register-bg.jpg)no-repeat;
    background-position: center right;
    background-size: 100%;
    position: relative;

}

.registerPage::before {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    content: "";
    background: #eee;
    opacity: 0.9;
}

.registerPage .radioGroup .csRadio {
    width: 25%;
}

.iti {
    width: 100%;
}

.form-group .iti+.placeholder {
    left: 50px;
}

.iti--inline-dropdown .iti__dropdown-content {
    background: #fff;
    z-index: 99;
}


/**/
.singleCheck {
    width: 100%;
    margin: 10px 0 0;
}

.singleCheck label {
    font-size: 13px;
    line-height: 28px;
    font-weight: normal;
    cursor: pointer;
    color: #333;
    display: block;
}

.singleCheck label:before,
.singleCheck label:after {
    content: "";
    display: table
}

.singleCheck label:after {
    clear: both
}

.singleCheck label {
    line-height: 28px;
    margin: 0
}

.singleCheck label:hover {
    color: #ef3b24
}

.singleCheck label>span {
    display: block;
    position: relative;
    padding-left: 27px;
    font-size: 13px;
    font-weight: 500;
}

.singleCheck label>span a {
    display: inline-block;
    color: #ef3b24;
}

.singleCheck label>span:before {
    content: '';
    width: 18px;
    height: 18px;
    line-height: 18px;
    background: #fff;
    display: block;
    position: absolute;
    left: 0;
    top: 7px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.singleCheck label input[type=checkbox] {
    visibility: hidden;
    position: absolute
}

.singleCheck label input[type=checkbox]:checked+span {
    color: #ef3b24
}

.singleCheck label input[type=checkbox]:checked+span:before {
    background: #ef3b24;
    border: 1px solid #ef3b24;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'><path d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z'/></svg>");
}

.loginHere {
    display: block;
    text-align: center;
    font-size: 13px;
    color: #333;
}

.loginHere a {
    font-size: 13px;
    color: #333;
}

.loginHere a span {
    color: #ef3b24
}


/*Post Property Section*/

.postPropertySection {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    position: relative;
    background: #fff;
    background: linear-gradient(120deg, #000 0, #ef3b24 100%) 0 0 no-repeat padding-box;
    background-repeat: no-repeat;
    overflow: hidden;

}

.postImg {
    position: absolute;
    left: 33%;
    bottom: -3px;
    max-width: 447px;
    z-index: 1;
    opacity: 0.5;
}

.postPropertySection .container {
    position: relative;
    z-index: 2;
}

.postPropertyTitle {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.postPropertySectionLeft p {
    color: #fff;
    font-size: 16px;
}

.postPropertySectionLeft ul {
    margin: 0;
    padding: 0;
}

.postPropertySectionLeft ul li {
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    list-style: none;
    position: relative;
    padding-left: 25px;
}

.postPropertySectionLeft ul li:before {
    position: absolute;
    left: 0;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 16 16'><path d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z'/></svg>");

}

.postPropertyForm {
    align-content: flex-start;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px #00000014, 0 0 2px #00000029;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    height: min-content;
    justify-content: center;
    padding: 25px;
    position: relative;
    width: 100%;
}

.postPropertyFormTitle {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.lookingTo {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin: 0 0 10px;
    max-width: 100%;

}

.label {
    font-weight: 600;
}

.propertyRadioPanel {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.propertyRadioPanel label {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: normal;
    font-size: 14px;
    text-transform: capitalize;
    border-radius: 20px;
    line-height: normal;
    cursor: pointer;

}

.propertyRadioPanel label span {
    font-size: 12px;
    font-weight: normal;
    padding: 6px 15px;
    color: #333;
    line-height: normal;
    border: 1px solid #ced4da;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    align-items: center;
}

.propertyRadioPanel label span svg {
    width: 10px;
    height: 10px;
    margin-left: 5px;
}

.propertyRadioPanel label input {
    position: absolute;
    top: 9px;
    display: none;
    left: 12px;
}

.propertyRadioPanel input:checked+span {
    background: #f9e8e5;
    color: #ef3b24;
    border: 1px solid #f9a196;

}

.showHide {
    display: none;
}

.postPropertyForm .readMoreBtn {
    width: 100%;
}


/**/

.backBtn2 {
    font-size: 16px;
    color: #333;
    cursor: pointer;
    font-weight: 600;
}

.backBtn2 svg {
    width: 30px;
    height: 30px;
}

.verifyOTP {
    margin: 0;
    color: #ef3b24;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}

.oneTimeText {
    color: #333;
    font-size: 14px;
    line-height: 20px;
    text-wrap: balance;
    font-weight: 400;
    text-align: left;
}

.oneTimeText strong {
    color: #ef3b24;
}

.otp-input-container-styles {
    display: flex;
    align-items: center;
}

input[type=number] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.otpInput {
    border: 1px solid #dae0e5;
    background: 0 0;
    border-radius: 4px;
    width: 40px !important;
    height: 40px !important;
    text-align: center;
    font-size: 16px;
    color: #ef3b24;
    font-weight: 400;
    line-height: 1.88;
    margin-right: 18px;
    outline: 0;
}


.form-group .iti+.placeholder {
    cursor: auto;
}

.continueBtn:disabled {
    cursor: not-allowed;
    background: #dfe1e6;
    color: #b3bac5;
}

#phoneNumberError {
    color: red;
    font-size: 12px;
}

#otpInputs {
    display: flex;
    align-items: center;
}

#otpInputs input {
    border: 1px solid rgba(246, 146, 133, .20);
    background: 0 0;
    border-radius: 4px;
    width: 40px !important;
    height: 40px !important;
    text-align: center;
    font-size: 16px;
    color: #333;
    font-weight: 400;
    line-height: 1.88;
    margin-right: 18px;
    outline: 0;
}

#otpInputs input:hover,
#otpInputs input:focus {
    border: 1px solid rgba(246, 146, 133, .4);
}


.didnotReceive .resend {
    color: #666;
    cursor: text;
}

.didnotReceive .resend.otpResend {
    color: #ef3b24;
    cursor: pointer;
}

.readMoreBtn:disabled {
    cursor: not-allowed;
    background: #dfe1e6;
    color: #b3bac5;
}

/**/


.postPropertyDetailSection {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    position: relative;
    background: #fff;
    background: linear-gradient(120deg, #000 0, #ef3b24 100%) 0 0 no-repeat padding-box;
    background-repeat: no-repeat;
    overflow: hidden;
    /* height: calc(100vh - 58px); */
}

.postPropertyDetails {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    vertical-align: top;
    margin: 0px 12px 0px 0px;
    padding: 20px;
    text-align: left;
    position: relative;
    white-space: normal;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.07) 0px 4px 4px;
    overflow-y: hidden;
    max-width: 1010px;
}

.postPropertySidebar {
    background: linear-gradient(191deg, rgb(243, 244, 255) 1.35%, rgb(255, 255, 255) 62.01%, rgb(255, 255, 255) 195.73%);
    border: 1px solid rgb(225, 226, 232);
    border-radius: 8px;
    width: calc(100% - 75%);
    padding: 17px 10px 20px 10px;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.backBtn {
    font-weight: 500;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.6px;
    color: #333;
    mix-blend-mode: normal;
    opacity: 0.7;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 16px;
    cursor: pointer;
}

.backBtn svg {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}

.backBtn:hover,
.backBtn:focus {
    color: #ef3b24;
}

.postYourProperty {
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    color: #333;
    margin-bottom: 0px;
}

.sellOrRent {
    font-weight: 400;
    font-size: 12px;
    line-height: normal;
    letter-spacing: 0.2px;
    color: #444;
    mix-blend-mode: normal;
    opacity: 0.7;
    margin-bottom: 10px;
}

.propertyProgress {
    width: 100%;
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 8px;
    line-height: 12px;
    color: #767676;
}

.propertyProgressBg {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.propertyProgressGrid {
    border-radius: 100px;
    overflow: hidden;
    height: 8px;
}

.propertyProgressGrid .external {
    background-color: rgba(217, 217, 217, 0.4);
    height: 8px;
}

.propertyProgressGrid .internal {
    border-radius: 100px;
    background-color: #ef3b24;
    height: 100%;
}

.percentage {
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    color: rgb(118, 118, 118);
    letter-spacing: 0.266667px;
    margin-left: 8px;
}

.processPropertyDetails {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.propertyDetailsCircle {
    display: flex;
    flex-direction: row;
    cursor: pointer;
}

.propertyDetailsCircle .circleLeft {
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    margin-right: 16px;
}

.propertyDetailsCircle .circleLeft .fillLine {
    height: 37px;
    width: 0px;
    border: 1px solid #f9e8e5;
    margin: 5px 0px;
}

.propertyDetailsCircle .circleLeft .circleBox {
    height: 30px;
    width: 30px;
    border-radius: 15px;
    border: 0px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.propertyDetailsCircle .circleLeft .circleBox .circle {
    width: 25px;
    height: 25px;
    background: #f9e8e5;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f9e8e5;
}

.propertyDetailsCircle .circleLeft .circleBox .circle svg {
    width: 17px;
    height: 17px;
}

.propertyDetailsCircle .circleLeft .circleBox .circle.active {
    color: #ef3b24;
    border-color: #ef3b24;
}


.propertyDetailsCircle .circleInfo {
    display: flex;
    flex-direction: column;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.propertyDetailsCircle .circleInfo .circleTitle {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: rgb(67, 67, 67);
    margin-bottom: 5px;
}

.propertyDetailsCircle .circleInfo .stepStatus {
    background: #fff;
    color: #666;
    border: 1px solid #eee;
    border-radius: 30px;
    padding: 2px 12px;
    font-weight: 400;
    font-size: 10px;
    line-height: normal;
    width: fit-content;
}

.propertyDetailsCircle .circleInfo .stepStatus.active {
    background: #f9e8e5;
    color: #ef3b24;
    border: 1px solid #f9a196;
    color: #ef3b24;
}

.sidebarHelp {
    width: 100%;
    border-radius: 8px;
    background-color: rgb(242, 243, 248);
    padding: 15px;
    margin: 24px 0px 0px;
    line-height: normal;
}

.sidebarHelpTitle {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.2px;
}

.helpText {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.2px;
}

.helpWhatsApp {
    vertical-align: middle;
    cursor: pointer;
}

.helpWhatsApp img {
    width: 12px;
    height: 12px;
}

.helpWhatsApp svg {
    width: 12px;
    height: 12px;
}

.whatsAppName {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #ef3b24;
}

.postPropertyRightbar {
    border: 1px solid rgb(225, 226, 232);
    border-radius: 8px;
    margin-left: 14px;
    padding: 0px 30px;
    width: calc(100% - 25%);
    height: 645px;
    overflow: hidden scroll;
    padding-bottom: 20px;
}

.postPropertyRightbarTitle {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-top: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #333;
    margin-bottom: 20px;
}


.hasTitle select {
    appearance: none;
    /* Remove default styles */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    padding: 10px 15px;
    padding-right: 40px;
    /* Make space for the arrow */
    font-size: 13px;
    color: #333;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    transition: border-color 0.3s;
}

/* .allPropertyType label {

    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: rgb(118, 118, 118);
} */

.allPropertyTypeGrid {
    gap: 15px;
    place-content: center flex-start;
    -webkit-box-pack: start;
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    margin-top: 10px;
    margin-bottom: 15px;
}

.radioPropertyType {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: normal;
    font-size: 14px;
    text-transform: capitalize;
    border-radius: 6px;
    line-height: normal;
    cursor: pointer;
    width: calc(100% / 4 - 12px);

}

.radioPropertyType .radioProperty2 {
    font-size: 12px;
    font-weight: normal;
    padding: 15px;
    color: #333;
    line-height: normal;
    border: 1px solid #ced4da;
    overflow: hidden;
    border-radius: 6px;
    text-align: center;
    width: 100%;
}

.radioPropertyType .radioProperty2 svg {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
}

.radioPropertyType .radioProperty2 .radioPropertyName {
    display: flex;
    font-size: 13px;
    font-weight: 400;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    height: 40px;
}

.radioPropertyType input {
    position: absolute;
    top: 9px;
    display: none;
    left: 12px;
}

.radioPropertyType input:checked+.radioProperty2 {
    background: #f9e8e5;
    color: #ef3b24;
    border: 1px solid #f9a196;

}

.helper {
    font-size: 13px;
    position: absolute;
    right: 10px;
    color: rgba(0, 0, 0, .38);
    top: 0px;
    background: #fff;
    margin: 9px 0 7px 10px;
}

.propertyRadioPanel label span svg {
    width: 16px;
    height: 16px;
    margin-left: 0;
    margin-right: 5px;
}

.postPropertyRightbar .readMoreBtn {
    margin: 0;
}


.postPanel {
    display: none;
}

.postPanel.active {
    display: block;
}

.back-btn {
    background: transparent;
    border: 0;
    outline: 0;
    width: 20px;
    margin-right: 5px;
}


/**/
.howItWork {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    position: relative;
    background: #fff;
}

.stepBox {
    padding: 40px 30px;
    border-radius: 16px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #ffffff;
    text-align: left;
    margin-bottom: 15px;
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
}

.stepCount {
    position: absolute;
    top: 0;
    right: 0;
    background: #ef3b24;
    color: #fff;
    padding: 2px 20px 2px 20px;
    border-radius: 0px 0px 0 25px;
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
}

.stepBoxIcon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #7c3aed0d;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.06);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef3b24;
}

.stepBoxIcon svg {
    width: 40px;
    height: 40px;
}

.stepBoxTitle {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    color: #ef3b24;
    margin-bottom: 10px;
}

.stepBox p {
    margin: 0;
    font-size: 14px;
    line-height: normal;
    color: #333;
}


.flat-why-choose {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #eee;
}

.wrap-why-choose {
    margin-left: -1px;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 15px;
}

.wrap-why-choose .box {
    width: calc(33.333% - 1px);
    margin-left: 1px;
    border-right: 1px solid #D9D2D2;
    padding: 0 20px;
    text-align: center;
}

.wrap-why-choose .box:last-child {
    border-right: 0px solid #D9D2D2;
}

.wrap-why-choose .box .icon {
    margin-bottom: 23px;
}

.wrap-why-choose .box .icon svg {
    transition: all 0.8s ease;
    width: 70px;
    height: 70px;
    color: #ef3b24;
}

.wrap-why-choose .box:hover .icon svg {
    transform: rotateY(180deg);
}

.wrap-why-choose .box .chooseTitle {
    margin-bottom: 17px;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    color: #333;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.wrap-why-choose .box .chooseTitle a{
    color: #333;
}
.wrap-why-choose .box .images {
    margin-bottom: 17px;
    display: inline-flex;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.wrap-why-choose .box .images:before {
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.5019607843);
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 99;
    opacity: 0;
    border-radius: 10px;
}

.wrap-why-choose .box p {
    margin-bottom: 18px;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #333;
}

.wrap-why-choose:hover .box .images:before {
    opacity: 1;
}


/* Faqs */

.faqPosting {
    float: left;
    width: 100%;
    background: #fff;
    margin: 0;
    padding: 40px 0;
}

.faqPosting .accordion {
    border: 0;
}


.faqPosting .accordion-item {
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px !important;
    overflow: hidden;
}

.faqPosting .accordion-body p {
    font-size: 16px;
    text-align: left;
}

.accordion-header {
    padding: 0;
    margin: 0;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 16px !important;
    overflow: hidden;
}

.accordion-item:not(:first-of-type) {
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.accordion-button {
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 500;
    text-transform: initial;
}

.accordion-button:not(.collapsed) {
    background: #ef3b24;
    color: #fff;
}

.accordion-button:not(.collapsed):after {
    background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/></svg>");
    transform: rotate(0deg);
}

.accordion-button:hover,
.accordion-button:focus {
    background: #ef3b24;
    color: #fff;
    box-shadow: none;
}

.accordion-button:not(.collapsed):hover::after {
    background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/></svg>");
    transform: rotate(0deg);
}

.accordion-button:hover:after {
    background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/></svg>");
    transform: rotate(180deg);
}

.accordion-body p {
    font-size: 15px;
    line-height: 24px;
    margin: 0;
}

/**/
.newAddedSection {
    float: left;
    width: 100%;
    background-color: #eee;
    position: relative;
    padding: 40px 0;
}

.newAddedSection:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/lines-black.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.newAddedSection .container {
    position: relative;
}

.featureItem2 {
    background-color: #fff;
    margin: 0 0 20px 0;
    padding: 20px 20px 20px 25px;
    border-style: solid;
    border-width: 1px;
    border-color: #dedede;
    border-radius: 15px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, .05);
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    text-align: left;
}

.featureItem2:hover {
    background-color: transparent;
    background-image: linear-gradient(90deg, #fff 5%, #F0F0F06B 100%);
}

.featureItem2 .icon2 {
    min-width: 80px;
    height: 80px;
    background: #bfe4fd;
    display: inline-flex;
    flex: 0 0 auto;
    margin-top: 10px;
    margin-right: 15px;
    margin-left: 0;
    margin-bottom: unset;
    background-color: transparent;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ef3b24;
}

.featureItem2 .icon2 svg {
    width: 65px;
    height: 65px;
}

.featureContent2 {
    flex-grow: 1;
}

.featureContent2 .featureTitle2 {
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.3em;
    margin: 0;
    margin-bottom: 8px;
    color: #333;

}

.featureContent2 p {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}



/**/

/*Dashboard Header*/
.dbHeader {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    background: #fff;
    box-shadow: 0 2px 10px rgb(0 0 0 / 11%);
}

.dbHeader .logo {
    padding: 3px 0;
    max-width: 145px;
}

.dashboardMenu {
    display: flex;
    align-items: center;
}

.dashboardMenuRight {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.dashboardMenuRight ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    ;
}

.dashboardMenuRight ul li {
    list-style: none;
}

.dashboardMenuRight ul li a {
    color: #333;
    font-size: 14px;
    padding: 10px 18px;
}

.dashboardMenuRight ul li a:hover,
.dashboardMenuRight ul li a:focus {
    color: #ef3b24;
}

.dashboardMenuRight ul li a svg {
    margin-right: 3px;
    width: 16px;
    height: 16px;
}

.dashboardMenuRight ul li a.addProperty {
    font-weight: 400;
    padding: 5px 12px;
    background: #ef3b24;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
}

.dashboardMenuRight .dashboardUser {
    margin-left: 50px;
    position: relative;

}

.dashboardMenuRight .dashboardUser .userClick {
    cursor: pointer;
    display: flex;
    align-items: center;
}



.dashboardMenuRight .dashboardUser .userClick .icon {
    width: 30px;
    min-width: 30px;
    height: 30px;
    background: linear-gradient(118deg, #ef3b24 32.59%, #B91C09 99.7%);
    border-radius: 100%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 8px;
}

.dashboardMenuRight .dashboardUser .userClick .userInfo {
    display: block;
    line-height: 16px;
    margin-right: 10px;
}

.dashboardMenuRight .dashboardUser .userClick .userInfo .name {
    font-size: 14px;
    font-weight: 600;
    display: flex;
}

.dashboardMenuRight .dashboardUser .userClick .userInfo .number {
    font-size: 13px;
}

.userDropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px, rgba(0, 0, 0, 0.12) 0px 8px 16px;
    border-radius: 8px;
    z-index: 1;
    min-width: 180px;
    padding: 8px;
    top: 120%;
    right: 0;
    padding: 12px;
}

.userDropdown ul {
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
}

.userDropdown ul li {
    display: flex;
    align-items: center;
    width: 100%;
}

.userDropdown ul li:first-child {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 10px;
}


.userDropdown ul li .icon {
    width: 30px;
    min-width: 30px;
    height: 30px;
    background: linear-gradient(118deg, #ef3b24 32.59%, #B91C09 99.7%);
    border-radius: 6px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    margin-right: 10px;
}

.userDropdown ul li .dashboardUser {
    margin-left: 0;
    position: relative;
    line-height: 15px;
}

.userDropdown ul li .dashboardUser .name {
    margin: 0;
    color: #ef3b24;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    text-wrap: balance;
}

.userDropdown ul li .dashboardUser .number {
    color: rgb(94 108 132);
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    text-wrap: balance;
}

.userDropdown ul li a {
    color: #333;
    padding: 5px 0;
    font-size: 14px;
    display: block;
    width: 100%;
    line-height: normal;
}

.userDropdown ul li a svg {
    width: 14px;
    height: 14px;
}

.userDropdown ul li:last-child {
    border: 0;
    padding: 0;
    margin: 0;
}

.userDropdown ul li:nth-last-child(2) {
    border: 0;
    padding: 0;
    margin: 0;
}

/**/

/**/
.fullDashboard {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #f7f7f7;
    /* height: calc(-60px + 100vh); */
    display: flex;
    position: relative;
    padding: 15px;
}

.dashboardLeft {
    width: calc(100% - 82%);
    background: #fff;
    position: relative;
    transition: all 0.5s ease;
    padding: 0;
    border: 1px solid #DFE1E6;
    height: 100%;
    position: sticky;
    top: 0;
    /* height: calc(-80px + 100vh); */
    border-radius: 6px;
}

.dashboardRight {
    width: calc(100% - 18%);
    padding: 0 0 0 20px;
    display: flex;
}

/**/
.leftUser {
    display: flex;
    gap: .75rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    align-items: center;
}

.leftUser .icon {
    background: linear-gradient(118deg, #ef3b24 32.59%, #B91C09 99.7%);
    border-radius: 100%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.leftUser .name {
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: capitalize;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-wrap: balance;
    max-width: 172px;

}

.leftUser .name small {
    font-size: 12px;
    font-weight: normal;
}

.dashboardLeft ul {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-bottom: 0;
    width: 100%;
    margin-top: 4px;
    /* border-bottom: 1px solid #d1dce1; */

}

.dashboardLeft ul li {
    list-style: none;
    display: flex;
}

.dashboardLeft ul li a {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    line-height: normal;
    border-bottom: 1px solid #dfe4e6;
    border-right: 3px solid transparent;
    width: 100%;
}

.dashboardLeft ul li:last-child a {
    border-bottom: 0;
}

.dashboardLeft ul li a svg {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.dashboardLeft ul li a:hover,
.dashboardLeft ul li a.active {
    background: #e8f5ff;
    color: #ef3b24;

}

.dashboardLeft ul li a.active {
    border-right-color: #ef3b24;
}

/**/
/*Right Side*/
.dashboardRightFull {
    width: 100%;
    display: block;
}

.dashboardTitleSection {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 15px;
    background: #fff;
    margin-bottom: 15px;
    border: 1px solid #DFE1E6;
    border-radius: 6px;
    position: relative;
}

.dashboardTitle {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.newPropertyBtn {
    margin-left: auto;
    font-weight: 400;
    padding: 5px 12px;
    background: #ef3b24;
    color: #fff !important;
    border: 1px solid transparent;
    border-radius: 6px;
}

.newPropertyBtn:hover,
.newPropertyBtn:focus {
    background: transparent linear-gradient(120deg, #000 0, #333 100%) 0 0 no-repeat padding-box;
    color: #fff;
}

.mainContainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.counter-box {
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: #ffffff;
    padding: 20px 15px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.0392156863);
    border-radius: 6px;
    border: 1px solid #e9ecf5;
}

.box-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    /* border: 1px solid #e4e4e4; */
    border-radius: 50%;
    color: #ef3b24;
    background-color: rgba(239, 59, 36, 15%);
}

.box-icon svg {
    width: 36px;
    height: 36px;
}

.counter-box .title-count {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 600;
    color: #333;
}

.box-count {
    display: flex;
    align-items: center;
}

.box-count .number {
    font-size: 30px;
    line-height: 44px;
    font-weight: 600;
    color: #161e2d;
}

.box-count .text {
    font-size: 14px;
    line-height: normal;
    font-weight: 500;
    margin-left: 11px;
}



/**/
.showPanel {
    background-color: rgb(255 255 255);
    border-radius: 6px;
    flex-direction: column;
    display: flex;
    width: 100%;
    border: 1px solid #e9ecf5;
    padding: 15px;
    margin-bottom: 15px;
}

.showPanelTitle {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.csTable {
    width: 100%;
}

.csTable table {
    table-layout: auto;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.csTable table tr {
    display: table-row;
    vertical-align: inherit;
    border-color: #808080;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.csTable table thead tr {
    color: #fff;
    border-radius: 4px;
}

.csTable table thead tr th {
    color: #ffffff;
    font-size: 14px;
    line-height: normal;
    font-weight: 600;
    padding: 10px 15px;
    padding-right: 30px;
    border-width: 0;
    background-color: #2c2e33;
}

.csTable table thead tr th:nth-child(1) {
    width: 55%;
}

.csTable table thead tr th:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.csTable table thead tr th:not(:last-child) {
    position: relative;
}

.csTable table thead tr th:not(:first-child) {
    padding-left: 30px;
    padding-right: 30px;
}

.csTable table thead tr th:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.csTable table thead tr th:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 8px;
    bottom: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    width: 1px;
}

.csTable table tbody td {
    padding: 16px;
    align-content: start;
    border-bottom: 1px solid #ececec;
    font-size: 14px;
}

.csTable table tbody td:first-child {
    padding-left: 0;
}

.csTable table tbody td:not(:last-child) {
    position: relative;
}

.csTable table tbody td:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 16px;
    bottom: 16px;
    background-color: #ececec;
    width: 1px;
}

.csTable .listing-box {
    display: flex;
    gap: 20px;
}

.csTable .listing-box .images {
    width: 168px;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 5/3;
}

.csTable .listing-box .images img {
    width: 100%;
    height: 100%;
    aspect-ratio: 5/3;
    object-fit: cover;
    object-position: center;
}

.csTable .listing-box .content .title {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
}

.csTable .listing-box .content .title a {
    text-decoration: none;
    color: #2c2e33;
    cursor: pointer;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.csTable .listing-box .content .text-date {
    margin-bottom: 5px;
    font-size: 13px;
    line-height: normal;
    color: #666;
}

.csTable .listing-box p {
    font-size: 13px;
    line-height: normal;
    color: #333;
    margin: 0 0 7px;
}

.priceDate {
    display: flex;
    align-items: center;
}

.priceDate .text-date {
    margin-left: auto;
}

.priceText {
    color: #ef3b24;
    font-size: 16px;
    font-weight: 600;
}

.csTable .list-action {
    margin: 0;
    padding: 0;
}

.csTable .list-action li {
    list-style: none;
}

.csTable .list-action li:not(:last-child) {
    margin-bottom: 8px;
}

.csTable .list-action .item {
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 600;
    text-decoration: none;
    color: #2c2e33;
    cursor: pointer;
    font-size: 13px;
}

.csTable .list-action .item:hover,
.csTable .list-action .item:focus {
    color: #ef3b24;
}

.viewNumber {
    font-size: 13px;
}

.approvedDate {
    display: block;
    margin-bottom: 5px;
}

.btnStatus {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    line-height: normal;
    color: #fff;
    text-align: center;
}

.approved {
    background-color: #25c55b;
}

.pending {
    background-color: #ee6742;
}

.sold {
    background-color: #6e55ff;
}

/**/
.wg-pagination {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    padding-top: 16px;
}

.wg-pagination li {
    list-style: none;
}

.wg-pagination li a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 21.86px;
    border-radius: 10px;
    border: 1px solid #e4e4e4;
    color: #ef3b24;
}


.wg-pagination li a:hover,
.wg-pagination li a.active {
    background-color: #ef3b24;
    color: #ffffff;
    border-color: #ef3b24;
}

.wg-pagination li a svg {
    width: 18px;
    height: 18px;
}

/**/
.dashboardForms label {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
    padding-left: 5px;
    margin-bottom: 5px;
}


.dashboardForms .form-control {
    border: 1px solid #eee;
    font-size: 13px;
    line-height: normal;
    padding-right: 75px;
}


.editSaveBtn {
    cursor: pointer;
    position: absolute;
    top: 32px;
    right: 10px;
    z-index: 9;
    font-weight: normal;
    color: #ef3b24;
    background: transparent;
    border: 0;
    outline: 0;
}

label.socialMedia {
    display: flex;
    line-height: normal;
    align-items: center;
}

label.socialMedia svg {
    width: 14px;
    height: 14px;
    margin-right: 5px;
}

/**/
.hasTitle {
    position: relative;
    margin-bottom: 15px;
}

.hasTitle .form-control {
    padding-left: 15px;
}

.hasTitle textarea.form-control {
    padding-top: 12px;
}

.hasTitle textarea:valid~label,
.hasTitle input:valid~label,
.hasTitle select:valid~label {
    opacity: 1;
    visibility: visible;
    transition: all .25s;
}

.hasTitle textarea~label,
.hasTitle input~label,
.hasTitle select~label {
    position: absolute;
    width: unset;
    height: 15px;
    top: -8px;
    left: 10px;
    padding: 2px 5px 2px 5px;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    line-height: 15px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 3;
    background: #fff;

}

.hasTitle textarea~label::before,
.hasTitle input~label::before,
.hasTitle select~label::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: -1;
}

/* Image Uploader */
.image-upload-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.image_upload_box {
    position: relative;
    width: 140px;
    height: 120px;
    border: 1px dashed #aaa;
    border-radius: 10px;
    background-color: white;
    overflow: hidden;
    cursor: pointer;
}

.js--image-preview {
    width: 100%;
    height: 100%;
    background-color: #f7f7f7;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.3s ease;
}

.imgText {
    color: #666;
    font-size: 14px;
    text-align: center;
    padding: 0 0 15px;
    pointer-events: none;
}

.js--no-default .imgText {
    display: none;
}

.image-upload {
    display: none;
}

.drop {
    position: absolute;
    border-radius: 100%;
    background: rgba(0, 0, 0, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
    z-index: 1;
}

.drop.animate {
    transform: scale(2.5);
    opacity: 0;
}

@keyframes ripple-animation {
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.controls {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 2;
}

.controls button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.controls button:hover {
    background: #ef3b24;
}

.add-more {
    width: 140px;
    height: 120px;
    border: 1px dashed #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background-color: #e0e0e0;
    color: #333;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-more:hover {
    background-color: #ef3b24;
    color: #fff;
}

.photos {
    margin-bottom: 5px;
}

.buttonSubmit .readMoreBtn {
    margin: 0;
}

/**/
.csTable.enquiry table thead tr th:nth-child(1) {
    width: 8%;
    text-align: center;
}

.csTable.enquiry table tbody tr td:nth-child(1) {
    text-align: center;
}

.csTable.enquiry table tbody td:not(:last-child) {
    position: relative;

}

.csTable.enquiry table tr {
    white-space: normal;
}

.order_text {
    display: block;
    max-width: 280px;
}

.btns {
    line-height: 30px;
    font-size: 13px;
    border-radius: 4px;
    font-weight: 600;
    margin: 0;
    display: inline-block;
    width: 32px;
    height: 32px;
    color: #fff;
    text-align: center;
    background: #2c2e33;
    box-shadow: 0 3px 8px rgba(64, 182, 96, 0.15);
}

.btns.delete {
    background: #f77565;
}

.btns.delete:hover,
.btns.delete:focus {
    background: #ef3b24;
    color: #fff;
}

.btns.edit {
    background: #ef3b24;
}

.btns.view:hover,
.btns.view:focus {
    background: #ef3b24;
    color: #fff;
}

/**/
.contactSupport {
    float: left;
    width: 100%;
    background: #fff;
}

.supportLine {
    display: flex;
    align-items: center;
}

.supportLine a {
    margin-left: auto;
}

.modal_btn {
    width: auto;
    background: #333;
    padding: 6px 20px;
    border: none;
    color: #fff;
    line-height: normal;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}

.modal_btn:hover,
.modal_btn:focus {
    background: #ef3b24;
    color: #fff;
}


/**/

.withMemberImg {
    display: flex;
}

.member_image {
    max-width: 85px;
    margin-right: 15px;
}

.member_image span {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    font-size: 30px;
    color: #fff;
}

.my_class_info {
    margin: 0;
    padding: 0;
}


.my_class_info ul {
    margin: 0;
    padding: 0;
    display: block;
}

.my_class_info ul li {
    list-style: none;
    display: block;
    line-height: 20px;
    color: #333;
    font-size: 13px;
}

.order_text a {
    display: block;
    color: #333;
}

.order_text a:hover,
.order_text a:focus {
    color: #ef3b24;
}

/**/
.fullTextSection {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0 40px;
    background: #eee;
}

.fullTextSection h4 {
    font-size: 18px;
    margin: 0;
    padding: 0 0 5px;
    font-weight: 600;
}
.fullTextSection h5 {
    font-size: 18px;
    margin: 0;
    padding: 0 0 5px;
    font-weight: 600;
}
.fullTextSection p {
    font-size: 13px;
    line-height: 20px;
    text-align: justify;
}

.fullTextSection ul {
    float: left;
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
}

.fullTextSection ul li {
    display: inline-block;
    margin-bottom: 5px;
}

.fullTextSection ul li a {
    color: #333;
    font-size: 16px;
    position: relative;
}

.fullTextSection ul li a:after {
    content: '';
    width: 1px;
    height: 24px;
    background: #eee;
    display: inline-block;
    padding: 0px;
    margin: 0 10px;
    float: right;
}

.fullTextSection ul li:last-child a:after {
    width: 0;
}

.fullTextSection ul li a:hover {
    color: #F78E20;
}