:root {
    --maincolor: #555;
    --maincolorWithTransparency: rgba(85, 85, 85, 0.3);
    --maindarkercolor: #444;
    --mainlightercolor: #666;
    --bgcolor: #dedcde;
    --bglightercolor: #ededed;
    --copytextcolor: #262626;
    --negativecolor: #fff;
    --headlinecolor: #000;
    --bordercolor: #ccc;
}

/* open-sans-regular - latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v29-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('../fonts/open-sans-v29-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/open-sans-v29-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/open-sans-v29-latin-regular.woff') format('woff'), /* Modern Browsers */ url('../fonts/open-sans-v29-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/open-sans-v29-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* open-sans-600 - latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/open-sans-v29-latin-600.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('../fonts/open-sans-v29-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/open-sans-v29-latin-600.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/open-sans-v29-latin-600.woff') format('woff'), /* Modern Browsers */ url('../fonts/open-sans-v29-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/open-sans-v29-latin-600.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* oswald-300 - latin */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/oswald-v49-latin-300.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('../fonts/oswald-v49-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/oswald-v49-latin-300.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/oswald-v49-latin-300.woff') format('woff'), /* Modern Browsers */ url('../fonts/oswald-v49-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/oswald-v49-latin-300.svg#Oswald') format('svg'); /* Legacy iOS */
}

/* oswald-regular - latin */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/oswald-v49-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('../fonts/oswald-v49-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/oswald-v49-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/oswald-v49-latin-regular.woff') format('woff'), /* Modern Browsers */ url('../fonts/oswald-v49-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/oswald-v49-latin-regular.svg#Oswald') format('svg'); /* Legacy iOS */
}

/* montserrat-regular - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v25-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('../fonts/montserrat-v25-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/montserrat-v25-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/montserrat-v25-latin-regular.woff') format('woff'), /* Modern Browsers */ url('../fonts/montserrat-v25-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/montserrat-v25-latin-regular.svg#Montserrat') format('svg'); /* Legacy iOS */
}

body,
html {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    background-color: var(--bgcolor);
    color: var(--copytextcolor);
}

.page-home {
    overflow: hidden;
    max-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
}

.icon {
    background-color: rgba(255, 255, 255, .8);
    border-radius: 0.4em;
    padding: 0.5em;
    border: 1px solid rgba(0, 0, 0, .7);
    opacity: .5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--headlinecolor);
}

.block h1,
.block h2,
.block h3,
.block h4,
.block h5,
.block h6 {
    color: var(--copytextcolor);
}

main h1,
main h2,
main h3,
main h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-align: center;
    letter-spacing: .1em;
    text-transform: uppercase;
}

main h1 {
    font-size: 1.5em;
}

@media (min-width: 1200px) {
    main h1 {
        font-size: 2.5em;
    }
}

main p {
    line-height: 1.6em;
}

a {
    color: inherit;
}

.zoom-container {
    overflow: visible;
    position: relative;
}

.imp-ui {
    position: fixed;
    bottom: 2.25rem;
    right: 0;
    z-index: 1;
    height: 7em;
    width: 5em;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.page-wrapper:not(.page-home) {
    padding-bottom: 4em;
}


@media (max-width: 799px) {
    .page-wrapper.page-home {
        display: block;
    }

    .page-wrapper:not(.page-home) {
        padding-bottom: 9em;
    }
}

.imp-zoom-outer-wrap {
    overflow: visible;
}

.imp-ui-zoom-button:before {
    font-size: 2em;
}

.imp-ui-zoom-button-zoom-in:before {
    content: '+';
}

.imp-ui-zoom-button-zoom-out:before {
    content: '-';
}

.bottomline {
    background-color: var(--maincolor);
    box-shadow: 0 0 1em rgba(0, 0, 0, .3);
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 5;
    min-width: 320px;
}

@media (min-width: 1000px) {
    .bottomline {
        height: 3em;
    }
}

.inner {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 3.5%;
}

.bottomline .inner {
    padding: 0;
}

.bottomline .part1 {
    display: flex;
    justify-content: space-between;
}

.bottomline .part2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottomline .inner .part2 {
    margin-right: 0;
}

.bottomline .part2 a {
    text-decoration: none;
}

.bottomline .part2 h2 {
    display: none;
    min-width: 275px;
}

.bottomline .part2 h1 {
    line-height: 1em;
}

.bottomline.show-image-info .part2 {
    justify-content: space-between;

}

.bottomline.show-image-info .part2 h2 {
    display: block;
}


@media (max-width: 999px) {
    .bottomline .part1 {
        width: 100%;
        background-color: #fff;
    }

    .bottomline .part2 {
        text-align: center;
        padding: .5em 1em;
    }
}

@media (max-width: 799px) {
    .bottomline .part2 {
        flex-direction: column;
    }
}

@media (min-width: 1000px) {
    .bottomline .inner {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.bottomline .inner > * {
    margin-right: 1.5em;
}

.bottomline .inner .logo {
    margin-right: 0;
}

.bottomline h1 {
    font-size: 1.2em;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

@media (min-width: 800px) {
    .bottomline h1 {
        margin-right: 1em;
    }
}

@media (min-width: 1200px) {
    .bottomline h1 {
        font-size: 1.5em;
        font-weight: 300;

    }
}

.bottomline h2 {
    margin: 0;
    font-size: 1em;
    font-family: 'Oswald';
    font-weight: 300;
}

.logo {
    float: left;
    display: block;
}

.logo img {
    max-height: 3em;
}

.nav-main-toggler {
    width: 2.5em;
    background-color: #fff;
    height: 3.2em;
    cursor: pointer;
    position: relative;
}

.nav-main-toggler .line {
    width: 100%;
    background-color: #000;
    margin-bottom: 5px;
    height: 1px;
}

.nav-main-toggler .line:last-child {
    margin-bottom: 0;
}

.nav-main-toggler-action {
    padding: 1em .5em;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-main {
    position: absolute;
    bottom: 3.5em;
    color: #fff;
    min-width: 200px;
    right: .25em;
    display: none;
}

/*@media (min-width:1000px) {
  .nav-main {
    left:.25em;
    right:auto;
  }
}*/
.nav-main a,
.nav-main .fake-link {
    display: block;
    background-color: rgba(50, 50, 50, .75);
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    border-top-width: 0;
    line-height: 1.2em;
}

.nav-main a {
    padding: .5em 1em .7em;
    border: 1px solid #fff;
    border-top-width: 0;
    transition: background-color .2s;
}

.nav-main a:hover,
.nav-main a:focus {
    background-color: #323232 !important;
}

.fake-link-inner > a {
    background-color: transparent;
    border-top: 0;
}

.fake-link-inner .nav-sub-toggler {
    position: absolute;
    padding: .5em;
    top: 0;
    right: 0;
    height: 100%;
    border-left: 1px solid #fff;
    box-sizing: border-box;
    text-align: center;

}

.fake-link-inner .nav-sub-toggler.active img {
    transform: rotate(180deg);
}

.fake-link-inner .nav-sub-toggler img {
    margin-left: .5em;
    transition: transform .2s;
}

.nav-main a:first-child,
.nav-main .fake-link:first-child {
    border-top-width: 1px;
}

.nav-main a img,
.nav-main .fake-link img {
    width: 1.35em;
    position: relative;
    top: .25em;
    left: -.3em;
    filter: invert(1);
}

.nav-main .fake-link {
    padding-bottom: 0;
}

.nav-main .fake-link ul {
    padding: 0;
    list-style-type: none;
    margin: 0;
    display: none;
    overflow-x: hidden;
}

.fake-link-inner {
    position: relative;
}


.nav-main .fake-link ul a {
    background-color: rgba(255, 255, 255, .1);
    border: 0;
    font-size: .8em;
    box-sizing: border-box;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-left: 1px solid rgba(255, 255, 255, .2);
}

.imp-ui-element {
    background-color: rgba(50, 50, 50, .75) !important;
    border-radius: 0;
    border: 1px solid #fff;
}

.imp-ui-element:before {
    color: #fff;
    font-size: 2.5em;
}

.block {
    background-color: #fff;
    border-radius: .3em;
    box-shadow: .2em .2em 1em rgba(0, 0, 0, .05);
    padding: 2em 2em 3em;
}

.overhead-possible {
    overflow: hidden;
}

.vue-loaded .overhead-possible {
    overflow: auto;
    width: calc(100% + 24px);
    margin-left: -12px;
}


@media (min-width: 1510px) {
    .overhead-possible {
        overflow: hidden;
    }
}

@media (max-width: 999px) {
    .block {
        padding: 1em;
    }
}

.block h1,
.block h2,
.block h3,
.block h4 {
    text-align: left;
}

.block h2 {
    margin-top: 2em;
}

strong {
    font-weight: 600;
}

.swiper {
    width: 100%;
}

.timelapse-slider {
    width: 99% !important;
    padding-bottom: 4em;
}

:fullscreen .timelapse-slider {
    padding-bottom: 0;
    width: 100% !important;
    height: 100%;
}

:fullscreen .timelapse-slider .caption {
    bottom: 5em;
    right: 2em;
}

.timelapse-slider img {
    width: 100%;
}

.timelapse-slider .swiper-slide {
    position: relative;
}


.timelapse-slider .caption {
    position: absolute;
    bottom: 1em;
    right: 1em;
    background-color: var(--negativecolor);
    padding: .2em .5em;
    border-radius: .2em;
    font-size: .9em;
    min-width: 10em;
    border: 1px solid var(--bordercolor);
    text-align: center;
}

.timelapse-slider-wrapper {
    background-color: var(--bgcolor);
    overflow: hidden;
    width: auto;
}

@media (min-width: 1200px) {
    .timelapse-slider-wrapper .swiper-slide {
        text-align: center;
    }

    .timelapse-slider-wrapper .swiper-slide img {
        max-height: calc(100vh - 450px);
        width: auto;
        object-fit: contain;
        object-position: center;
    }
}

.timelapse-slider-wrapper:fullscreen .swiper-slide img {
    max-height: none;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.swiper-pagination-bullet {
    border-radius: .3em !important;
}

.topline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 3em 0 3em;
}

.topline h1 {
    margin: 0;
    padding-left: 1em;
    padding-right: 1em;
}

.topline h1 span {
    opacity: .5;
}

.topline img {
    max-height: 3em;
}

@media (max-width: 599px) {
    .topline {
        flex-wrap: wrap;
    }

    .topline h1 {
        order: 3;
        width: 100%;
    }
}

@media (max-width: 799px) {
    .topline img {
        max-height: 2em;
    }
}

.topline-left {
    min-width: 6em;
    text-align: left;
}

.topline a {
    transition: transform .2s;
}

.topline a:hover,
.topline a:focus {
    transform: scale(1.075);
}

.nav-slider {
    margin-bottom: 2em;
    position: relative;
}

.nav-slider a {
    display: inline-block;
    padding: .3em 1.5em;
    border: 1px solid black;
    position: relative;
    top: .1em;
}

.nav-slider-wrapper {
    position: relative;
    width: calc(100% - 6em);
    margin-left: 3em;
    padding-bottom: .3em;
}

.nav-slider-wrapper .swiper {
    padding-bottom: .2em;
}

@media (max-width: 799px) {
    .nav-slider-wrapper {
        font-size: .8em;
    }
}

.swiper-nav-button-prev,
.swiper-nav-button-next {
    width: 2.5em;
    height: 2.5em;
    border-radius: .5em;
    position: absolute;
    top: 0;
    left: -3em;
    z-index: 2;
    cursor: pointer;
    margin-top: -.1em;
    transition: opacity .2s, transform .2s;
    background-color: rgba(255, 255, 255, .3);
}

.swiper-nav-button-prev:hover,
.swiper-nav-button-next:hover,
.swiper-nav-button-prev:focus,
.swiper-nav-button-next:focus {
    transform: scale(1.1);
}

.swiper-nav-button-prev:before,
.swiper-nav-button-next:before {
    content: '';
    position: absolute;
    right: -4em;
    height: 100%;
    width: 4em;
    z-index: 2;
    background-image: linear-gradient(to right, var(--bgcolor) 20%, transparent);
}

.swiper-button-disabled {
    opacity: .3;
}

.swiper-nav-button-prev.swiper-button-disabled:before,
.swiper-nav-button-next.swiper-button-disabled:before {
    content: none;
}

.swiper-nav-button-next:before {
    right: auto;
    left: -4.1em;
    background-image: linear-gradient(to left, var(--bgcolor) 20%, transparent);
}

.swiper-nav-button-next {
    left: auto;
    right: -3em;
}

.nav-slider .swiper-scrollbar {
    display: none;
}

.nav-slider a {
    border-radius: .5em;
    border: 1px solid #fff;
    white-space: nowrap;
    background-color: rgba(255, 255, 255, .4);
    line-height: 1em;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    letter-spacing: .05em;
    justify-content: center;
}

.nav-slider a img {
    width: 1.5em;
    margin-right: .5em;
}

.nav-slider .swiper-slide {
    width: 12em;
}

@media (max-width: 799px) {
    .nav-slider .swiper-slide {
        width: 11em;
    }
}

.slider-navigation {
    padding: 0;
    display: flex;
    justify-content: center;
    padding-bottom: .25em;
}

.slider-navigation img {
    padding: .35em;
    width: 3em;
    margin: 0 1em;
    transition: transform .2s;
    cursor: pointer;
}

@media (max-width: 799px) {
    .slider-navigation img {
        padding: .5em;
        margin: 0 .75em;
        width: 2.25em;
    }
}

.slider-navigation img:focus,
.slider-navigation img:hover {
    transform: scale(1.1);
}

.slider-navigation img:active {
    transform: scale(.9);
    opacity: .8;
}

:fullscreen .slider-navigation {
    position: absolute;
    width: 100%;
    bottom: 4em;
    z-index: 2;
}

.fullscreen-close-button {
    display: none;
}

:fullscreen .fullscreen-button {
    display: none;
}

:fullscreen .fullscreen-close-button {
    display: block;
}

:fullscreen .slider-navigation img {
    opacity: .95;
    backdrop-filter: blur(15px);
    box-shadow: .1em .1em .5em rgba(0, 0, 0, .8);
}


.block-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1em;
}

.block-head img {
    width: 2.5em;
    height: 2.5em;
}

.grid {
    width: 101%;
    margin-left: -.5%;
}


.archive-images-tableless {
    display: flex;
    flex-wrap: wrap;
}

.best-of .imagesection {
    width: 100%;
    margin-bottom: 2em;
}

.best-of .image-section-head {
    width: 100%;
}

.best-of .image-section-head h4 {
    margin: 0 0 .25em;
}

.best-of .imagesection .images {
    display: flex;
    flex-wrap: wrap;
}

.archive-images {
    transition: opacity .2s;
    opacity: 0;
}
@media (min-width: 1000px) {
    .archive-images.best-of .image {
        width:15.66%;
    }
}


.vue-loaded {
    .archive-images {
        opacity: 1;
    }
}

@media (max-width: 999px) {
    .archive-images .line {
        flex-wrap: wrap;
        margin-bottom: 2em;
    }
}

.archive-images .image {
    position: relative;
    background-color: var(--bglightercolor);
    border-radius: .25em;
    overflow: hidden;
}

.archive-images .image .webcam-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.archive-images-tableless .image {
    margin: .5%;
    width: 13.25%;
    border-radius: .25em;
    overflow: hidden;
    min-height: 75px;
}

.cam-overview .image {
    width: 49%;
}

.archive-playbutton {
    margin-left: auto;
}


@media (min-width: 800px) {
    [data-camscount="3"].cam-overview .image {
        flex: 0 0 32%;
    }

    .many-cams .cam-overview .image {
        flex: 0 0 24%;
    }
}

@media (min-width: 800px) {
    .archive-images-tableless.cam-overview .image .footline {
        font-size: 1em;
    }
}

.archive-images .image .actions {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(255, 255, 255, .8);
    border-bottom-left-radius: .2em;
}

.archive-images .image .actions a {
    padding: .2em;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.archive-images .image .actions a:last-child {
    border-bottom: 0;
}

.archive-images .image .actions img {
    width: 1.1em;
}

@media (max-width: 999px) {
    .archive-images .image {
        width: 31.33%;
    }
}

@media (min-width: 1000px) {
    .archive-images.video-thumbs .image {
        width: 31.33%;
    }
}

@media (max-width: 799px) {
    .archive-images-tableless .image {
        width: 49%;
    }
}

@media (max-width: 999px) {
    .cam-overview .image {
        width: 49%;
    }
}

@media (max-width: 499px) {
    .archive-images.video-thumbs .image {
        width: 98%;
    }
}

.archive-images .image .footline {
    font-size: .8em;
    display: flex;
    color: rgba(0, 0, 0, .8);
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    background-color: rgba(255, 255, 255, .65);
    border-top: 1px solid rgba(255, 255, 255, .5);
    backdrop-filter: blur(5px);
    width: 100%;
    padding: .5em .5em calc(.5em + 1px);
    margin-bottom: -1px;
}

@media (min-width: 1000px) {
    .archive-images.video-thumbs .footline {
        font-size: 1.1em;
    }
}

.archive-images .image .footline img {
    width: 2em;
    position: absolute;
    right: 0;
    bottom: .5em;
}

.archive-images .lightbox-link {
    display: block;
    height: 100%;
    width: 100%;
}

.archive-images .lightbox-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.archive-images .weekinfo {
    background-color: var(--maincolor);
    border-radius: .5em;
    color: #fff;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: .8em;
    min-width: 10em;
    min-height: 105px;
}

.archive-images .weekinfo h4 {
    font-size: 1.5em;
    text-align: center;
    margin: 0;
}

.block .weekinfo h1,
.block .weekinfo h2,
.block .weekinfo h3,
.block .weekinfo h4,
.block .weekinfo h5,
.block .weekinfo h6 {
    color: #fff;
}

.archive-images .weekinfo img {
    width: 2em;
    padding: .25em;
    filter: invert(1);
}

.archive-images.month-view {
    min-width: 50rem;
    border-spacing: 12px;
    opacity: 0;
    width: 100%;
    transition: .25s width .25s;
    overflow: hidden;
}

.vue-loaded .archive-images.month-view {
    opacity: 1;
    overflow: auto;
}

.archive-images.month-view td {
    min-width: 10em;
}

.archive-images.month-view th {
    font-family: 'Oswald', sans-serif;
    color: var(--copytextcolor);
    font-weight: 300;
    text-transform: uppercase;
}


.slider-play-info {
    display: none;
    position: absolute;
    opacity: .9;
    top: 0;
    left: 0;
    height: 10%;
    margin-top: 30%;
    color: #fff;
    z-index: 1;
    text-align: center;
    width: 100%;
    font-weight: bold;
    font-size: 2em;
}

@media (min-width: 1300px) {
    .slider-play-info {
        font-size: 5em;
    }
}

.swiper-pagination-horizontal.swiper-pagination-bullets {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 3em 0 1em;
}

.swiper-pagination-horizontal.swiper-pagination-bullets:before {
    content: '';
    background-color: var(--maincolor);
    position: absolute;
    left: 0;
    top: .4em;
    width: 100%;
    height: 3px;
    z-index: -1;
}

.swiper-pagination-bullet {
    width: 1em;
    height: 1em;
    position: relative;
    z-index: 1;
    background-color: transparent;
    opacity: 1;
    margin: 0 !important;
}

.swiper-pagination-bullet:first-child,
.swiper-pagination-bullet:last-child {
    background-color: var(--maincolor);
}

.swiper-pagination-bullet-active {
    background-color: #fff !important;
    border: 2px solid #fff;
    border-color: var(--maincolor) !important;
}

@media (max-width: 799px) {
    .mobilepic {
        height: 100vh;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
}

@media (min-width: 800px) {
    .mobilepic {
        display: none;
    }
}

@media (max-width: 799px) {
    .zoom-container {
        display: none;
    }
}

.cam-map {
    text-align: center;
}

.cam-map-wrap {
    text-align: center;
    position: relative;
    margin: 0 auto;
}

.cam-map-image {
    object-fit: contain;
    position: relative;
    padding: 1em;
    background-color: #fff;
    border-radius: .2em;
    width:100%;
}

.cam-map > img {
    width: 100%;
}


.cam-map .markers {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.cam-map .markers .cam {
    position: absolute;
    text-decoration: none;
    width: calc(2.5em + 2.5vw);
    height: calc(2.5em + 2.5vw);
}

.cam-map .markers .cam .icon {
    width: calc(2.5em + 2.5vw);
    height: calc(2.5em + 2.5vw);
    max-width: 5em;
    max-height: 5em;
    padding: .4em .4em;
    border-radius: .4em;
    border: 2px solid #fff;
    background-color: rgba(0, 0, 0, .6);
    box-shadow: .1em .1em 2em rgba(0, 0, 0, .7);
    transition: transform .05s;
    opacity: 0;
}

.cam-map .markers .cam .icon:hover {
    transform: scale(1.15);
}

.cam-info-popup {
    width: 250px;
    background-color: #fff;
    box-shadow: .1em .1em 1em rgba(0, 0, 0, .2);
    border-radius: .4em;
    overflow: hidden;
    display: none;
    left: -100px;
    position: relative;
}

.cam-info-popup.top {
    top: auto;
    left: -90px;
    bottom: 270px;
}

.cam-info-popup.right {
    right: -95px;
    left: auto;
    top: -155px;
}

.cam-info-popup.left {
    left: -250px;
    top: -155px;
}

.cam-info-popup .title {
    padding: 1em;
}

.f-panzoom {
    overflow: hidden;
    height: calc(100vh - 45px);
    width: 100vw;
    margin-bottom: auto;
    background-color: #cccccc;
}

@media (max-width: 999px) {
    .f-panzoom {
        height: calc(100vh - 90px);
    }
}

@media (max-width: 799px) {
    .f-panzoom {
        height: calc(100vh - 108px);
    }
}

.custom-controls {
    position: absolute;
    top: 3.85em;
    right: 3.35em;
    font-size: 1.1em;
    width: 2em;
    background-color: rgba(255, 255, 255, .4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, .35);
    z-index: 1;
    color: rgba(0, 0, 0, .5);
    border-radius: .3em;
    text-align: center;
    overflow: hidden;
}


.custom-controls .zoom-action {
    padding: .3em 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, .35);
    font-weight: bold;

}

.custom-controls .zoom-action:last-child {
    border-bottom: 0;
}


.custom-controls .zoom-action:hover img {
    transform: scale(1.3);
}

.custom-controls .zoom-action img {
    width: 1.3em;
    transition: transform .2s;
}

.custom-controls img {
    vertical-align: middle;
    display: block;
}

.markers .icon img {
    filter: invert(1);
}

.nav-slider .active {
    background-color: var(--maincolorWithTransparency);
}

.month-nav-item {
    transition: transform .2s;
}

.month-nav-item.active img {
    filter: invert(1);
}

.month-nav-item:hover,
.month-nav-item:focus {
    transform: scale(1.05);
}

.swiper-scrollbar {
    margin: 1em 0;
    background-color: var(--maincolor);
}

.swiper-scrollbar:before,
.swiper-scrollbar:after {
    content: '';
    background-color: var(--maincolor);
    width: 13px;
    height: 13px;
    display: block;
    border-radius: 50%;
    top: -5px;
    left: 0;
    position: absolute;
}

.swiper-scrollbar:after {
    left: auto;
    right: 0;
}

.swiper-scrollbar-drag {
    background-color: #fff;
    border: 2px solid var(--maincolor);
    height: 15px !important;
    width: 15px !important;
    box-sizing: border-box;
    border-radius: 50%;
    top: -6px !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    overflow: visible;
    bottom: 15px;
    height: 4px;
}

.headlines-wrapper {
    text-align: center;
}

.headlines-wrapper h1 {
    margin: 0 0 1em;
    font-size: 2em;
}

.headlines-wrapper h1 span {
    opacity: .5;
}

.headlines-wrapper strong {
    margin: 0;
    opacity: .5;
}

.headlines-wrapper .part1 strong {
    text-transform: none;
}

.styled-form input {
    border: 1px solid #ccc;
    padding: 1em 1.5em;
    border-radius: .2em;
    box-shadow: .1em .1em .1em rgba(0, 0, 0, .1) inset;
}

.styled-form label {
    display: block;
    opacity: .7;
    margin-bottom: .2em;
}

.styled-form .submit {
    text-align: center;
}

.styled-form .submit button {
    background-color: var(--maincolor);
    background-image: linear-gradient(-135deg, var(--maincolor), var(--maindarkercolor));
    color: var(--negativecolor);
    border: 0;
    padding: .75em 2em;
    font-weight: bold;
    border-radius: .2em;
    box-shadow: .2em .2em .8em rgba(0, 0, 0, .1);
    transition: transform .2s;
    cursor: pointer;
}

.styled-form .submit button:hover,
.styled-form .submit button:focus {
    transform: scale(1.1);
}

.login-form {
    max-width: 25em;
    margin: 1em auto;
    padding: 2em;
}

.login-form input {
    margin-bottom: 1em;
    width: 100%;
    box-sizing: border-box;
}

.cam-overview {
    justify-content: center;
}

.to-camera-overview {
    display: block;
}

.camera-changers {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 7.5em;
}

.hide-cam-switchers .camera-changers {
    min-width: 0;
}

.camera-changers .flip {
    max-width: 2em;
    cursor: pointer;
}

.camera-changers .flip.first {
    margin-right: 3px;
}

.camera-changers .flip.last {
    margin-left: 3px;
}

.startpage-camera-changers {
    position: absolute;
    top: 1em;
    right: 1em;
    z-index: 5;
}

.startpage-camera-changers .to-camera-overview {
    width: 3em;
}

.startpage-camera-changers a {
    backdrop-filter: blur(15px);
    overflow: hidden;
}

.hide-cam-switchers .flip {
    display: none;
}

.hide-this {
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

[v-if],
[v-show],
[v-else],
[v-cloak] {
    display: none;
    transition: all 1s;
}

.fade-enter-active,
.fade-leave-active {
    transition: opacity .5s
}

.fade-enter,
.fade-leave-to {
    opacity: 0
}

/* Password visibility toggler */
.password-wrapper {
    position: relative;
}

.password-field {
    padding-right: 3.5em !important;
}

.password-toggler {
    position: absolute;
    right: 0;
    top: 0;
    width: 3.3em;
    display: flex;
    background-color: var(--bgcolor);
    justify-content: center;
    align-items: center;
    padding: .75em;
    cursor: pointer;
    border-left: 1px solid var(--bordercolor);
}

.password-make-invisible {
    display: none;
}

.password-wrapper.active .password-make-visible {
    display: none;
}

.password-wrapper.active .password-make-invisible {
    display: block;
}

main .empty-info {
    text-align: center;
    font-size: 1em;
}

@media (min-width: 1200px) {
    main .empty-info {
        font-size: 1.5em;
    }
}

.timelapse-slider-wrapper.empty .swiper-scrollbar {
    display: none;
}

.login-area h1 span {
    display: block;
    font-size: .8em;
    margin-top: .5em;
    text-transform: none;
    letter-spacing: .05em;
}

.copyright {
    text-align: center;
    margin-top: 4em;
    display: block;
    text-decoration: none;
}

.copyright .text {
    opacity: .5;
}

.legal-line {
    text-align: center;
    margin-top: 3em;
    display: block;
    text-decoration: none;
    font-size: .85em;
    opacity: .7;
    letter-spacing: 1px;
}

.legal-line a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    padding: 1em;
}

.login-area .darker {
    opacity: 1;
}

.copyright img {
    display: block;
    margin: .5em auto;
    width: 9em;
}

.login-area .part1 {
    margin-bottom: 2.5em;
    text-transform: uppercase;
    font-size: 1.25em;
}

.login-area .part1 .different-look {
    opacity: .5;
}

.login-area .headlines-wrapper strong {
    margin: 0;
    opacity: 1;
}

.login-area .part2 {
    text-transform: uppercase;
}

.login-area .part2 strong {
    opacity: .5;
    font-size: 1.25em;
}

.login-area .headlines-wrapper strong {
    display: block;
    margin-bottom: .5em;
}

.no-images-available .block-head {
    display: none;
}

.items-wrapper .image img {
    width: 9.5em;
    margin-top: 1em;
}

@media (min-width: 600px) {
    .items-wrapper {
        display: flex;
        align-items: stretch;
    }

    .items-wrapper .image img {
        width: 18em;
        margin-top: .35em;
    }
}

.items-wrapper p {
    margin: 0;
}

.items-wrapper .text {
    margin-right: 1em;
}

.zoomfactor.loaded {
    opacity: 1;
}

.zoomfactor {
    opacity: 0;
    position: fixed;
    bottom: 1em;
    right: 1em;
    z-index: 5;
    backdrop-filter: blur(2em);
    color: var(--negativecolor);
    border: 1px solid rgba(255, 255, 255, .3);
    background-color: rgba(0, 0, 0, .2);
    border-radius: .2em;
    padding: .25em .5em;
    font-weight: bold;
    transition: opacity .5s;
}

.video-container {
    position: relative;
    display: block;
    margin: 0 auto;
}

@media (min-width: 1400px) {
    .video-container {
        max-width: 80%;
    }
}

video {
    width: 100%;
    display: block;
    border-radius: .2em;
    overflow: hidden;
    box-shadow: -.5em 1em 2em rgba(0, 0, 0, .35);
}

.download-video {
    position: absolute;
    top: 1em;
    right: 0;
    padding: .3em 1em .5em .5em;
    background-color: rgba(255, 255, 255, .5);
    backdrop-filter: blur(5px);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    text-decoration: none;
}

.download-video img {
    width: 1.25em;
    height: 1.25em;
    position: relative;
    top: .1em;
}