.nav-main a:active,.nav-main a:focus,.nav-main a:hover{text-decoration:none;opacity:.7}
.element-content .sitepath a:hover{color:#2f3c45;text-decoration:none}
.webcams .view-list{display:grid;grid-template-columns:1fr 1fr 1fr;grid-gap:20px}@media all and (max-width:56.25rem){.webcams .view-list{grid-template-columns:1fr 1fr}}@media all and (max-width:28.125rem){.webcams .view-list{grid-template-columns:1fr}}
/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

.view-list.view-list--2{justify-content:flex-start}
.element-webcam{display:block}.element-webcam__image-container{position:relative;display:block}.element-webcam__image-container:before{content:"";padding-top:74%;display:block}@media all and (max-width:28.125rem){.element-webcam__image-container:before{display:none}}.element-webcam__image{position:absolute;left:0;top:0;width:100%;height:100%;object-fit:cover}@media all and (max-width:28.125rem){.element-webcam__image{position:relative;height:auto}}.element-webcam__name{display:block;margin-bottom:10px}.element-webcam__description{display:block;margin-bottom:10px}
.ajax-loading{position:fixed;left:0;top:0;z-index:55;width:100%;height:100%;background-color:hsla(0,0%,0%,.3);display:none;justify-content:center;align-items:center}.ajax-loading.visible{display:flex}.ajax-loading .loading{width:40px;height:40px;background-color:var(--color-main-500);animation:sk-rotateplane 1.2s infinite ease-in-out}@keyframes sk-rotateplane{0%{transform:perspective(120px) rotateX(0) rotateY(0)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}
.teaser-menu{padding:var(--margin-l) 0}.teaser-menu__background{background:url("/img/menu-teaser-background.png") no-repeat center}.teaser-menu .ajax-container{max-width:1278px;margin:0 auto}.teaser-menu__header{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;margin:0 auto;margin-bottom:100px}@media all and (max-width:80rem){.teaser-menu__header{margin-bottom:75px}}@media all and (max-width:46.4375rem){.teaser-menu__header{margin-bottom:50px}}@media all and (max-width:46.4375rem){.teaser-menu .splide__track{margin-right:0}}.teaser-menu .splide__arrows{align-items:center;justify-content:flex-end;gap:11px}
.carousel{position:relative}@media all and (max-width:53.125rem){.carousel{padding-bottom:74px}}.carousel .splide__pagination{display:none}.carousel .splide__arrows{position:relative;display:flex}@media all and (max-width:53.125rem){.carousel .splide__arrows{position:absolute;bottom:0;left:25px}}.carousel .splide__arrow{position:static;transform:none;width:17px;height:8px;border:none;padding:0}@media all and (max-width:26.5625rem){.carousel__item{width:calc(90% - 30px)}}.carousel.is-overflow .splide__list{justify-content:left}.carousel__horizontal{display:flex;align-items:center;gap:90px}@media all and (max-width:86.875rem){.carousel__horizontal{gap:50px}}@media all and (max-width:67.375rem){.carousel__horizontal{flex-wrap:wrap}}.carousel__horizontal .teaser-menu__header{flex:1 0 585px;gap:50px;display:flex;flex-direction:column;align-items:flex-start;justify-content:unset;max-width:585px;margin:unset;padding:0 25px 0 0}@media all and (max-width:86.875rem){.carousel__horizontal .teaser-menu__header{flex:unset;min-width:380px}}@media all and (max-width:67.375rem){.carousel__horizontal .teaser-menu__header{min-width:unset;max-width:unset;gap:37px}}@media all and (max-width:46.4375rem){.carousel__horizontal .teaser-menu__header{gap:25px}}.carousel__horizontal .splide__arrows{order:-1;margin-bottom:35px}@media all and (max-width:53.125rem){.carousel__horizontal .splide__arrows{margin-bottom:0}}@media all and (max-width:36.25rem){.carousel__horizontal .carousel__item{width:calc(90% - 30px)}}.carousel__horizontal .teaser-menu__header{flex-direction:column;align-items:flex-start;justify-content:unset;max-width:585px;margin:unset}
.element-teaser{display:block;position:relative;color:#fff;border-radius:5px;overflow:hidden}.element-teaser:active,.element-teaser:focus,.element-teaser:hover{color:#fff}.element-teaser:active .element-teaser__hover-visible,.element-teaser:focus .element-teaser__hover-visible,.element-teaser:hover .element-teaser__hover-visible{height:11px}.element-teaser:active .element-teaser__content,.element-teaser:focus .element-teaser__content,.element-teaser:hover .element-teaser__content{bottom:21px}.element-teaser__icon{position:absolute;top:32px;right:30px;display:block;width:28px;height:24px;z-index:2;fill:hsl(0,0%,100%)}.element-teaser__image-placeholder{display:block;aspect-ratio:360/500;background-color:var(--color-main-500);width:360px}@media all and (max-width:80rem){.element-teaser__image-placeholder{width:320px}}@media all and (max-width:26.5625rem){.element-teaser__image-placeholder{width:100%;height:350px}}.element-teaser picture::before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;z-index:1;background:linear-gradient(0deg,rgba(0,0,0,.4) 0,rgba(0,0,0,.4) 100%);transition:background ease .3s}.element-teaser__image{display:block;border-radius:5px;width:100%;object-fit:cover;transition:all .3s}.element-teaser__hover-visible{position:absolute;height:0;background-color:var(--color-main-500);z-index:2;display:block;transition:all .3s;left:0;right:0;bottom:0}.element-teaser__content{display:block;position:absolute;bottom:15px;left:15px;right:15px;z-index:3;transition:all .3s}.element-teaser__overline{display:block;font-size:12px;letter-spacing:.56px;font-weight:400;margin-bottom:4px}.element-teaser__title{display:block;margin-bottom:10px}.element-teaser__subtitle{display:block;margin-bottom:10px}.element-teaser__description{display:block;font-size:1rem}
.page-footer{margin-right:64px}@media all and (max-width:46.4375rem){.page-footer{margin-right:0;margin-bottom:77px}}.page-footer__main-footer-container{display:flex;flex-direction:row;justify-content:space-between;width:100%;margin:85px 0;gap:50px}@media all and (max-width:62.5rem){.page-footer__main-footer-container{flex-wrap:wrap}}@media all and (max-width:46.4375rem){.page-footer__main-footer-container{margin:50px 25px}}.page-footer__main-footer{display:flex;justify-content:center;border-top:10px solid var(--color-main-500);background:#2f3c45;color:#fff}.page-footer__right{max-width:553px;width:100%}.page-footer__title{font-family:"Suedtirol Pro";font-size:var(--font-size-heading-1);font-style:normal;font-weight:400;margin-bottom:13px}@media all and (max-width:46.4375rem){.page-footer__title{margin-bottom:15px}}.page-footer__contact-info{margin-bottom:15px;font-size:var(--font-size-heading-4);font-weight:500}.page-footer__contact-info a{color:#fff;font-size:var(--font-size-heading-4);font-weight:500}.page-footer__contact-info a:active,.page-footer__contact-info a:focus,.page-footer__contact-info a:hover{color:#fff;text-decoration:none}.page-footer__address{font-size:20px;margin-bottom:15px}@media all and (max-width:46.4375rem){.page-footer__address{font-size:18px}}.page-footer__opening-hours-title{font-size:20px;font-weight:900;margin-bottom:15px}@media all and (max-width:46.4375rem){.page-footer__opening-hours-title{font-size:18px}}.page-footer__opening-hours{font-size:20px}@media all and (max-width:46.4375rem){.page-footer__opening-hours{font-size:18px}}.page-footer__icon-links{display:flex;height:90px;align-items:center;gap:25px;align-self:stretch;margin-bottom:68px}@media all and (max-width:46.4375rem){.page-footer__icon-links{gap:15px;margin-bottom:50px}}@media all and (max-width:35.3125rem){.page-footer__icon-links{flex-wrap:wrap;height:unset}}.page-footer__icon-container{display:flex;max-width:120px;min-height:90px;padding:9px 10px;flex-direction:column;justify-content:flex-end;align-items:center;gap:6px;flex:1 0 0;text-align:center;font-size:14px;border-radius:5px;background:var(--color-main-500)}@media all and (max-width:35.3125rem){.page-footer__icon-container{flex:unset;flex-basis:110px}}.page-footer__icon-container:active,.page-footer__icon-container:focus,.page-footer__icon-container:hover{background:var(--color-main-600);text-decoration:none}.page-footer__icon-title{color:#fff}.page-footer .svg-container{display:flex;justify-content:center;width:33px}.page-footer .footer-socials__link{display:flex;align-items:center;gap:10px}.page-footer .icon-youtube{width:33px;height:24px}.page-footer .icon-instagram{width:26px;height:26px}.page-footer .icon-facebook{width:12px;height:23px}.page-footer__navigation{display:flex;justify-content:space-between;width:80%}@media all and (max-width:46.4375rem){.page-footer__navigation{width:100%}}.page-footer__nav-title{font-size:20px;font-weight:900;margin-bottom:13px}@media all and (max-width:46.4375rem){.page-footer__nav-title{font-size:18px}}.page-footer .nav-seo__link{font-size:20px;line-height:32px;color:#fff}.page-footer .nav-seo__link:active,.page-footer .nav-seo__link:focus,.page-footer .nav-seo__link:hover{text-decoration:none}@media all and (max-width:46.4375rem){.page-footer .nav-seo__link{font-size:18px}}.page-footer__services{display:flex;flex-direction:column;gap:18px}.page-footer__services a{color:#fff}.page-footer__services a:active,.page-footer__services a:focus,.page-footer__services a:hover{color:#fff;text-decoration:none}@media all and (max-width:46.4375rem){.page-footer__services{gap:16px}}.page-footer__services-title{font-size:20px;font-weight:900}@media all and (max-width:46.4375rem){.page-footer__services-title{font-size:18px}}.nav-seo ul{margin:0;padding:0;list-style:none}.partners{padding:32px 80px}.partners__title{padding-bottom:20px}.partners .view-logo-list{display:flex;justify-content:flex-start;gap:25px}@media all and (max-width:80rem){.partners{padding:25px 40px}}@media all and (max-width:46.4375rem){.partners{padding:25px 0 25px 25px}}.partners .splide__arrows-position{position:absolute;display:flex;right:40px;transform:translateY(-100%)}.partners .splide__arrow{border:none;border-radius:0;position:relative;transform:translateY(0)}@media all and (max-width:46.4375rem){.partners .splide__arrow{transform:translateY(-20px)}}.partners .splide__arrow--prev{left:0}.partners .splide__arrow--next{right:0}.footer-end{padding:40px 80px;font-size:var(--font-size-m);display:flex;justify-content:space-between;align-items:flex-end;gap:20px;border-top:1px solid #f0f0f0}@media all and (max-width:80rem){.footer-end{padding:25px 40px}}@media all and (max-width:46.4375rem){.footer-end{padding:25px;flex-direction:column;align-items:flex-start}}.nav-bottom{display:flex;flex-wrap:wrap;column-gap:42px}@media all and (max-width:46.4375rem){.nav-bottom{column-gap:18px}}.nav-bottom__menu-0{display:block;color:#2f3c45;position:relative}.nav-bottom__menu-0:not(:last-child):after{content:"";width:2px;height:2px;background-color:#2f3c45;position:absolute;right:-22px;top:50%;transform:translateY(-50%)}@media all and (max-width:46.4375rem){.nav-bottom__menu-0:not(:last-child):after{right:-10px}}.nav-bottom a{cursor:pointer}.logo-consisto{flex-shrink:0;display:flex;gap:12px;align-items:center;font-weight:700;font-size:12px;text-transform:none;text-decoration:none;color:#000}

.element-partner-item{display:block;list-style:none}.element-partner-item__image{display:block}.sponsors{padding:32px 80px}.sponsors .splide__arrows{display:none}.sponsors .ajax-container{overflow-x:auto}.sponsors__title{padding-bottom:50px}.sponsors .view-logo-list{display:flex;justify-content:flex-start;gap:20px 25px;flex-wrap:wrap}@media all and (max-width:46.4375rem){.sponsors .view-logo-list{gap:20px 15px}}@media all and (max-width:80rem){.sponsors{padding:25px 40px}}@media all and (max-width:46.4375rem){.sponsors{padding:25px}}
.photoswipe-item{cursor:zoom-in}.header-mobile__spacer{height:0}.no-hero .header-mobile__spacer{height:94px}@media all and (max-width:46.4375rem){.no-hero .header-mobile__spacer{height:72px}}.button:active,.button:focus,.button:hover{background-color:var(--color-main-400);border-color:var(--color-main-500);color:var(--color-main-500)}.button:focus,.button:hover{text-decoration:none}.button:active{background-image:none;outline:0}.button--light:active,.button--light:focus,.button--light:hover{color:#fff;background-color:transparent;border-color:transparent;opacity:.75}.button--primary:active,.button--primary:focus,.button--primary:hover{color:#fff;background-color:#9e112f;border-color:#9e112f}.button--primary:active svg,.button--primary:focus svg,.button--primary:hover svg{fill:hsl(0,0%,100%)}.button--secondary:active,.button--secondary:focus,.button--secondary:hover{color:#fff;background-color:#5082b4;border-color:#5082b4}.button--empty:active,.button--empty:focus,.button--empty:hover{background:0 0;border-color:transparent;color:#2f3c45;opacity:.7}.button--empty-light:active,.button--empty-light:focus,.button--empty-light:hover{background:0 0;border-color:transparent;color:#fff;text-decoration:underline;opacity:.7}a:focus,a:hover{text-decoration:none}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:1px}.modal{position:absolute;top:10px;left:50%;transform:translateX(-50%) translateY(-100px);opacity:0;transition:all .3s ease-in-out;background:#fff;box-shadow:0 0 10px rgba(0,0,0,.3);padding:10px;width:70%;width:70vw}@media all and (max-width:80em){.modal{width:80%;width:80vw}}@media all and (max-width:64em){.modal{width:90%;width:90vw;width:calc(100vw - 20px)}}.modal-container{position:fixed;top:0;left:0;right:0;bottom:0;z-index:10000;pointer-events:none}.modal-container.modal--open{pointer-events:auto}.modal-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.2);opacity:0;transition:all .3s ease-in-out}.modal--open .modal-overlay{opacity:1}.modal__frame{overflow-x:hidden;overflow-y:auto;position:relative;z-index:1}.modal__frame .container{margin:0}.modal__frame .animate-in{opacity:1;transform:none}.modal iframe,.modal__frame{border:none;width:100%;height:90%;height:80vh;display:block;height:calc(100vh - 40px)}.modal__close{position:absolute;border:none;margin:0;top:0;right:0;display:block;width:30px;height:30px;display:inline-block;color:#fff;background:#b71c07;padding:0;line-height:30px;text-align:center;z-index:100}.modal--open .modal{opacity:1;transform:translateX(-50%) translateY(0);transition-delay:0s}
@media print{*{background:0 0!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}.hidden-print{display:none!important}}.visible-print{display:none}