html {
	height: 100%;
}

body {
	font-family: "Source Sans 3", sans-serif;
	height: 100%;
	padding: 0;
	margin: 0;
	image-rendering: -webkit-optimize-contrast;
}

@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);
}

:root {
	--color-primary: #ff6b35;
	--color-primary-opaque: rgb(0 0 0 / 70%);
	--color-primary-opaque-2: rgb(0 0 0 / 50%);
	--color-dark: #212529;
	--gui-padding: 30px;
	--transition-all: all .3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Source Sans 3", sans-serif;
	font-weight: 700;
}

button {
	position: relative;
	font-family: "Source Sans 3", sans-serif;
	border: none;
	background-color: transparent;
	color: #ffffff;
	font-weight: 400;
	font-size: 20px;
	padding: 0;
	pointer-events: all;
}

/* Panorama */

#pano {
	width: 100%;
	height: 100%;
}

/* Panorama end */

#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 {
	z-index: 1;
	margin-top: 10px;
}

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

.language-switcher .language-list li,
.current-language {
	float: right;
	font-weight: 700;
    display: block;
    color: #fff;
    cursor: pointer;
    pointer-events: all;
    width: 40px;
    font-size: 24px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    transition: var(--transition-all);
}

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

.current-language {
	font-weight: 700;
	color: #ffffff;
	display: none;
}

.language-switcher ul li.active {
	color: #ffffff;
	background-color: var(--color-primary);
	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: 200px;
}

.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: 18px;
}

.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: 400;
	font-size: 44px;
	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: var(--color-primary); */
/* 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 {
	color: #fff;
	font-family: "Source Sans 3", sans-serif;
	font-size: 18px;
}

.ui-bottom-container {
	position: absolute;
	bottom: var(--gui-padding);
	left: var(--gui-padding);
	right: var(--gui-padding);
	z-index: 2;
}

.ui-bottom-container * {
	pointer-events: all;
}

.home-text h1, .title-container h1 {
	text-transform: uppercase;
	font-size: 2.1rem;
}
.button {
	color: #fff;
	background-color: var(--color-primary);
	text-decoration: none;
	padding: 15px 45px;
	border-radius: 10px;
	position: relative;
	display: inline-block;
	transition: transform 0.3s ease;
}

.button::after {
	display: none;
}

.button:hover {
	color: #fff;
	transform: scale(1.05); /* лек zoom */
}

.home-button {
	font-size: 20px;
	font-weight: 700;
	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 button */

.menu-button {
	margin-top: -6px;
	flex-direction: row !important;
	align-items: center;
	width: auto !important;
	gap: 8px;
}

.menu-button img {
	margin-bottom: 0 !important;
}

.menu-button label {
	margin: 0;
}

/* Menu button end */

/* Menu */

.menu-title-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 90px;
	padding-left: 20px;
	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-weight: 400;
	text-transform: uppercase;
}

.menu-title-bar .fas, .menu-title-bar .fa {
	-webkit-text-stroke: 3px white;
}  

.home-button .fas {
	-webkit-text-stroke: 1px var(--color-primary);
}

.bg-pattern {
	background-color: #ffffff;
	opacity: 0.1;
	background-image: repeating-radial-gradient(circle at 0 0, transparent 0, #e5e5f7 10px), repeating-linear-gradient(#444cf755, #444cf7);
}

.stack-main,
.stack-sub {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	padding-bottom: 100px;
}

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

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

.menu-contacts {
	bottom: 40px;
	background-color: #fff;
	width: 100%;
	border-top: 1px solid rgba(0,0,0,.125);
	padding: 25px;
	z-index: 3;
}

.menu-contacts p {
	font-weight: 500;
	font-variant-numeric: lining-nums;
}

.menu-contacts a{
	text-decoration: none;
}

.menu-footer {
	display: flex;
	flex-direction: column;
	position: absolute;
	font-variant-numeric: lining-nums;
	bottom: 0;
	width: 100%;
	height: 40px;
	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);
}

.ui-top-right-container .reservation-button {
	color: #fff;
	background-color: var(--color-primary);
	text-decoration: none;
	padding: 10px 45px;
	border-radius: 25px;
	overflow: hidden;
	position: relative;
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	margin-right: 25px;
	width: 150px;
}

.ui-top-right-container .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;
}

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

#menu {
	pointer-events: all;
}

#menu .menu-logo {
	width: 6rem;
}

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

.ui-top-right-container {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: var(--gui-padding);
	right: var(--gui-padding);
	align-items: end;
}

.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;
	min-height: 40px;
	justify-content: center;
	font-family: "Source Sans 3", sans-serif;
}

.phone-button {
	width: 160px;
	margin-right: 15px;
	font-size: 18px;
	text-decoration: none;
}

a.phone-button:hover {
	color: #dadada;
}

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

.ui-button > label {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 26px;
	cursor: pointer;
}

.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;
	z-index: 2;
}

.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: var(--color-primary);
	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;
}

#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%;
}

.hotspot-arrow-container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	cursor: pointer;
	width: 120px;
	height: 120px;
}

.hotspot-arrow-circle {
	position: relative;
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.hotspot-arrow-icon {
	width: 40px;
	height: 40px;
	fill: var(--color-primary);
	transition: all 0.3s ease;
}

.hotspot-arrow-title {
	font-size: 18px;
	text-align: center;
	text-transform: uppercase;
	position: absolute;
	width: 250px;
	bottom: -35px;
	color: #ffffff;
	font-weight: 600;
	font-family: "Source Sans 3", sans-serif;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s, opacity 0.3s;
	text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.9);
	line-height: 1.2;
}

.hotspot-arrow-container.active .hotspot-arrow-circle {
	background: var(--color-primary);
	transform: scale(1.15);
	box-shadow: 0 6px 30px rgba(255, 107, 53, 1);
}

.hotspot-arrow-container.active .hotspot-arrow-icon {
	fill: #ffffff;
	transform: scale(1.1);
}

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

.hotspot-arrow-container:not(.active) {
	animation: arrow-float 2s ease-in-out infinite;
}

@keyframes arrow-float {
	0%, 100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-5px) scale(1.05);
	}
}

/*
  * Thumbs menu
  */
#thumbs-container {
	pointer-events: all;
	position: absolute;
	right: 75px;
	bottom: var(--gui-padding);
	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: var(--color-primary);
	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;
	height: 40px;
	background-color: var(--color-primary);
}

.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: var(--color-primary);
	position: fixed;
	height: 40px;
	right: 115px;
	padding: 7px;
	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%;
	padding-bottom: 5px;
}

#thumbs-container .thumb-search:focus {
	outline: none;
	border-bottom: 1px solid #ffffff;
}

/*
  * HTML viewer
  */

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

#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: #333;
	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;
	text-transform: uppercase;
}

#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: var(--color-primary);
	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;
	display: flex;
	flex-direction: column;
	height: 100%;
}

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

#details .text-content p {
	text-align: center;
	font-weight: 400;
	font-variant-numeric: lining-nums;
}

#details .model-viewer-container {
	width: 100%;
	height: 85%;
	background-color: #333333;
	overflow: hidden;
	margin-bottom: 20px;
}

#details .model-viewer-container model-viewer {
	width: 100%;
	height: 100%;
}

.model-thumbnail {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 120px !important;
	max-width: 120px !important;
	height: auto;
	cursor: pointer;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	transition: all 0.3s ease;
	z-index: 10;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
	will-change: transform, border-color, box-shadow;
	transform: translateZ(0);
	backface-visibility: hidden;
}

.model-thumbnail::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0);
	border-radius: 6px;
	transition: all 0.3s ease;
	pointer-events: none;
	z-index: 1;
}

.model-thumbnail:hover::before {
	background-color: rgba(0, 0, 0, 0.5);
}

.model-thumbnail::after {
	content: '🔍';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	font-size: 32px;
	opacity: 0;
	transition: all 0.3s ease;
	pointer-events: none;
	z-index: 2;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.model-thumbnail:hover::after {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

/* При hover */
.model-thumbnail:hover {
	border-color: rgba(255, 255, 255, 0.8);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
	transform: scale(1.05);
}

/* Mobile Popup */
.thumbnail-popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 9999;
	justify-content: center;
	align-items: center;
	animation: fadeIn 0.3s ease;
}

.thumbnail-popup-overlay.active {
	display: flex;
}

.thumbnail-popup-content {
	position: relative;
	max-width: 85%;
	max-height: 85vh;
	animation: zoomIn 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.thumbnail-popup-content img {
	max-width: 100%;
	max-height: 85vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
}

.thumbnail-popup-close {
	position: absolute;
	top: -40px;
	right: 0;
	font-size: 36px;
	color: #fff;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes zoomIn {
	from { 
		transform: scale(0.5);
		opacity: 0;
	}
	to { 
		transform: scale(1);
		opacity: 1;
	}
}

/* Mobile: по-малка снимка */
@media (max-width: 767px) {
	.model-thumbnail {
		width: 100px !important;
		max-width: 100px !important;
		bottom: 15px;
		right: 15px;
	}
	
	.model-thumbnail::after {
		font-size: 28px;
	}
}

.loader-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	text-align: center;
	display: block;
}

.loading-text {
	color: #fff;
	font-size: 18px;
	margin-bottom: 12px;
	font-weight: 500;
}

.progress-bar {
	width: 100%;
	height: 8px;
	background: rgba(255, 255, 255, 255.25);
	border-radius: 4px;
	overflow: hidden;
}

.update-bar {
	width: 0%;
	height: 100%;
	background: var(--color-primary);
	transition: width 0.2s linear;
}

#details .model-title {
	text-align: center;
	padding-bottom: 25px;
	font-size: 24px;
	font-weight: 600;
	margin: 0;
}

#details .reservation {
	text-align: center;
	margin: 40px auto 0px auto;
}

#details .reservation-button {
	color: #fff;
	background-color: var(--color-primary);
	text-decoration: none;
	padding: 15px 45px;
	border-radius: 7px;
	overflow: hidden;
	position: relative;
	text-transform: uppercase;
	font-weight: 400;
	font-family: "Source Sans 3", sans-serif;
}

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

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

#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-primary);
	padding: 5px 20px 10px 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-primary-opaque-2);
	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-primary);
}

/* End HTML viewer */

/* Accordion menu */

#menu .accordion {
	margin-bottom: 50px;
}

#menu .accordion-button {
	text-decoration: none;
	cursor: pointer;
	transition: var(--transition-all);
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 400;
}

#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: 18px;
	background-color: #000000;
	border-radius: 4px 0 0 0;
	pointer-events: all;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
	padding: 1px 10px;
}

#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 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: var(--color-primary);
	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: #378CE7;
	-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;
	text-transform: uppercase;
	position: absolute;
	width: 300px;
	top: calc((60px/2) + 30px);
	color: #ffffff;
	font-weight: 400;
	font-family: "Source Sans 3", sans-serif;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s, opacity .3s;
	text-shadow: 0px 0px 15px rgba(0, 0, 0, .9);
	line-height: 1.2;
}

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

/* Hotspot End */

/* Hotspot link */

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

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

.hotspot-link-container.active .hotspot-link-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-link-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-link-ring .hotspot-link-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-link-container.active .hotspot-link-ring {
	width: 100px;
	height: 100px;
	background-color: transparent;
	opacity: 0;
}

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

.hotspot-link-title {
	font-size: 20px;
	text-align: center;
	position: absolute;
	width: 300px;
	top: calc((60px/2) + 30px);
	color: #ffffff;
	font-weight: 400;
	font-family: "Source Sans 3", sans-serif;
	text-transform: uppercase;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s, opacity .3s;
	text-shadow: 0px 0px 15px rgba(0, 0, 0, .9);
}

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

.hotspot-link-container i {
	-webkit-text-stroke: 0.4px var(--color-primary);
}

/* Hotspot link end */


/* Infospot */

.infospot-container {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-all);
}

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

.infospot-circle {
	position: absolute;
	width: 44px;
	height: 44px;
	background-color: var(--color-primary);
	border-radius: 50%;
	-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);
}

.infospot-circle svg {
	width: 34px;
	height: 34px;
}

.infospot-circle-pulsing {
	position: absolute;
	width: 70px;
	height: 70px;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 50%;
	animation: pulse 1.5s ease 0s infinite normal both;
}

.infospot-container:hover .infospot-circle-pulsing {
	display: none;
}

/* 3D Model Infospot */

.infospot-3dmodel-container {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-all);
}

.infospot-3dmodel-container:hover {
	transform: scale(1.2);
}

.infospot-3dmodel-container .infospot-circle {
	background-color: #ff6b35;
}

.infospot-3dmodel-container:hover .infospot-circle-pulsing {
	display: none;
}

.infospot-3dmodel-container .infospot-circle-pulsing {
	background-color: rgba(255, 107, 53, 1);
}

.infospot-3dmodel-tooltip {
	position: absolute;
	bottom: -100px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-primary);
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 10px;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 700;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	pointer-events: none;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	z-index: 1000;
}

.infospot-3dmodel-container.active .infospot-3dmodel-tooltip {
	opacity: 1;
	visibility: visible;
	bottom: -80px;
}

/* 3D Model Infospot end */

/* Infospot end */

/* Tutorial Overlay */

#tutorial-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 9999999;
	display: none;
	pointer-events: auto;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.5s ease;
	cursor: pointer;
}

#tutorial-overlay.show {
	display: flex;
	opacity: 1;
	pointer-events: auto;
}

.tutorial-card {
	padding: 40px 60px;
	text-align: center;
	max-width: 500px;
	animation: tutorialSlideIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.tutorial-card.fade-content {
	opacity: 0.3;
}

.tutorial-icon {
	font-size: 40px;
	color: #ffffff;
	margin-bottom: 20px;
	animation: tutorialIconBounce 2s infinite;
}

.tutorial-text {
	color: #ffffff;
	font-size: 28px;
	font-weight: 500;
	line-height: 34px;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Hint за затваряне на туториала */
.tutorial-text::after {
	content: attr(data-dismiss-hint);
	display: block;
	margin-top: 20px;
	font-size: 14px;
	opacity: 0.7;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 400;
}


@keyframes tutorialSlideIn {
	0% {
		transform: scale(0.5) translateY(-100px);
		opacity: 0;
	}
	100% {
		transform: scale(1) translateY(0);
		opacity: 1;
	}
}

@keyframes tutorialIconBounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

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

/* Hide the "Detatch video" option in Opera */
#detach-button-host {
	display: none;
}

/*
* 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: 16px;
		max-width: 100%;
		bottom: calc(var(--gui-padding) + 70px)
	}
	.home-text h1, .title-container h1 {
		font-size: 1.6rem;
	}
}

/* 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: 14px;
		max-width: 100%;
		bottom: calc(var(--gui-padding) + 70px)
	}
	
	.home-text h1, .title-container h1 {
		font-size: 1.1rem;
	}

	.home-button {
		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;
	}
	
	.home-logo img {
		max-height: 100px;
	}
	
	.ui-top-right-container .reservation-button, .phone-button {
		margin-right: 10px;
	}
	.owl-dots { 
		display: none;
	}
	
	.information-panel {
		bottom: 50px;
	}
}

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

	.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: 12px;
		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%);
	}
}

@keyframes pulse {
	0% {
		opacity: 0.8;
		transform: scale(0.2);
	}

	80% {
		opacity: 0;
		transform: scale(1.2);
	}

	100% {
		opacity: 0;
		transform: scale(2.2);
	}
}