/* Popup */
.popupContainer{
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.popupBg{
    background-color: #000000  !important;
    opacity: 0.5;
}
.popupText > div {
    white-space: normal !important;
}
.hsText{
    margin-bottom:1em;
    white-space: normal;
}
.hsTitle{
    text-transform: uppercase;
    margin: 0.5rem 0;
    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(loader.svg);
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: 0 0 0 1px #ffffff40, 0 0 50px #00000080;
}
.hsDescription{
	white-space: normal !important;
	margin: 0;
}
.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;
	}
    .hsTitle{
		margin: 0.5rem 1rem !important;
	}
	.hsDescription{
		margin: 0 1rem !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(loader.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 */

.owl-carousel{
    min-height: 80px;
    background-image: url(loader.svg);
    background-color: black;
    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{
    margin:0.5rem;
}

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