.product-search {
	--font-family-display: var(--font-display);
	--font-family-body: var(--font-body);
	
	--background-color: var(--dark-blue);
	--background-color-alt: var(--background-color);
	--background-color-border: var(--white);
	--background-color-highlight: var(--primary-color-700);
	--background-color-highlight-hover: var(--gray-500);
	
	--text-color-body: var(--white);
	--text-color-display: var(--white);
	
	--btn-bg-color: transparent;
	--btn-bg-color-hover: var(--search-color);
	--btn-text-color: var(--white);
	--btn-text-color-hover: var(--product-search);

	--search-color: var(--white);

	position: relative;
	background: var(--background-color);
	margin: 5rem 0;

	.ps-wrapper {
		position: relative;
		padding: 20px 5px;
		z-index: 2;
	}
}

.product-search header {
	display: grid;
	gap: var(--space-4);
	width: 100%;
	max-width: var(--width-comfortable);
}

.product-search .widget-title {
	font-family: var(--font-baloo);
	font-size: 1.75rem;
	font-weight: 700;
	line-height: calc(27.16 / 28);
	color: var(--search-color);
	display: flex;
	flex-direction: column;
	letter-spacing: -0.01em;
}

@media (min-width: 64em) {
	.product-search header {
		justify-items: center;
	}

	.product-search .widget-title {
		font-size: 3.75rem;
		line-height: calc(58.2 / 60);
	}
}

@media (min-width: 90em) {
	.product-search header {
		justify-items: start;
	}
}

.product-search .widget-desc {
	font-family: var(--font-family-body);
	font-size: clamp(var(--text-base), 0.792rem + 0.52vw, var(--text-lg));
	color: var(--text-color-body);
	line-height: var(--leading-normal);
	letter-spacing: -0.01em;
}

.product-search .ps-wrapper .nav > .inner {
	display: grid;
	gap: 50px;
	margin: 0 auto;
	padding: 0 var(--space-4) var(--space-4);
	max-width: var(--width-base);
}

@media (min-width: 40em) {
	.product-search .ps-wrapper .nav {
		margin-bottom: 0;
	}

	.product-search .ps-wrapper .nav > .inner {
		padding-bottom: 0;
	}
}

@media (min-width: 64em) {
	.product-search .ps-wrapper .nav > .inner {
		padding: var(--space-8) 0 0;
	}
}

.product-search .mobile-tab {
	position: relative;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin: 0;
	width: 100%;
	padding: 10px 15px !important;
	font-family: var(--font-cabin);
	font-weight: 400;
	font-size: 1.125rem;
	line-height: calc(21.87 / 18);
	color: var(--dark-blue);
	background-color: var(--search-color);
	border-bottom: 2px solid var(--sand);
}

.product-search .mobile-tab:before {
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: url('/includes/client_public/assets/shared/product-search/product-search-mobile-dropdown-arrow.svg') no-repeat center right 25px;
}

.product-search .mobile-tab .fal.fa-chevron-down:before {
	display: none;
}

@media (min-width: 40em) {
	.product-search .mobile-tab {
		display: none;
	}
}

/* .product-search .mobile-tab .fas {
	transition: transform 200ms ease;
}

.product-search .mobile-tab[aria-expanded="true"] .fas {
	transform: rotate(-180deg);
	color: var(--white);
} */

@media (min-width: 40em) {
	.product-search .ps-panel.active, .product-search [aria-expanded="true"] + .ps-panel {
		padding: var(--space-8) 0;
	}
}

.product-search .ps-panel {
	display: none;
}

.product-search .ps-panel.active,
.product-search [aria-expanded="true"] + .ps-panel {
	display: block;
	padding: var(--space-8) 0;
	/* border-bottom: 3px solid var(--white); */
}

@media (min-width: 64em) {
	.product-search .ps-panel.active,
	.product-search [aria-expanded="true"] + .ps-panel {
		padding: var(--space-8);
		border-bottom:0;
	}
}

@media (min-width: 90em) {
	.product-search .ps-panel.active,
	.product-search [aria-expanded="true"] + .ps-panel {
		padding: var(--space-8) 0;
	}
}

.product-search form {
	display: grid;
	gap: var(--space-6);
}


.product-search form div[class*="amenities"], .product-search form div[class*="channel"] {
  display:none;
}

@media (min-width: 40em) {
	.product-search form {
		grid-template-columns: repeat(auto-fit, minmax(25ch, 1fr));
		align-items: flex-end;
	}
}

.product-search .filter > div {
	display: grid;
	gap: 15px;
}

.product-search .filter input,
.product-search .filter select,
.product-search form button {
	padding: var(--space-1) var(--space-4);
	width: 100%;
	height: 44px;
	font-family: var(--font-body);
	font-size: clamp(var(--text-base), 0.792rem + 0.52vw, var(--text-lg)); 
	line-height: var(--leading-none);
	border: 2px solid rgba(29, 29, 27, 0.25);
	background-color: var(--white);
	border-radius: 50px;
}

.product-search .filter select {
	background: url(/includes/client_public/assets/shared/arrows/caret_down.svg) no-repeat right var(--white);
    -webkit-appearance: none;
    background-position-x: 90%;
}

.product-search .filter .filterLabel {
	font-size: var(--text-lg);
	color: var(--white);
}

.product-search form button {
	color: var(--buttons-blue-text);
	background: url('/includes/client_public/assets/shared/product-search/product-search-btn-leaf.svg') no-repeat left 28px center var(--light-blue-buttons);
	font-size: var(--text-xl);
	height: auto;
	transition: all .3s;
	border: none;
	max-width: 255px;
	padding: 20px 25px;
	margin: 0 auto;
	font-family: var(--font-body);
	text-align: center;
	border-radius: 30px;
}

.product-search .ps-tabs {
	display: none;
	width: 100%;
	overflow: hidden;
}

.product-search .left-dec:before,
.product-search .left-dec:after,
.product-search .right-dec:before,
.product-search .right-dec:after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

.product-search .left-dec:before {
	background: url('/includes/client_public/assets/shared/product-search/product-search-mobile-left-blue-leaf.svg') no-repeat left bottom -95px;
}

.product-search .left-dec:after {
	background: url('/includes/client_public/assets/shared/product-search/product-search-mobile-left-white-leaf.svg') no-repeat left bottom -52px;
}

.product-search .right-dec:before {
	background: url('/includes/client_public/assets/shared/product-search/product-search-mobile-right-blue-leaf.svg') no-repeat right bottom -120px;
}

.product-search .bottom-dec img {
	width: 100%;
	background: var(--white);
	margin-top: -1px;
}

@media (min-width: 40em) {
	.product-search .ps-tabs {
		display: flex;
		gap: 15px;
	}

	.product-search .left-dec:before {
		background: url('/includes/client_public/assets/shared/product-search/product-search-desktop-left-blue-leaf.svg') no-repeat left bottom -190px;
	}
	
	.product-search .left-dec:after {
		background: url('/includes/client_public/assets/shared/product-search/product-search-desktop-left-white-leaf.svg') no-repeat left bottom -180px;
	}
	
	.product-search .right-dec:before {
		background: url('/includes/client_public/assets/shared/product-search/product-search-desktop-right-blue-leaf.svg') no-repeat right bottom -90px;
	}
}

.product-search .ps-tabs > * {
	margin: 0 1px;
	padding: var(--space-2) var(--space-4);
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 1.125rem;
	line-height: calc(21.87 / 18);
	color: var(--btn-text-color);
	border: none;
	background-color: var(--btn-bg-color);
	white-space: nowrap;
	letter-spacing:-1px;
	transition: all .3s;
	letter-spacing: 0.4px;
	border-radius: 25px 25px 0 25px;
}

@media (min-width: 64em) {
	.product-search .ps-wrapper {
		padding: 35px 0 65px;
	}

	.product-search .ps-tabs > * {
		font-size: 1.438rem;
		line-height: calc(27.95 / 23);
		padding: 110px 45px 27px;
	}

	.product-search .ps-tabs button:nth-child(1) {
		background: url('/includes/client_public/assets/shared/product-search/product-search-stay-white-icon.svg') no-repeat top 45px center;
	}

	.product-search .ps-tabs button:nth-child(2) {
		background: url('/includes/client_public/assets/shared/product-search/product-search-calendar-white-icon.svg') no-repeat top 45px center;
	}

	.product-search .ps-tabs button:nth-child(3) {
		background: url('/includes/client_public/assets/shared/product-search/product-search-ttd-white-icon.svg') no-repeat top 15px center;
	}

	.product-search .ps-tabs button:nth-child(4) {
		background: url('/includes/client_public/assets/shared/product-search/product-search-eat-white-icon.svg') no-repeat top 45px center;
	}

	.product-search .ps-tabs button:nth-child(5) {
		background: url('/includes/client_public/assets/shared/product-search/product-search-shop-white-icon.svg') no-repeat top -5px center;
	}

	.product-search .left-dec:before {
		background: url('/includes/client_public/assets/shared/product-search/product-search-desktop-left-blue-leaf.svg') no-repeat left bottom -170px;
	}
	
	.product-search .left-dec:after {
		background: url('/includes/client_public/assets/shared/product-search/product-search-desktop-left-white-leaf.svg') no-repeat left bottom -120px;
	}

	.product-search .right-dec:after {
		background: url('/includes/client_public/assets/shared/product-search/product-search-desktop-right-white-leaf.svg') no-repeat right top -137px;
	}

	.product-search .filter input,
	.product-search .filter select,
	.product-search form button {
		height: 70px;
	}

	.product-search form button {
		margin: 0;
	}
}

.product-search .ps-tabs > *[aria-selected="true"] {
	background-color: var(--btn-bg-color-hover);
	color: var(--btn-text-color-hover);
	border-radius: 25px 25px 0 25px;
}

@media (min-width: 64em) {
	.product-search .ps-tabs button:nth-child(1)[aria-selected="true"] {
		background: url('/includes/client_public/assets/shared/product-search/product-search-stay-blue-icon.svg') no-repeat top 45px center var(--white);
	}

	.product-search .ps-tabs button:nth-child(2)[aria-selected="true"] {
		background: url('/includes/client_public/assets/shared/product-search/product-search-calendar-blue-icon.svg') no-repeat top 45px center var(--white);
	}

	.product-search .ps-tabs button:nth-child(3)[aria-selected="true"] {
		background: url('/includes/client_public/assets/shared/product-search/product-search-ttd-blue-icon.svg') no-repeat top 15px center var(--white);
	}

	.product-search .ps-tabs button:nth-child(4)[aria-selected="true"] {
		background: url('/includes/client_public/assets/shared/product-search/product-search-eat-blue-icon.svg') no-repeat top 45px center var(--white);
	}

	.product-search .ps-tabs button:nth-child(5)[aria-selected="true"] {
		background: url('/includes/client_public/assets/shared/product-search/product-search-shop-blue-icon.svg') no-repeat top -5px center var(--white);
	}
}

@media (min-width: 90em) {
	.product-search .ps-tabs > * {
		padding: 110px 65px 27px;
	}

	.product-search .right-dec:before {
		background-position: right bottom 5px;
	}
}

@media (min-width: 120em) {
	.product-search .left-dec:after {
		background: url('/includes/client_public/assets/shared/product-search/product-search-desktop-left-white-leaf.svg') no-repeat left bottom -38px;
	}
}

@media (hover: hover) {
	.product-search .ps-tabs > *:not([aria-selected="true"]):hover {
		background-color: var(--btn-bg-color-hover);
		color: var(--btn-text-color-hover);
	}	

	.product-search .ps-tabs button:not([aria-selected="true"]):nth-child(1):hover {
		background: url('/includes/client_public/assets/shared/product-search/product-search-stay-blue-icon.svg') no-repeat top 45px center var(--white);
	}
	
	.product-search .ps-tabs button:not([aria-selected="true"]):nth-child(2):hover {
		background: url('/includes/client_public/assets/shared/product-search/product-search-calendar-blue-icon.svg') no-repeat top 45px center var(--white);
	}
	
	.product-search .ps-tabs button:not([aria-selected="true"]):nth-child(3):hover {
		background: url('/includes/client_public/assets/shared/product-search/product-search-ttd-blue-icon.svg') no-repeat top 15px center var(--white);
	}
	
	.product-search .ps-tabs button:not([aria-selected="true"]):nth-child(4):hover {
		background: url('/includes/client_public/assets/shared/product-search/product-search-eat-blue-icon.svg') no-repeat top 45px center var(--white);
	}
	
	.product-search .ps-tabs button:not([aria-selected="true"]):nth-child(5):hover {
		background: url('/includes/client_public/assets/shared/product-search/product-search-shop-blue-icon.svg') no-repeat top -5px center var(--white);
	}
	
}

.product-search .contentRender_name_plugins_common_product_search {
	padding: 0 16px 10px;
}

@media (min-width: 40em) {
	.product-search .contentRender_name_plugins_common_product_search {
		padding: 0 16px;
	}
}

.product-search .contentRender_name_plugins_common_product_search > * {
	margin: 0 auto;
    padding: var(--space-8) var(--space-5);
    max-width: var(--width-base);
	border-radius: 10px 10px 0 10px;
}

.product-search .contentRender_name_plugins_common_product_search:last-of-type button{
	border-bottom:none;
}


.product-search .curve-container {
position: relative;
top: -2px;
    width: 100%;

}

.product-search .curve-container img{

    width: 100%;
	height:auto;
	display:block;

}
.product-search .filter_onlybooking .form-control .toggle input {
    min-width: 0px;
}

.product-search .filter_onlybooking .form-control .toggle input {
    margin: 0 10px 0 0;
    position: relative;
    width: 15px;
    height: 15px;
    color:#fff;
}

.product-search div[data-type=toggle] {
    width: 100%;
    padding: 0px;
    grid-column: 1 / span 4;
}

.product-search .filter_onlybooking .form-control .form-label {
    font-family: var(--font-body-bold);
    font-size: var(--text-lg);
}

.product-search .filter_onlybooking .form-control .toggle {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.product-search .filter_onlybooking .form-control {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    margin-right: auto;
}

.product-search .hide-filter {
    display:none;
}