/*
	Theme Name: AlumniRooms School
	Theme URI: alumnirooms.com
	Description: WP Theme for AlumniRooms School
	Version: 1.051
	Author: Squatch Creative
	Author URI: https://squatchcreative.com

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

:root {
	--bg-col-1: var(--brand-color);
    --bg-col-2: #333;
    --bg-col-3: #9A9A9A;
    --bg-col-4: #ECECEC;
    --bg-col-5: #B6B6B6;
    --bg-col-6: #EBEBEB;
    --bg-col-7: #D4D4D4;
    --bg-col-8: #0051BA;
    --bg-col-9: #6A6A6A;
    --bg-col-10: #E4E4E4;
    --bg-col-11: #171515;
    --text-col-1: #222;
    --text-col-2: #231F20;
    --text-col-3: #858585;
    --text-col-4: #457FF3;
    --text-col-5: #3F3F3F;
    --text-col-6: #721DAF;
    --text-col-7: #AF1D1D;
    --text-col-8: #0B0B0B;
    --text-col-9: #3B6BCA;
    --text-col-10: #018752;
    --text-col-11: #636363;
	--transition:120ms ease all;
	--row:1280px;
	--radius:8px;
	--gray-border:1px solid #D4D4D4;
}

/*WP CORE
=========================*/
* { padding: 0; margin: 0; }
*,:after,:before{-moz-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;font-smoothing:antialiased;text-rendering:optimizeLegibility}.wp-caption{background:#FFF;border:1px solid #F0F0F0;max-width:96%;padding:5px 3px 10px;text-align:center}.wp-caption.alignleft,.wp-caption.alignnone{margin:5px 20px 20px 0}.wp-caption.alignright{margin:5px 0 20px 20px}.wp-caption img{border:0;height:auto;margin:0;max-width:98.5%;padding:0;width:auto}.gallery-caption,.wp-caption .wp-caption-text{font-size:11px;line-height:17px;margin:0;padding:0 4px 5px}

.alignfull, .container.alignfull {
	width:100%;
	max-width:100%;
	margin:0;
}

.alignwide,
.container.alignwide {
	width: var(--row);
	max-width: calc(100% - 2rem);
	position: relative;
	left: 0;
	margin:0 auto;
}

article > *:not(.alignwide, .alignfull) {
    width: 968px;
    margin: 0 auto;
	max-width: calc(100% - 2rem);
}

.wp-block-image {
	margin-bottom:0;
}

.wp-block-image img {
    max-width: 100%;
    display: block;	
}

.wp-block-columns {
    margin-bottom: 0;
}

::selection {
    background-color:#000;
    color: #ffffff;
}

html {
	font-size:18px;
}

body {
	font-family: "aktiv-grotesk";
}


div[class*='span'] {
	margin:0px; 
	padding:0;
	height:auto;
}
.span5 { width:5%; }
.span10 { width:10%; }
.span15 { width:15%; }
.span20 { width:20%; }
.span25 { width:25%; }
.span30 { width:30%; }
.span33 { width:33%; }
.span35 { width:35%; }
.span40 { width:40%; }
.span45 { width:45%; }
.span50 { width:50%; }
.span55 { width:55%; }
.span60 { width:60%; }
.span65 { width:65%; }
.span66 { width:66%; }
.span70 { width:70%; }
.span75 { width:75%; }
.span80 { width:80%; }
.span85 { width:85%; }
.span90 { width:90%; }
.span100 { width:100%; }

h1, h2, h3, h4, h5, h6 {
	font-weight:700;
}

a.large-link {
	display:block;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5;
}
image-overlay {
	display:block;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:2;
	background:rgba(0,0,0,0.5);
}
figure {
	display:block;
	position:relative;
	margin:0 auto;
}
figure img, a img {
	display:block;
	width:100%;
	height:auto;
}
img {
	display:inline-block; 
	max-width:100%; 
	height:auto; 
	border:0px;
	padding:0px;
	margin:0;
}
svg {
	display:block;
	position:relative;
	width:100%;
	height:auto;
	max-width:100%;
}
small {font-size:70%;}
.bold, strong {
	font-weight: normal;
	font-weight:700;
}
.italic, em { font-style:italic;}
.hidden { display:none; }
.clear {	clear:both; float:none; display:block; position:relative; }
.text-center { text-align:center; }
.text-right { text-align:right; } 
.text-balance { text-wrap:balance; }
.no-gap { margin:0px auto !important; padding:0px !important; } 
hr.wp-block-separator {
    display: block;
    clear: both;
    position: relative;
    max-width: 100%;
    border: 0px;
    height: 1px;
    margin: 0 auto;
}
u {
	text-decoration: underline;
	text-underline-offset: 2px;
}
a, button {
    text-decoration: none;
	transition:var(--transition);
}

.button {
	display:inline-block; 
	font-weight:700;
	font-size: 15px;
	line-height: 100%;
	border: none;
	background: var(--text-col-4);
	color:white;
	white-space: nowrap;
	padding: 0 22px;
	line-height: 51px;
	border-radius: 3px;
	position:relative;
	transition:var(--transition);
}

.button:hover {
	background:var(--bg-col-2);
}

.button.btn-branding {
	background:var(--brand-color);
}

body .btn-primary {
	--bs-btn-color: #fff;
	--bs-btn-bg: var(--brand-color);
	--bs-btn-border-color: var(--brand-color);
	--bs-btn-hover-bg: var(--bg-col-2);
	--bs-btn-hover-border-color: var(--bg-col-2);
	--bs-btn-hover-color: #fff;
	font-weight: 600;
}

body .btn-outline-primary {
	--bs-btn-color: var(--brand-color);
	--bs-btn-border-color: var(--brand-color);
	--bs-btn-hover-border-color: var(--bg-col-2);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--bg-col-2);
	font-weight:600;
}

.button.btn-secondary {
	background:var(--bg-col-2);
}

.button.btn-branding:hover {
	background:var(--bg-col-2);
}

.button.btn-secondary:hover {
	background:var(--brand-color);
}

.btn.btn-danger {
	--bs-btn-bg: #AF1D1D;
	font-weight: 600;
	--bs-btn-hover-bg: var(--bg-col-2);
	--bs-btn-border-color: #AF1D1D;
	--bs-btn-hover-border-color: var(--bg-col-2);
}

p.button-holder.w-100 {
	display: flex;
	gap: 1rem;
}

a.large-link {
	position:absolute;
	top:0; left:0;
	width:100%; height:100%;
	z-index:5;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

img {
    vertical-align: middle;
}
ul,
ol {
    list-style: none;
}

.brand-text-col {
    color: var(--text-col-1);
}

.font-aktiv-light {
    font-weight:300;
}

.font-aktiv-reg {
    font-weight:500;
}

.font-aktiv-med {
    font-weight:600;
}

.font-source-sbld {
    font-family: "source-sbld";
}

.font-aktiv-bld {
    font-weight:700;
}
.gray-border {
	border:var(--gray-border);
}
.radius {
	border-radius:var(--radius);
}

.error-message, .success-message {
    display: flex;
    flex-flow: column;
    gap: 0.5rem;
    width: 720px;
    max-width: 100%;
    margin: 2rem auto;
    padding: 2rem;
    border: 1px solid #e1e1e1;
    background: #fefefe;
    border-radius: var(--radius);
}

.success-message {
	border: 1px solid #ebefea;
	background: #f0fded;
}

.error-message p, .success-message p {
    font-size: 16px;
}

.error-message small, .success-message small {
    display: block;
    font-weight: 600;
    font-style: italic;
    color: var(--brand-color);
}

main#main-page {
	min-height: 20vh;
	padding: 48px 0 64px;
}

main#main-page.page-404 {
	padding: 0;
	display:flex;
	flex-flow:column;
	position:relative;
	width:100%;
	height:auto;
	min-height:50vh;
	aspect-ratio:19/9;
}

main#main-page.page-404 svg {
	display: block;
	position:absolute;
	top:0; left:0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	object-fit:cover;
}













/* AR LOGO BADGING AND ACCOUNT
=================================== */

.header-logo {
    padding: 22px 0;
}

.header-logo::after {
    content: '';
    width: 100%;
    height: 50px;
    background: linear-gradient(360deg, #FFFFFF 0%, #F6F6F6 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.header-logo-left {
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.engine-logo {
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	align-items: flex-start;
	position:relative;
}

.engine-logo * {
	display: block;
	line-height: 120%;
}

engine-logo-title {
	font-weight:700;
	font-size: 36px;
}

engine-logo-sub {
	font-weight:700;
	font-size: 13px;
	color: var(--brand-color);
}

engine-logo-tag {
	font-size: 12px;
	font-weight:500;
	color: #85898A;
}

.header-logo .header-logo-right {
    column-gap: 24px;
}

.header-logo .header-logo-right a.logo-right-btn {
	min-height: 48px;
	padding: 8px 20px;
	background: var(--bg-col-2);
	border-radius: 10px;
	text-align: center;
	text-wrap: balance;
	line-height: 100%;
}

.header-logo .header-logo-right a.logo-right-btn:hover {
	background: var(--brand-color);
}

.header-logo .header-logo-right a.logo-right-user {
	height: 48px;
	border: 1px solid var(--bg-col-3);
	background: white;
	filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.15));
	padding: 0 15px;
	column-gap: 11px;
	font-size: 24px;
}

h6.dropdown-header {
    font-size: 13px;
    text-transform: uppercase;
    font-weight:700;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
	--bs-dropdown-min-width:100px;
	--bs-dropdown-link-active-bg:var(--brand-color);
}

































/* DONATION SLIDER 
====================================== */

.top-slider {
    margin-top: 24px;
}

.top-slider .school-donation-notice {
	font-size: 20px;
	color: var(--text-col-3);
	text-wrap: balance;
	line-height: 135%;
}

.top-slider p.mb-3 span {
	color: var(--brand-color);
}

.top-slider .slider-container {
    position: relative;
    margin-top: 10px;
}

.top-slider .slider-tooltip {
    font-weight:700;
    position: absolute;
    top: -20px;
    left: 0;
    transform: translateX(-50%);
    font-size: 15px;
    white-space: nowrap;
    pointer-events: none;
    color: var(--text-col-2);
    padding-left: 10px;
}

.top-slider .col-lg-10 h3 {
    font-size: 15px;
    line-height: 100%;
    color: var(--text-col-2);
    width: fit-content;
    white-space: nowrap;
}

.slider-wrapper {
    position: relative;
}

.top-slider .slider-track {
    width: 100%;
    height: 8px;
    background: #B6B6B6;
    top: 10px;
    border-radius: 4px;
    position: absolute;
    z-index: 0;
}

.top-slider .slider-fill {
    height: 8px;
    background: var(--brand-color);
    border-radius: 4px;
    position: absolute;
    z-index: 1;
    top: 10px;
    width: 12.5%;
}

.top-slider .slider {
    width: 100%;
    height: 9px;
    -webkit-appearance: none;
    background: transparent;
    outline: none;
    position: relative;
    z-index: 2;
}

.top-slider .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: 2px solid var(--text-col-2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-top: -6px;
}

.top-slider .slider::-webkit-slider-runnable-track {
    height: 8px;
    background: transparent;
    border-radius: 3px;
}

.top-slider .slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: 2px solid var(--text-col-2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.top-slider .slider::-moz-range-track {
    height: 8px;
    background: transparent;
    border-radius: 3px;
}


.top-slider .donation-slider-container {
    padding: 12px 18px;
    background: var(--bg-col-4);
    border-radius: 10px;
    display: grid;
	transition:var(--transition);
}

.donation-slider-container.loading {
	opacity:0.75;
	pointer-events: none;
}

.top-slider .col-lg-10 .d-flex {
    column-gap: 36px;
}

.top-slider .col-lg-10 .d-flex a {
	font-size: 15px;
	line-height: 100%;
	background: var(--brand-color);
	height: 40px;
	padding: 0 26px;
}

.top-slider .col-lg-10 .d-flex a:hover {
	background: var(--bg-col-2);
}
























/* SEARCH BAR
================================ */

body.body-hotel div#search-bar {
	display: none;
}

div#map-container,
div#search-bar {
	width: 100%;
	margin: 0 0 18px 0;
}

/* Search bar styles */
div#map-container .search-bar,
div#search-bar .search-bar {
	width: 100%;
	max-width: 100%;
	padding: 8px 16px;
	border: 1px solid #D4D4D4;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
}

div#map-container .search-bar {
	width:90%;
	max-width:90%;
}

/* VC attribute styles */
#map-container .search-bar .vc-attr,
#search-bar .search-bar .vc-attr {
	--vc-content-color: var(--brand-color);
	--vc-highlight-outline-border: var(--brand-color);
	--vc-highlight-solid-bg: var(--brand-color);
	--vc-highlight-light-bg: #f7e5e9;
}

/* Hide SVG inside field */
div#map-container .field > svg,
div#search-bar .field > svg {
	display: none;
}

/* First field */
#map-container .search-bar .field.first,
#search-bar .search-bar .field.first {
	flex: 0 0 35%;
	margin: 0;
}

/* Mid field */
#map-container .search-bar .field.mid,
#search-bar .search-bar .field.mid {
	flex: 0 0 15%;
	flex-flow: row wrap;
	justify-content: flex-start;
	gap: 3px 10px;
}

#map-container .search-bar .field.last,
#search-bar .search-bar .field.last {
	flex: 0 0 25%;
	gap: 3px 10px;
	flex-flow: row wrap;
	justify-content: flex-start;
}

#map-container .search-bar .search-button,
#search-bar .search-bar .search-button {
	margin-left: auto;
	border-radius: 100px;
	font-size: 16px;
	line-height: 100%;
	height: 40px;
	padding: 0 26px;
	font-weight: 600;
	width: auto;
}

.search-bar .search-button span.search-text {
	display: none !important;
}

#map-container .search-bar .field input,
#search-bar .search-bar .field input {
	width: 100%;
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	background: white;
}

#map-container .search-bar .field .label,
#map-container .search-bar .field.last > span,
#search-bar .search-bar .field .label,
#search-bar .search-bar .field.last > span {
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	display: block;
	padding: 5px 0;
}

#map-container .search-bar .field .simple-typeahead:before,
#search-bar .search-bar .field .simple-typeahead:before {
	content: 'Where to?';
	display: block;
	width: 100%;
	font-weight: 400;
	color: black;
	font-size: 13px;
	line-height: 110%;
}

#map-container .search-bar .field.mid:before,
#search-bar .search-bar .field.mid:before {
	content: 'Dates';
	display: block;
	width: 100%;
	font-weight: 400;
	color: black;
	font-size: 13px;
	line-height: 110%;
}

#map-container .search-bar .field.last:before,
#search-bar .search-bar .field.last:before {
	content: 'Who is staying?';
	display: block;
	width: 100%;
	font-weight: 400;
	color: black;
	font-size: 13px;
	line-height: 110%;
}

#map-container .search-bar .guests-popup button,
#search-bar .search-bar .guests-popup button {
	flex: 0 0 22px;
}

#map-container .search-bar .guests-popup label,
#search-bar .search-bar .guests-popup label {
	flex: 0 0 80px;
}

#map-container .search-bar .guests-popup,
#search-bar .search-bar .guests-popup {
	top: 50px;
	max-width: 240px;
	font-weight: 400;
}





















/* SEARCH GRID AND LISTINGS
========================================= */

.sort-filter {
	position: relative;
}

.sort-filter:before {
	content: 'Sort By';
	display: block;
	width: auto;
	font-weight: 400;
	color: var(--text-col-3);
	font-size: 11px;
	line-height: 110%;
	position: absolute;
	top: 8px;
	left: calc((var(--bs-gutter-x) * .5) + 16px);
	z-index: 1;
	pointer-events: none;
}

.sort-filter select {
	display: flex;
	padding: 22px 16px 8px 16px;
	border: 1px solid #D4D4D4;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
	border-radius: 15px;
	position: relative;
	font-size: 16px;
	line-height: 100%;
	width:100%;
	min-width: 200px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}

.sort-filter:after {
	display: block;
	position: absolute;
	pointer-events: none;
	content: '';
	width: 14px;
	height: 14px;
	background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"%3E%3Cpath d="M169.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 306.7 54.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z"/%3E%3C/svg%3E');
	top: 50%;
	right: 24px;
	background-size: 100% auto;
	background-repeat: no-repeat;
	transform: translate(0,-50%);
}

.photo-gallery {
	margin-bottom: 48px;
}

.photo-gallery .photo-gallery-top {
    padding-left: 10px;
}

.photo-gallery .photo-gallery-top h2 {
    font-size: 32px;
    line-height: 100%;
    color: var(--text-col-5);
    margin-top: 20px;
}

.photo-gallery .photo-gallery-top .top-bredcrumb-1 {}

.photo-gallery .photo-gallery-top .top-bredcrumb-1 li {
    font-size: 15px;
    line-height: 100%;
    color: var(--text-col-4);
}

.photo-gallery .photo-gallery-top .top-bredcrumb-1 li {
    color: var(--text-col-1);
}

.photo-gallery .photo-gallery-top .column-gap-sm-4 p {
    font-size: 14px;
	font-weight:500;
    line-height: 100%;
    color: var(--text-col-6);
}

.photo-gallery-top .justify-content-between a {
    font-size: 14px;
	font-weight:500;
    line-height: 100%;
    color: var(--text-col-5);
}

.photo-gallery .photo-gallery-img {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
    gap: 6px;
    border-radius: 13px;
}

.photo-gallery .photo-gallery-img * {
	background: #efefef;
}

.photo-gallery .photo-gallery-img img {
    object-position: center;
	object-fit:cover;
}

.horizontal {
    grid-column: auto / span 1;
	aspect-ratio: 3 / 2;
}

.photo-gallery .big {
    grid-column: auto / span 2;
    grid-row: auto / span 2;
	aspect-ratio: 3 / 2;
}

#customFilterBtnGroup ul {
    column-gap: 40px;
    row-gap: 10px;
}

#customFilterBtnGroup button {
    font-size: 18px;
    line-height: 26px;
    color: var(--text-col-1);
    border-bottom: 2px solid transparent !important;
}

#customFilterBtnGroup button.custom-btn-filter.active {
    border-color: var(--text-col-5) !important;
}

.custom-filter-container .custom-filter-item {
    display: none;
}

.custom-filter-container .custom-filter-item.custom-show {
    display: block;
}

.tab-content>.active {
	display: flex;
}

.room-grid-div {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	padding: 0 15px;
}

.tab-content .room-grid-div {
	display: none;
}

.tab-content .room-grid-div.show {
	display: grid;
}

.room-grid-div > p {
	grid-column: span 3;
}

.room-grid-item {
	border: 1px solid var(--bg-col-7);
	border-radius: 10px;
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-flow: column;
	transition: var(--transition);
}

.room-grid-item.loading {
	pointer-events: none;
}

.room-grid-img {
	width: 100%;
	height: auto;
	--aspect:400/266;
	aspect-ratio: var(--aspect);
}

.room-grid-img-holder {
	position: absolute;
	overflow: clip;
	height: 100%;
	width: 100%;
}

.room-grid-img img {
	display: block;
	width:100%;
	height:auto;
	aspect-ratio: var(--aspect);
	object-fit: cover;
	position: relative;
}

.room-grid-item .room-grid-img .img-grid-meta {
    bottom: 12px;
    column-gap: 6px;
	padding:0 0.5rem;
}

.room-grid-item .room-grid-img ul li {
	position: relative;
	z-index: 4;
}

.room-grid-item .room-grid-img span {
    font-size: 16px;
    line-height: 28px;
    padding: 0 6px;
    color: var(--text-col-5);
}

.room-grid-item .room-grid-img span.discount-tag {
	color: var(--text-col-6);
	transition: var(--transition);
	background: white;
	display: inline-block;
	border-radius: 0.5rem;
	font-weight: 700;
}

.room-grid-item .room-grid-img span.discount-tag span {
	color: var(--text-col-6);
	margin: 0;
	padding: 0;
}

.room-grid-item.loading .room-grid-img span.discount-tag {
	filter:blur(1px);
	opacity:0.35;
}

.room-grid-item .room-grid-img span.room-tag {
    color: var(--text-col-7);
}

.room-grid-img span.view-tag img {
	width: 24px;
	height: 20px;
}

.room-grid-item .room-grid-bottom {
	padding: 16px 24px 24px;
}

.room-donation-info {
	display: flex;
	flex-flow: column;
	border-radius: 6px;
	padding: 12px;
	background: #F1F1F1;
}

.donation-info-values p {
	display: block;
	font-weight: 700;
	font-size: 16px;
	line-height: 100%;
	transition:var(--transition);
}

.room-grid-item.loading .donation-info-values p {
	filter: blur(1px);
	opacity:0.35;
}

.donation-info-values p.donation-info {
	color:var(--brand-color);
}	

.donation-info-values p.discount-tag {
	margin-left: auto;
}

.discount-tag {
	color: var(--text-col-6);
}

.room-range-input {
    width: 100%;
    height: 10px;
    -webkit-appearance: none;
    background: transparent;
    outline: none;
    position: relative;
    z-index: 2;
}

.room-track {
    width: 100%;
    height: 8px;
    background: #B6B6B6;
    top: 10px;
    border-radius: 4px;
    position: absolute;
    z-index: 0;
}

.room-fill {
    height: 8px;
    background: var(--brand-color);
    border-radius: 4px;
    position: absolute;
    z-index: 1;
    top: 10px;
    width: calc((var(--slider-value) - 1) * (100% / 8));
}

.room-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: 2px solid var(--text-col-2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.room-range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: 2px solid var(--text-col-2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.room-grid-bottom {
	flex-flow: column;
	flex: 1;
}

.room-grid-item .item-type-1 {
    row-gap: 18px;
}

.room-grid-item .item-type-2 {
    row-gap: 10px;
}

.room-title h3 {
	font-size: 20px;
	line-height: 120%;
	text-wrap: balance;
	color: var(--text-col-1);
}

.room-title h3 a {
	color: var(--text-col-1);
}

.room-info p {
    font-size: 14px;
    line-height: 100%;
    color: var(--text-col-6);
}

.room-details {
	gap: 10px 0;
	flex-flow: row wrap;
}

.room-details p {
	font-size: 13px;
	line-height: 110%;
	column-gap: 8px;
	color: var(--text-col-8);
	width: 50%;
	padding-right: 12px;
	text-wrap: balance;
}

.room-details p span {
	display: block;
	min-width: 24px;
}

.room-details p svg,
.room-details p img {
	display: block;
	width: 22px;
	height: 18px;
	object-fit: contain;
}

.price-details-btn {
	display:none;
}

.price-details-btn,
.room-details-btn a {
    font-size: 14px;
    line-height: 100%;
    color: var(--text-col-9);
}

.room-range p {
    font-size: 15px;
    line-height: 100%;
    color: var(--brand-color);
    text-decoration: underline;
    text-decoration-color: var(--bg-col-8);
    -moz-text-decoration-color: var(--bg-col-8);
}

.room-range p span {
    color: var(--bg-col-8);
}

.room-btn button {
    font-size: 15px;
    line-height: 100%;
    border: 0;
    background: var(--text-col-4);
    padding: 0 16px;
    line-height: 64px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.room-price .room-price-left h4 {
	color: var(--text-col-3);
	font-size: 14px;
	line-height: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: flex-end;
	gap: 2px 4px;
}

.room-grid-item.loading a.button.prebookReserve {
	padding-right:48px;
}

.room-grid-item.loading a.button.prebookReserve:after {
	content: "";
	position: absolute;
	top: 50%;
	width: 16px;
	height: 16px;
	margin-left:10px;
	transform: translate(0, -50%); 
	border: 2px solid #fff;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spinCenter 0.8s linear infinite;
}

@keyframes spinCenter {
	to { transform: translate(0, -50%) rotate(360deg); }
}

.cancellation-policy {
	display: none;
}

.room-price .room-price-left {
	transition: var(--transition);
}

.room-grid-item.loading .room-price .room-price-left {
	filter: blur(1px);
	opacity:0.35;
}

.room-price .room-price-left h4 .main {
	display: block;
	font-size: 32px;
	color: var(--text-col-1);
	line-height: 100%;
}

.room-price .room-price-left h4 del {
	font-size: 20px;
	line-height: 130%;
	font-weight:400;
}

.room-price .room-price-left h4 span:not(.main) {
	display: block;
	width: 100%;
}

.room-price .room-price-left h4 span.price-info {
	margin-bottom: 12px;
	color: black;
}

.room-price .room-price-right .select-box {
    width: 100%;
    height: 30px;
    padding: 0 10px;
    padding-right: 40px;
    font-size: 14px;
    font-weight:500;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid var(--bg-col-7);
    border-radius: 8px;
    color: var(--text-col-5);
    background: transparent;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.room-price .room-price-right .select-icon {
    position: absolute;
    right: 12px;
    bottom: 10px;
    pointer-events: none;
    color: #666;
    font-size: 14px;
}

.room-grid-item:not(.savings-offered) .room-grid-img span.discount-tag,
.room-grid-item:not(.savings-offered) .room-price .room-price-left h4 del,
.room-grid-item:not(.savings-offered) .donation-info-values p.discount-tag {
	display: none;
}

.hotelInfo a {
	color: var(--bs-body-color);
	text-decoration: underline;
	text-underline-offset: 2px;
	font-weight: 500;
}










/* LOADING
===================*/


.room-grid-item.skeleton {
	aspect-ratio: 4/3;
	padding: 1rem;	
}

.skeleton {
	position:relative;
	border: 0 !important;
	background:#fbfbfb;
}

.skeleton:before {
	content: '';
	display: block;
	background: #e6e6e6;
	width: 100%;
	height: 50%;
	top:0%;
	left:0%;
	position: absolute;
	animation: shimmer 6s infinite linear;
	background: linear-gradient(90deg, #f1f1f1 40%, #DDDDDD 50%, #f1f1f1 60%);
	background-size: 400% 100%;
}
.skeleton:after {
	content: '';
	display: block;
	background: #e6e6e6;
	width: 90%;
	height: 40px;
	top:calc(50% + 18px);
	left:5%;
	position: absolute;
	animation: shimmer 6s 0.15s infinite linear;
	background: linear-gradient(90deg, #f1f1f1 40%, #DDDDDD 50%, #f1f1f1 60%);
	background-size: 400% 100%;
}

h2.skeleton {
	display: block;
	width: 100%;
	height: 60px;
	border-radius: 8px;
	overflow: clip;
	margin: 0 0 18px 0;
}



.photo-gallery .skeleton:after {
	display: none;
}

.review-body-right-img.skeleton {
	width: 100%;
	height: 260px;
}

section.review-body.loading-skeleton  .review-body-info-div.d-grid {
	max-width: 100%;
}

h3.skeleton {
	display: block;
	width: 100%;
	height: 60px;
	border-radius: 8px;
	overflow: clip;
	margin: 0 0 18px 0;
}

h5.skeleton, 
p.skeleton {
	display: block;
	width: 80%;
	height: 40px;
	border-radius: 8px;
	overflow: clip;
	margin: 0 0 18px 0;
}

h2.skeleton:after, 
p.skeleton:after, 
h3.skeleton:after,
h5.skeleton:after {
	display: none;
}

h2.skeleton:before,
h5.skeleton:before,
h3.skeleton:before,
p.skeleton:before,
.photo-gallery .skeleton::before {
	height: 100%;
}

@keyframes shimmer {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}















ul.nav-tabs {
	border-bottom: 0;
}

svg.icon {
	max-width: 24px;
}

.hotelDescription p {
	margin-bottom:18px;
}

ul.hotelTimes {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	font-weight:500;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	flex: 1;
}

ul.hotelFacilities {
	padding: 0 0 0 18px;
	column-count: 2;
	column-gap: 48px;
	text-wrap: balance;
	list-style: disc;
}

.fancybox-bg {
	background: var(--brand-color);
}

.fancybox-bg {
	background: #231F20;
}

.fancybox-slide.fancybox-slide--html {
	text-align: center;
}

.fancybox-button, .fancybox-show-nav .fancybox-navigation .fancybox-button {
	background: white;
	border-radius: 50%;
	transition: 120ms ease all;
}

.fancybox-button svg path, .fancybox-show-nav .fancybox-navigation .fancybox-button svg path {
	stroke: var(--brand-color);
	transition: 120ms ease all;
}

.fancybox-button:hover, .fancybox-show-nav .fancybox-navigation .fancybox-button:hover {
	background: var(--brand-color);
}

.fancybox-button:hover svg path, .fancybox-show-nav .fancybox-navigation .fancybox-button:hover svg path {
	stroke: white;
}

.fancybox-inner .fancybox-toolbar {
	top: 4px;
	right: 6px;
}

.fancybox-button svg {
	transition: 120ms ease all;
}

a.slick-arrow {
	cursor:pointer;
	position: absolute;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	background:white;
	z-index: 10;
	top: 50%;
	margin-top: -24px;
	transition:var(--transition);
}

a.slick-prev.slick-arrow {
	left: 12px;
}

a.slick-next.slick-arrow {
	right: 12px;
}

a.slick-arrow svg {
	fill: transparent;
	stroke: black;
	stroke-width: 3;
	transition: var(--transition);
	width: 24px;
	height: 24px;
}

a.slick-arrow:hover {
	background: var(--brand-color);
}

a.slick-arrow:hover svg {
	stroke: white;
}

button.fancybox-close-small {
	background: white;
	border-radius: 50%;
	border: 0;
	cursor: pointer;
	display: inline-block;
	height: 44px;
	margin: 0;
	outline: none;
	padding: 10px;
	transition: var(--transition);
	vertical-align: top;
	width: 44px;
	top: -6px;
	right: -10px;
}

button.fancybox-close-small:hover {
	background: var(--brand-color);
}

.fancybox-close-small svg {
	transition: var(--transition);
}

.fancybox-close-small:hover svg {
	stroke: white;
}














/* ROOM DETAILS MODAL
=================================== */

.room-grid-item.fancybox-content {
	background: white;
	border: 0;
	display: flex;
	margin: 0 auto;
	width: 968px;
	max-width: calc(100% - 30px);
	height: auto;
	padding: 36px 24px;
	border-radius: 34px;
	overflow:visible;
}

.fancybox-slide.fancybox-slide--html:before {
	display: none;
}

.room-grid-item.fancybox-content .room-grid-img {
	--aspect: 3/2;
}

.room-grid-item.fancybox-content .roomDetailsOpen {
	pointer-events:none !important;
}

.fancybox-content .room-details-btn {
	display: none;
}

.fancybox-content .room-grid-img-holder {
	border-radius: 28px;
}

.fancybox-content .room-price {
	padding: 24px;
	border: 1px solid #ccc;
	border-radius: 24px;
	align-items: flex-end;
}

.fancybox-content .room-details {
	width: 480px;
	max-width: 100%;
}

.fancybox-content .room-title h3 {
	font-size: 32px;
}

.fancybox-content.room-grid-item .room-grid-img .img-grid-meta {
	padding: 0 24px;
}

.room-grid-item .room-amenities {
	display: none;
}

.room-grid-item.fancybox-content .room-amenities {
	display: flex;
	flex-flow: column;
}

ul.room-amenities-list {
	display: block;
	list-style: disc;
	font-size: 15px;
	line-height: 120%;
	margin: 0 0 12px 0;
	padding: 0 0 0 32px;
	column-count: 2;
	width: 480px;
	max-width: 100%;
	text-wrap: balance;
}

.room-grid-item.fancybox-content .room-grid-bottom > .room-title {
	order: 1;
}

.room-grid-item.fancybox-content .room-grid-bottom > .room-range {
	order: 2;
}

.room-grid-item.fancybox-content .room-grid-bottom > *:not(.room-range):not(.room-title) {
	order: 3;
}

.room-grid-item.fancybox-content .room-donation-info .room-slider-container {
	display: none;
}

.room-grid-item.fancybox-content .price-details-btn {
	display:block;
}

.room-grid-item.fancybox-content .cancellation-policy {
	display: flex;
	flex-flow: column;
	margin-bottom: 18px;
}

.room-price .room-price-left .cancellation-policy h4 {
	color: black;
	font-size: 18px;
}

.room-price .room-price-left .cancellation-policy p {
	font-size: 15px;
	line-height: 120%;
}

.price-details span {
	display: block;
	width: 100%;
	color: var(--text-col-3);
	font-size: 14px;
	line-height: 100%;
	margin: 1px 0;
	font-weight: 500;
}

















/* REVIEW PAYMENT/BOOKING CONFIRMATION PAGES
================================================== */

.page-title {
    padding-top: 48px;
    padding-bottom: 42px;
}

.page-title h2 {
    font-size: 32px;
    line-height: 100%;
    color: var(--text-col-8);
}

.alert-title {
    padding-bottom: 28px;
}

.alert-title .d-flex {
    padding: 20px;
    border: 1px solid var(--bg-col-7);
    border-radius: 13px;
}

.alert-title h3 {
    font-size: 18px;
}

.alert-title h3 span {
    color: var(--bg-col-9);
}

.review-body {
    padding-bottom: 80px;
}

.review-body .row {
    row-gap: 30px;
}

.review-body .review-body-right {
    row-gap: 30px;
}

.review-body .review-body-right .review-body-right-details {
    border: 1px solid var(--bg-col-7);
    border-radius: 13px;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    -ms-border-radius: 13px;
    -o-border-radius: 13px;
}

.review-body .review-body-right .img-text-top {
    padding: 18px 10px 16px 17px;
}

.review-body .review-body-right .img-text-top h3 {
    font-size: 18px;
    line-height: 100%;
    color: var(--text-col-5);
}

.review-body .review-body-right .img-text-top h5 {
    font-size: 14px;
    line-height: 100%;
    color: var(--text-col-5);
}

.review-body p.green-notice,
.review-body .review-body-price-details-bottom p.green-notice {
    font-size: 16px;
    line-height: 100%;
    color: var(--text-col-10);
}

.review-body-card .review-body-card-header p.non-refundable-notice,
.review-body .non-refundable-notice {
	color: var(--text-col-6);
}

.review-body .review-body-right .img-text-bottom {
    padding-top: 22px;
    padding-bottom: 29px;
    border-top: 1px solid var(--bg-col-10);
}

.review-body .review-body-right .img-text-bottom h6 {
    font-size: 16px;
    line-height: 100%;
    text-decoration: underline;
}

.review-body .review-body-price-details {
    padding: 28px 13px 33px 25px;
    border: 1px solid var(--bg-col-7);
    border-radius: 13px;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    -ms-border-radius: 13px;
    -o-border-radius: 13px;
}

.review-body .review-body-price-details h3 {
    font-size: 32px;
    line-height: 100%;
    margin-bottom: 20px;
}

.review-body .review-body-price-details-list p {
    font-size: 20px;
    line-height: 175%;
    color: var(--text-col-11);
}
.review-body .review-body-price-details-list p.taxesIncluded, 
.review-body .review-body-price-details-list p.taxesNotIncluded {
	font-size: 18px;
}

a.recaptoggle {
	color: var(--text-col-11);
}

a.recaptoggle > span:first-of-type {
	text-decoration: underline;
}

.priceRecapList {
	padding: 2px 0 4px 0;
}

.price-recap-items {
	gap: 0 18px;
	text-wrap: balance;
	padding: 0 0 2px 0;
}

.price-recap-items span {
	display: block;
	font-size: 14px;
	line-height: 120%;
	font-weight: 500;
	color: var(--text-col-11);
}

.taxesNotIncluded span {
	color: var(--text-col-6);
}

.review-body .review-body-price-details-list .total-price {
    border-top: 1px solid var(--bg-col-10);
}

.review-body .review-body-price-details-list .total-price p {
    color: var(--bg-col-11);
}

.review-body-price-details-bottom img {
	display: block;
	width: 124px;
	height: auto;
	max-width: 100%;
}

.review-body .review-body-price-details-bottom h4 {
    font-size: 24px;
    line-height: 100%;
    /*color: var(--text-col-6);*/
    color: var(--brand-color);
}

.review-body .review-body-price-details-bottom h4 span {
	font-size: 14px;
	display: block;
	line-height: 125%;
	text-wrap: balance;
}

.review-body .review-body-price-details-bottom p {
    font-size: 16px;
    line-height: 100%;
    color: var(--text-col-11);
}

.review-body-left {
    row-gap: 30px;
}

.review-body-left .review-body-info {
    padding: 25px 20px 38px 20px;
    border: 1px solid var(--bg-col-7);
    border-radius: 13px;
}

.review-body-left .review-body-info-div {
    max-width: 640px;
	row-gap: 16px;
	text-wrap: balance;
}

.review-body-info-div tr {
	border-bottom: 2px solid var(--bg-col-10);
}

.review-body-info-div tr td {
	padding: 4px 0;
	font-size: 16px;
}

.review-body-left .review-body-info-div.review-booking-hotel-confirmation {
	max-width: 100%;
}

figure.hotelImage {
	border-radius: var(--radius);
	overflow: clip;
}

p.bookingId-confirmation strong {
	display: block;
	font-size: 24px;
	line-height: 140%;
}

div#st-error-message.error {
	display: block;
	margin: 0;
	border: 1px solid red;
	padding: 18px;
	border-radius: 18px;
	color: red;
	text-align: center;
}

div#paymentElement form {
	display: flex;
	flex-flow: column;
	gap: 18px;
}

.review-body-guestCounts {
	font-weight: 600;
	font-size: 16px;
	color: var(--text-col-3);
}

.review-body-left .review-body-info .review-body-info-top h3 {
    font-size: 32px;
    line-height: 100%;
}

.review-body-left .review-body-info .review-body-info-top p {
    font-size: 18px;
    line-height: 120%;
}

.review-body-left .review-body-info .review-body-info-top p small {
	color: var(--text-col-11);
}

div#hotelPoliciesModal.fancybox-content {
	background: white;
	border: 0;
	margin: 0 auto;
	width: 968px;
	max-width: calc(100% - 30px);
	height: auto;
	padding: 36px 24px;
	border-radius: 34px;
	overflow: visible;
}

.review-body-left .review-body-card {
	padding: 25px 28px 40px 20px;
	row-gap: 25px;
	border: 1px solid var(--bg-col-7);
	border-radius: 13px;
}

.review-body-card .review-body-card-header p {
	font-size: 14px;
	line-height: 100%;
	color: var(--text-col-10);
}

.review-body-left .review-body-info-email h4 {
    font-size: 17px;
}

.review-body-left .review-body-info-email p {
    font-size: 17px;
    color: var(--bg-col-9);
}

.review-body-left .review-body-info-pass h4 {
    font-size: 17px;
    line-height: 100%;
}

.review-body-left .review-body-info-pass p {
	font-size: 17px;
	line-height: 110%;
	color: var(--bg-col-9);
}

.review-body-left .review-body-info-pass p span {
    font-size: 13px;
    color: var(--bg-col-9);
}

.review-body-left .review-body-info-check label {
    font-size: 15px;
    line-height: 100%;
    display: flex;
    column-gap: 10px;
    align-items: center;
}

.review-body-left .review-body-impo {
    border: 1px solid var(--bg-col-7);
    padding: 25px 37px 25px 20px;
    row-gap: 25px;
    border-radius: 13px;
}

.review-body-left .review-body-impo .review-body-impo-header h3 {
    font-size: 32px;
    line-height: 100%;
}

.review-body-left .review-body-impo ul {
    list-style-type: disc;
    row-gap: 12px;
}

.review-body-left .review-body-impo ul li p {
    font-size: 14px;
    line-height: 115%;
    color: var(--bg-col-9);
}

.review-body-left .review-body-impo-time {
    padding: 25px 0;
    border-top: 1px solid var(--bg-col-9);
    border-bottom: 1px solid var(--bg-col-9);
}

.review-body-left ul.hotelTimes {
	flex-flow: row wrap;
	list-style: none;
	margin: 0;
	gap: 12px 50px;
}

.review-body-left ul.hotelTimes li span {
	display: block;
}

.review-body-left ul.hotelTimes li span:first-of-type {
	color: #6A6A6A;
	font-size: 16px;
	font-weight: 500;
}

.review-body-left .review-body-impo-time h4 {
    font-size: 16px;
    line-height: 13px;
    color: var(--bg-col-11);
    margin-bottom: 12px;
}

.review-body-left .review-body-impo-time p {
    font-size: 16px;
    line-height: 13px;
    color: var(--bg-col-9);
}

.review-body-left .review-body-impo-term p {
    font-size: 14px;
	line-height: 115%;
    color: var(--bg-col-9);
}

.review-body-left .review-body-impo-term p a {
    text-decoration: underline;
    color: var(--bg-col-9);
}

.review-body-left .review-body-impo div button {
	font-size: 16px;
	border: 0;
	background: var(--text-col-4);
	padding: 28px 32px;
	line-height: 100%;
	border-radius: 3px;
	position: relative;
	gap: 12px;
}

.review-body-left .review-body-impo div button:hover {
	background: black;
}


.review-body-left .review-body-impo-secure p {
    font-size: 14px;
    line-height: 115%;
    color: var(--bg-col-9);
    column-gap: 12px;
}

button.lp-submit-button {
	color: transparent;
	position: relative;
	padding: 0;
	font-size: 0px;
	border: transparent;
	background: transparent;
}

button.lp-submit-button:after {
	content: 'Complete Booking';
	font-size: 16px;
	border: 0;
	background: var(--text-col-4);
	padding: 28px 32px;
	line-height: 100%;
	border-radius: 3px;
	position: relative;
	gap: 12px;
	display:inline-flex;
	color:white;
	font-weight:700;
	visibility: visible;
	cursor: pointer;
	transition: var(--transition);
}

button.lp-submit-button:hover:after {
	background: black;
}

div#st-error-message {
    position: absolute;
    color: red;
    visibility: hidden;
    pointer-events: none;
    display: none;
}


.reservation-actions a.btn {
    border-radius: 50px;
    border-width: 2px;
    max-width: 300px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 16px;
}

























/* TEXT PAGES
=============================== */

section.page-content {
	padding: 80px 0 100px 0;
}

.text-content {
	display: flex;
	flex-flow: column;
	gap: 18px;
}

.text-content h2 {
	margin-top: 32px;
}

.text-content ul, .text-content ol {
	list-style: disc;
	display: flex;
	flex-flow: column;
	gap: 12px;
}

.text-content ol {
	list-style: decimal;
}



























/* DASHBOARD
================================ */

#account-overview figure {
	margin: 0;
}

div#account-overview p {
	line-height: 120%;
}

div#stay-overview > div p {
	font-size: 16px;
	font-weight: 600;
	text-wrap: balance;
	width: 110px;
	margin: 0 auto;
}

.pending .number-figure {
	color: #F47B41;
}

.completed .number-figure, 
.donations .number-figure {
	color: #018752;
}

#stay-overview .donations p {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	gap:6px;
}

#stay-overview .donations p span {
	display: block;
	font-size: 14px;
	line-height: 100%;
	width: 100%;
	flex: 0 0 100%;
}

#stay-overview .donations img {
	display: block;
	width: 48px;
	height: auto;
	object-fit: contain;
}

section.reservations-overview {
	margin-bottom: 80px;
}

.dashboard-stay {
	border: 1px solid #D4D4D4;
	border-radius: 13px;
	overflow: clip;
	display: flex;
	gap:0 32px;
}

.dashboard-stay figure {
	display: block;
	margin: 0;
	padding: 0;
	height:235px;
	width: 325px;
}

.dashboard-stay figure img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	object-fit: cover;
}

.dashboard-stay.booking-status-cancelled img,
.dashboard-stay.booking-status-refunded img {
	filter: grayscale(1);
}

.stay-overview h3 {
	font-weight: 600;
	font-size: 1.5rem;
}

.stay-overview ul.hotelTimes {
	flex-flow: row wrap;
	gap: 18px 50px;
}

.stay-overview ul.hotelTimes li span:last-of-type {
	color: #6A6A6A;
	font-size: 14px;
	font-weight: 600;
}

.stay-overview  ul.hotelTimes li span {
	display: block;
}

.stay-overview ul.hotelTimes li span:first-of-type {
	font-size: 16px;
}

.stay-overview a {
	color: black;
	text-decoration: underline;
	text-underline-offset: 2px;
	font-size: 16px;
	line-height: 100%;
}

.status-completed {
	color: #018752;
}

.status-cancelled {
	color: #AF1D1D;
}

.dashboard-past-stay p {
	font-weight: 500;
	color: var(--text-col-11);
	font-size: 16px;
	line-height: 155%;
}

.dashboard-past-stay p strong {
	color: black;
}

.dashboard-past-stay > div {
	flex: 1;
}

.dashboard-past-stay > div.review-body-brief {
	flex: 4;
}

.dashboard-past-stay > div.review-body-confirmationInfo {
	flex: 1.4;
}

.dashboard-past-stay > div.review-body-confirmationInfo p strong {
	color: var(--text-col-4);
	font-weight: 600;
}

body.cancellationComplete * {
	pointer-events: none;
}

body.cancellationComplete #confirm-cancel * {
	pointer-events: all;
}

body.cancellationComplete .fancybox-close-small {
    display: none;
}















/* FORM FIELDS
================================== */

#form-steps {
	transition: var(--transition);
	position:relative;
}

#form-steps.loading {
	opacity:0.75;
	pointer-events: none;
}

#form-steps label.form-label {
	display: block;
	font-size: 12px;
	line-height: 100%;
	position: absolute;
	left: calc(var(--bs-gutter-x) * .5 + .75rem);
	margin: 0;
	top: 12px;
}

#form-steps [class*="col-"] {
	position: relative;
	--bs-gutter-x: 1rem;
}

#form-steps input, #form-steps select {
	padding-top: 30px;
	padding-bottom: 12px;
	border-radius: var(--radius);
}

#form-steps .button {
	border-radius: var(--radius);
	padding: 8px 22px;
}


.btn.loading::after, 
#form-steps.loading [type="submit"]::after {
	content: "";
	position: absolute;
	top: 50%;
	margin-left:12px;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	border: 2px solid #fff;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

.btn.loading {
	pointer-events:none;
	position:relative;
}

.btn.loading::after {
    position: static;
    margin: 0 0 0 6px;
    display: inline-block;
    width: 13px;
    height: 13px;
}

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

form {
	transition: var(--transition);
}

form.processing [type="submit"] {
	pointer-events: none;
}

form.processing {
	filter: grayscale(1);
	pointer-events: none;
}

form.processing [type="submit"] i {
	display: none;
}

form.processing [type="submit"]::after {
	content: "";
	position: relative;
	width: 16px;
	height: 16px;
	margin-left: -12px;
	border: 2px solid #fff;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

.formFields-text {
	width: 100%;
}

.formField {
    padding: 0;
    border-radius: 10px;
    width: 264px;
    max-width: 100%;
    position: relative;
}

.formField label {
	font-size: 12px;
	line-height: 100%;
	color: var(--text-col-11);
	font-weight: 500;
	position: absolute;
	pointer-events: none;
	top: 12px;
	left: 23px;
}

.formField input {
	font-size: 16px;
	line-height: 100%;
	color: black;
	border: 1px solid var(--bg-col-7);
	outline: none;
	padding: 32px 23px 12px 23px;
}

.formField input::placeholder {
	color: #ccc;
	opacity: 1;
}

.invalid-feedback, .text-danger {
	font-size: 13px;
	text-wrap: auto;
	line-height: 125%;
	font-weight: 500;
}















/* FOOTER
===============================*/

.footer {
	background: var(--bg-col-6);
	padding: 80px 0 100px 0;
}

.footer .footer-link {
    column-gap: 56px;
    margin-top: 40px;
    row-gap: 22px;
}

.footer-logo {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
}

.footer-logo img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 96px;
	max-height: 96px;
	object-fit: contain;
}

.footer .footer-link .d-flex {
	row-gap: 4px;
}

.footer .footer-link a {
    font-size: 16px;
    line-height: 100%;
    color: var(--brand-color);
}

.footer .footer-link .d-flex:nth-of-type(2) a {
	color: var(--text-col-5);
}

.footer-important-info {
	display: block;
	width: 960px;
	max-width: 100%;
}

.footer-important-info p {
	font-size: 16px;
	line-height: 125%;
}

.footer-important-info p > * {
	display: block;
	text-wrap: balance;
}

.footer-important-info ul {
	gap: 18px;
}

.footer-important-info ul li a {
	color: black;
	text-decoration: underline;
	font-size: 14px;
	line-height: 100%;
	text-underline-offset: 2px;
}

div.modal-box {
	border-radius: var(--radius);
	overflow: visible;
	padding: 50px;
	width: 720px;
	max-width: calc(100% - 30px);
	margin: 5vh auto 0 0;
}

div.modal-box .col-12 > img {
	display: block;
	margin: 0 auto;
	width: 120px;
	height: 120px;
	object-fit: contain;
}

div.modal-box.loading {
	opacity:0.85;
	pointer-events:none;
}

ul.help-options {
	list-style: none;
	padding: 0;
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 240px;
	margin: 0 auto;
	gap:18px;
}

ul.help-options li {
	display: flex;
	flex-flow: row;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
	text-align: left;
}

ul.help-options li figure {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	background: #efefef;
	border-radius: 50%;
	overflow: clip;
}

ul.help-options li svg {
	display: flex;
	width: 26px;
	height: auto;
	border-radius: 50%;
	object-fit: contain;
}

ul.help-options li svg path {
	fill: var(--brand-color);
}

ul.help-options li a {
	display: block;
	font-size: 16px;
	line-height: 100%;
	font-weight: 600;
	color: var(--text-col-11);
}

ul.help-options li a:hover {
	color: black;
}


















@media (min-width: 1400px) {
    .navbar-nav .nav-link {
        width: 195px;
        height: 48px;
        display: flex;
        padding: 0 !important;
        font-size: 14px;
        font-family: "source-sbld";
        align-items: center;
        justify-content: center;
        border-right: 1px solid #dee2e6;
        margin: 0 -1px;
    }


    .navbar-nav .nav-item:first-child .nav-link {
        border-left: 1px solid #dee2e6;
    }

}


@media (max-width: 1399px) {
    .navbar {
        padding: 0.5rem 1rem;
        justify-content: flex-end;
    }

    .navbar-expand-lg .navbar-collapse {
        display: block !important;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: column;
    }

    .navbar-expand-lg .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: white;
        padding: 2rem 1rem;
        transition: right 0.3s ease;
        z-index: 1050;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-collapse.show {
        right: 0;
    }

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid #f8f9fa;
        text-align: right;
    }

    .close-btn {
        text-align: right;
        font-size: 1.5rem;
        padding: 0.5rem 1rem;
        cursor: pointer;
        margin-bottom: 1rem;
    }

    .backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        display: none;
    }

    .header-logo .header-logo-right {
        column-gap: 12px;
    }
}




@media (max-width: 991px) {
    .top-slider .col-lg-10 h3 {
        width: 100%;
        margin-bottom: 24px !important;
    }
	
	.photo-gallery .big {
		grid-column: auto / span 4;
		grid-row: auto / span 4;
		aspect-ratio: 13 / 9;
	}

    .photo-gallery .photo-gallery-img {
        grid-template-columns: repeat(4, 1fr);
        border-radius: 0px;
    }

    .room-grid-div {
        grid-template-columns: repeat(1, 1fr);
    }	
	
	.fancybox-slide {
		padding: 0;
		margin: 0;
	}

	.room-grid-item.fancybox-content {
		max-width: 100%;
		margin: 60px 0 0 0;
		border-radius: 0;
		padding: 0;
	}

	button.fancybox-close-small {
		right: 10px;
		top: -22px;
	}
	
	.fancybox-content .room-grid-img-holder {
		border-radius: 0;
	}

	.room-grid-item.fancybox-content .room-grid-bottom {
		padding: 24px 15px 100px 15px;
	}

	.fancybox-content .room-details {
		width: 100%;
	}
	
	.fancybox-slide-top .fancybox-slide--html {
		transform: translateY(-100%);
		opacity: 0;
		transition: transform 0.2s ease, opacity 0.2s ease;
	}

	.fancybox-slide-top .fancybox-slide--current {
		transform: translateY(0);
		opacity: 1;
	}

	.fancybox-slide-top .fancybox-slide--previous,
	.fancybox-slide-top .fancybox-slide--next {
		transform: translateY(100%);
		opacity: 0;
	}

	ul.room-amenities-list {
		width: 100%;
	}
	
	.formField {
		width: 100%;
	}
	
	.review-body-left .review-body-info-email p {
		font-size: 14px;
		line-height: 120%;
	}
	
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-logo .header-logo-right {
        column-gap: 8px;
    }

    .room-grid-div {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media all and (max-width:767px) {
	
	.top-slider .school-donation-notice {
		font-size: 14px;
	}
	div#account-overview {
		max-width: calc(100% - 27px);
		margin: 0 auto;
	}

	div#account-overview p {
		font-size: 14px;
		line-height: 125%;
		text-wrap: balance;
	}
	
	div#stay-overview > div p {
		font-size: 13px;
		line-height: 125%;
		width: 100%;
	}
	
	.dashboard-stay {
		flex-flow: column;
	}

	.dashboard-stay .stay-overview {
		padding: 15px;
	}

	.dashboard-stay figure {
		width: 100%;
		height: auto;
		aspect-ratio: 16/9;
	}
	
	.stay-overview h3 {
		font-size: 1.25rem;
	}

	.dashboard-past-stay {
		flex-flow: row wrap;
	}

	.dashboard-past-stay > div {
		flex: 0 0 50%;
		padding: 0 5px;
	}

	.dashboard-past-stay > div.review-body-brief {
		flex: 0 0 100%;
	}

	.dashboard-past-stay > div.review-body-confirmationInfo {
		flex: 0 0 100%;
	}
}

@media only screen and (max-width: 575px) {

    .header-logo .header-logo-left img {
        width: 180px;
    }

    .header-logo .header-logo-right a.logo-right-user {
        height: 40px;
        padding: 0 12px;
        column-gap: 8px;
        font-size: 18px;
    }

    .header-logo .header-logo-right {
        column-gap: 8px;
    }

    d .navbar-toggler {
        padding: 4px 8px;
        font-size: 18px;
    }
	
	#search-bar .search-bar .search-button {
		width: 100%;
	}
	
	.room-grid-item .room-grid-bottom {
		padding: 16px;
	}

    .top-slider .col-lg-10 .d-flex {
        column-gap: 28px;
    }

    .photo-gallery .photo-gallery-top .top-bredcrumb-1 li {
        font-size: 14px;
    }

    .photo-gallery .photo-gallery-top h2 {
		font-size: 24px;
	}

    .photo-gallery .photo-gallery-top {
        padding-left: 0px;
    }

    #customFilterBtnGroup button {
        font-size: 16px;
        line-height: 22x;
    }
	
	div.modal-box {
		padding: 30px 15px;
	}

	div.modal-box p {
		font-size: 16px;
	}

    .modal .modal-room-price-left .select-box-wrapper {
        right: -100px;
    }

    .modal .modal-room-option {
        padding: 20px;
    }

    .modal .room-modal-body .modal-room-tittle h3 {
        font-size: 24px;
    }

    .modal .room-modal-body .modal-room-donate h5 {
        font-size: 18px;
    }

    .review-body-left .review-body-info {
        padding: 20px 14px 20px 14px;
    }

    .review-body-left .review-body-info-email div,
    .review-body-left .review-body-info-number,
    .review-body-left .review-body-info-country {
        width: 100%;
    }

    .review-body-left .review-body-impo,
    .review-body-left .review-body-card {
        padding: 20px;
    }

    .review-body-card .review-body-card-name input {
        max-width: 100%;
    }

    .review-body-left .review-body-info-country input {
        width: 100%;
    }
	main#main-page.page-404 {
		aspect-ratio: 1 / 1;
		min-height: 40vh;
	}
}







