:root {
	--color-primary: #f4ad31;
	--color-cyan: #0c9ec6;
	--color-cyan-60:
	rgb(12 158 198 / 60%);
	--color-primary-opaque:
	rgb(244 173 49 / 70%);
	--color-primary-opaque-50:
	rgb(244 173 49 / 50%);
	--dark-gradient-to-bottom:
	linear-gradient(rgba(0, 0, 0, 0.6) 0%,
			rgba(0, 0, 0, 0.4) 20%,
			rgba(0, 0, 0, 0.2) 40%,
			rgba(0, 0, 0, 0.05) 60%,
			rgba(0, 0, 0, 0.025) 70%,
			rgba(0, 0, 0, 0.01) 80%,
			rgba(0, 0, 0, 0.005) 90%,
			rgba(0, 0, 0, 0) 100%);
	--dark-gradient-to-top:
	linear-gradient(0deg,
			rgba(0, 0, 0, 0.6) 0%,
			rgba(0, 0, 0, 0.4) 20%,
			rgba(0, 0, 0, 0.2) 40%,
			rgba(0, 0, 0, 0.05) 60%,
			rgba(0, 0, 0, 0.025) 70%,
			rgba(0, 0, 0, 0.01) 80%,
			rgba(0, 0, 0, 0.005) 90%,
			rgba(0, 0, 0, 0) 100%);
	--color-dark: #393939;
	--gui-padding: 20px;
	--transition-all: all .3s;
	--ui-button-size: 40px;
}

* {
  box-sizing: border-box!important;
}

html {
	height: 100%;
}

@font-face {
	font-family: 'Raleway';
	src: url('/fonts/Raleway-Thin.ttf') format('truetype');
	font-weight: 100;
	font-style: normal;
}


@font-face {
	font-family: 'Raleway';
	src: url('/fonts/Raleway-ExtraLight.ttf') format('truetype');
	font-weight: 200;
	font-style: normal;
}

@font-face {
	font-family: 'Raleway';
	src: url('/fonts/Raleway-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Raleway';
	src: url('/fonts/Raleway-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Raleway';
	src: url('/fonts/Raleway-Italic.ttf') format('truetype');
	font-weight: 400;
	font-style: italic;
}

@font-face {
	font-family: 'Raleway';
	src: url('/fonts/Raleway-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Raleway';
	src: url('/fonts/Raleway-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Raleway';
	src: url('/fonts/Raleway-ExtraBold.ttf') format('truetype');
	font-weight: 800;
	font-style: normal;
}

body {
	font-size: 10pt;
	font-family: 'Raleway';
	height: 100%;
	padding: 0;
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Raleway';
}

button {
	position: relative;
	border: none;
	background-color: transparent;
	color: #fff;
	pointer-events: all;
	padding: 0;
}

#insys_gui_container {
	pointer-events: none;
	cursor: default;
}

#overlay {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.392);
	width: 100%;
	height: 100%;
	pointer-events: all;
}

#insys_gui::before {
	content: "";
	background: var(--dark-gradient-to-bottom);
	height: 180px;
	position: absolute;
	width: 100%;
	z-index: -1;
}

#insys_gui::after {
	content: "";
	background: var(--dark-gradient-to-top);
	height: 180px;
	position: absolute;
	width: 100%;
	bottom: 0;
	z-index: -1;
}

/* Map */

#map {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	pointer-events: all;
}

#map-popup {
	/* Position the bubble centred-above its parent. */
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-50%, -100%);

	/* Style the bubble. */
	background-color: #fff;
	border-radius: 10px;
	padding: 5px;
	width: 350px;
	height: 200px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	cursor: pointer;
}

#map-popup .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: inherit;
	background: var(--dark-gradient-to-top);
}

#map-popup .title-container {
	position: absolute;
	padding: 10px 15px;
	bottom: 0;
	left: 0;
	width: 100%;
}

#map-popup .title {
	font-size: 20px;
	color: #fff;
	position: relative;
	width: fit-content;
}

#map-popup .title::after {
	content: "";
	display: block;
	left: 0;
	bottom: 0;
	width: 50%;
	height: 2px;
	margin-top: 5px;
	background-color: var(--color-primary);
}

/* The parent of the bubble. A zero-height div at the top of the tip. */
.popup-bubble-anchor {
	/* Position the div a fixed distance above the tip. */
	position: absolute;
	width: 100%;
	bottom: 8px;
	left: 0;
}

/* JavaScript will position this div at the bottom of the popup tip. */
.popup-container {
	cursor: auto;
	height: 0;
	position: absolute;
	/* The max width of the info window. */
	width: 200px;
}


/* End map */

/* Splash screen */

.splash-screen {
	background-color: #eef0f0;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
}

/* End splash screen */

/* Language switcher */

#home .language-switcher {
	z-index: 2;
	pointer-events: all;
}

#home .language-switcher a {
	text-decoration: none;
	color: #fff;
}

#insys_gui .language-switcher .language-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

#insys_gui .language-switcher .language-list li,
#insys_gui .current-language {
	font-weight: 100;
	display: block;
	color: #fff;
	cursor: pointer;
	pointer-events: all;
	width: var(--ui-button-size);
	height: var(--ui-button-size);
	text-align: center;
	transition:
	var(--transition-all);
	border-radius: 50%;
	background-color: transparent;
	color: #ffffff;
	border: 2px solid #fff;
	line-height: calc(var(--ui-button-size) - 3px);
}

#insys_gui .current-language,
#insys_gui .language-switcher .language-list li {
	margin-bottom: 5px;
}

#insys_gui .language-switcher .language-list li:hover {
	background-color: transparent;
	color: #fff;
}

#insys_gui .current-language {
	font-weight: 600;
	background-color: transparent;
	color: #ffffff;
	border: 2px solid #fff;
	line-height: 42px;
}

#insys_gui .language-switcher ul li.active {
	color: #ffffff;
	background-color: #2059b4;
	display: none;
}

/* End language switcher */

/* Logo */

.logo-container {
	position: absolute;
	pointer-events: all;
	top: var(--gui-padding);
	left: var(--gui-padding);
}

.logo-container img {
	width: 50px;
	top: 0;
}

.logo-container img:is(:first-child) {
	position: absolute;
}

.logo-container a {
	display: inline-block;

}

.logo-container a:not(:first-child) {
	margin-left: 11px;
}

/* Logo end */

/* Information panel */

.information-panel {
	position: absolute;
	left: var(--gui-padding);
	right: var(--gui-padding);
	bottom: var(--gui-padding);
	max-width: 60%;
}

.information-panel .breadcrumbs {
	margin: 0;
	padding: 0;
	width: fit-content;
	pointer-events: all;
}

.information-panel .breadcrumbs li {
	text-decoration: none;
	list-style: none;
	display: inline;
	color: #fff;
	font-size: 15px;
}

.information-panel .breadcrumbs li a {
	color: #fff;
}

.information-panel .breadcrumbs li:not(:last-child)::after {
	content: "/";
	color: #fff;
	padding: 0 5px;
}

.information-panel h1,
.information-panel p {
	color: #ffffff;
	width: fit-content;
	pointer-events: all;
	cursor: text;
	user-select: text;
	margin: 0;
}

.information-panel .copyright {
	margin-top: 2px;
}

.information-panel .title-container,
.information-panel h1 {
	pointer-events: all;
	cursor: pointer;
}

.information-panel .title-container {
	width: fit-content;
	position: relative;
	display: flex;
	align-items: center;
}

.information-panel .title {
	font-weight: 700;
	font-size: 30px;
	width: fit-content;
	text-transform: uppercase;
}

.information-panel .title-marker {
	width: 20px;
	height: auto;
	pointer-events: none;
	margin-right: 5px;
}

.information-panel>button {
	margin-top: 10px;
	display: none;
}

.title-caret {
	margin-left: 5px;
	transition: var(--transition-all);
}

.title-caret.rotate {
	transform: rotate(-180deg);
}

/* .information-panel .title::after { */
/* content: ""; */
/* width: 100%; */
/* height: 4px; */
/* display: block; */
/* background-color: #2059B4; */
/* margin-top: 5px; */
/* } */

/* Information panel end */

/* Home */

#home {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

#home::before {
	content: "";
	position: absolute;
	background: rgba(0, 0, 0, 0.392);
	width: 100%;
	height: 100%;
	z-index: 1;
}

/*
#home::before {
    top: 0;
	content: "";
	background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    height: 180px;
    position: absolute;
    width: 100%;
	z-index: 1;
}

#home::after {
    content: "";
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    height: 180px;
    position: absolute;
    width: 100%;
	bottom: 0;
	z-index: 1;
}
*/

.home-logo {
	pointer-events: all;
	z-index: 2;
}

.home-intro {
	width: 544px;
	z-index: 2;
	pointer-events: all;
}

.home-video {
	height: 100%;
	object-fit: cover;
	position: absolute;
	width: 100%;
	z-index: 0;
}

.home-text {
	pointer-events: all;
	color: #fff;
	font-size: 50px;
	font-weight: 600;
	max-width: 50%;
	text-transform: uppercase;
	z-index: 2;
}

.button {
	border-radius: 25px;
	border: 1px solid var(--color-primary);
	cursor: pointer;
	min-height: 50px;
	pointer-events: all;
	transition: all .5s;
	min-width: 200px;
	text-align: none;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

a.button {
	text-decoration: none;
}

.button:hover {
	background-color: var(--color-cyan);
	color: #fff;
}

.home-button {
	pointer-events: all;
	text-transform: uppercase;
	z-index: 2;
}

.home-image {
	pointer-events: all;
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-position: 50% 50%;
	background-size: auto 100%;
	transition: background-size .5s;
	cursor: pointer;
	background-repeat: no-repeat;
}

.home-image:hover {
	background-size: auto 120%;
}

.home-heading-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-heading {
	margin: 0;
	position: absolute;
	letter-spacing: 3px;
	font-size: 50px;
	font-weight: 600;
	white-space: nowrap;
	color: #ffffff;
	text-transform: uppercase;
	font-family: RobotoCondensed;
	line-height: 1;
	cursor: pointer;
}

.home-heading-bg {
	clip-path: polygon(-2% 0%, 0% 0%, 0% 100%, 0% 100%);
	-webkit-clip-path: polygon(-2% 0%, 0% 0%, 0% 100%, 0% 100%);
	color: #4d98e2;
	-webkit-text-stroke: 1px #4d98e2;
}

.home-image:hover .home-heading-bg {
	animation: home-heading-hover 0.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.home-description {
	position: absolute;
	color: #cdcdcd;
	margin-top: 100px;
	display: none;
}

/* enables homepage scrolling for for mobile devices */
.overflow-y-scroll {
	pointer-events: all;
	overflow: hidden;
	overflow-y: scroll;
}

.home-image-overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
	transition: background-color .5s;
}

.home-image:hover .home-image-overlay {
	background-color: rgba(0, 0, 0, 0);
}

/* Home end */

/* Menu */

.menu-title-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 90px;
	padding: 0 40px;
	position: relative;
}

.menu-title-bar-button {
	transition: var(--transition-all);
	color: var(--color-dark);
	cursor: pointer;
}

.menu-title-bar-button:hover {
	color: var(--color-primary);
}

.menu-title-bar .title {
	margin-left: 20px;
	font-size: 25px;
	font-weight: 600;
	text-transform: uppercase;
}

.bg-pattern {
	background-color: #ffffff;
	opacity: 0.2;
	background: repeating-linear-gradient(45deg, #838383, #838383 2px, #ffffff 2px, #ffffff 10px);
}

.stacked-menu-container {
	position: relative;
	flex-grow: 1;
}

.stack-main,
.stack-sub {
	position: absolute;
	width: 100%;
	top: 0;
	bottom: 0;
	overflow: hidden;
	overflow-y: auto;
}

.stack-main {
	z-index: 1;
}

.stack-sub {
	right: -100%;
	z-index: 2;
}

.menu-footer {
	display: flex;
	flex-direction:
		column;
	bottom: 0;
	width: 100%;
	background: var(--color-dark);
	z-index: 3;
	align-items: center;
	justify-content: center;
	color: #fff;
	padding: 15px;
	text-align: center;
}

.menu-footer .reservation-button {
	color: #fff;
	background-color: var(--color-primary);
	text-decoration: none;
	padding: 15px 45px;
	border-radius: 7px;
	overflow: hidden;
	position: relative;
}

.menu-footer .reservation-button::after {
	background: #fff;
	content: "";
	height: 155px;
	left: -90px;
	opacity: .2;
	position: absolute;
	top: -30px;
	transform: rotate(35deg);
	transition: all 700ms cubic-bezier(0.19, 1, 0.22, 1);
	width: 50px;
	z-index: 1;
}

.menu-footer .reservation-button:hover::after {
	left: 120%;
	transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

#menu {
	height: 100%;
	width: 100%;
	position: fixed;
	right: -100%;
	top: 0;
	background-color: var(--color-cyan-60);
	overflow-x: hidden;
	transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
	pointer-events: all;
}

.ui-buttons-container {
	position: absolute;
	top: var(--gui-padding);
	right: var(--gui-padding);
}

.ui-bottom-right-container {
	display: flex;
	flex-direction: column;
	position: absolute;
	bottom: calc(var(--gui-padding) + 10px);
	right: var(--gui-padding);
	top: unset;
}

.ui-map-buttons-container {
	display: flex;
	flex-direction: column;
	position: absolute;
	right: var(--gui-padding);
	bottom: var(--gui-padding);
}

.ui-top-left-cotainer {
	position: absolute;
	top: var(--gui-padding);
	left: var(--gui-padding);
}

.ui-bottom-middle-container {
	position: absolute;
	bottom: var(--gui-padding);
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.ui-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	pointer-events: all;
	color: #ffffff;
	font-size: 12px;
	text-align: center;
	cursor: pointer;
	width: 40px;
	height: 40px;
	justify-content: center;
}

.ui-button.language-switcher {
	display: block;
}

.ui-button > img {
	width: 100%;
}

.ui-button>label {
	margin-top: 5px;
	text-transform: uppercase;
	color: #fff;
}

.ui-button:not(:first-child) {
	margin-top: 20px;
}


.ui-button-round {
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}


.ui-button-round>img {
	width: 20px;
}

.ui-button-close {
	position: absolute;
	top: 0;
	right: 0;
}

.ui-map-button-show img,
.ui-map-button-close img {
	position: relative;
}

.ui-map-button-close>label {
	color: var(--color-dark);
}


.ui-map-button-close,
.ui-map-button-show {
	position: absolute;
	bottom: 0;
	right: 0;
}

#menu.open {
	right: 0;
}

#menu-content {
	position: relative;
	text-align: center;
}

#menu-content a {
	font-weight: 800;
	text-decoration: none;
	font-size: 40px;
	color: #c2c2c2;
	display: block;
	transition: 0.3s;
	line-height: 40px;
	font-family: RobotoCondensed;
	text-transform: uppercase;
}

#menu-content a:not(:last-child) {
	padding-bottom: 30px;
}

#menu-content a:hover,
#menu-content a:focus,
#menu-content a.active {
	color: #646464;
}

#menu-content a:hover:before,
#menu-content a.active:before {
	content: '\f30b';
	font-family: "Font Awesome 5 Free";
	position: absolute;
	color: #4d98e2;
	left: 70px;
	line-height: 40px;
}

.sublocation-title {
	color: #ffffff;
	font-weight: 700;
	font-size: 40px;
	line-height: 1;
	padding-bottom: 15px;
}

.sublocation-menu ul {
	list-style: none;
	padding-left: 20px;
	padding-bottom: 20px;
}

.sublocation-menu ul li a {
	color: #ffffff;
	font-size: 25px;
	font-weight: 700;
	line-height: 25px;
	cursor: pointer;
	text-decoration: none;
	position: relative;
	display: flex;
	align-items: center;
	transition: var(--transition-all);

}

.sublocation-menu ul li:not(:last-child) {
	padding-bottom: 15px;
}

.sublocation-menu ul li a:before {
	content: '\f30b';
	font-family: "Font Awesome 5 Free";
	color: #ffffff;
	position: absolute;
	opacity: 0;
	left: 0;
	transition: var(--transition-all);
}

.sublocation-menu ul li:hover a:before,
.sublocation-menu ul li.active a:before {
	opacity: 1;
}

.sublocation-menu ul li:hover a,
.sublocation-menu ul li.active a {
	padding-left: 30px;
}

.sublocation-menu ul li:hover a {}

.text-primary-1 {
	color: #4d98e2 !important;
}

#submenu-container {
	height: 100%;
	overflow-y: auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 40px;
}


#submenu-container::-webkit-scrollbar {
	width: 14px !important;
}

#submenu-container::-webkit-scrollbar-thumb {
	border-top: 45px solid rgba(0, 0, 0, 0);
	border-bottom: 5px solid rgba(0, 0, 0, 0);
	border-left: 4px solid rgba(0, 0, 0, 0);
	border-right: 5px solid rgba(0, 0, 0, 0);
	background-clip: padding-box;
	background-color: #ffffff;
	height: 70px;
}

.sublocation-menu {
	max-height: 100%;
}

/*
* Thumbs menu
*/
#thumbs-container {
	pointer-events: all;
	position: absolute;
	right: 0;
	overflow: hidden;
	overflow-y: scroll;
	padding: 20px 10px 20px 20px;
	visibility: hidden;
	opacity: 0;
	width: 440px;
	height: 100%;
	transition: all .4s;
}

#thumbs-container.open {
	visibility: visible;
	opacity: 1;
}

#thumbs-container .thumbs {
	padding-top: 40px;
}

#thumbs-container .thumb {
	cursor: pointer;
	width: 100%;
	height: 240px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: 100%;
	transition: background-size .5s;
	position: relative;
	filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.20));
}

#thumbs-container .thumb:hover {
	background-size: 110%;
}

.thumb-overlay {
	background-color: rgb(255 176 0 / 0%);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	color: #ffffff;
	transition: all .5s;
}

.thumb-overlay>i {
	font-size: 60px;
	line-height: 150px;
	opacity: 0;
	transition: all .5s;
}

#thumbs-container .thumb:hover .thumb-overlay>i {
	opacity: 1;
}

.thumb-title {
	position: absolute;
	bottom: 0;
	width: 100%;
	font-weight: 600;
	color: var(--color-dark);
	font-size: 22px;
	font-family: RobotoCondensed;
	background-color: #fff;
	padding: 10px;
	text-align: center;
}
}

#thumbs-container .thumb:hover .thumb-overlay {
	background-color: rgb(255 176 0 / 10%);
	opacity: 1;
}

#thumbs-container .thumb:not(:last-child) {
	margin-bottom: 10px;
}

#thumbs-container::-webkit-scrollbar {
	width: 15px !important;
	background-color: rgba(0, 0, 0, 0.125);
	;
}

#thumbs-container::-webkit-scrollbar-thumb {
	background-clip: padding-box;
	background-color: rgba(255, 255, 255, 0.37);
	height: 100px;
}

.thumbs-title {
	color: #ffffff;
	font-weight: 700;
	font-size: 20px;
	width: fit-content;
	margin-bottom: 10px;
}

.thumbs-title:after {
	content: "";
	width: 100%;
	height: 4px;
	display: block;
	background-color: #ffffff;
	margin-top: 5px;
}

#thumbs-container .close-button {
	position: fixed;
	margin-top: -20px;
	right: 75px;
	z-index: 1;
	float: right;
}

.thumb-checkmark {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: var(--color-primary);
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	border-radius: 50%;
	display: none;
}

.thumb.active .thumb-checkmark {
	display: block;
}

#thumbs-container .thumb-search-container {
	background-color: #fff;
	position: absolute;
	height: 40px;
	padding: 10px 10px;
	z-index: 1;
	margin-top: -20px;
	left: 0;
	right: 0;
}

#thumbs-container .thumb-search {
	border: none;
	border-bottom: 1px solid var(--color-dark);
	background-color: transparent;
	caret-color: var(--color-dark);
	color: var(--color-dark);
	width: 100%;
}

#thumbs-container .thumb-search:focus {
	outline: none;
	border-bottom: 1px solid var(--color-dark);
}

/*
* HTML viewer
*/

#details {
	height: 100%;
	width: 100%;
	position: absolute;
	right: -100%;
	top: 0;
	background-color: var(--color-cyan-60);
	overflow-x: hidden;
	transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
	pointer-events: all;
}

#details.open {
	right: 0;
}

#details .details::-webkit-scrollbar {
	width: 10px !important;
}

#details .details::-webkit-scrollbar-thumb {
	border-top: 5px solid rgba(0, 0, 0, 0);
	border-bottom: 5px solid rgba(0, 0, 0, 0);
	border-left: 3px solid rgba(0, 0, 0, 0);
	border-right: 3px solid rgba(0, 0, 0, 0);
	background-clip: padding-box;
	background-color: var(--color-primary);
	height: 70px;
}

#details .close-button {
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--color-cyan);
	z-index: 2;
}

#details p,
#details h1,
#details h2,
#details h3,
#details h4,
#details h5,
#details h6 {
	cursor: text;
}

#details h1,
#details h2,
#details h3,
#details h4,
#details h5,
#details h6 {
	color: var(--color-darkred);
	margin-bottom: 1rem;
}

#details .details img {
	margin-bottom: 1rem;
}

#details .accordion-button {
	text-decoration: none;
}

#details .accordion-button:hover {
	color: var(--color-dark);
}

#details .accordion-button:not(.collapsed) {
	background-color: #2059b4;
	color: #ffffff;
}

#details .accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#details .content {
	position: relative;
}

#details .text-content {
	padding: 50px 30px;
	font-size: 16px;
}

#details .text-content p {
	text-align: justify;
}

#details .carousel {
	width: 100%;
}

#details .carousel .item {
	width: 100%;
	height: 400px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: contain;
	cursor: pointer;
}

.owl-dots {
	position: absolute;
	left: 50%;
	bottom: 5%;
	transform: translateX(-50%);
	line-height: 0;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
	backdrop-filter: blur(50px);
	background-color: var(--color-cyan-60);
	padding: 5px 20px !important;
	font-size: 30px;
	color: #fff;
}

.owl-theme .owl-nav {
	display: flex;
	justify-content: space-between;
	width: 100%;
	bottom: 5%;
	position: absolute;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
	color: #FFF;
	cursor: pointer;
}

.owl-theme .owl-nav .disabled {
	opacity: 0.5;
	cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 10px;
}

.owl-theme .owl-dots {
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
	*display: inline;
}

.owl-theme .owl-dots .owl-dot:not(:first-child) {
	margin-left: 20px
}

.owl-theme .owl-dots .owl-dot span {
	padding: 10px;
	background: var(--color-cyan-60);
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity 200ms ease;
	border-radius: 50%;
	position: relative;
}

.owl-theme .owl-dots .owl-dot span::after {
	content: "";
	position: absolute;
	width: 3px;
	height: 3px;
	background-color: #fff;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: var(--color-cyan);
}

/* End HTML viewer*/

/* Accordion menu */
#menu .accordion-button {
	text-decoration: none;
	cursor: pointer;
	transition: var(--transition-all);
	font-size: 25px;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--color-dark);
}

#menu .accordion-button:hover {
	color: #fff;
	background-color: var(--color-primary);
}

#menu .accordion-button:not(.collapsed),
#menu .accordion-button.active {
	background-color: var(--color-primary);
	color: #ffffff;
}

#menu .accordion-button::after {
	background-image: none;
}

#menu .back-button {
	display: none;
}

#menu .accordion-item {
	border-left: none;
	border-right: none;
}

#menu .accordion-item:first-of-type .accordion-button {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

#menu .accordion-button:focus {
	outline: none;
	box-shadow: none;
}

/* End accordion menu */

/* Powered by */

#powered-by {
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 13px;
	background-color: #000000;
	border-radius: 4px 0 0 0;
	pointer-events: all;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
	padding: 1px 5px;
}

#powered-by a {
	color: #fff;
	text-decoration: none;
	transition: all .25s;
}

#powered-by a:hover {
	color: #d5d5d5;
}

/* End powered by */

/* Hotspot */

.hotspot-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.hotspot {
	position: absolute;
	width: 115px;
	height: 115px;
	text-align: center;
	line-height: 115px;
	color: #ffffff;
	background-color: #5493d0;
	border-radius: 50%;
	transition: all .5s ease-in-out;
}

.hotspot img {
	width: 75px;
}

.hotspot-container:hover .hotspot {
	transform: scale(1.2);
}

.hotspot-infobox {
	position: absolute;
	bottom: 115px;
	background-color: #ffffff;
	width: 500px;
	display: none;
	opacity: 0;
	transition: opacity .5s;
}

.hotspot-container:hover .hotspot-infobox {
	display: block;
	opacity: 1;
}

.infobox-title {
	font-size: 40px;
	background-color: #2059b4;
	color: #ffffff;
	width: 100%;
	padding: 10px 25px;
}

.infobox-thumb {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	width: 100%;
	height: 250px;
	background-size: cover;
}

.hotspot-circle {
	position: absolute;
	width: 25px;
	height: 25px;
	background-size: cover;
	background-position: 50% 50%;
	border-radius: 50%;
	opacity: 0;
	transition: var(--transition-all);
}

.hotspot-container.active .hotspot-circle {
	width: 100px;
	height: 100px;
	-webkit-box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.5), inset 0px 0px 0px 4px var(--color-primary);
	-moz-box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.5), inset 0px 0px 0px 4px var(--color-primary);
	box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.5), inset 0px 0px 0px 4px var(--color-primary);
	opacity: 1;
}

.hotspot-ring {
	position: absolute;
	width: 25px;
	height: 25px;
	background-color: var(--color-primary);
	-webkit-box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.5);
	-moz-box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.5);
	box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	transition: var(--transition-all);
}

.hotspot-ring .hotspot-ring-center {
	position: absolute;
	width: 8px;
	height: 8px;
	background-color: #fff;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transition: var(--transition-all);
	transform: translate(-50%, -50%);
}

.hotspot-container.active .hotspot-ring {
	width: 100px;
	height: 100px;
	background-color: transparent;
	opacity: 0;
}

.hotspot-container.active .hotspot-ring .hotspot-ring-center {
	opacity: 0;
}

.hotspot-title {
	font-size: 20px;
	text-align: center;
	position: absolute;
	width: 300px;
	top: calc((60px/2) + 30px);
	color: #ffffff;
	font-weight: bold;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s, opacity .3s;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, .3);
}

.hotspot-container.active .hotspot-title {
	visibility: visible;
	opacity: 1;
}

/*
* Download app
*/

#download-app {
	display: flex;
	align-items: center;
	padding: 10px;
	background: var(--color-primary-opaque);
	pointer-events: all;
	position: absolute;
	bottom: 30px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
	color: #fff;
}

#download-app a {
	text-decoration: none;
	color: inherit;
}

#download-app .app-img {
	width: auto;
	margin-right: 10px;
	height: 50px;
}

#download-app i {
	margin-left: 10px;
	cursor: pointer;
}

/*
* Colors
*/


/*
* Responsive breakpoints descending portrait
*/

/* Extra small devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap */

/* Extra large devices (large desktops, 1200px and down) */
@media (max-width: 1200px) and (orientation:portrait) {}

/* Large devices (desktops, 992px and down) */
@media (max-width: 992px) and (orientation:portrait) {
	.home-text {
		font-size: 35px;
		max-width: 100%;
		bottom: calc(var(--gui-padding) + 70px)
	}

	.home-button {
		bottom: var(--gui-padding);
		left: var(--gui-padding);
		right: unset;
	}
}

/* Medium devices (portrait tablets, 768px and down) */
@media (max-width: 768px) and (orientation:portrait) {
	.home-video {
		min-width: 100%;
		height: 100%;
	}

	.home-text {
		font-size: 35px;
		max-width: 100%;
		bottom: calc(var(--gui-padding) + 70px)
	}

	.home-button {
		bottom: var(--gui-padding);
		left: var(--gui-padding);
		right: var(--gui-padding);
		font-size: 15px;
	}

	.home-image {
		height: 440px;
	}

	.home-logo {
		width: 40%;
	}

	#menu-content a:hover:before,
	#menu-content a.active:before {
		left: 10px;
		line-height: 30px;
	}
}

/* Small devices (portrait phones, 576px and down) */
@media (max-width: 576px) and (orientation:portrait) {
	.home-image {
		height: 235px;
	}

	.sublocation-title {
		font-size: 25px;
	}

	#menu-content a {
		font-size: 30px;
		line-height: 30px;
	}

	#menu-content {
		margin-top: 0;
		padding: 30px 0;
	}

	.information-panel {
		max-width: unset;
		right: 80px;
	}

	.home-heading {
		font-size: 38px;
	}

	.logo-container img {
		max-height: 100px;
	}

	#thumbs-container {
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		max-height: 100%;
		width: 100%;
	}

	#thumbs-container .close-button {
		right: 0;
	}

	#thumbs-container .thumb-search-container {
		left: 0;
		width: calc(100% - 40px);
	}

	#thumbs-container .thumb {
		height: 200px;
	}

	#details h1 {
		width: 90%;
	}

	.sublocation-men u {
		height: fit-content;
		overflow-y: unset;
	}

	.information-panel .title {
		font-size: 25px;
	}

	.ui-button>img {
		max-width: 50px;
	}

	.home-intro {
		width: 90%;
	}

	.menu-title-bar .title {
		font-size: 20px;
	}

	.menu-title-bar {
		padding: 15px 25px;
	}
}


/*
* Responsive breakpoints descending landscape
*/

/* Extra small devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap */

/* Extra large devices (large landscape desktops, 1200px and down) */
@media (max-width: 1200px) and (orientation: landscape) {}

/* Large devices (landscape desktops, 992px and down) */
@media (max-width: 992px) and (orientation: landscape) {}

/* Medium devices (landscape tablets, 768px and down) */
@media (max-width: 768px) and (orientation: landscape) {}

/* Small devices (landscape phones, 576px and down) */
@media (max-height: 576px) and (orientation: landscape) {
	.home-image {
		height: 460px;
	}

	.home-text {
		max-width: 100%;
		font-size: 25px;
		bottom: calc(var(--gui-padding) + 50px)
	}

	.home-button {
		left: var(--gui-padding);
		right: var(--gui-padding);
		bottom: var(--gui-padding);
		font-size: 15px;
		padding: 10px 15px;
	}

	.logo-container img {
		max-height: 100px;
	}

	.information-panel {
		max-width: 70%;
	}

	#thumbs-container {
		max-height: 90%;
	}

	#menu-content {
		margin-top: 0;
		padding: 40px 0;
	}
}

/*
* Responsive breakpoints ascending
*/

/* Small devices (landscape phones, 576px and down) */
@media (min-width: 576px) {
	.h-sm-100 {
		height: 100% !important;
	}
}

/* Medium devices (tablets, 768px and down) */
@media (min-width: 768px) {
	.h-md-100 {
		height: 100% !important;
	}
}

/* Large devices (desktops, 992px and down) */
@media (min-width: 992px) {
	.h-lg-100 {
		height: 100% !important;
	}
}

/* Extra large devices (large desktops, 1200px and down) */
@media (min-width: 1200px) {
	.h-xl-100 {
		height: 100% !important;
	}
}


@keyframes home-heading-hover {
	0% {
		clip-path: polygon(-2% 0%, 0% 0%, 0% 100%, 0% 100%);
		-webkit-clip-path: polygon(-2% 0%, 0% 0%, 0% 100%, 0% 100%);
	}

	100% {
		clip-path: polygon(-2% 0%, 100% 0%, 100% 100%, 0% 100%);
		-webkit-clip-path: polygon(-2% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
}