@font-face {
	font-family: "OpenSans";
	src: url( "/css/fonts/OpenSans/OpenSans-VariableFont_wdth_wght.woff2" ) format( "woff2" ),
		 url( "/css/fonts/OpenSans/OpenSans-VariableFont_wdth_wght.woff" ) format( "woff" );
	font-weight: 100 900;
	font-stretch: 75% 125%;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "OpenSans";
	src: url( "/css/fonts/OpenSans/OpenSans-Italic-VariableFont_wdth_wght.woff2" ) format( "woff2" ),
		 url( "/css/fonts/OpenSans/OpenSans-Italic-VariableFont_wdth_wght.woff" ) format( "woff" );
	font-weight: 100 900;
	font-stretch: 75% 125%;
	font-style: italic;
	font-display: swap;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

a {
	color: #013a63;
	cursor: pointer;
	text-decoration: underline;
}

a:hover {
	color: #fd6038;
}

body {
	color: #333;
	font-family: OpenSans, Tahoma, Geneva, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
}

.bold {
	font-weight: 600;
}

button {
	background: #61a5c2;
	border: none;
	border-radius: 5px;
	color: white;
	cursor: pointer;
	display: block;
	font-size: 18px;
	font-weight: 600;
	margin: 0 auto;
	max-width: 285px;
	padding: 15px;
	transition: background 0.3s;
	width: 50%;
}

button.mini {
	display: inline;
	font-size: 14px;
	max-width: 142px;
	padding: 10px;
	width: 20%;
}

button:hover {
	background: #013a63;
}

.center {
	text-align: center;
}

.checkbox-group {
	margin-top: 10px;
}

.checkbox-item {
	margin-bottom: 10px;
}

.checkbox-item input[ type="checkbox" ],
.checkbox-item input[ type="radio" ] {
	margin-right: 8px;
	width: auto;
}

.checkbox-item label {
	cursor: pointer;
	display: inline;
	font-weight: normal;
}

.clickable {
	cursor: pointer;
}

.container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 20px;
}

.file-info {
	color: #777;
	font-size: 0.9rem;
	font-weight: normal;
	margin-top: 5px;
}

.form-group {
	margin-bottom: 0;
}

.form-row {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 20px;
}

.form-row.cols3 {
	grid-template-columns: 1fr 1fr 1fr;
}

.form-row.cols4 {
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

.form-row.full-width {
	grid-template-columns: 1fr;
}

.has-nav-subMenu > a::after {
	content: ' ▾';
	font-size: 0.8rem;
}

.hero {
	align-items: center;
	background: linear-gradient( rgba( 0, 0, 0, 0.5 ), rgba( 0, 0, 0, 0.5 ) ),
				url( "/images/bg_condos.jpg" ) center/cover;
	color: white;
	display: flex;
	height: 800px;
	justify-content: center;
	padding: 20px;
	text-align: center;
}

.hero a {
	color: inherit;
}

.hero h1 {
	font-size: 2.5rem;
	margin-bottom: 10px;
}

.hero p {
	font-size: 1.2rem;
}

.inline {
	display: inline-block;
}

input[ type="date" ], 
input[ type="datetime-local" ], 
input[ type="email" ], 
input[ type="file" ],
input[ type="number" ], 
input[ type="password" ], 
input[ type="tel" ], 
input[ type="text" ], 
select, 
textarea {
	border: 1px solid #ddd;
	border-radius: 5px;
	font-family: inherit;
	font-size: inherit;
	padding: 12px;
	transition: border-color 0.3s;
	width: 100%;
}

input[ type="file" ] {
	border-radius: 5px;
	cursor: pointer;
	font-size: 0.9rem;
	padding: 11px;
	transition: border-color 0.3s;
	width: 100%;
}

input[ type="file" ]:hover {
	background: #e9ecef;
	border-color: #98c1d9;
}

input:focus, select:focus, textarea:focus {
	border-color: #98c1d9;
	outline: none;
}

input.error {
	border-color: #f73a2c;
}

input.mini {
	font-family: inherit;
	font-size: inherit;
	padding: 7px;
	transition: border-color 0.3s;
	width: 60%;
}

label {
	color: #555;
	font-weight: 600;
	margin-bottom: 5px;
}

label.error {
	color: #f73a2c;
}

.label.icon {
	cursor: pointer;
	float: right;
	font-size: 0.9rem;
	height: 20px;
	margin-right: 10px;
}

label.plain {
	font-weight: normal;
}

li.hover:hover {
	background: #f5f5f5;
}

li.noDot {
	list-style-type: none;
	padding: 5px;
}

.logo {
	color: white;
	font-size: 1.5rem;
	font-weight: bold;
	padding: 15px 0;
}

main {
	padding-top: 70px;
}

.mobile-toggle {
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	display: none;
	font-size: 1.5rem;
	padding: 0;
	width: auto;
}

.msg {
	background-color: #e3f2fd;
	border: 1px solid #2196f3;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	margin: 20px auto;
	max-width: 700px;
	padding: 1rem;
	text-align: center;
	width: 80vw;
}

.msg-error {
	background: #f2dede;
	border-color: #f73a2c;
	border-radius: 5px;
	color: #e84747;
	margin-bottom: 20px;
	padding: 15px;
	text-align: center;
}

.msg-info {
	background: #e3f2fd;
	border-color: #2196f3;
	border-radius: 5px;
	color: inherit;
	margin-bottom: 20px;
	padding: 15px;
	text-align: center;
}

.msg-success {
	background: #d3ffb5;
	border-color: #43a047;
	border-radius: 5px;
	color: inherit;
	margin-bottom: 20px;
	padding: 15px;
	text-align: center;
}

.msg-warning {
	background: #fffeb5;
	border-color: #ffe600;
	border-radius: 5px;
	color: inherit;
	margin-bottom: 20px;
	padding: 15px;
	text-align: center;
}

nav {
	background: #013a63;
	border-bottom: solid 3px #fd6038;
	box-shadow: 0 2px 5px rgba( 107, 88, 88, 0.1 );
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1000;
}

.nav-container {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 20px;
}

.nav-menu {
	display: flex;
	gap: 30px;
	list-style: none;
}

.nav-menu a {
	color: white;
	display: block;
	padding: 15px 0;
	text-decoration: none;
	transition: color 0.3s;
}

.nav-menu a:hover {
	color: #98c1d9;
}

.nav-menu > li {
	position: relative;
}

.nav-menu > li:hover .nav-subMenu {
	display: block;
}

.nav-subMenu {
	background: #01497c;
	border-radius: 0 0 5px 5px;
	box-shadow: 0 4px 6px rgba( 0, 0, 0, 0.2 );
	display: none;
	list-style: none;
	left: 0;
	min-width: 200px;
	padding: 0;
	position: absolute;
	top: 100%;
}

.nav-subMenu a {
	font-size: 0.95rem;
	padding: 12px 20px;
}

.nav-subMenu a:hover {
	background: #013a63;
}

.nav-subMenu li {
	border-bottom: 1px solid #013a63;
}

.nav-subMenu li:last-child {
	border-bottom: none;
}

.pointer {
	cursor: pointer;
}

.rotate180 {
	transform: rotate( 180deg );
	transition: transform 0.3s ease-in-out;
	-moz-transform: rotate( 180deg );
	-webkit-transform: rotate( 180deg );
}

.rotate90 {
	transform: rotate( 90deg );
	transition: transform 0.3s ease-in-out;
	-moz-transform: rotate( 90deg );
	-webkit-transform: rotate( 90deg );
}

.rotateInitial {
	transform: rotate( 0deg );
	transition: transform 0.3s ease-in-out;
	-moz-transform: rotate( 0deg );
	-webkit-transform: rotate( 0deg );
}

.section {
	background: white;
	margin: 0 auto 40px;
	max-width: 1200px;
	position: relative;
}

.section h2 {
	color: #013a63;
	margin-bottom: 20px;
	text-align: center;
}

.section h3 {
	color: #013a63;
	margin-bottom: 20px;
}

select.error {
	border-color: #f73a2c;
}

select.mini {
	font-family: inherit;
	font-size: inherit;
	padding: 6px;
	transition: border-color 0.3s;
	width: 60%;
}

#subMenu {
	display: flex;
	font-size: 0.85rem;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 40px;
}

.subText {
	font-size: 0.8rem;
}

textarea {
	min-height: 100px;
	resize: vertical;
}

table {
	background: white;
	border-collapse: collapse;
	border-radius: 5px;
	overflow: hidden;
	width: 100%;
}

td, th {
	border-bottom: 1px solid #ddd;
	padding: 12px;
	text-align: left;
}

th {
	background: #61a5c2;
	color: white;
	font-weight: 600;
}

tr:hover {
	background: #f5f5f5;
}

table.grid {
	background: white;	
	border-collapse: collapse;
	border-radius: 0;
	margin: 0 auto;
	overflow: hidden;
	width: unset;
}

table.grid td {
	border: 1px solid #ddd;
}

table.grid tr:hover {
	background: unset;
}

.table-section {
	border-radius: 5px;
	margin: 30px 0;
	padding: 20px;
}

.table-section h3 {
	color: #013a63;
	margin-bottom: 15px;
}

.unitStatus-available {
	background-color: #ffffe9;
}

.unitStatus-cancelled {
	background-color: #fa6a6a;
}

.unitStatus-closed {
	background-color: #8a9bff;
}

.unitStatus-hard {
	background-color: #5aec5a;
}

.unitStatus-reservation {
	background-color: #bee7ff;
}

.unitStatus-reserved {
	background-color: #ffa672;
}

.unitStatus-soft {
	background-color: #d3ffb5;
}

.unitStatus-unavailable {
	background-color: #a6aaa3;
}

::placeholder {
	font-family: inherit;
	font-size: inherit;
}

::-webkit-input-placeholder {
	font-family: inherit;
	font-size: inherit;
}

::-moz-placeholder {
	font-family: inherit;
	font-size: inherit;
}

@media print {
	footer {
		display: none !important;
	}
	header {
		display: none !important;
	}
}

@media ( max-width: 768px ) {
	main {
		padding-top: 60px;
	}

	.container {
		padding: 10px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.has-nav-subMenu > a::after {
		float: right;
	}

	.mobile-toggle {
		display: block;
	}

	.nav-menu {
		background: #013a63;
		display: none;
		flex-direction: column;
		gap: 0;
		left: 0;
		padding: 0;
		position: absolute;
		right: 0;
		top: 60px;
	}

	.nav-menu a {
		padding: 15px 20px;
	}

	.nav-menu.active {
		display: flex;
	}

	.nav-menu li {
		border-bottom: 1px solid #01497c;
	}

	.nav-menu > li.active .nav-subMenu {
		display: block;
	}

	.nav-subMenu {
		background: #3d566e;
		border-radius: 0;
		box-shadow: none;
		display: none;
		position: static;
	}

	.nav-subMenu li {
		padding-left: 20px;
	}

	.section {
		padding: 30px 20px;
	}

	table {
		font-size: 14px;
	}

	td, th {
		padding: 8px;
	}
}