@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&subset=latin-ext');

/* --------------- Fonts --------------- */

h1,
.h1,
h2,
.h2 {
	margin: 0 0 20px 0;
	padding: 0;
	line-height: normal;
	font-size: 26px;
	font-weight: 300;
	text-transform: uppercase;
	color: #1da8e1;
	text-decoration: none;
}

h2.page-title {
	margin: 0 0 30px 0;
	font-weight: 400;
}

h3,
.h3 {
	margin: 0 0 10px 0;
	padding: 0;
	line-height: normal;
	font-size: 20px;
	font-weight: 300;
	color: #323a45;
	text-decoration: none;
}

p {
	margin: 0 0 15px 0;
	padding: 0;
}

/* --------------- Basic layout --------------- */

html {
	-webkit-font-smoothing: subpixel-antialiased;
	scroll-behavior: smooth;
}

body {
	min-width: 320px;
	background-color: #ffffff;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.5;
	color: #323a45;
	text-decoration: none;
}

a {
	color: #1da8e1;
	text-decoration: none;
	-webkit-transition: color 0.2s ease;
	-moz-transition: color 0.2s ease;
	-o-transition: color 0.2s ease;
	transition: color 0.2s ease;
}

a:hover,
a:focus {
	color: #1da8e1;
	text-decoration: underline;
}

/* --------------- Single Page App Section Routing --------------- */
.page-section {
	position: absolute;
	width: 100%;
	left: 0;
	visibility: hidden;
	opacity: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	height: 0;
	pointer-events: none;
}

.page-section.active {
	position: relative;
	visibility: visible;
	overflow: visible;
	clip: auto;
	height: auto;
	pointer-events: auto;
	animation: fadeSlideIn 0.45s ease-out forwards;
}

@keyframes fadeSlideIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* --------------- Custom premium Material-like Buttons --------------- */
.mat-raised-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	padding: 0 16px;
	border: none;
	border-radius: 4px;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	outline: none;
	text-decoration: none;
}

.mat-raised-button:hover:not(:disabled) {
	box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
	transform: translateY(-1px);
	text-decoration: none;
}

.mat-raised-button:active:not(:disabled) {
	box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12);
	transform: translateY(0);
	text-decoration: none;
}

.mat-raised-button:disabled {
	background-color: rgba(0, 0, 0, 0.12) !important;
	color: rgba(0, 0, 0, 0.38) !important;
	cursor: not-allowed;
	box-shadow: none;
}

.mat-raised-button .material-icons {
	margin-right: 8px;
	font-size: 18px;
}

.btn-primary {
	background-color: #1da8e1;
	color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
	background-color: #158cb2;
	color: #ffffff;
}

.btn-accent {
	background-color: #ffb300;
	color: #323a45;
}

.btn-accent:hover,
.btn-accent:focus {
	background-color: #e5a100;
	color: #323a45;
}

/* --------------- Custom Material Inputs --------------- */
.mat-input-container {
	position: relative;
	width: 100%;
	margin-top: 15px;
	margin-bottom: 5px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	padding-bottom: 2px;
	transition: border-bottom-color 0.2s ease;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.mat-input-container:focus-within {
	border-bottom-color: #1da8e1;
}

.mat-input-container input,
.mat-input-container textarea,
.mat-input-container select {
	border: none;
	background: none;
	outline: none;
	width: 100%;
	font-family: inherit;
	font-size: 14px;
	padding: 5px 0;
	color: #323a45;
	box-shadow: none !important;
}

.mat-input-container select {
	opacity: 1;
	-webkit-text-fill-color: currentcolor;
}

.mat-input-container textarea {
	resize: none;
}

.mat-input-container label {
	position: absolute;
	left: 0;
	top: 5px;
	color: #878b96;
	font-weight: 300;
	pointer-events: none;
	transition: all 0.2s ease;
	margin: 0;
}

.mat-input-container input:focus~label,
.mat-input-container input:not(:placeholder-shown)~label,
.mat-input-container textarea:focus~label,
.mat-input-container textarea:not(:placeholder-shown)~label,
.mat-input-container select:focus~label,
.mat-input-container select:not([value=""]):valid~label,
.mat-input-container.has-value label {
	top: -12px;
	font-size: 10px;
	color: #1da8e1;
}

.mat-input-container span.value {
	color: #1da8e1;
	font-size: 14px;
	padding-top: 5px;
	min-height: 21px;
}

.mat-prefix {
	color: #878b96;
	font-size: 14px;
	margin-right: 4px;
	align-self: center;
}

/* Date Pickers container styling */
.native-date-input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0 !important;
	cursor: pointer;
	z-index: 2;
}

/* Custom Checkboxes matching Material design */
.mat-checkbox-container {
	display: block;
	position: relative;
	padding-left: 30px;
	margin-top: 10px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.5;
	color: #323a45;
	user-select: none;
}

.mat-checkbox-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	position: absolute;
	top: 2px;
	left: 0;
	height: 18px;
	width: 18px;
	border: 2px solid #878b96;
	border-radius: 2px;
	transition: all 0.2s ease;
}

.mat-checkbox-container:hover input~.checkmark {
	border-color: #1da8e1;
}

.mat-checkbox-container input:checked~.checkmark {
	background-color: #1da8e1;
	border-color: #1da8e1;
}

.checkmark::after {
	content: "";
	position: absolute;
	display: none;
}

.mat-checkbox-container input:checked~.checkmark::after {
	display: block;
}

.mat-checkbox-container .checkmark::after {
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* --------------- Unified elements --------------- */

.table>thead>tr>th {
	border-bottom: 2px solid #c3c9ce;
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
	border-top: 1px solid #c3c9ce;
}

.modal-content {
	width: 100%;
	display: inline-block;
	border: none;
	border-radius: 7px 7px 6px 6px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
}

.modal-content .modal-header {
	width: 100%;
	height: 60px;
	margin: 0;
	padding: 10px;
	background-color: #f2f3f5;
	border: none;
	border-radius: 6px 6px 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.modal-content .modal-header.aa-mh span.logo {
	width: 188px;
	height: 40px;
	margin: 0 auto;
	padding: 0;
	display: block;
	background-image: url(../images/logo.png);
	background-image: url(../images/logo.svg), none;
	background-size: 188px 40px;
	background-repeat: no-repeat;
	background-position: left center;
}

.modal-content .modal-header .close {
	background-color: transparent;
	border: none;
	color: #878b96;
	cursor: pointer;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	opacity: 0.8;
	transition: opacity 0.2s;
}

.modal-content .modal-header .close:hover {
	opacity: 1;
	color: #1da8e1;
}

.modal-content .modal-header .modal-title {
	width: 100%;
	height: 27px;
	margin: 0;
	padding: 0;
	line-height: 27px;
	font-size: 20px;
	font-weight: 300;
	color: #323a45;
	text-align: center;
	text-decoration: none;
}

.modal-content .modal-body {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 15px;
	display: inherit;
	position: relative;
}

.modal-content .modal-footer {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 15px;
	background-color: transparent;
	border: none;
	text-align: left !important;
}

.expectation .data {
	height: 40px;
	margin: 0 0 10px 0;
	display: flex;
	align-items: center;
}

.expectation .data .mat-icon {
	width: 30px;
	height: 30px;
	margin: 7px 5px 0 0;
	padding: 0;
	float: left;
	line-height: 30px;
	font-size: 30px;
	color: #878b96;
}

.expectation .data .mat-input-container,
.personal .data .mat-input-container {
	width: 100% !important;
	margin: 0;
	padding: 0;
	color: #1da8e1;
}

.expectation .data label {
	top: -17px;
	position: absolute;
	font-size: 14px;
	font-weight: 300;
	color: #878b96;
	cursor: pointer;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	-ms-transition: all .4s ease;
	transition: all .4s ease;
}

.expectation .data label.with-value {
	top: -13px;
	font-size: 10px;
}

.expectation .data span.value {
	color: #1da8e1;
	cursor: pointer;
}

.header .expectation .data {
	padding: 0 3px 0 15px;
}

.header .expectation .submit .mat-raised-button {
	width: 100%;
	margin: 0 0 14px 0;
	padding: 0 3px 0 15px;
}

.header .expectation .data .mat-icon,
.header .expectation .data label,
.header .expectation .data .mat-select-trigger {
	color: #b2bbc8 !important;
}

/* Custom Select Dropdowns in native select wrapper */
.select-container {
	position: relative;
}

.select-container select {
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 20px;
}

.select-container::after {
	content: 'arrow_drop_down';
	font-family: 'Material Icons';
	position: absolute;
	right: 0;
	bottom: 8px;
	color: #878b96;
	pointer-events: none;
	font-size: 20px;
}

.header .select-container::after {
	color: #b2bbc8;
}

/* --------------- Bootstrap 3 - custom grid --------------- */

.col-ms-1,
.col-ms-2,
.col-ms-3,
.col-ms-4,
.col-ms-5,
.col-ms-6,
.col-ms-7,
.col-ms-8,
.col-ms-9,
.col-ms-10,
.col-ms-11,
.col-ms-12 {
	position: relative;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
	.container {
		max-width: 748px;
	}

	.col-ms-1,
	.col-ms-2,
	.col-ms-3,
	.col-ms-4,
	.col-ms-5,
	.col-ms-6,
	.col-ms-7,
	.col-ms-8,
	.col-ms-9,
	.col-ms-10,
	.col-ms-11 {
		float: left;
	}

	.col-ms-12 {
		width: 100%;
	}

	.col-ms-11 {
		width: 91.66666667%;
	}

	.col-ms-10 {
		width: 83.33333333%;
	}

	.col-ms-9 {
		width: 75%;
	}

	.col-ms-8 {
		width: 66.66666667%;
	}

	.col-ms-7 {
		width: 58.33333333%;
	}

	.col-ms-6 {
		width: 50%;
	}

	.col-ms-5 {
		width: 41.66666667%;
	}

	.col-ms-4 {
		width: 33.33333333%;
	}

	.col-ms-3 {
		width: 25%;
	}

	.col-ms-2 {
		width: 16.66666667%;
	}

	.col-ms-1 {
		width: 8.33333333%;
	}
}

@media only screen and (max-width: 349px) {
	.col-xxs-12 {
		width: 100%;
	}
}

/* --------------- Cards --------------- */
.mat-card {
	display: block;
	position: relative;
	padding: 24px;
	border-radius: 4px;
	background: #ffffff;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 2px 1px -1px rgba(0, 0, 0, .12);
	box-sizing: border-box;
}

.mat-card-title {
	font-size: 24px;
	font-weight: 300;
	color: #323a45;
	margin-bottom: 16px;
}

.mat-card-content {
	font-size: 14px;
}

/* --------------- Header --------------- */

.navbar {
	margin: 0 0 30px 0;
	padding: 0;
	border: none;
}

.navbar-default.navbar-static-top {
	background-color: transparent;
}

/* --------------- Header-top --------------- */

.navbar .header-top {
	min-width: 320px;
	min-height: 80px;
	margin: 0;
	padding: 0;
	background-color: #ffffff;
	border: none;
	overflow: visible;
}

.navbar .header-top .container {
	padding: 0;
}

.navbar .header-top .navbar-brand {
	width: 234px;
	height: 80px;
	margin: 0;
	padding: 0;
}

.navbar .header-top .navbar-brand span.navbar-logo {
	width: 234px;
	height: 50px;
	margin: 15px 0;
	padding: 0;
	float: left;
	background-image: url(../images/logo.png);
	background-image: url(../images/logo.svg), none;
	background-size: 234px 50px;
	background-repeat: no-repeat;
	background-position: left center;
}

.navbar .header-top .container>.navbar-header {
	margin: 0 0 0 15px;
	padding: 0;
}

.navbar .header-top .navbar-collapse {
	margin: 0;
	padding: 0;
	background-color: #f2f3f5;
	border-top: 2px solid #1da8e1;
	box-shadow: none;
}

.navbar .header-top ul.navbar-nav {
	width: auto;
	margin: 10px 0;
	padding: 0;
	float: none;
}

.navbar .header-top ul.navbar-nav>li {
	display: block;
	position: relative;
}

.navbar .header-top ul.navbar-nav>li>a {
	margin: 0;
	padding: 12px 15px;
	background: none;
	background-color: transparent;
	line-height: 18px;
	font-size: 16px;
	font-weight: 300;
	color: #323a45;
	text-transform: uppercase;
	text-shadow: none;
	text-decoration: none;
}

.navbar .header-top ul.navbar-nav>li>a:hover,
.navbar .header-top ul.navbar-nav>li>a:focus {
	color: #1da8e1;
	text-decoration: none;
}

.navbar .header-top ul.navbar-nav>li>a.active {
	color: #1da8e1;
	font-weight: 400;
	text-decoration: none;
}

.navbar .header-top .navbar-toggle {
	width: 50px;
	height: 80px;
	margin: 0;
	padding: 33px 14px;
	float: right;
	position: relative;
	background-color: transparent;
	background-image: none;
	border: none;
	border-radius: 0;
}

.navbar .header-top .navbar-toggle .icon-bar {
	width: 22px;
	height: 2px;
	display: block;
	background-color: #323a45;
	border-radius: 1px;
}

.navbar .header-top .navbar-toggle:hover .icon-bar {
	background-color: #1da8e1;
}

.navbar .header-top .navbar-toggle:focus {
	background-color: #1da8e1;
}

.navbar .header-top .navbar-toggle:focus .icon-bar {
	background-color: #ffffff;
}

@media only screen and (min-width: 768px) {
	.navbar .header-top .container {
		padding: 0 15px;
	}

	.navbar .header-top .container>.navbar-header {
		margin: 0;
	}

	.navbar .header-top .navbar-collapse {
		margin: 0;
		background-color: #ffffff;
		border: none;
	}

	.navbar .header-top ul.navbar-nav {
		height: 80px;
		margin: 0;
		float: right;
	}

	.navbar .header-top ul.navbar-nav>li {
		float: left;
	}

	.navbar .header-top ul.navbar-nav>li>a {
		padding: 32px 10px;
		line-height: 16px;
		font-size: 14px;
	}
}

/* --------------- Language Switcher --------------- */

.lang-switcher {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-shrink: 0;
}

.lang-btn {
	width: 42px;
	height: 28px;
	padding: 0;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 4px;
	cursor: pointer;
	background: none;
	opacity: 0.6;
	transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
	overflow: hidden;
}

.lang-btn svg {
	width: 100%;
	height: 100%;
	display: block;
}

.lang-btn:hover {
	opacity: 0.9;
	transform: scale(1.08);
}

.lang-btn.active {
	opacity: 1;
	border-color: #ffffff;
}

/* --------------- Header-promotion --------------- */

.navbar .header-promotion {
	background-color: #1da8e1;
	min-height: 65px;
	color: #fff;
	display: flex;
	align-items: center;
}

.navbar .header-promotion .container {
	position: relative;
	text-align: center;
}

.navbar .header-promotion .lang-switcher {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
	.navbar .header-promotion .container {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.navbar .header-promotion .lang-switcher {
		position: static;
		transform: none;
		margin: 0 0 12px 0;
	}

	.navbar .header-promotion p {
		margin-bottom: 6px;
		font-size: 16px;
	}
}

.navbar .header-promotion p {
	margin: 15px 0;
	padding: 0;
	font-size: 24px;
	font-weight: 300;
}

.navbar .header-promotion p small {
	margin: 11px 0 0 0;
	padding: 0;
	float: right;
	font-size: 14px;
}

/* --------------- Header-bottom --------------- */

.navbar .header-bottom {
	min-width: 320px;
	min-height: 65px;
	margin: 0;
	padding: 0;
	background-color: #323a45;
	overflow: visible;
	display: flex;
	align-items: center;
}

.navbar .header-bottom .container {
	padding-top: 15px;
}

.navbar .header-bottom .mat-input-container {
	border-bottom-color: rgba(255, 255, 255, 0.3);
}

.navbar .header-bottom .mat-input-container:focus-within {
	border-bottom-color: #1da8e1;
}

.navbar .header-bottom .mat-input-container select {
	color: #ffffff;
}

.navbar .header-bottom .mat-input-container select option {
	color: #323a45;
	background-color: #ffffff;
}

/* --------------- Frontpage --------------- */

.frontpage .frontpage-image {
	width: 100%;
	max-width: 100% !important;
	height: 60vw;
	margin: -30px 0 50px 0;
	padding: 0;
	position: relative;
	background-color: #3b9cbc;
	background-image: url(../images/frontpage/bg_frontpage_mobile_1x.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (-moz-min-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (min-device-pixel-ratio: 2) {
	.frontpage .frontpage-image {
		background-image: url(../images/frontpage/bg_frontpage_mobile_2x.jpg);
	}
}

.frontpage .frontpage-info {
	height: auto;
	margin-bottom: 50px;
	text-align: center;
}

.frontpage .frontpage-info h1 {
	line-height: normal;
	font-size: 34px;
	font-weight: 300;
	color: #323a45;
	text-transform: none;
	text-decoration: none;
}

.frontpage .frontpage-info h2 {
	line-height: normal;
	font-size: 16px;
	font-weight: 300;
	color: #323a45;
	text-transform: none;
	text-decoration: none;
}

.frontpage .frontpage-apartman {
	width: 100%;
	height: auto;
	margin: 0 0 -30px 0;
	padding: 30px 0;
	background-color: #f2f3f5;
}

.frontpage .frontpage-apartman a,
.frontpage .frontpage-apartman a:hover,
.frontpage .frontpage-apartman a:focus {
	color: #323a45;
	text-decoration: none;
}

.frontpage .frontpage-apartman .mat-card {
	max-width: 400px;
	margin: 0 auto 30px auto;
	padding: 0 15px 15px 15px;
	background-color: #ffffff;
	color: #323a45;
	text-align: center;
	text-decoration: none;
	transition: transform .2s ease;
	touch-action: pan-y;
}

.frontpage .frontpage-apartman .mat-card:hover,
.frontpage .frontpage-apartman .mat-card:focus {
	transform: scale(1.08);
}

.frontpage .frontpage-apartman .mat-card .mat-card-image {
	width: calc(100% + 30px);
	height: auto;
	margin: 0 -15px 15px -15px;
	padding: 0;
	touch-action: pan-y;
	-webkit-user-drag: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.frontpage .frontpage-apartman h2 {
	margin: 0 0 40px 0;
	padding: 0;
	line-height: 38px;
	font-size: 28px;
	font-weight: 300;
	color: #323a45;
	text-align: center;
	text-transform: none;
	text-decoration: none;
}

.frontpage .frontpage-promotion {
	margin: 0 0 -30px 0;
	padding: 0;
}

@media only screen and (min-width: 480px) {
	.frontpage .frontpage-image {
		height: 50vw;
	}
}

@media only screen and (min-width: 768px) {
	.frontpage .frontpage-image {
		height: 330px;
		background-image: url(../images/frontpage/bg_frontpage_tablet_1x.jpg);
	}

	@media only screen and (-webkit-min-device-pixel-ratio: 2),
	only screen and (-moz-min-device-pixel-ratio: 2),
	only screen and (-o-min-device-pixel-ratio: 2/1),
	only screen and (min-device-pixel-ratio: 2) {
		.frontpage .frontpage-image {
			background-image: url(../images/frontpage/bg_frontpage_tablet_2x.jpg);
		}
	}
}

@media only screen and (min-width: 1200px) {
	.frontpage .frontpage-image {
		background-image: url(../images/frontpage/bg_frontpage_desktop_1x.jpg);
	}

	@media only screen and (-webkit-min-device-pixel-ratio: 2),
	only screen and (-moz-min-device-pixel-ratio: 2),
	only screen and (-o-min-device-pixel-ratio: 2/1),
	only screen and (min-device-pixel-ratio: 2) {
		.frontpage .frontpage-image {
			background-image: url(../images/frontpage/bg_frontpage_desktop_2x.jpg);
		}
	}
}

/* --------------- Gallery --------------- */

.gallery h2 {
	font-weight: 600;
}

.gallery .album {
	width: 100%;
	height: auto;
	padding: 40px 0;
}

.gallery .album.odd {
	background-color: #f2f3f5;
}

.gallery .album.first {
	margin-top: -30px;
}

.gallery .album .album-header {
	margin: 0 0 25px 0;
	padding: 0;
}

.gallery .album .album-header .album-title {
	margin: 0 10px 0 0;
	display: inline-block;
	font-weight: 400;
}

.gallery .album .album-header .album-description {
	display: inline-block;
	font-size: 14px;
	color: #878b96;
}

.gallery .album .album-content {
	display: flex;
	flex-wrap: wrap;
}

.gallery .album .album-content .image {
	margin: 0 0 30px 0;
	cursor: pointer;
}

.gallery .album .album-content .image img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: all 0.2s ease-in-out;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.gallery .album .album-content .image img:hover {
	transform: scale(1.04);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* --------------- Promotion --------------- */

.promotion .container {
	text-align: justify !important;
}

.promotion .container h2 {
	text-align: justify !important;
	margin-bottom: 30px;
}

.promotion .container p {
	margin: 0 0 20px 0;
	line-height: 1.8;
	font-size: 15px;
	text-align: justify !important;
}

.promotion .container .languages {
	margin: 30px 0 0 0;
	padding: 20px;
	background-color: #f2f3f5;
	border-radius: 4px;
	text-align: left !important;
}

.promotion .container .languages strong {
	display: block;
	margin: 0 0 5px 0;
	font-size: 16px;
}

/* --------------- Contact --------------- */

.contact .contact-info {
	margin: 0 0 30px 0;
}

.contact .contact-info .hotel-info {
	line-height: 2.2;
}

.contact .contact-form {
	margin: 0 0 30px 0;
}

.contact .contact-form .mat-card-title {
	color: #1da8e1;
}

.contact .contact-form .captcha {
	margin: 15px 0;
}

.contact .contact-form .send-button .mat-raised-button {
	width: 100%;
	float: right;
}

.contact .footer-contact-map {
	width: 100%;
	height: 300px;
	margin: 0 0 -30px 0;
}

@media only screen and (min-width: 350px) {
	.contact .contact-form .send-button .mat-raised-button {
		width: auto;
	}
}

/* --------------- Legal --------------- */

.legal .legal-info {
	margin: 0 0 30px 0;
	text-align: center;
}

.legal .legal-info p {
	line-height: 1.8;
}

/* --------------- Offer modal --------------- */

.offer-modal h2 {
	font-size: 18px;
	margin: 0 0 10px 0;
}

.offer-modal p.offer-info {
	margin: 30px 0;
	text-align: center;
}

.offer-modal .personal {
	padding: 15px;
}

.offer-modal .expectation {
	margin: 0 0 20px 0;
	padding: 15px;
	overflow: visible;
}

.offer-modal .mat-raised-button {
	width: 100%;
	float: right;
}

@media only screen and (min-width: 350px) {
	.offer-modal .mat-raised-button {
		width: auto;
	}
}

/* --------------- Modal Dialog Overlays (Vanilla Modal) --------------- */
.custom-modal {
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1050;
	background-color: rgba(0, 0, 0, 0.5);
	overflow-x: hidden;
	overflow-y: auto;
	opacity: 0;
	transition: visibility 0s linear 0.3s, opacity 0.3s ease-out;
}

.custom-modal.show {
	visibility: visible;
	opacity: 1;
	transition-delay: 0s;
}

.custom-modal-dialog {
	position: relative;
	width: auto;
	margin: 10px;
	pointer-events: none;
	transform: translate(0, -25%);
	transition: transform 0.3s ease-out;
}

.custom-modal.show .custom-modal-dialog {
	transform: translate(0, 0);
}

@media (min-width: 768px) {
	.custom-modal-dialog {
		width: 600px;
		margin: 30px auto;
	}
}

@media (min-width: 992px) {
	.custom-modal-dialog.modal-lg {
		width: 900px;
	}
}

.modal-content {
	pointer-events: auto;
}

/* --------------- Custom Vanilla Lightbox --------------- */
.lightbox-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.95);
	z-index: 2000;
	justify-content: center;
	align-items: center;
	user-select: none;
	touch-action: pan-y;
}

.lightbox-modal.show {
	display: flex;
}

.lightbox-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 900px;
	max-height: 85%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lightbox-image {
	width: 100%;
	height: auto;
	max-width: 100%;
	max-height: 75vh;
	object-fit: contain;
	transition: opacity 0.45s ease-in-out;
}

.lightbox-caption {
	color: #ffffff;
	font-size: 16px;
	font-weight: 300;
	margin-top: 15px;
	text-align: center;
	min-height: 24px;
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px;
	color: #ffffff;
	font-size: 35px;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.2s, color 0.2s;
	background: none;
	border: none;
	display: flex;
	align-items: center;
	z-index: 2100;
}

.lightbox-close:hover {
	opacity: 1;
	color: #1da8e1;
}

.lightbox-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #ffffff;
	font-size: 40px;
	background: rgba(0, 0, 0, 0.3);
	border: none;
	cursor: pointer;
	padding: 10px 15px;
	border-radius: 4px;
	opacity: 0.6;
	transition: opacity 0.2s, background-color 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2050;
}

.lightbox-nav-btn:hover {
	opacity: 1;
	background-color: rgba(29, 168, 225, 0.8);
}

.lightbox-prev {
	left: 20px;
}

.lightbox-next {
	right: 20px;
}

@media (max-width: 767px) {
	.lightbox-container {
		width: 96%;
		max-width: 98%;
		max-height: 90%;
	}

	.lightbox-image {
		width: 100%;
		height: auto;
		max-width: 100%;
		max-height: 80vh;
	}

	.lightbox-caption {
		font-size: 14px;
		margin-top: 10px;
	}

	.lightbox-nav-btn {
		font-size: 30px;
		padding: 8px 12px;
	}

	.lightbox-prev {
		left: 5px;
	}

	.lightbox-next {
		right: 5px;
	}

	.footer .info,
	.footer .contact {
		margin-bottom: 30px;
	}

	/* Smooth sliding animation for the mobile menu dropdown */
	.navbar-collapse {
		display: block !important;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
		border: none !important;
		box-shadow: none !important;
	}

	.navbar-collapse.in {
		max-height: 350px;
	}

	/* Hamburger icon morphing animation */
	.navbar-toggle {
		background-color: transparent !important;
		border: none !important;
		transition: all 0.3s ease-in-out;
	}

	.navbar-toggle .icon-bar {
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
		background-color: #323a45 !important;
	}

	.navbar-toggle:focus .icon-bar {
		background-color: #323a45 !important;
	}

	/* Morph to X when active */
	.navbar-toggle.active .icon-bar {
		background-color: #1da8e1 !important;
	}

	.navbar-toggle.active .icon-bar:nth-child(2) {
		transform: rotate(45deg) translate(5px, 5px) !important;
	}

	.navbar-toggle.active .icon-bar:nth-child(3) {
		opacity: 0 !important;
		transform: scale(0) !important;
	}

	.navbar-toggle.active .icon-bar:nth-child(4) {
		transform: rotate(-45deg) translate(5px, -5px) !important;
	}
}

/* --------------- Premium Snackbar Toast --------------- */
.snackbar-container {
	visibility: hidden;
	min-width: 280px;
	background-color: rgba(29, 168, 225, 0.95);
	color: #ffffff;
	text-align: center;
	border-radius: 4px;
	padding: 14px 24px;
	position: fixed;
	z-index: 3000;
	left: 50%;
	bottom: 30px;
	transform: translateX(-50%);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
	opacity: 0;
	transition: visibility 0s linear 0.3s, opacity 0.3s ease;
}

.snackbar-container.show {
	visibility: visible;
	opacity: 1;
	transition-delay: 0s;
}

/* --------------- Footer --------------- */

.footer {
	min-width: 320px;
	height: auto;
	margin: 30px 0 0 0;
	padding: 40px 0 20px 0;
	background-color: #323a45;
	color: #ffffff;
	text-align: center;
}

.footer h3 {
	display: inline-block;
	margin: 0 0 20px 0;
	padding: 0 0 6px 0;
	line-height: normal;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 2px solid #1da8e1;
}

.footer p {
	line-height: 1.8;
}

.footer p.legal {
	margin: 40px 0 0 0;
	border-top: 1px solid #4a5462;
	padding: 20px 0 0 0;
	font-size: 12px;
	color: #878b96;
	text-align: center;
}

.footer ul.menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer ul.menu li {
	margin: 0 0 5px 0;
	padding: 0;
}

.footer ul.menu li a {
	font-size: 14px;
	color: #ffffff;
	text-decoration: none;
}

.footer ul.menu li a:hover {
	color: #1da8e1;
}

.footer .map iframe {
	border-radius: 4px;
	margin: 0 auto;
	display: block;
}