/* Add your custom styles here */
.customRowProperty {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

input[type="text"].inputSearchStyle {
	border: 1px solid #000000;
	border-radius: 0;
	min-height: 42px;
}

.propertyItemCol {
	width: calc(33.33% - 14px);
	/* box-shadow: 0 0 20px 0px rgb(26 38 84 / 15%); */
	background-color: #fff;
	transition: 0.4s ease-in-out all 0s;
	transform: translate(0, 0);
	overflow: hidden;
	border: 1px solid #cccccc;
}

.propertyItemCol:hover {
	transform: translateY(-5px);
	/* box-shadow: 0 8px 28px 0px rgb(26 38 84 / 40%); */
	border: 1px solid #cccccc;
}

.propertyLocation {
	display: flex;
	align-items: center;
	margin: 0 0 10px;
	gap: 6px;
}

.propertyLocation>p {
	margin: 0;
	font-size: 15px;
	color: #939393;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.3px;
}

.propertyTitleCrd {
	font-size: 22px;
	line-height: 1.3;
	margin: 0 0 10px;
}

.propertyTitleCrd>a {
	color: #000000;
	transition: 0.38s ease-in-out all 0s;
}

.propertyTitleCrd>a:hover {
	color: #000000;
}

.propertyLocation>span svg {
	width: 18px;
	height: 18px;
}

.propertyLocation>span {
	display: flex;
}

.propertyTypeList {
	list-style: none;
	margin-bottom: 10px;
	padding-left: 0;
}

.propertyTypeList li {
	font-size: 16px;
	display: inline-block;
	padding-left: 14px;
	margin-right: 10px;
	position: relative;
	color: #9d9999;
}

.propertyTypeList li::before {
	content: "●";
	color: #000000;
	position: absolute;
	left: 0;
	top: 9px;
	font-size: 5px;
}

.propertyTypeList li>span {
	display: flex;
}

.innerColProperty {
	padding: 20px;
}

.propertyContentStyle>p {
	font-size: 15px;
	line-height: 1.55;
	letter-spacing: 0.1px;
}

.propertyThumbnail>a {
	width: 100%;
	height: 280px;
	display: flex;
	position: relative;
	overflow: hidden;
}

.propertyThumbnail>a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.38s ease-in-out all 0s;
}

.propertyThumbnail>a::before {
	position: absolute;
	top: 0;
	left: -90%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}

.propertyItemCol:hover .propertyThumbnail>a::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

.bottomCardList {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.bottomCardList>p {
	margin: 0;
}

.bottomCardList>p.priceProperty {
	font-weight: 600;
	color: #000000;
}

.bottomCardList>span {
	display: flex;
}

.bottomCardList>span svg {
	width: 20px;
	height: 20px;
	color: #b5b8c1;
}

.topFilterRow {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 10px;
	align-items: center;
}

.filter_form .select2-container--default .select2-selection--single,
.filter_form .select2-container--default .select2-selection--multiple {
	background-color: transparent;
	border-radius: 0px;
	min-height: 42px;
}

.filter_form .inputCstm {
	min-height: 42px;
}

.filter_form .modal-body .select2-container--default .select2-selection--multiple .select2-selection__rendered {
	padding: 0;
	display: inline;
}

.filter_form .modal-body .select2-container .select2-selection--single .select2-selection__rendered {
	padding-left: 1rem;
}

.filter_form .select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #7e7878;
	line-height: 40px;
}

.filter_form .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 42px;
}

.filter_form span.select2.select2-container.select2-container--default {
	width: 100% !important;
	text-align: left;
}

.filter_form .select2-container .select2-search--inline .select2-search__field {
	margin-top: 10px;
	height: 24px;
}

.filter_form .select2-container--default.select2-container--focus .select2-selection--multiple {
	border: 1px solid #000000;
	outline: 0;
}

.filter_form .select2-dropdown {
	background-color: #fff;
	border: 1px solid #000000;
	margin-top: 30px;
}

.filter_form .modal-body .select2-dropdown {
	margin-top: 0;
}

.filter_form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	color: #ffffff;
	border: none;
	padding: 0;
	position: initial;
}

.filter_form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
	color: #eaeef9;
}

.filter_form .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
	text-transform: capitalize;
}

.filter_form .select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #122455;
	color: white;
}

.filter_form .select2-container--default .select2-selection--multiple .select2-selection__choice {
	background-color: #292929;
	border: 0;
	border-radius: 0;
	margin-right: 5px;
	margin-top: 5px;
	padding: 2px 7px;
	color: #eff3ff;
	font-size: 13px;
	font-weight: 400;
	line-height: 22px;
}

.filter_form .select2-results__option {
	font-size: 15px;
	font-weight: 500;
}

.filter_form .select2-container--default .select2-selection--single .select2-selection__clear {
	display: none;
}

.saleProperty {
	width: 14%;
}

.proPeoperty {
	width: 15%;
}

.cityProperty {
	width: calc(23% - 60px);
}

.propertyTypePro {
	width: calc(23% - 20px);
}

.rangeSlideADd {
	width: calc(23% - 20px);
}

#selected-range {
	color: #757575;
}

.custom-dropdown-select {
	min-height: 42px;
	border: 1px solid #000000;
	border-radius: 0;
	display: flex;
	align-items: center;
	padding: 5px;
}

.buttonLightBlue>input {
	background-color: #007bff;
	border: 0;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	border: 0;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.38s ease-in-out all 0s;
}

.buttonLightBlue>input:hover {
	background-color: #1a3c82;
}

.text-center {
	text-align: center;
}

.buttonCenter {
	display: flex;
	align-items: center;
	justify-content: center;
}

.themeBtn>button {
	background-color: #ffd31d;
	border: 0;
	color: #836a09;
	text-transform: uppercase;
	font-weight: 500;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.themeBtn>button:hover,
.themeBtn>button:focus {
	background-color: #edc10a;
	color: #836a09;
}

.updateButtonMap>a {
	background-color: #657786 !important;
	border: 1px solid #657786;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	height: 42px;
	display: flex;
	padding: 6px 15px;
	border-radius: 3px;
}

.updateButtonMap>a:hover,
.updateButtonMap>a:focus {
	background-color: #4b5a66 !important;
}

#price-slider-container {
	background-color: #000000;
	padding: 15px;
	color: #fff;
	min-width: 320px;
	float: right;
}

.innerPriceSlider {
	display: flex;
	gap: 10px;
	align-items: center;
}

div#slider-range {
	width: 50%;
}

.sliderMinimum {
	width: 25%;
	font-size: 14px;
}

.sliderMaximum {
	width: 25%;
	font-size: 14px;
	text-align: right;
}

.bottomFilterRow {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 35px;
}

.bottomFilterRow>a {
	color: #122455;
	font-size: 15px;
}

.bottomFilterRow>a>span {
	display: inline-block;
	line-height: 1;
	margin-right: 5px;
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
	z-index: 999999;
}

.modal-content {
	background-color: #fff;
	border-radius: 8px;
	text-align: center;
	width: 100%;
	height: calc(100% - 20px);
	max-width: 800px;
	position: relative;
	transform: translateY(-100px);
	/* Initially hidden above */
	opacity: 0;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
}

.modal.show .modal-content {
	transform: translateY(0);
	/* Slide down */
	opacity: 1;
}

.close-modal {
	font-size: 20px;
	cursor: pointer;
	position: absolute;
	top: 21px;
	right: 20px;
}

.filter_form .modal-header h2 {
	text-align: left;
	font-size: 26px;
}

.filter_form .resetLinkStyle {
	border: 0;
	color: #040b22;
}

.filter_form .modal-body {
	max-height: calc(100% - 141px);
	overflow-y: auto;
	padding: 15px;
	height: 100%;
	background-color: #F7F7F7;
}

.modal-header {
	background-color: #000000;
	padding: 20px;
}

.modal-header h2 {
	margin: 0;
}

.modal-footer {
	padding: 15px;
	display: flex;
	gap: 10px;
	justify-content: center;
}

.modal-header h2 {
	text-align: left;
	font-size: 26px;
}

.text-white {
	color: #fff !important;
}

.titleLabelMdl {
	font-size: 18px;
	font-weight: 500;
	text-align: left;
	margin: 10px 0 5px;
	display: block;
	width: 100%;
}

.w-100 {
	width: 100% !important;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}

.no-gutters.row {
	margin-left: 0;
	margin-right: 0;
}

.gutters-1.row {
	margin-left: -5px;
	margin-right: -5px;
}

.gutters-2.row {
	margin-left: -10px;
	margin-right: -10px;
}

[class^="col"] {
	padding: 0 15px;
	width: 100%;
	margin-bottom: 10px;
}

.no-gutters [class^="col"] {
	padding: 0;
}

.gutters-1 [class^="col"] {
	padding: 0 5px;
}

.gutters-2 [class^="col"] {
	padding: 0 10px;
}

.col-auto {
	flex: 0 0 auto;
	width: auto;
}

.col {
	flex: 1 0 0%;
}

.border-0 {
	border: 0 !important;
}

.mainRadioTypeCstm>label {
	position: relative;
}

.radioInputCstm {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.mainListingPropertyType {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.selectSortingStyle select {
	border-color: transparent;
	padding-left: 8px;
	background-color: transparent;
	text-transform: uppercase;
	appearance: none;
	color: #000000;
}

.buttonGroupFilter {
	display: flex;
	gap: 10px;
}

.propertyCountList p {
	margin: 0;
	font-size: 17px;
	text-transform: uppercase;
	color: #000000;
	letter-spacing: 0.3px;
}

.selectSortingStyle select:focus {
	outline: 0;
}

.mapPeginationStyle {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: flex-end;
	gap: 15px;
	align-items: center;
	flex: 1 0 0;
	max-width: 100%;
}

.propertyCountList {
	width: auto;
	flex: 0 0 auto;
}

.peginationStyleCstm ul {
	padding-left: 0;
	list-style: none;
	display: flex;
	gap: 7px;
}

.peginationStyleCstm ul>li>a {
	color: #000000;
}

.propertySearchMain {
	width: 100%;
	max-width: 250px;
	position: relative;
}

.searchIconSvg {
	position: absolute;
	top: 9px;
	left: 9px;
	width: 18px;
	height: 18px;
}

.propertySearchMain input {
	width: 100%;
	padding: 5px 10px 5px 35px;
	border-color: #c5c8cf;
}

.propertySearchMain input[type=text]:focus {
	outline: 0;
	border-color: #c5c8cf;
}

.mapViewListLink {
	color: #050e3d;
	display: flex;
	gap: 5px;
}

.textLabelStyle {
	width: 65px;
	height: 50px;
	background-color: #aeb7be;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
}

.mainRadioTypeCstm {
	display: flex;
	gap: 10px;
}

.radioInputCstm:checked+.textLabelStyle {
	background-color: #418fde;
}

.mapListRadio>label {
	position: relative;
}

.inputMapStyle {
	position: absolute;
	opacity: 0;
}

.inputMapStyle+.checkMarkHere .checkedImage,
.inputMapStyle:checked+.checkMarkHere .uncheckedImage {
	display: none;
}

.checkMarkHere {
	display: flex;
	gap: 4px;
}

.inputMapStyle+.checkMarkHere:checked .checkedImage {
	display: inline-block;
}

.inputMapStyle:checked+.checkMarkHere .checkedImage,
.inputMapStyle+.checkMarkHere .uncheckedImage {
	display: flex;
}

.mapListRadio {
	display: flex;
	align-items: center;
	gap: 10px;
}

.listViewHere {
	display: inline-block;
	color: #000;
	background-color: #ededed;
	padding: 4px 10px;
	vertical-align: middle;
	line-height: 1;
	font-size: 14px;
}

.listViewHere span {
	display: inline-block;
	line-height: 1;
	vertical-align: middle;
}

.listViewHere span svg {
	width: 20px;
	height: 20px;
}

.mapListRadio {
	background-color: rgb(108 108 108);
	padding: 7px 15px;
	border-radius: 3px;
}

.checkMarkHere {
	color: #fff;
}

span.checkedImage {
	color: #ffffff;
}

#map-container {
	width: 100%;
	height: 550px;
}

#map {
	height: 100%;
	width: 100%;
	position: relative;
	z-index: 999;
}

/* Help Button */
#help-button {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 10;
	background-color: #007bff;
	color: white;
	padding: 10px 15px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
}

/* Help Popup */
#help-popup {
	position: absolute;
	top: 50px;
	left: 10px;
	width: 250px;
	background: rgba(255, 255, 255, 0.9);
	padding: 15px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	display: none;
	z-index: 1000;
}

#close-help {
	cursor: pointer;
	color: red;
	float: right;
	font-size: 18px;
	font-weight: bold;
}

.propertySectionMain {
	padding-top: 90px;
}

.container {
	width: 100%;
	max-width: 1140px;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0 auto;
}

.topHeadingSingle {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.titleListHeading h1 {
	font-size: 1.625rem;
	margin: 0;
	line-height: 1.1;
}

.buttonListStyle button,
.buttonListStyle a {
	padding: 12px 40px;
	background-color: #1a3c82;
	color: #fff;
	border: 0;
	border-radius: 0;
	transition: 0.38s ease-in-out 0s all;
	border: 0;
	display: inline-block;
	white-space: nowrap;
}

.buttonListStyle button:hover,
.buttonListStyle button:focus,
.buttonListStyle a:hover,
.buttonListStyle a:focus {
	background-color: #224ea7;
}

.topSaveProperty {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

.propertyInnerCnt h2 {
	font-size: 25px;
	margin: 0;
	color: #1a3c82;
}

.propertyInnerCnt p {
	font-size: 13px;
	margin: 0;
	font-weight: 500;
	color: #999898;
}

.propertyInnerCnt {
	text-align: left;
}

.buttonThemeDesign button,
.buttonThemeDesign>a {
	background-color: #1a3c82;
	color: #fff;
	display: flex !important;
	align-items: center;
	gap: 5px;
	border: 0;
	display: inline-block;
	padding: 10px 20px;
	border-radius: 2px;
}

.buttonThemeDesign button:hover,
.buttonThemeDesign button:focus,
.buttonThemeDesign>a:hover,
.buttonThemeDesign>a:focus {
	background-color: #224ea7;
}

.bgLightTheme {
	background-color: #f6f6f6;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.buttonSaveDesign button span {
	display: inline-block;
	line-height: 1;
}

.profileImageContact {
	display: flex;
	align-items: center;
}

.imageSinglePerson {
	width: 150px;
}

.personContentDetils {
	padding-left: 10px;
}

.personContentDetils h6 {
	font-size: 13px;
	font-weight: 400;
	color: #8f8d8d;
	margin: 0;
}

.personContentDetils h3 {
	font-size: 18px;
	margin: 3px 0 5px;
}

.personContentDetils p {
	font-size: 12px;
	color: #8f8d8d;
	font-weight: 500;
}

.linkListMainCntct {
	color: #3858e9;
	display: flex;
	gap: 8px;
	font-weight: 500;
	font-size: 15px;
}

.linkListMainCntct svg {
	width: 22px;
	height: 22px;
}

.contactMainSngleBox {
	background-color: #ebebeb;
	padding: 20px;
	/* margin-top:45px; */
}

.backSearchLink {
	display: flex;
	color: #000000;
	margin-bottom: 30px;
}

.formStyleCustom input:not([type="submit"]) {
	border: 0;
	border-radius: 0;
	height: 44px;
	margin-bottom: 8px;
}

.formStyleCustom textarea {
	border: 0;
	border-radius: 0;
	resize: none;
	min-height: 100px;
}

.formStyleCustom textarea:focus {
	outline: 0;
}

.formStyleCustom label {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 4px;
}

.formStyleCustom input:focus:not([type="submit"]) {
	outline: 0;
}

.imageSquareMain {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.imageSquareMain>img {
	max-width: 150px;
}

.squareContentStyle {
	text-align: center;
	padding: 0 20px;
}

.squareContentStyle h4 {
	margin: 0;
	color: #122455;
	font-size: 21px;
	font-weight: 400;
	padding-top: 5px;
}

.squareContentStyle p {
	color: #657786;
	font-size: 14px;
	margin: 5px 0 0;
}

.buttonGrpTheme {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.rowDataCstm {
	align-items: center;
	border-top: 1px solid #e2e5eb;
	border-bottom: 1px solid #e2e5eb;
	margin: 40px 0;
}

.addedMap {
	background-color: #dfe5ef;
	padding: 20px;
}

.align-center {
	align-items: center;
}

.tabMapSection {
	padding: 20px 0 50px;
}

.formStyleCustom {
	margin-top: 20px;
}

.noticeFormContent {
	font-size: 13px;
	color: rgb(161, 169, 179);
	line-height: 1.6;
}

.imageSinglePerson img {
	width: 100%;
	height: 155px;
	object-fit: cover;
	background: #d5d5d5;
}

/* Container */
.vertical-tabs-container {
	display: flex;
	margin: 0px auto;
	border-radius: 0;
	overflow: hidden;
	border: 1px solid #ddd;
}

/* Tabs */
.tabsVertiCal {
	display: flex;
	flex-direction: column;
	background: #f8f8f8;
	width: 46px;
}

.tabsVertiCal .tab {
	background: none;
	border: none;
	padding: 12px;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	writing-mode: vertical-rl;
	transform: rotate(360deg);
	text-align: center;
	white-space: nowrap;
	min-height: 175px;
	border-radius: 0;
	background-color: #f5f5f5;
	color: #242424;
	font-weight: 500;
	letter-spacing: 0.5px;
	border-bottom: 3px solid #fff;
}

.tabsVertiCal .tab:hover,
.tabsVertiCal .tab.active {
	background: #000000;
	color: white;
}

/* Content */
.tab-content-vertical {
	flex-grow: 1;
	padding: 20px;
}

.tab-content-vertical .content {
	display: none;
}

.tab-content-vertical .content.active {
	display: block;
}

.mainCardCommon,
.addtionalDivMain {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.addtionalDivCard {
	width: calc(25% - 8px);
	display: flex;
	justify-content: center;
	align-items: center;
}

.addtionalDivMain {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.addtionalDivCard p {
	margin: 0;
	padding: 10px;
}

.addtionalTitleStyle {
	font-size: 20px;
	border-top: 1px solid #dddbdb;
	padding-top: 20px;
	margin-top: 30px;
	padding-bottom: 5px;
}

.cardStyleProptWdth {
	padding: 15px 10px;
	width: calc(33.3% - 7px);
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	flex-wrap: wrap;
	text-align: center;
}

.contDesignCrd {
	color: #000000;
}

.contDesignCrd:hover {
	text-decoration: underline;
}

.propCrdDesign h3 {
	font-size: 16px;
	display: block;
	width: 100%;
	margin: 0;
	text-align: center;
	color: #454545;
}

.propCrdDesign p {
	margin: 8px 0 0;
	font-size: 14px;
	color: #454545;
}

.thank-you-container {
	text-align: center;
	background: #fff;
	padding: 50px;
	border-radius: 20px;
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	max-width: 450px;
	animation: fadeIn 1s ease-in-out;
	margin: 0 auto;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.thank-you-container h2 {
	font-size: 2.5em;
	color: #000000;
}

.thank-you-container p {
	font-size: 1.1em;
	margin: 15px 0;
	color: #555;
}

.thank-you-container .iconCstm {
	font-size: 60px;
	color: #6e8efb;
	margin-bottom: 20px;
	display: inline-block;
	animation: bounce 1.5s infinite;
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.thank-you-container a {
	display: inline-block;
	margin-top: 20px;
	padding: 12px 30px;
	background: #000000;
	color: #fff;
	text-decoration: none;
	font-size: 1em;
	border-radius: 30px;
	transition: 0.3s;
}

.thank-you-container a:hover {
	background: #2e4294;
}

.propertFormMobile {
	display: none;
}

.propertFormDesktop {
	display: block;
}

.paginationListCount {
	display: flex;
	align-items: center;
	text-transform: uppercase;
	color: #000000;
}

.paginationListCount>ul {
	display: flex;
	padding: 0;
	list-style-type: none;
}

.paginationListCount>ul>li>a {
	display: flex;
	margin: 0 4px;
	justify-content: center;
	align-items: center;
	color: #000000;
	font-size: 16px;
}

.paginationListCount>ul>li.active>a {
	color: #000000;
	font-size: 16px;
	font-weight: 600;
}

p.pagepeginationcnt {
	margin: 0;
	font-size: 16px;
}

.buttonDesignPegi {
	line-height: 1;
}

.buttonDesignPegi>a {
	color: #858585;
}

.buttonDesignPegi>a svg {
	width: 16px;
	height: 16px;
}

.fillHeart {
	display: none;
}

.share-dropdown {
	position: relative;
	display: inline-block;
	margin-left: 10px;
}

.share-btn {
	background-color: #f5f5f5;
	border: 1px solid #ccc;
	padding: 6px 12px;
	cursor: pointer;
	border-radius: 4px;
}

.share-options {
	position: absolute;
	top: 100%;
	left: 0;
	background: #1a3c82;
	border: 1px solid #ddd;
	padding: 0;
	z-index: 10;
	min-width: 120px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	color: #fff;
}

.share-options a {
	display: flex;
	text-decoration: none;
	padding: 5px 0;
	color: #fff;
	border-bottom: 1px solid #e5e5e5;
	padding: 10px;
	line-height: 1;
	align-items: center;
	gap: 10px;
}

.share-options a:hover {
	color: #fff;
}

.share-btn svg {
	width: 20px;
	height: 20px;
}

.sliderSingleCustom {
	position: relative;
	z-index: 0;
}

.save-property-btn {
	padding: 0;
	border: 0;
}

.save-property-btn .icon-tabler-heart.unfillHeart {
	stroke: #a7aab1;
}

.buttonSaveDesign .save-property-btn .icon-tabler-heart.unfillHeart {
	stroke: #fff;
}

.save-property-btn .icon-tabler-heart.fillHeart {
	fill: #a7aab1;
	stroke: #a7aab1;
}

.buttonSaveDesign .save-property-btn .icon-tabler-heart.fillHeart {
	fill: #fff;
	stroke: #fff;
}

.bottomCardList [type=button].save-property-btn:focus,
.bottomCardList [type=button].save-property-btn:hover,
.bottomCardList [type=submit].save-property-btn:focus,
.bottomCardList [type=submit].save-property-btn:hover,
.bottomCardList button.save-property-btn:focus,
.bottomCardList button.save-property-btn:hover {
	background-color: transparent;
}

.rental-page-top .innerColFilter.saleProperty {
	display: none;
}

.rental-page-top {
	justify-content: center;
}

.innerColFilter.propertyTypePro input[type="text"].inputSearchStyle {
	border: none;
	background-color: transparent;
	border-bottom: 1px solid #cccccc;
	outline: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 17px;
	background-position: left center;
	padding: 0 5px 0 28px;
}

.innerColFilter.propertyTypePro input[type="text"].inputSearchStyle:focus {
	border: none;
	border-bottom: 1px solid #000000;
	outline: none;
}

/******************************************************************************************************************************/
/***************************************************** New property searchbar css ********************************************/
/****************************************************************************************************************************/

.new_property_outr {
	font-size: 16px;
}

header.elementor-location-header {
	z-index: 999;
	position: relative;
}

.toggle-buttons {
	display: flex;
	width: 100%;
}

.new_property_outr .toggle-btn {
	padding: 8px 10px;
	border: 1px solid #000000;
	background: transparent;
	cursor: pointer;
	text-transform: uppercase;
	color: #000000;
	border-radius: 0;
	width: 100%;
	font-size: 13px;
}

.new_property_outr .toggle-btn:hover,
.new_property_outr .toggle-btn:focus,
.new_property_outr .toggle-btn.active {
	background: #000000;
	color: #ffffff;
	border-color: #000000;
}

.filter_btn_outer {
	position: relative;
}

.filterDropdownTrigger {
	background-color: transparent;
	color: #000000;
	padding: 2px 22px 2px 0;
	cursor: pointer;
	display: inline-block;
	border-bottom: 1px solid #000000;
	position: relative;
	z-index: 2;
	width: 100%;
	text-align: center;
	font-size: 13px;
	white-space: nowrap;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right;
	background-size: 24px;
	text-align: left;
}
.filter_btn {
    color: #000000;
    cursor: pointer;
    display: inline-block;
    position: relative;
    z-index: 2;
    width: auto;
    text-align: center;
    font-size: 13px;
    white-space: nowrap;
    line-height: normal;
    border-bottom: 1px solid #000000;
    height: auto;
	transition: 0.3s ease-in-out;
}
.filter_btn:hover {
    color: #000000;
    border-bottom: 1px solid transparent;
}

.new_property_outr .toggle-buttons button {
	border-radius: 0;
}

.filterPopup {
	position: absolute;
	right: 0;
	background: #000000;
	color: white;
	padding: 20px;
	z-index: 5;
	width: 300px;
	display: none;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	margin-top: 12px;
}

.filterPopup:before {
	content: "";
	height: auto;
	width: auto;
	position: absolute;
	bottom: 100%;
	right: 12px;
	border: 7px solid white;
	border-bottom-color: #000000;
}

.popupHeader {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.closePopup {
	cursor: pointer;
	font-size: 18px;
	line-height: normal;
}

.checkboxList {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.checkboxItem {
	display: flex;
	align-items: center;
	gap: 10px;
	text-transform: uppercase;
}

.checkboxItem span {
	text-transform: uppercase;
}

.popupFooter {
	display: flex;
	justify-content: flex-end;
	margin-top: 15px;
	gap: 10px;
	border-top: 1px solid #606060;
	padding-top: 15px;
}

.new_property_outr .applyBtn,
.new_property_outr .clearBtn {
	color: white;
	text-transform: uppercase;
	border-radius: 0;
}

.new_property_outr .applyBtn {
	padding: 5px 15px;
	border: 1px solid white;
	background: transparent;
	color: white;
	cursor: pointer;
}

.new_property_outr .clearBtn {
	background: transparent;
	border: none;
}

.new_property_outr .applyBtn:hover,
.new_property_outr .applyBtn:focus,
.new_property_outr .clearBtn:hover,
.new_property_outr .clearBtn:focus {
	color: #000000;
	background: white;
}

.priceSliderSection {
	padding: 10px 0;
}

.priceLabels {
	font-size: 14px;
	margin-bottom: 10px;
}

.rangeSliderWrapper {
	position: relative;
	height: 20px;
}

.slider-track {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 3px;
	background: #fff;
	width: 100%;
	border-radius: 3px;
	z-index: 1;
}

.rangeSliderWrapper input[type="range"] {
	position: absolute;
	left: 0;
	width: 100%;
	background: none;
	pointer-events: none;
	appearance: none;
	z-index: 2;
}

.rangeSliderWrapper input[type="range"]:nth-child(3) {
	z-index: 3;
}

.rangeSliderWrapper input[type="range"]::-webkit-slider-thumb {
	pointer-events: auto;
	appearance: none;
	height: 18px;
	width: 18px;
	background: #ffffff;
	border-radius: 0;
	cursor: pointer;
	border: 2px solid #ffffff;
}

.rangeSliderWrapper input[type="range"]::-moz-range-thumb {
	pointer-events: auto;
	height: 18px;
	width: 18px;
	background: #ffffff;
	border-radius: 0;
	cursor: pointer;
	border: 2px solid #ffffff;
}

.priceValues {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	margin-top: 10px;
}

.new_property_outr .updateButtonSearch button {
	background-color: #ffffff;
	color: #000000;
	border: 3px double #000000;
	text-transform: uppercase;
	height: auto;
	font-size: 13px;
	padding: 6px 20px;
	border-radius: 0;
}

.new_property_outr .updateButtonSearch button:hover,
.new_property_outr .updateButtonSearch button:focus {
	background-color: #000000;
	color: #ffffff;
}

.new_property_outr input[type="text"].inputSearchStyle {
	min-height: auto;
}

.new_property_outr .innerColFilter.propertyTypePro input[type="text"].inputSearchStyle {
	padding: 8px 5px 9px 28px;
	font-size: 13px;
}

.modal.right {
	justify-content: right;
}

.filter_form form {
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: end;
}

.modal.right .modal-content {
	transition: 0.5s ease-in-out;
	transform: translateX(100%);
	height: 100%;
	border-radius: 0;
}

.modal.right.show .modal-content {
	transform: translateX(0);
}

body.modal-open {
	overflow: hidden;
}

.filter_form .modal-body {
	background-color: #000000;
	color: #ffffff;
}

.filter_form .modal-body *,
.filter_form .modal-body *:focus {
	border-color: #ffffff;
}

.filter_form .modal-body .select2-container--default.select2-container--focus .select2-selection--multiple {
	border: 1px solid #ffffff;
	outline: 0;
}

.filter_form .modal-body input::placeholder,
.filter_form .modal-body select::placeholder {
	color: #ffffff;
}

.filter_form .modal-body .select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #ffffff;
}

.filter_form .locationlabel {
	margin-top: 0;
}

.filter_form .select2-dropdown {
	margin-top: 0;
}

.filter_form .inputCstm {
	background-color: transparent;
	color: white;
}

.filter_form .select2-container--default .select2-selection--multiple .select2-selection__choice {
	border: 0.5px solid;
}

.filter_form .textLabelStyle {
	background-color: #ffffff29;
}

.filter_form .radioInputCstm:checked+.textLabelStyle {
	background-color: #ffffff;
	color: #000000;
}

.filter_form .modal-footer {
	background-color: #000000;
}

.filter_form .themeBtn>button {
	background-color: transparent;
	border: 1px solid #ffffff;
	color: #ffffff;
	border-radius: 0;
}

.filter_form .themeBtn>button:hover,
.filter_form .themeBtn>button:focus {
	background-color: #ffffff;
	color: #000000;
}

.filter_form .resetLinkStyle,
.filter_form .resetLinkStyle:hover {
	color: #ffffff;
	text-transform: uppercase;
	background-color: transparent;
}

.filter_form .modal-header {
	padding: 30px 30px 0;
}

.filter_form .modal-body {
	padding: 20px 30px 0;
}

.filter_form .modal-body {
	max-height: calc(100% - 133px);
}

.propertyTitleCrd>a {
	font-family: Adobe Garamond Pro;
}

.rangeLabelRow {
	display: flex;
	justify-content: space-between;
	margin-bottom: 5px;
	font-size: 14px;
	color: #ccc;
}

#bedsBathsPopup .rangeSliderSection:first-child {
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #7989ab;
}

* {
	touch-action: manipulation;
}

a,
button,
[role="button"],
.elementor a {
	cursor: pointer !important;
}

a.elementor-icon {
	position: relative;
	z-index: 9999;
	display: inline-block;
}

/*.new_property_outr button.toggle-btn {    border: 1px solid #000000;    color: #000000;}.new_property_outr button.toggle-btn:hover,.new_property_outr button.toggle-btn.active {    background-color: #000000;    color: #ffffff;}*/
a.elementor-icon.elementor-social-icon {
	display: flex;
}

.propertyTypeList li::before {
	top: 50%;
	transform: translateY(-50%);
}

#cityPopup .checkboxList {
	max-height: 150px;
	overflow-y: auto;
}

div#property-listings {
	margin-inline: 0;
}

.e-con.e-flex>.e-con-inner {
	padding-left: 10px;
	padding-right: 10px;
}

section.propertySectionMain.alignwide {
	margin-inline: 0;
	padding-top: 15px;
}

section.propertySectionMain.alignwide .container {
	max-width: 100%;
	padding: 0;
}

a.backSearchLink {
	line-height: normal;
}

.inquiry_now_btn input {
	border-color: #ffffff;
	color: #ffffff;
}

.inquiry_now_btn input:hover,
.inquiry_now_btn input:focus {
	background-color: #ffffff;
	color: #000000;
}
.filter_btn svg {
	vertical-align: text-bottom;
}
















/************************************************************************************/
/**************************** Media Query Start Here *******************************/
/**********************************************************************************/

@media screen and (min-width: 992px) {
	.col-lg-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-lg-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-lg-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-lg-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-lg-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-lg-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-lg-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-lg-8cstm {
		flex: 0 0 auto;
		width: 62%;
	}

	.col-lg-4cstm {
		flex: 0 0 auto;
		width: 38%;
	}

	.col-lg-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none;
	}
}

@media screen and (min-width: 768px) {
	.col-md-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-md-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-md-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-md-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-md-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-md-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-md-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-md-8cstm {
		flex: 0 0 auto;
		width: 62%;
	}

	.col-md-4cstm {
		flex: 0 0 auto;
		width: 38%;
	}
}

@media screen and (max-width:1100px) {
	.cityProperty {
		width: calc(23% - 60px);
	}

	.propertyTypePro {
		width: calc(23% - 20px);
	}

	.rangeSlideADd {
		width: calc(23% - 20px)
	}
}

@media screen and (min-width: 992px) {
	.new_property_outr .topFilterRow {
		flex-wrap: nowrap;
	}

	.new_property_outr .saleProperty {
		width: 100%;
	}

	.new_property_outr .filter_btn_outer {
		width: 100%;
	}

	.new_property_outr .propertyTypePro {
		width: 230px;
		flex-shrink: 0;
	}
}

@media screen and (max-width:991px) {
	.propertFormMobile {
		display: block;
	}

	/* .propertFormDesktop{ display:none; } */
	.propertyItemCol {
		width: calc(50% - 10px);
	}

	.proPeoperty {
		width: 18%;
	}

	.saleProperty {
		width: calc(20% - 8px);
	}

	.cityProperty {
		width: calc(25% - 8px);
	}

	.propertyTypePro {
		width: calc(25% - 8px);
	}

	.rangeSlideADd {
		width: calc(30% - 8px);
	}

	.buttonGrpTheme {
		justify-content: center;
		margin-top: 20px;
	}

	.imageSquareMain {
		justify-content: center;
	}

	.topSaveProperty {
		margin-top: 25px;
	}

	.contactMainSngleBox {
		padding: 10px;
		margin-top: 15px;
	}

	.filter_btn {
		width: auto;
	}
	.propertySectionMain {
		padding-top: 60px;
	}
}

@media screen and (max-width:767px) {
	.propertyTitleCrd {
		font-size: 20px;
	}

	.saleProperty,
	.proPeoperty,
	.cityProperty,
	.propertyTypePro {
		width: calc(50% - 5px);
	}

	.rangeSlideADd {
		width: calc(50% - 5px);
	}

	.mapPeginationStyle {
		width: 100%;
		justify-content: space-between;
	}

	.cardStyleProptWdth {
		padding: 15px 10px;
		width: calc(50% - 7px);
	}

	.propertyCountList {
		width: 100%;
		text-align: center;
		margin-bottom: 10px;
	}

	.addtionalDivCard {
		width: calc(33.3% - 8px);
	}

	.filter_btn_outer {
		position: initial;
	}

	.filterPopup {
		width: 100%;
	}

	.filterPopup:before {
		display: none;
	}

	.new_property_outr .filterDropdownTrigger,
	.new_property_outr .toggle-btn {
		padding: 7px 10px;
		font-size: 13px;
		line-height: normal;
		vertical-align: top;
	}
	.new_property_outr .filterDropdownTrigger {
		padding: 7px 24px 7px 0;
	}	
	.new_property_outr .updateButtonSearch button {
		padding: 2px 15px;
		line-height: 22px;
	}

	.propertyTypePro {
		width: 100%;
	}

	.new_property_outr .saleProperty {
		width: auto;
	}

	.filter_form .select2-container .select2-search--inline .select2-search__field {
		width: 100% !important;
	}

	.mainRadioTypeCstm {
		flex-wrap: wrap;
	}

	.e-con.e-flex>.e-con-inner {
		padding: 40px 15px;
	}
	.propertySectionMain {
		padding-top: 40px;
	}
}

@media screen and (max-width:575px) {
	.propertyItemCol {
		width: 100%;
	}

	.addtionalDivCard {
		width: 100%;
	}

	.cardStyleProptWdth {
		padding: 15px 10px;
		width: 100%;
	}

	.squareContentStyle {
		width: 100%;
	}

	.imageSquareMain img {
		display: flex;
		width: 100%;
	}

	.topHeadingSingle {
		flex-wrap: wrap;
	}

	.buttonListStyle {
		margin-bottom: 20px;
	}

	.titleListHeading p {
		margin-bottom: 0;
	}

	.paginationListCount {
		justify-content: space-between;
	}

	.filter_form .textLabelStyle {
		width: 42px;
		height: 42px;
		font-size: 15px;
	}
}

@media screen and (max-width:480px) {
	.propertySearchMain {
		max-width: 100%;
	}
}

/* loader */
.cpm-loader {
	position: fixed;
	inset: 0;
	background: rgba(255, 255, 255, 0.8);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.cpm-spinner {
	width: 46px;
	height: 46px;
	border: 4px solid #ddd;
	border-top: 4px solid #1A2654;
	border-radius: 50%;
	animation: spin 0.9s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.cpm-loader p {
	margin-top: 12px;
	font-size: 14px;
	color: #1A2654;
	font-weight: 600;
}