@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.property-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}
.property-header h1 {
	font-size: 40px;
	font-weight: 600;
	letter-spacing: -1px;
	margin: 0;
	text-transform: capitalize;
	line-height: normal;
}
.property-actions {
	display: flex;
	gap: 12px;
	align-items: center;
}
.property-details .subtitle{
	font-size: 26px;
	letter-spacing: -1px;
	font-weight: normal;
	margin-bottom: 10px;
}
.property-details .meta-information {
	padding: 0px 0px 20px 0px;
	margin: 0px 0px 20px 0px;
	list-style-type: none;
	border-bottom: 1px solid #E5E7EB;
	display: flex;
	gap: 15px;
}
.property-details .meta-information + .amenities-section {
	padding-top: 0px;
	margin-top: 0px;
	border-top:0px;
}
.property-details .meta-information li {
	color: #384658;
	font-size: 16px;
}
.property-details .meta-information li:before {
	content: "\2022";
    color: #384658;
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}
.property-details .meta-information li:first-child:before {
	display: none;
}
.where-to-sleep-section {
	margin-bottom: 80px;
}
.bedroom-list .slick-slide{
	margin-right: 20px;
}
.bedroom-list .bedroom-img {
	margin-bottom: 10px;
	border-radius: 10px;
	overflow: hidden;
}
.bedroom-list .bedroom-img img {
	max-width: 100%;
	border-radius: 10px;
	transition: all 0.3s ease;
	min-height: 225px;
}
.bedroom-list .bedroom-img:hover img {
	transform: scale(1.2);
}
.bedroom-list .bedroom-text span {
	font-size: 20px;
	color: var(--ast-global-color-1);
}
.bedroom-list .bedroom-text p {
	font-size: 16px;
	color: rgba(56, 70, 88, 0.8);
	margin-bottom: 0px;
}
.bedroom-list .slick-arrow{ 
	bottom: -50px;
	top: auto;
}
#share-property .modal-content {
	max-width: 400px;
}
.property-info-details{
	display: flex;
	align-items: flex-start;
	margin-bottom: 10px;
}
.property-info-details .thumbnail{
	width: 80px;
	margin-right: 10px;
}
.property-info-details .thumbnail .main-image {
	width: 100%;
	height: 70px;
}
.property-info-details .property-info {
	flex-wrap: wrap;
}
.property-info-details .property-info h2 {
	font-size: 20px;
	margin-bottom: 10px;
	width: 100%;
	text-transform: capitalize;
}
.sharethis-inline-share-buttons {
	text-align: left !important;
}
@media (min-width: 1300px) {
	.bedroom-list .slick-arrow{ 
		width: 60px;
		height: 60px;
		bottom: -70px;
		top: auto;
	}
}
.bedroom-list .slick-next.slick-arrow{
    background-image: url('https://thepaulsencollection.com/wp-content/plugins/ownerrezapi/public/images/arrow-next-brown.svg');
    background-position: center center;
    background-color: transparent !important;
    border: 1px solid #977A3A1A;
}
.bedroom-list .slick-next.slick-arrow:hover {
    background-color: #977A3A1A !important;
}
.bedroom-list .slick-prev.slick-arrow{
    background-image: url('https://thepaulsencollection.com/wp-content/plugins/ownerrezapi/public/images/arrow-prev-brown.svg');
    background-position: center center;
    border: 1px solid #977A3A1A;
    background-color: transparent !important;
}
.bedroom-list .slick-prev.slick-arrow:hover {
    background-color: #977A3A1A !important;
}
.custom-dots {
	bottom: -40px;
}
.custom-dots.slick-dots li button {
    background: #977A3A33;
    width: 10px;
    height: 10px;
    border: none;
}
.custom-dots.slick-dots li.slick-active button {
    background: #977A3A;
}
.circle-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid #ddd;
	background: #fff;
	cursor: pointer;
	font-size: 16px;
}

/* --- Gallery --- */
.property-gallery {
	display: flex;
	grid-gap: 10px;
	flex-wrap: wrap;
}
.property-gallery img {
	opacity: 0.9;
}
.property-gallery img:hover {
	opacity: 1;
}
.main-image {
	width: 49%;
}
.main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	cursor: pointer;
}

.thumbnail-grid {
	display: flex;
	grid-gap: 10px;
    width: 49%;
    flex-wrap: wrap;
    justify-content: space-between;
}

.thumbnail-grid img {
	width: 49%;
	object-fit: cover;
	border-radius: 12px;
	cursor: pointer;
	cursor: pointer;
}
.thumbnail-grid img:nth-of-type(1), .thumbnail-grid img:nth-of-type(2) { 
	min-height:256px 
}
.more-photos {
	position: relative;
	width: 49%;
}
.more-photos img {
	width: 100%;
}
.more-photos .show-all-photos {
	position: absolute;
	bottom: 8px;
	left: 8px;
	background: #006CA9;
	border: 2px solid #006CA9;
	color: #fff;
	padding: 6px 14px;
	font-size: 16px;
	border-radius: 100px;
	cursor: pointer;
	text-transform: capitalize;
}
.more-photos .show-all-photos:hover {
	background: #fff;
	color: #000;
}
.more-photos .show-all-photos:before {
	content: "";
	background: url('https://thepaulsencollection.com/wp-content/plugins/ownerrezapi/public/images/show-more-gallery.svg');
	background-position: center;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	display: inline-block;
	vertical-align: middle;
	margin-top: -4px;
	margin-right: 10px;
}
.more-photos .show-all-photos:hover:before {
	filter: invert(1);
}
@media (min-width: 921px) { 
	.mobile-image-gallery {
		display: none;
	}
}
@media (max-width: 920px) {
	.property-gallery {
		display: block;
	}
	.main-image,
	.thumbnail-grid {
		display: none;
	}
	.mobile-image-gallery .single-image {
		height: 400px;
	}
	.mobile-image-gallery .single-image img {
		object-fit: cover;
		width: 100%;
		height: 100%;
	}
}
.show-btn {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 24px;
	border-radius: 999px;
	border: 1px solid #3b82f6;
	font-size: 14px;
	font-weight: 600;
	background: #3b82f6;
	/* primary blue */
	color: #fff;
	/* white text */
	cursor: pointer;
	transition: background 0.2s ease, transform 0.1s ease;
}

.show-btn:hover {
	background: #2563eb;
	/* darker blue */
	border-color: #2563eb;
}

.show-btn:active {
	transform: scale(0.97);
}

/* --- Content --- */
.details h3 {
	font-size: 20px;
	margin-bottom: 4px;
}

.meta {
	font-size: 14px;
	color: #666;
	margin-bottom: 1.5rem;
}

/* Amenities */
.amenities {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.amenity {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #444;
}

.amenity .icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin-right: 10px;
	border-radius: 8px;
	background: #f7f7f7;
	font-size: 18px;
}

/* --- Booking Box --- */
.booking-box {
	border: 1px solid #ddd;
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	background: #fff;
}

.price {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 1rem;
}

.price span {
	font-weight: 400;
	color: #666;
	font-size: 14px;
}

.booking-box form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.booking-box label {
	font-size: 13px;
	color: #555;
}

.booking-box input,
.booking-box select {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 14px;
}

.booking-box button {
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 10px;
	background: #0057B8;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
}

.booking-box .note {
	margin-top: 8px;
	font-size: 12px;
	color: #777;
}

.booking-box .total {
	margin-top: 12px;
	font-size: 15px;
	font-weight: 600;
	text-align: right;
}

.rating {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	color: #384658;
}

.stars {
	color: #977A3A;
	font-size: 22px;
	letter-spacing: 2px;
}
.score,
.count {
	font-size: 18px;
	color: #384658;
}

.content {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}
.property-details {
	width: 60%;
}
.booking-box {
	width: 30%;
}
/* Perks Section */
.perks {
	display: grid;
	gap: 20px;
	margin: 20px 0;
}

.perk {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0px;
	border-radius: 12px;
	background: #fff;
}

.iconbox {
	width: 64px;
	height: 64px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #f59e0b;
}
.perk-title {
	font-weight: normal;
	font-size: 18px;
}

/* Divider */
.features_description {
	border-bottom: 1px solid #e5e7eb;
	padding-bottom: 16px;
	margin-bottom: 16px;
}

/* Description */

/* --- Booking box right (you already have, just polish) --- */
.booking-box {
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 20px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	align-self: start;
}

.booking-box .price {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 16px;
}

.booking-box .price span {
	font-size: 14px;
	font-weight: normal;
	color: #6b7280;
}

.booking-box form {
	display: grid;
	gap: 12px;
	margin-bottom: 12px;
}

.booking-box form label {
	font-size: 13px;
	color: #374151;
	font-weight: 600;
}

.booking-box form input,
.booking-box form select {
	width: 100%;
	padding: 10px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 14px;
}

.booking-box button {
	background: #2563eb;
	color: #fff;
	font-weight: 600;
	border: none;
	padding: 12px;
	border-radius: 8px;
	cursor: pointer;
}

.booking-box button:hover {
	background: #1e40af;
}

.booking-box .note {
	font-size: 13px;
	color: #6b7280;
	margin: 8px 0;
}

.booking-box .total {
	font-size: 16px;
	font-weight: 600;
	text-align: right;
}

.description-main {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #E5E7EB;
}
.description {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	/* Show only 4 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 27px;
	max-height: calc(1.5em * 5);
	/* line-height * number of lines */
	color: #384658;
	font-size: 16px;
}

/* Show more button */
.show-more {
	display: inline-block;
	margin-top: 15px;
	background: #D0E0F1;
	border: 2px solid #D0E0F1;
	padding: 14px 28px;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 600;
	color: #06182E;
	cursor: pointer;
	line-height: normal;
	position: relative;
	overflow: hidden;
}
.show-more:before {
	content: '';
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 101%;
}
.show-more:hover:before {
	transform: translate3d(0,-100%,0);
	background: var(--ast-global-color-0);
}
.show-more:hover {
	border-color: #006CA9;
	color: var(--ast-global-color-1);
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 9999;
	padding-top: 80px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
	background: #fff;
	margin: auto;
	padding: 40px;
	border-radius: 30px;
	max-width: 600px;
	font-size: 15px;
	line-height: 1.6;
	color: #1f2937;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	animation: fadeIn 0.3s ease;
	color: rgba(56, 70, 88, 0.8);
	font-size: 16px;
	position: relative;
}
.modal-content p {
	margin-bottom: 15px;
}
.modal-content .close {
	position: absolute;
    top: -14px;
    display: block;
    right: -14px;
    cursor: pointer;
}
.modal-content .close:hover svg circle {
	fill: #ccc;
}
.modal-content > .modal-title {
	font-size: 26px;
	letter-spacing: -1px;
	margin-bottom: 15px;
} 
.amenities-section {
	margin: 30px 0;
	padding: 30px 0px;
	border-top:1px solid #E5E7EB;
	border-bottom:1px solid #E5E7EB;
}
.amenities-section h3 {
	font-size: 26px;
	letter-spacing: -1px;
	margin-bottom: 24px;
}
.amenities-preview {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.amenity {
	padding: 12px 16px;
	border: 1px solid #E5E7EB;
	border-radius: 100px;
	line-height: normal;
	font-size: 13px;
}
.amenity.air-conditioning:before
{	margin-right: 8px;
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	background-image: url('https://thepaulsencollection.com/wp-content/plugins/ownerrezapi/public/images/air-conditioning.svg');
	background-repeat: none;
	background-position: center center;
	background-size: 20px auto;
}
.amenities-list {
	list-style: none;
	padding: 0;
}
#amenitiesModal .section {
	padding-bottom: 20px;
	margin-bottom: 30px;
	border-bottom: 1px solid #E5E7EB;
}
#amenitiesModal .modal-content-inner {
	max-height: 500px;
    overflow-x: auto;
}
#amenitiesModal .section h3 {
	font-size: 18px;
	color: #384658;
	margin-bottom: 12px;
}
#amenitiesModal .section .filter-grid {
	display: flex;
	flex-wrap: wrap;
}
#amenitiesModal .section .filter-grid .amenity {
	margin-bottom: 10px; margin-right: 10px;
}
.amenities-list li {
	padding: 8px 0;
	border-bottom: 1px solid #eee;
}
.map-section {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom:1px solid #E5E7EB;
}
.map-section h3 {
	font-size: 26px;
	letter-spacing: -1px;
	margin-bottom: 24px;
}
.calendar-display {
	margin-bottom: 30px;
	border-bottom:1px solid #E5E7EB;
}
.reviews-section {
	margin-bottom: 30px;
	border-bottom:1px solid #E5E7EB;
}
.sharethis-inline-share-buttons .st-btn{
	display: inline-block !important;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.photo-lightbox {
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: white;
	z-index: 9999;
	transform: translateX(100%);
	opacity: 0;
	transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
	pointer-events: none;
	overflow-y: auto;
	overflow-x: hidden;
}
.photo-lightbox.is-hidden {
	visibility: hidden;
}
.gallery-modal-header {
	max-width: 1300px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 35px auto;
	width: 100%;
}
.photo-lightbox.active {
	transform: translateX(0);
	opacity: 1;
	pointer-events: auto;
}
.photo-lightbox-tabs {
	margin-bottom: 75px;
}
.photo-lightbox-tabs .container {
	max-width: 1300px;
	margin: 0px auto;
	width: 100%;
}
.tab-title-button {
	padding: 12px 25px;
	border: 1px solid #E5E7EB;
	background-color: #fff;
	color: #384658;
	font-size: 16px;
	border-radius: 100px;
	line-height: normal;
}
.tab-title-button:hover {
	background-color: #D0E0F1;
	border-color: #D0E0F1;
	color: #006CA9;
}
.photo-wrapper {
	max-width: 1300px;
	margin: 0px auto;
	width: 100%;
}
.photo-wrapper .photo-lightbox-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.photo-wrapper .photo-lightbox-item .photo-caption {
	width: 35%;
	padding-left: 10%;
	padding-top: 20px;
	font-size: 26px;
}
.photo-wrapper .photo-lightbox-item .photo-images {
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0px 20px;
    max-width: 65%;
    width: 100%;
}
.photo-wrapper .photo-lightbox-item .photo-images a:nth-of-type(1) {
	width: 100%;
	display: block;
	margin-bottom: 15px;
}
.photo-wrapper .photo-lightbox-item .photo-images a:nth-of-type(1) img {
	width: 100%;
}
.photo-wrapper .photo-lightbox-item .photo-images a:nth-of-type(2),
.photo-wrapper .photo-lightbox-item .photo-images a:nth-of-type(3),
.photo-wrapper .photo-lightbox-item .photo-images a:nth-of-type(4),
.photo-wrapper .photo-lightbox-item .photo-images a:nth-of-type(5) {
	width: 49%;
	display: block;
	margin-bottom: 15px;
}
.photo-wrapper .photo-lightbox-item .photo-images img{
	max-width: 100%;
}
.photo-lightbox-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 60px auto;
	/* top space for close button */
	padding: 0 16px;
	box-sizing: border-box;
}


.photo-lightbox-figure {
	margin: 0 0 24px 0;
	text-align: center;
	width: 100%;
}

.photo-lightbox-figure img {
	width: 100%;
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	display: block;
}

#photo-lightbox-caption {
	color: #333;
	font-size: 16px;
	margin-top: 8px;
}
.photo-lightbox-close,
.share,
.wishlist {
	cursor: pointer;	
}
.photo-lightbox-close:hover svg path,
.share:hover svg path,
.wishlist:hover svg path{
	fill: #D0E0F1;
}
.image-zoom-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 10000;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.image-zoom-modal.active {
	display: flex;
}

.image-zoom-modal img {
	max-width: 95%;
	max-height: 90%;
	border-radius: 8px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.zoom-close-btn {
	position: absolute;
	top: 15px;
	right: 25px;
	font-size: 32px;
	color: white;
	background: none;
	border: none;
	cursor: pointer;
}
.meet-your-host {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #E5E7EB;
}
.meet-your-host-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.host-card {
	background: #F8F4F1;
	border-radius:20px;
	padding: 30px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	max-width: 45%;
	width: 100%;
}
.host-infomation {
	width: 50%;
}
.host-avtar {
	max-width: 72px;
}
.host-card img {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	background: #ddd;
}
.host-details {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.host-details h2 {
	margin: 0px;
	font-size: 40px;
	color: #977A3A;
}
.host-meta {
	font-size: 16px;
	margin-bottom:20px;
	color: #384658;
}
.btn-message-host {
	border:2px solid transparent;
	background: #006ca9;
	line-height: normal;
}
.btn-message-host:hover {
	border-color: #006ca9;
}
.info-section h3 {
	font-size: 22px;
	margin: 0 0 10px;
}
.info-section p {
	margin: 0 0 16px;
	font-size: 16px;
	color: rgba(56, 70, 88, 0.8);
}
.info-section hr {
	margin: 25px 0;
	background-color: #E5E7EB;
}
.things-know-section > h3,
.meet-your-host > h3{
	font-size: 26px;
    letter-spacing: -1px;
    margin-bottom: 24px;
}
.things-know-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-bottom: 40px;
	margin-bottom: 40px;
}
.house-rules {
	width: 100%;
	margin-bottom: 30px;
}
.things-know-content h3{
	font-size: 22px;
	letter-spacing: -1px;
	margin-bottom: 10px;
}
.things-know-content ul li{
	font-size: 16px;
	color: rgba(56, 70, 88, 0.8);
}
.cancellation-policy p {
	font-size: 16px;
	color: rgba(56, 70, 88, 0.8);
}
.popup-overlay {
  	display: none;
  	position: fixed;
  	top: 0; left: 0;
  	width: 100%; height: 100%;
  	background: rgba(0,0,0,0.6);
  	z-index: 9999;
  	justify-content: center;
  	align-items: center;
}
.popup-content {
  	background: #fff;
  	padding: 20px;
  	width: 400px;
  	border-radius: 10px;
  	position: relative;
}
.popup-close {
  	position: absolute;
  	top: 10px; right: 15px;
  	font-size: 20px;
  	cursor: pointer;
}
.modal-messages.success {
    background-color: #e6f7e6;
    color: #155724;
    border-left: 4px solid #28a745;
    padding: 10px;
}
.modal-messages.error {
    background-color: #fbeaea;
    color: #721c24;
    border-left: 4px solid #dc3545;
    padding: 10px;
}
.fancybox__nav .carousel__button {
	border: 1px solid #fff;
	color: #fff;
}
.fancybox__nav .carousel__button:hover {
	background: #977A3A;
    border-color: #977A3A;
}
.fancybox__toolbar__items button:hover {
	color:#977A3A;
}
@media (max-width: 920px) {
	.ast-container {
		padding-left: 10px;
		padding-right: 10px;
	}
	.property-gallery {
		margin: 0px -10px;
	}
	.property-single-page.site-content {
		margin-top: 120px !important;
	}
	.content {
		flex-wrap: wrap;
	}
	.property-details {
		width: 100%;
		order: 2;
		margin-top: 20px;
	}
	.booking-box {
		width: 100%;
		order: 1;
	}
	.host-card {
		border-radius: 10px;
		padding: 10px;
	}
	.host-details h2 {
		font-size: 26px;
	}
	.bedroom-list .bedroom-img img {
		min-height: 150px;
	}
	.property-info-details .thumbnail .main-image {
		display: inline-block;
	}
}
@media (max-width: 767px) {
	.property-header h1 {
		font-size: 26px;
	}
	.things-know-content {
		margin-bottom: 0px;
		padding-bottom: 0px;
	}
	.things-know-content,
	.meet-your-host-container {
		flex-wrap: wrap;
	}
	.house-rules {
		max-width: inherit;
		margin-bottom: 20px;
	}
	.meet-your-host {
		padding-bottom: 0px;
	}
	.host-card {
		max-width: 100%;
		width: 100%;
		margin-bottom: 20px;
	}
	.host-infomation {
		width: 100%;
	}
	.info-section hr {
		margin: 5px 0px;
	}
	.host-infomation .info-section:last-child hr {
		display: none;
	}
	.bedroom-list .bedroom-img img {
		min-height: 100px;
	}
	.modal-content {
		padding: 20px;
		border-radius: 10px;
	}
	.modal-content .close {
		top:-10px;
		right: -10px;
	}
	.modal-content .close svg {
		width: 30px;
	}
	.modal-content {
		max-width: 90%;
	}
}
