:root {
  --color-primary: #D5701F;
  --color-primary-opaque: rgb(214 113 31 / 70%);
  --color-dark: #212529;
  --gui-padding: 40px;
  --transition-all: all .3s;
}

html {
	height: 100%;
}

body {
	font-family: 'Bitter',serif;
	height: 100%;
	padding: 0;
	margin: 0;
	image-rendering: -webkit-optimize-contrast;
}

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

button {
	position: relative;
	font-family: 'Bitter',serif;
    border: none;
    background-color: transparent;
    color: #ffffff;
    font-weight: 900;
    font-size: 20px;
    padding: 0;
	pointer-events: all;
}

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

#insys_gui_container::before {
    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;
}

#insys_gui_container::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;
}

/* 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 */

.language-switcher {
	position: absolute;
	top: 20px;
	left: 20px;
}

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

.language-switcher .language-list li,
.current-language {
	font-weight: 600;
	display: block;
	color: #2059b4;
	cursor: pointer;
	pointer-events: all;
	width: 46px;
	height: 46px;
	line-height: 46px;
	text-align: center;
	transition: var(--transition-all);
	border-radius: 50%;
	background-color: #ffffff;
}

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

.language-switcher .language-list li:hover {
	background-color: #2059b4;
	color: #ffffff;
}

.current-language {
	font-weight: 600;
	background-color: var(--color-primary);
	color: #ffffff;
}

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

/* End language switcher */

/* Logo */

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

.logo-container a {
  display: inline-block;
  max-width: 140px;
}

.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;
}

.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: 50px;
	width: fit-content;
	text-transform: uppercase;
}

.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 p {
	font-weight: 600;
}

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

/* Information panel end */

/* Home */

#home::before {
    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 {
	position: absolute;
    pointer-events: all;
	width: 240px;
    top: var(--gui-padding);
    left: var(--gui-padding);
	z-index: 2;
}

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

.home-text {
	position: absolute;
    pointer-events: all;
    bottom: var(--gui-padding);
    left: var(--gui-padding);
    right: var(--gui-padding);
    z-index: 1;
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    max-width: 50%;
	text-transform: uppercase;
	z-index: 2;
}

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

.button:hover {
 color: #fff;
}

.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;
}

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

.home-button {
	position: absolute;
	pointer-events: all;
    bottom: var(--gui-padding);
    right: var(--gui-padding);
	font-size: 20px;
    z-index: 2;
	text-transform: uppercase;
}

.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-left: 40px;
	padding-right: 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 );
}

.stack-main,
.stack-sub {
    position: absolute;
	width: 100%;
	height: 100%;
}

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

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

.menu-footer {
	display: flex;
	flex-direction:column;
	position: absolute;
	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 {
	pointer-events: all;
}

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

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

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

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

.ui-button > label {
  margin-top: 5px;
  text-transform: uppercase;
font-weight: 600;}

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

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

.menu-overlay {
	height: 100%;
    width: 100%;
    position: fixed;
    right: -100%;
    top: 0;
    background-color: var(--color-primary-opaque);
    overflow-x: hidden;
}

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

.menu-overlay-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-overlay-content a:not(:last-child) {
	padding-bottom: 30px;
}

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

.menu-overlay-content a:hover:before,
.menu-overlay-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: 75px;
	bottom: 20px;
	max-height: 70%;
	overflow: hidden;
	overflow-y: scroll;
	background-color: rgb(255 255 255 / 80%);
	padding: 20px 10px 20px 20px;
	display: none;
	width: 280px;
}

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

#thumbs-container .thumb {
	cursor: pointer;
	width: 100%;
	height: 150px;
	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: 15px;
	font-weight: 600;
	left: 15px;
	right: 15px;
	color: #fff;
	font-size: 22px;
	text-shadow: 0px 0px 6px #000000;
	font-family: RobotoCondensed;
}
}

#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: 14px !important;
}
 
#thumbs-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: #2059b4;
	height: 70px;
}
 
 .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: #4E98E2;
	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: #2059B4;
    position: fixed;
    height: 40px;
    right: 115px;
    padding: 10px 10px;
    width: 240px;
    z-index: 1;
	margin-top: -20px;
}

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

#thumbs-container .thumb-search:focus {
	outline: none;
	border-bottom: 1px solid #ffffff;
}
 
/*
* HTML viewer
*/
 
#details-container {
	position: absolute;
    align-items: center;
    display: flex;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 80%);
    pointer-events: all;
	z-index: 2;
 }
 
 #details-container .details {
	background-color: #ffffff;
	padding: 20px;
	pointer-events: all;
	user-select: text;
	overflow-y: scroll;
	width: 100%;
	margin-left: 10%;
	margin-right: 10%;
	height: 90%;
	height: fit-content;
	position: relative;
	max-height: 90%;
}

#details-container .details img {
	max-width: 50%;
}
 
#details-container .details::-webkit-scrollbar {		
  width: 10px !important;
}
 
#details-container .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: #2059b4;
    height: 70px;
 }
 
 #details-container .close-button {
	 position: absolute;
	 top: 0;
	 right: 0;
 }
 
 #details-container p,
 #details-container h1,
 #details-container h2,
 #details-container h3,
 #details-container h4,
 #details-container h5,
 #details-container h6 {
	 cursor: text;
 }
 
 #details-container h1,
 #details-container h2,
 #details-container h3,
 #details-container h4,
 #details-container h5,
 #details-container h6 {
	 color: #000000;
 }
 
 #details-container h1 {
	font-size: 25px;
	font-weight: 800;
	width: fit-content;
	background-color: #2059b4;
	margin-left: -20px;
	margin-top: -20px;
	margin-right: -20px;
	margin-bottom: 30px;
	color: #ffffff;
	padding: 15px 30px;
	}
 
 #details-container .details img {
	 margin-bottom: 1rem;
 }
 
 #details-container .accordion-button {
 	text-decoration: none;
 }

 #details-container .accordion-button:hover{
 	color: #000000;
 }

 #details-container .accordion-button:not(.collapsed) {
	 background-color: #2059b4;
	 color: #ffffff;
 }
 
 #details-container .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");
 }
 
 /* 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;
 }

 #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: #D5701F;
	-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-overlay-content a:hover:before,
	.menu-overlay-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-overlay-content a {
		font-size: 30px;
		line-height: 30px;
	}
	.menu-overlay-content {
		margin-top: 0;
		padding: 30px 0;
	}
	.information-panel {
		max-width: unset;
		right: 140px;
	}
	.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-container .details {
		margin-left: 0;
		margin-right: 0;
		max-height: 100%;
		height: 100%;
	}
	#details-container h1 {
		width: 90%;
	}
	.sublocation-men u{
		height: fit-content;
		overflow-y: unset;
	}
	.information-panel .title {
		font-size: 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-overlay-content {
			margin-top: 0;
			padding: 40px 0;
		}
		#details-container .details {
			margin-left: 0;
			margin-right: 0;
			height: 100%;
			max-height: 100%;
		}
}

/*
* 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%); 
	}
}

@font-face {
  font-family: RobotoCondensed;
  src: url(fonts/RobotoCondensed-Bold.ttf);
}

@font-face {
  font-family: HKGrotesk;
  src: url(fonts/hk-grotesk.regular.ttf);
}

@font-face {
  font-family: HKGroteskBold;
  src: url(fonts/hk-grotesk.bold.ttf);
}