/* Popup */
.popupContainer{
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.popupBg{
    background-position: center !important;
    background-size: cover !important;
    background-color: var(--colorBlue) !important;
    opacity: 0.5;
}
.hsText{
    margin-bottom:1em;
    white-space: normal;
}
.hsTitle{
    font-family: var(--fontSpecial);
    text-transform: uppercase;
    margin: 0.5rem 20px;
    font-size: 1.5em;
    font-weight: 500;
}
.popupText{
	max-height: 90% !important;
	overflow-y: auto !important;
	background-color: var(--colorBlue) !important;
    box-shadow: 0 0 0 1px #ffffff40, 0 0 50px #00000080;
}
.popupVideo{
	background-image: url(../skin-images/spinner.svg);
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: 0 0 0 1px #ffffff40, 0 0 50px #00000080;
}
.hsDescription{
	white-space: pre-line !important;
	margin: 0 20px;
}
.hsDescription p{
    margin: 0;
}
.hsLink{
	margin-top: -1rem;
}
.hsLink a{
	color:#fff;
	display: inline-block;
    padding: 0.5rem 1rem;
    text-decoration: none;
}
.popupText .owl-carousel{
	width:720px !important;
    background-image: url(loader.svg);
    background-position: center;
    background-repeat: no-repeat;
}
@media only screen and (max-width: 800px),  (max-height: 600px){
	.popupText{
		width: 100% !important;
        height: 100% !important;
		max-height:100% !important;
        left: 0 !important;
        top: 0 !important;
        transform: none !important;
	}
	.popupText .owl-carousel{
		width:100vw !important;
	}
}
@media (max-width: 600px), (max-height: 600px) {
	.popupVideo{
		width: 100% !important;
		height: 100% !important;
		top:0 !important;
		left:0 !important;
	}
}

.htImage{
	background-image: url(../skin-images/spinner.svg);
	background-position: center;
	background-repeat: no-repeat;
	min-width: 100px;
	min-height: 100px;
	display: block;
	margin:0 auto;
}
.htImage img{
	width: 100%;
}


/* Popup */

/* Carousel */
*{
    --nextIcon:url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.5702 11.5997L8.97021 6.99973L10.024 5.94598L15.6777 11.5997L10.024 17.2535L8.97021 16.1997L13.5702 11.5997Z" fill="%23194E80"/></svg>');
    --nextIconWhite:url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.5702 11.5997L8.97021 6.99973L10.024 5.94598L15.6777 11.5997L10.024 17.2535L8.97021 16.1997L13.5702 11.5997Z" fill="%23194E80"/></svg>');
    --prevIcon:url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.0777 11.5998L15.6777 16.1998L14.624 17.2535L8.97023 11.5998L14.624 5.94604L15.6777 6.99979L11.0777 11.5998Z" fill="%23194E80"/></svg>');
    --prevIconWhite:url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.0777 11.5998L15.6777 16.1998L14.624 17.2535L8.97023 11.5998L14.624 5.94604L15.6777 6.99979L11.0777 11.5998Z" fill="%23194E80"/></svg>');
}
.owl-carousel{
    min-height: 80px;
    background-image: url(loader.svg);
    background-position: center;
    background-repeat: no-repeat;
}
.owl-carousel .owl-item img {
	height: auto;
}
.owl-nav{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}
.owl-nav button{
    position: relative;
    pointer-events: all;
	cursor: pointer;
	background-color: var(--colorButtonNormal) !important;
	transition: var(--buttonTransition) !important;
	border: none !important;
	box-shadow: 0 0 0 1px #ffffff80;
	height:40px !important;
	width:40px !important;
    margin: 0 0.5rem;
    background-image: var(--nextIcon) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 22px;
    border-radius: 5px;
}
.owl-nav button.owl-prev{
    background-image: var(--prevIcon) !important;
}
.owl-nav button span{
    display: none !important;
}

body.desktop .owl-nav button:hover{
	background-color:var(--colorButtonHover) !important;
	box-shadow: 0 0 0 3px #ffffff40;
}
body.desktop .owl-nav button.owl-next:hover{
    background-image: var(--nextIconWhite) !important;
}
body.desktop .owl-nav button.owl-prev:hover{
    background-image: var(--prevIconWhite) !important;
}

.owl-dots{
    position: absolute;
    width: 100%;
    top:7px;
    display: flex;
    justify-content: center;
}
.owl-dots .owl-dot{
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 0 3px;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #00000040;
    transition: var(--buttonTransition);
}

body.desktop .owl-dots .owl-dot:hover{
    background-color: var(--colorButtonHover);
    box-shadow: 0 0 0 3px #ffffff40;
}

.owl-dots .owl-dot.active{
    background-color: var(--colorButtonHover);
}
/* Carousel */



/* Wordpress Hotspots */
.hotspotWp{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #00000080;
    position: absolute;
    border: solid 1px red;
    transform: translate(-50%, -50%);
}
/* Wordpress Hotspots */