@font-face {
    font-family: "Cambridge Serial Bold";
    src: url("fonts/Cambridge-Serial-Bold.woff2") format("woff2"), url("fonts/Cambridge-Serial-Bold.woff") format("woff");
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Brown";
    src: url("fonts/Brown-Regular.eot");
    src: url("fonts/Brown-Regular.woff2") format("woff2"), url("fonts/Brown-Regular.woff") format("woff");
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Brown";
    src: url("fonts/Brown-Bold.eot");
    src: url("fonts/Brown-Bold.woff2") format("woff2"), url("fonts/Brown-Bold.woff") format("woff");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "osttirol";
    src: url("fonts/osttirol.eot?7294932");
    src: url("fonts/osttirol.eot?7294932#iefix") format("embedded-opentype"), url("fonts/osttirol.woff2?7294932") format("woff2"), url("fonts/osttirol.woff?7294932") format("woff"), url("fonts/osttirol.ttf?7294932") format("truetype"), url("fonts/osttirol.svg?7294932#osttirol") format("svg");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}
*, *::after, *::before {
    box-sizing: border-box;
    outline: none;
}
html, body {
    height: 100%;
}
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
html #videoheaderElement {
    font-size: 20px !important;
}
@media only screen and (max-width: 575px) {
    html #videoheaderElement {
        font-size: 18px !important;
    }
}
@media (min-width: 1920px) {
    html #videoheaderElement {
        font-size: 20px !important;
    }
}
@media (min-width: 2560px) {
    html #videoheaderElement {
        font-size: 20px !important;
    }
}
.mainNavi-menu{
    background-color: #B51621;
}

body {
    font-family: "Brown", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #1a1919;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
}
body * {
    font-variant-ligatures: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body.nav-is-open {
    overflow: hidden;
}
strong {
    font-weight: 700;
}
.video-container ul{
    padding-left: 0;
}

#videoheaderElement .container {
    max-width: 100% !important;
}
@media only screen and (min-width: 992px) {
    #videoheaderElement .container {
        max-width: 90% !important;
    }
}
.text-left {
    text-align: left;
}
@media only screen and (min-width: 576px) {
    .text-left-S {
        text-align: left !important;
    }
}
@media only screen and (min-width: 768px) {
    .text-left-M {
        text-align: left !important;
    }
}
@media only screen and (min-width: 992px) {
    .text-left-L {
        text-align: left !important;
    }
}
.text-center {
    text-align: center;
}
@media only screen and (min-width: 576px) {
    .text-center-S {
        text-align: center !important;
    }
}
@media only screen and (min-width: 768px) {
    .text-center-M {
        text-align: center !important;
    }
}
@media only screen and (min-width: 992px) {
    .text-center-L {
        text-align: center !important;
    }
}
.text-right {
    text-align: right;
}
@media only screen and (min-width: 576px) {
    .text-right-S {
        text-align: right !important;
    }
}
@media only screen and (min-width: 768px) {
    .text-right-M {
        text-align: right !important;
    }
}
@media only screen and (min-width: 992px) {
    .text-right-L {
        text-align: right !important;
    }
}
.float-right {
    float: right;
}
/*
header {
    position: fixed;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 20;
    pointer-events: none;
}
header svg {
    height: 5rem;
    width: auto;
    margin: 2rem auto;
}
 */
.video-container {
    position: relative;
    height: 100dvh;
    width: 100vw;
    overflow: hidden;
}
.video-container:after {
    height: 4rem;
    width: 100%;
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    mix-blend-mode: multiply;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}
.video-container.--vertical:after {
    width: 4rem;
    height: 100%;
    opacity: 0.75;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.video-container .video-content-inner {
    position: absolute;
    width: 115%;
    height: 115%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    will-change: transform;
}
@media (max-width: 576px) {
    .video-container .video-content-inner {
        width: 110%!important;
    }
}
.video-container .video-content-inner:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.video-container.video-pausiert .video-content-inner:before {
    opacity: 1;
}
.video-container video {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.video-container .InspirationCalendar--quicklocation {
    position: absolute;
}
.video-container .video-tag {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    left: 20px;
    line-height: 1.5;
    max-width: 15em;
    pointer-events: auto;
    position: absolute;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2), 0 2px 3px rgba(0, 0, 0, 0.4);
    top: -1.5em;
    will-change: transform;
    z-index: 5;
}
.video-container nav.video-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    z-index: 2;
    width: auto;
    display: flex;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.video-container nav.video-nav > ul {
    display: flex;
    justify-content: space-around;
}
.video-container nav.video-nav > ul > li {
    align-items: center;
    display: flex;
    width: 100%;
    text-align: center;
    position: relative;
}
.video-container nav.video-nav > ul > li > a {
    display: block;
    font-size: 16px;
    padding: 0.75rem 0.75rem;
    width: 100%;
    color: #fff;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.video-container nav.video-nav > ul > li > a:after, .video-container nav.video-nav > ul > li > a:before {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.25);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.video-container nav.video-nav > ul > li > a:hover:after {
    height: 100%;
}
.video-container nav.video-nav > ul > li > a.active {
    color: #1a1919;
}
.video-container nav.video-nav > ul > li > a.active:before {
    height: 100%;
    background: #fff;
}
.video-container nav.video-nav > ul > li ul {
    position: absolute;
    top: 0;
    display: flex;
    left: 0;
    width: 100%;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    z-index: -1;
}
.video-container nav.video-nav > ul > li ul li {
    position: relative;
    width: 100%;
    color: rgba(0, 0, 0, 0);
}
.video-container nav.video-nav > ul > li ul li a {
    position: relative;
    display: block;
    overflow: hidden;
    color: rgba(0, 0, 0, 0);
}
.video-container nav.video-nav > ul > li ul li a span {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transform: translateY(200%);
    -moz-transform: translateY(200%);
    -ms-transform: translateY(200%);
    -o-transform: translateY(200%);
    transform: translateY(200%);
}
.video-container nav.video-nav > ul > li ul li a:after {
    content: "";
    position: absolute;
    z-index: 2;
    background: #fff;
    width: 0;
    height: 5px;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    left: 0;
}
.video-container nav.video-nav > ul > li ul li a.active:after {
    -webkit-animation: activeBalken 15s forwards linear;
    -moz-animation: activeBalken 15s forwards linear;
    animation: activeBalken 15s forwards linear;
}
@-webkit-keyframes activeBalken {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
@-moz-keyframes activeBalken {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
@keyframes activeBalken {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
.video-container nav.video-nav > ul > li ul li.has-played a:after {
    width: 100% !important;
}
.video-container nav.video-nav.--vertical {
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    flex-direction: column;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    pointer-events: none;
}
.video-container nav.video-nav.--vertical * {
    pointer-events: all;
}
.video-container nav.video-nav.--vertical > ul {
    flex-direction: column;
}
.video-container nav.video-nav.--vertical > ul > li > a:after, .video-container nav.video-nav.--vertical > ul > li > a:before {
    height: 100%;
    width: 0;
    bottom: 0;
    left: 0;
}
.video-container nav.video-nav.--vertical > ul > li > a:hover:after {
    width: 100%;
}
.video-container nav.video-nav.--vertical > ul > li > a.active:before {
    width: 100%;
}
.video-container nav.video-nav.--vertical > ul > li > a.active:after {
    -webkit-animation: activeBalkenVertical 15s forwards linear;
    -moz-animation: activeBalkenVertical 15s forwards linear;
    animation: activeBalkenVertical 15s forwards linear;
}
@-webkit-keyframes activeBalkenVertical {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}
@-moz-keyframes activeBalkenVertical {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}
@keyframes activeBalkenVertical {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}
.video-container nav.video-nav.--vertical .chapter-trigger {
    display: block;
    width: 100%;
    text-align: center;
}
.video-container nav.video-nav.--vertical .chapter-trigger.next-chapter {
    margin: 0 !important;
    padding-top: 1rem !important;
}
.video-container nav.video-nav.--vertical .chapter-trigger.prev-chapter {
    margin: 0 !important;
    padding-bottom: 1rem !important;
}
.video-container .chapter-trigger {
    color: #fff;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.video-container .chapter-trigger:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.video-container .chapter-trigger.next-chapter {
    margin-left: 1rem;
}
.video-container .chapter-trigger.prev-chapter {
    margin-right: 1rem;
}
.video-container ol {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-container ol li {
    position: absolute;
    display: block;
    z-index: 2;
    color: #fff;
    opacity: 0;
    font-size: 18px;
    max-width: 300px;
    text-align: center;
    pointer-events: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
@media (max-width: 576px) {
    .video-container ol li {
        font-size: 14px!important;
    }
}
.video-container ol li.visible {
    pointer-events: all;
    opacity: 1;
}
.video-container ol li a {
    color: #fff;
    display: block;
    padding: 0.5rem 1rem;
    text-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.85);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0);
    -webkit-transform: skew(-2deg);
    -moz-transform: skew(-2deg);
    -ms-transform: skew(-2deg);
    -o-transform: skew(-2deg);
    transform: skew(-2deg);
}
.video-container ol li a:before {
    position: absolute;
    z-index: -1;
    content: "";
    top: 0;
    display: block;
    width: 100%;
    height: 0;
    left: 0;
    background: #fff;
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    transition: height 0.3s;
}
.video-container ol li a:after {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 1.5rem;
    content: "→";
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    -moz-transition: opacity 0.3s, -moz-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
}
.video-container ol li a u {
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
}
.video-container ol li a span.poi-name {
    display: inline-block;
    position: relative;
    line-height: 1.2;
}
.video-container ol li a span.poi-name:before {
    content: "";
    position: absolute;
    width: calc(100% + 1.5rem);
    background: #fff;
    top: -0.5rem;
    height: 1px;
    left: 50%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.video-container ol li a span.beschreibung {
    display: block;
    font-size: 0.7em;
    font-weight: normal;
    line-height: 1.35;
    padding: 0.5rem 0 1rem;
    text-wrap: balance;
    pointer-events: none;
    overflow: hidden;
}
.video-container ol li a span.beschreibung span {
    display: block;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    will-change: transform;
    opacity: 0;
}
.video-container ol li a:hover {
    padding-bottom: 0.5rem;
}
.video-container ol li a:hover span.poi-name:before {
    width: calc(100% + 2rem);
}
.video-container ol li a:hover span.beschreibung span {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.video-container ol li a:hover:after {
    opacity: 1;
    -webkit-transform: translateY(2rem) translateX(-50%);
    -moz-transform: translateY(2rem) translateX(-50%);
    -ms-transform: translateY(2rem) translateX(-50%);
    -o-transform: translateY(2rem) translateX(-50%);
    transform: translateY(2rem) translateX(-50%);
}
.video-container ol:has(li:hover) li:not(:hover).visible {
    opacity: 0.5;
}
.video-container .video-prev-big, .video-container .video-next-big {
    position: fixed;
    z-index: 1;
    width: 50%;
    height: 100%;
    top: 0;
}
.video-container .video-prev-big {
    left: 0;
    cursor: w-resize;
}
.video-container .video-next-big {
    right: 0;
    cursor: e-resize;
}
.video-container .osttirol-map {
    position: absolute;
    right: 2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    display: block;
    width: 120px;
    height: auto;
}
@media (max-width: 576px) {
    .osttirol-map {
        width: 80px!important;
        display: none!important;
    }
}
@media (max-width: 576px) {
    .osttirol-map {
        top: 90dvh!important;
    }
}
.video-container .osttirol-map .osttirol-outline {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 7px;
}
.video-container .osttirol-map .region {
    fill: #fff;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.video-container .osttirol-map .region.active {
    opacity: 1;
}
.video-container .osttirol-map .current-location {
    color: #fff;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    text-align: left;
    display: inline-block;
    position: relative;
    padding-right: 0;
    position: absolute;
    right: 1rem;
    white-space: nowrap;
    padding-bottom: 0.15rem;
    -webkit-transform: translateY(-1.5rem);
    -moz-transform: translateY(-1.5rem);
    -ms-transform: translateY(-1.5rem);
    -o-transform: translateY(-1.5rem);
    transform: translateY(-1.5rem);
}
.video-container .osttirol-map .current-location:before, .video-container .osttirol-map .current-location:after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    background: #fff;
}
.video-container .osttirol-map .current-location:after {
    height: 1px;
    width: 100%;
}
.video-container .osttirol-map .current-location:before {
    height: 10px;
    width: 1px;
    -webkit-transform: rotate(150deg) translate(0, 1px);
    -moz-transform: rotate(150deg) translate(0, 1px);
    -ms-transform: rotate(150deg) translate(0, 1px);
    -o-transform: rotate(150deg) translate(0, 1px);
    transform: rotate(150deg) translate(0, 1px);
    -webkit-transform-origin: bottom right;
    -moz-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    -o-transform-origin: bottom right;
    transform-origin: bottom right;
}
.play-pause {
    position: absolute;
    z-index: 9999;
    background: #fff;
    top: 1rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}


@media (min-width: 769px) { /* Adjust breakpoint if needed */
    .bookinglayout-1 .booking-bar-form {
        bottom: 25px;
        background-color: #ffffff82;
    }
}

.osttirol-map #Osttirol {
    pointer-events: none;
}
.osttirol-map #Hochpustertal:hover,
.osttirol-map #NationalparkRegionHoheTauern:hover,
.osttirol-map #LienzerDolomiten:hover,
.osttirol-map #Defereggental:hover {
    fill: #b51621;
    opacity: 1;
    cursor: pointer;
}
@media (max-width: 576px){
    .hideOnMobile{
        display: none!important;
    }
}