/* START SAVED LISTINGS */
.savedListingsSection {
	margin-top: 									60px;
	margin-bottom: 									175px;
}

.savedListingsSection .sectionTitle {
	color: 											var(--brown);
	margin-bottom:									50px;
}

.savedListingsSection .sectionTitle cc {
	color: 											var(--black);
}

.savedListingsSection .rowContainer {
	align-items: 									center;
	background-color: 								#FFFFFF;
	padding: 										15px 20px 20px;
	border-radius: 									30px;
	margin-bottom: 									25px;
}

.savedListingsSection .rowContainer:last-of-type {
	margin-bottom: 									0;
}

.savedListingsSection .rowContainer .image {
	width: 											100%;
	height: 										430px;
	object-fit: 									cover;
	object-position: 								center center;
	border-radius: 									20px;
}

.savedListingsSection .rowContainer .favoriteContainer {
	width: 											35px;
	height: 										30px;
	background-image: 								url("../images/favorite.svg");
	background-position: 							center center;
	background-repeat: 								no-repeat;
	background-size: 								20px 25px;
	position: 										absolute;
	top: 											5px;
	right: 											-5px;
	cursor: 										pointer;
}

.savedListingsSection .rowContainer .titleAndPrice {
	display: 										flex;
	flex-flow: 										row nowrap;
	align-items: 									center;
	justify-content: 								space-between;
}

.savedListingsSection .rowContainer .titleAndPrice .title {
	font-size: 										30px;
}

.savedListingsSection .rowContainer .titleAndPrice .price {
	font-size: 										30px;
	margin-right: 									30px;
}

.savedListingsSection .rowContainer .location {
	display: 										flex;
	align-items: 									center;
	color: 											var(--brown);
	margin-bottom: 									50px;
}

.savedListingsSection .rowContainer .location::before {
	content: 										"";
    width: 											18px;
    height: 										22px;
    mask: 											url("../images/location.svg");
    mask-size: 										18px 22px;
    background-color:								#000000;
    margin-right:									5px;
}

.savedListingsSection .rowContainer .about {
	font-weight: 									700;
	margin-bottom: 									20px;
}

.savedListingsSection .rowContainer .description {
	color: 											var(--brown);
	font-weight: 									300;
	margin-bottom: 									20px;
}

.savedListingsSection .rowContainer .amenities {
	display: 										flex;
	flex-flow: 										row nowrap;
	align-items: 									center;
	margin-bottom: 									50px;
}

.savedListingsSection .rowContainer .amenities .icon {
	object-fit: 									contain;
	object-position: 								center center;
	margin-right: 									5px;
}

.savedListingsSection .rowContainer .amenities .value {
	font-size: 										14px;
	color: 											#000000;
	text-wrap: 										nowrap;
	text-overflow: 									ellipsis;
	overflow: 										hidden;
}

.savedListingsSection .rowContainer .amenities .vr {
	background-color: 								#000000;
	opacity: 										1;
	margin: 										0 15px;
}

.savedListingsSection .rowContainer .options {
	display: 										flex;
	flex-flow: 										row nowrap;
	gap: 											10px;
}

.savedListingsSection .rowContainer .options .btnDetails,
.savedListingsSection .rowContainer .options .btnVisit {
	width: 											100%;
	padding: 										10px 15px;
}

.savedListingsSection .rowContainer .options .btnDetails::after {
	background: 									var(--brown);
}

.savedListingsSection .rowContainer .options .btnDetails:hover:after {
	background: 									var(--black);
}

.savedListingsSection .rowContainer .options .btnVisit::before {
	padding: 										10px 15px;
}
/* END SAVED LISTINGS */

@media(max-width: 991px ){
	/* START SAVED LISTINGS */
	.savedListingsSection {
		margin-top: 									25px;
		margin-bottom: 									50px;
	}

	.savedListingsSection .sectionTitle {
		margin-bottom:									20px;
		text-align: 									center;
	}

	.savedListingsSection .rowContainer .image {
		height: 										300px;
		margin-bottom: 									25px;
	}

	.savedListingsSection .rowContainer .favoriteContainer {
		width: 											20px;
		height: 										25px;
		background-size: 								20px 25px;
		right: 											0;
	}

	.savedListingsSection .rowContainer .titleAndPrice {
		flex-flow: 										row wrap;
	}

	.savedListingsSection .rowContainer .titleAndPrice .title {
		flex: 											0 0 100%;
		font-size: 										20px;
	}

	.savedListingsSection .rowContainer .titleAndPrice .price {
		flex: 											0 0 100%;
		font-size: 										20px;
		margin-right: 									0;
	}

	.savedListingsSection .rowContainer .location {
		margin-bottom: 									20px;
	}

	.savedListingsSection .rowContainer .about {
		font-size: 										16px;
		margin-bottom: 									10px;
	}
	/* END SAVED LISTINGS */
}