.blackBackground {
    background: rgba(0,0,0,0.6);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	z-index:-1;
}

html.popupOpened, html.popupOpened body, html.popupOpened .menuArea {
	overflow: hidden;
	/*
	position: relative;
    height: 100%;
 */
}

.popup {
	background: rgba(0,0,0,0.7);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;	
	display:none;
	z-index:1000;
	color:var(--primary-color-light);
	overflow: auto;
}

.popup .closePopup, .closeAudioPopup, #errorDiv .btnError {
	margin: 0 !important;
	background: none;
	font-weight: normal;
	height: 50px;
	width: 50px;
}
.popup .closePopup:hover, .popup .closePopup:focus, .closeAudioPopup:hover, .closeAudioPopup:focus, #errorDiv .btnError:hover {
    background-color: transparent;
}
.popup .closePopup:after, .closeAudioPopup:after, #errorDiv .btnError:after {
	margin: 0 !important;
	font-family: "Font Awesome 5 Free";
	font-size: 25px;
	line-height: 50px;
	content: "\f00d";
	color: var(--primary-color);
    font-weight: bold;
}
.popup .closePopup:hover:after, #errorDiv .btnError:hover:after {
	color: var(--primary-color-light);
}
.popup .popupHeader .closePopup {
	position: absolute;
    top: 0;
    right: 0;
	height: 50px;
}
.popupBackground {
    background: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	z-index: -1;    
/*    backdrop-filter: blur(0px);
    transition: 1s all;*/
}

#popupHotspot[style*="display: block"] .popupBackground {
    /*backdrop-filter: blur(8px);*/    
}

#popupLoading {
	z-index: 9999;
}
#popupLoadingContainer {
    color: var(--primary-color-light);
	position: absolute;
	top:50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	text-align: center;
    font-size: 30px;
}

#popupLoadingText {
	position: absolute;
	left: 0;
	right: 0;
	line-height: 50px;
	font-size: 20px;
}

.popupInner {
	position: relative;
	background: #333;
    border: 1px solid var(--primary-color-light);
	color: var(--primary-color-light);
	z-index:2;
	margin-top: 5%;
	margin-bottom: 5%;
}

.popupHeader {
	background-color: var(--primary-color-light);    
    color: #333;
    margin: 0;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
	position: relative;
	margin-left: -12px;
    margin-right: -12px;
}
.popupTitle {    
    display: inline-block;
    position: relative;
}

.popupContainer {
	padding: 20px;
}

.popupRow {
	min-width: 100%;
	margin-top:25px;
}

.popup .btnLine {
	text-align: center;
	padding-bottom: 20px;
}

.dialogText {
	margin: 0 0 20px 0;
}

#popupIframe .container, #popupIframe .row {
	height: 100%;
}

#popupIframe .popupHeader {
	position: absolute;
	top: -50px;
	left: 0;
	right: 0;
	text-align: center;
	background: none;
	color: var(--primary-color-light);
}

#popup_link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.popup .closePopup {
	position: absolute;
	top: 0;
	right: -50px;
}


#hotspotContent {
	padding-bottom: 15px;
}

.button_short, .button_long {
	cursor: pointer;
	margin-right: 5px;
	display: inline-flex;
	align-items: center;
}
.button_text {
	float: left;
}
.button_short .icon, .button_long .icon {
	width: 30px;
	height: 30px;
	background: no-repeat center/contain;
	display: inline-block;
	margin: 5px 0;
}
.button_long .icon {
	margin-right: 10px;
	float: left;
}

.button1_short, .button1_long, .button2_short, .button2_long {
	background-color: var(--secondary-color-dark);
}

.buttonFav_short, .buttonFav_long {
	background-color: var(--secondary-color-light);
}
.buttonFav_short .icon:after, .buttonFav_long .icon:after {
	font-family: "Font Awesome 5 Free";
	content: "\f02e";	/* fa-bookmark-o	--- empty center	*/
	font-size: 16px;
	line-height: 30px;
	display: block;    
}
#interaction_buttons {
    text-align: center !important;
    margin: 48px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bookmarked .buttonFav_short .icon:after, .bookmarked .buttonFav_long .icon:after {
	content: "\f02e";	/* fa-bookmark		--- full center		*/
    font-weight: 900;
}
.iconButton {
    margin-right: 6px;    
    margin-bottom: 1px;
}
.miniButtonDiv .iconButton {
    width: 30px;
    margin: 0 auto;
}
.hotspotMini .buttonFav_short .icon:after {
	content: "\f02e";
}
.hotspotMini.bookmarked .buttonFav_short .icon:after{
	content: "\f02e";
	font-weight: 900;
}

#hotspotContent .title {
	font-size: 1.5em;
	font-weight: bold;
	margin: 0;
}
#hotspotContent .subtitle_1, #hotspotContent .subtitle_2  {
	font-size: 0.9em;
}

#related_hotspots {
    margin-top: 10px;
    background: var(--secondary-color);
}

#related_hotspots .relatedTitle {
	font-size: 18px;
    margin: 20px 0 5px;
    font-weight: 600;
    padding: 0 46px;
}

#related_hotspots .image {
	width: 100%;
	height: 100px;
	background-size: contain;
	background-position: left;
	background-repeat: no-repeat;
}
.hotspotMini .image {		
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#related_hotspots .title {
	margin: 10px 0 0;
	font-size: 15px;
	line-height: 16px;
	font-size: 16px !important;
    color: var(--tertiary-color);
    text-transform: none;
}
#related_hotspots .subtitle_1, #related_hotspots .subtitle_2 {
	margin: 0;
	font-size: 14px;
	color: var(--primary-color) !important;
}
#related_hotspots .subtitle_1 {
    margin-top: 10px;
}

#related_hotspots .btn {
	margin-top: 10px;
}

#popupHotspot .hotspotMini {    
    padding: 42px 46px;
}

.hotspotMini .title {
    font-weight: bold;
}

@media only screen and (max-width: 575px) {
	#related_hotspots .relatedTitle, #popupHotspot .hotspotMini {    
		padding: 10px;
	}
}

#bookmarksContainer {
	max-height: 500px;
	margin: 50px;
	overflow-y: auto;
	overflow-x: hidden;
}
#popupBookmarks .popupInner {
    padding: 0px;
}
.isMobile #bookmarksContainer {
    margin: 20px;
}

#emptyBookmarkDiv {
    padding: 50px;
}
.bookmarkDiv i {
    vertical-align: middle;
}
.bookmarked .bookmarkDiv {
	display: block;
}
.addFavText, .bookmarked .removeFavText {
	display: inline-block;
}
.removeFavText, .bookmarked .addFavText {
	display: none;
}
.favsButtons div {
    display: block;
    float: right;
    clear: both;
    margin-bottom: 5px;
    width: 46px;
    height: 46px;
    padding: 6px 5px 5px 5px;
    line-height: 40px;
    border: 1px solid var(--tertiary-color);
    border-radius: 50%;
}
.favsButtons div i {
    font-size: 1.5em;
}
.hotspotMini.bookmarked .bookmarkDiv {
	display: block;
}
.bookmarkTitle {
    margin-top: 50px;
    margin-left: 50px;
    text-transform: uppercase;
    font-weight: bold;
}

#sendBookmarkEmail {
    margin-top: 20px;    
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
}
.sendEmailDiv {
    text-align: center;
}
#bookmarkSendEmail {
    background: var(--primary-color);
    color: var(--secondary-color);
}
#bookmarkEmailButton {
    text-align: center;
	margin-bottom: 20px;
}
#popupAudio {
	top: inherit;
	bottom: 12px;
	background: none;
}
#popupAudio .popupInner {
	margin-bottom: 0;
	margin-top: 0;
	border: none;
	background: rgba(0,0,0,0.7);
}
#popupAudio .closeAudioPopup {
    position: absolute;
    top: 0;
    right: 0px;
}
#popupAudio .audioLabel {
    width: 100%;
    text-align: center;
}
#popupAudio .audioLabel * {
    display: block;
    margin: 5px auto;
}
#popupRoom .popupInner {
    min-height: 400px;    
    background: transparent;
    color: var(--primary-color);
}
#roomDescription {
    padding: 40px;
}
#roomNumber {
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 30px;
    line-height: 40px;
    background: var(--tertiary-color);
    color: var(--primary-color-light);
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
#roomTitle {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
}
/*Popup Dialog*/

#popupDialog .popupHeader {
    background-color: var(--secondary-color-light);
    color: var(--primary-color-light);
}
#popupDialog .popupInner {
    background-color: var(--primary-color-light);
    color: var(--secondary-color-dark);
}
#popupDialog .btn {
    color: var(--primary-color-light);
    background-color: var(--secondary-color-dark);
}
#popupDialog .btn:hover, #popupDialog .btn:focus  {
    color: var(--secondary-color-dark);
    background-color: var(--secondary-color);
}

/*Bookmarks*/
#bookmarks i {
    margin: 0 10px 0 0px;
}
.inner {
    margin-left: -30px;
}
#bookmarks {
    margin: 0 0 15px 0;    
}
#bookmarks, #deleteAccount {
    cursor: pointer;    
}
#bookmarks:hover, #bookmarks:focus, #deleteAccount:hover, #deleteAccount:focus {
    text-decoration: underline;
}
#bookmarksContainer {
    margin: 0;
}
#bookmarksContainer .hotspotMini {
    display: flex;
    align-items: center;
	padding: 40px 100px;
}

@media only screen and (max-width: 575px) {
	#popupBookmarks .hotspotMini {    
		padding: 30px;
	}
}

#bookmarksContainer .title {
   text-transform: uppercase;
   margin-bottom: 5px;
}
#bookmarksContainer .hotspotMini .subtitle_1,#bookmarksContainer .hotspotMini .subtitle_2 {    
    margin: 0;
    line-height: 18px;
    color: var(--tertiary-color);
}
.bookmarkDiv {
    position: absolute;
    margin-top: 0px;
    font-size: 1.5em;
    color: var(--secondary-color-light);
    display: none;
    background: radial-gradient(#799EDC, #ED001D) !important;
    width: 46px;
    text-align: center;
    color: white;
    height: 56px;
    border-radius: 0 0 25px 25px;
    border: 1px solid var(--tertiary-color);    
}
.hotspotMini .bookmarkDiv {
    display: none;
    height: 30px;
    width: 25px;
    margin-top: 35px;
}
.hotspotMini .bookmarkDiv i {
    font-size: 0.5em;   
    margin-bottom: 10px;
    position: relative;
}
#popupBookmarks {
    z-index: 99 !important;
}
#popupBookmarks .hotspotMini.row:nth-child(even) {
    background-color: var(--secondary-color);
}
#popupBookmarks .bookmarkTitle {
    margin-top: 32px;
    margin-left: 47px;   
    font-size: 25px;
    font-weight: 600;
}
/*Popup Info*/
#popupInfo, #popupRoom {
	align-items: center;   
	background: rgba(0,0,0,0.9);
}
#popupInfo.popup[style*='display: block'], #popupRoom.popup[style*='display: block'] {
    display: flex !important;
}
#popupInfo ul {
	margin: 20px 0;
	list-style: none;
	padding: 0;
}
#popupInfo li {
	min-height: 50px;
	display: flex;
	align-items: center;
}
#popupInfo .icon, #popupInfo .radarMoveTo {
	float: left;
	transform: none;
	margin: 10px;
	position: static;
	cursor: default;
}
#popupInfo .icon {
	background: no-repeat center/contain;
	width: 30px;
	height: 30px;
}
#popupInfo .mouse_left {
	background-image: url(../images/icons/ico_mouse-left.svg);
}
#popupInfo .mouse_wheel {
	background-image: url(../images/icons/ico_mouse-wheel.svg);
}
#popupInfo .popupInner {    
    background: none;
    margin-top: 0;
    margin-bottom: 0;
    padding: 40px 0;
}
/*
#popupInfo .closePopup, #popupRoom .closePopup {
    position: fixed;
    top: 20px;
    right: 20px;
}
*/

#popupNavigation {
	align-items: center;   
	background: rgba(0,0,0,0.9);
}
#popupNavigation.popup[style*='display: block']{
    display: flex !important;
}
#popupNavigation .popupInner {    
    background: none;
    margin-top: 0;
    margin-bottom: 0;
    padding: 40px 0;
}