*{
    --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="%23000000"/></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="%23ffffff"/></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="%23000000"/></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="%23ffffff"/></svg>');
}
.htHovered{
    z-index: 1 !important;
}
.ht_aerialThumb > img{
    box-shadow: 0 0 0 3px var(--colorButtonHover);
}
.ht_aerialTitle{
    width:auto !important;
    display: flex;
    align-items: center;
    border-radius: 0 60px 60px 0;
    padding: 0 10px 0 40px;
    box-shadow: 0 0 0 3px var(--colorButtonHover);
}
.ht_aerialTitle > div{
    position: relative !important;
    transform: none !important;
    top:0 !important;
}
.ht_nodeContainer{
    transition: box-shadow 0.3s ease !important;
}
.ht_nodeContainer.hovered{
    box-shadow: 0 0 0 4px rgba(255,255,255,0.3);
}


.popupBg{
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.popupText{
    background-color: #fff;
    max-height: 90%;
    width:min(100%, 960px) !important;
    overflow-y: auto !important;
    top: 50% !important;
    left:50% !important;
    transform: translate(-50%, -50%) !important;
    padding: 3rem;
    box-sizing: border-box;
    box-shadow: 3px 3px 30px #00000040;
}
.popupText > div{
    white-space: normal !important;
}
.popupText .h2{
    color: #313339 !important;
    font-weight: bold !important;
    font-size: 1.8em !important;
    margin: 0 0 0.5em 0 !important;
}
.popupText > div img{
    margin: 0 auto;
    display: block;
    max-width: 100%;
}










/* //////////////////////////////////////// */
.htAnimatedCircle {
    pointer-events: none;
    background-color: #ffFFFF;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-name: bgCircleSize;
    transform-origin: center center;
    animation-timing-function: ease-out;
}

@keyframes bgCircleSize {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    25% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}



/* Carousel */
.owl-carousel{
    margin-top:1rem;
    min-height: 80px;
    background-image: url(loader-black.svg);
    background-position: center;
    background-repeat: no-repeat;
}
.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: #ffffff40 !important;
	transition: var(--buttonTransition) !important;
	border: none !important;
	box-shadow: 0 0 0 1px #ffffff80;
    border-radius: 50%;
	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;
}
.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 */