body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    text-rendering: geometricPrecision;
    background: rgb(250, 249, 249);
}

/* Sperre scroll wenn Modal = geöffnet */
.noscroll {
    overflow: hidden;
    padding-right: 17px;
}
.noscroll .container-nav-links,
.noscroll .nav-burger-menu div,
.noscroll .burger-close div{
    padding-right: 17px;
}

/* Zuweisung Schriftart */
h1, h2, h3, p, a, li {
    font-family: 'Open Sans', sans-serif;
    line-height: 2;
    color: rgb(31, 31, 31);
    word-break: break-word;
    letter-spacing: 1px;
}

/* Schriftgrößen + Abstände */
h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2rem;
    margin: 2rem 0 8rem 0;
}

h3 {
    font-size: 1.3rem;
    margin: 1rem 0;
}

.modal-detail-content h3 {
    font-size: 1rem;
    margin: 0 !important;
}

.modal-detail-content h2 {
    font-size: 1.25rem;
    margin: 0 0 2rem 0;
}

.modal-detail-content p {
    width: unset !important;
}

p, li {
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 4rem;
}

.block-half h2 {
    margin-top: 1rem;
}

.modal-detail-content p,
.modal-detail-content h3,
.modal-detail-content li {
    font-size: 0.85rem;
    margin-right: 1rem !important;
}

a {
    font-size: 1.1rem;
}

.block-full p.center {
    margin: 1rem auto 4rem auto;
    width: 950px;
    text-align: center;
}

.block-full p {
    margin: 1rem auto 4rem 0;
    width: 950px;
    text-align: left;
}

.title h1, h2 {
    margin: 0 0 4rem 0;
    padding: 0 1rem;
    position: relative;
    /*border-left: solid 3px #ee8003;*/
}

.title h1 {
    padding-left: 1.75rem;
}

.title h2 {
    padding-left: 1.25rem;
}

.title h1:before, .title h2::before {
    content: '';
    width: 3px;
    float: left;
    background: #ee8003;
    position: absolute;
    top: 0;
    bottom: 0;
    border-radius: 3px;
    border: none;
}

.title h1:before {
    margin-left: -1.75rem;
}

.title h2:before {
    margin-left: -1.25rem;
}

ul {
    text-align: initial;
    list-style-type: none;
    padding-inline-start: 0;
    margin: 2rem 0 4rem 0;
}

ul li {
    padding-left: calc(1rem + 2px);
    margin-bottom: 1rem;
}

ul li:before {
    content: "";
    border-left: solid 2px #ee8003;
    padding-right: 1rem;
    margin-left: calc(-1rem - 2px);
}

ul p {
    margin-bottom: 1rem !important;
}

ul.detail-list {
    margin: 2rem 0 1rem 0;
}

ul.detail-list h3 {
    margin: 1rem 0;
}

ul.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.no-deco ul li:before {
    border-left: none;
    padding-right: 0;
    margin-left: 0;
}

.head ul {
    list-style: none;
}

.head ul li {
    margin: 0 !important;
    padding-left: 0 !important;
}

.modal-content ul li {
    padding-left: calc(1rem + 2px) !important;
}

.modal-info-content h3 {
    text-align: initial;
}


/* Container - Module */
.container {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
}

.head {
    height: 95vh;
    margin-top: 0 !important;
}

.container-sub {
    height: auto;
    width: 1200px;
    margin: 0 auto;
    padding: 8rem 0 1rem 0;
}

.flex-column {
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    justify-content: center;
}

.flex-row {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
}

.flex-row.center {
    justify-content: space-evenly;
}

.flex-row.regular {
    justify-content: space-between;
}

.block-half {
    width: calc((1200px - 17px) / 2);
    height: auto;
    margin-bottom: 2rem;
}

.block-half.small {
    width: calc((1200px - 20px) * 2/5);
}

.block-half.big {
    width: calc((1200px - 20px) * 3/5);
}

.slim {
    padding: 0;
}

.slim .block-half div {
    padding: 2rem;
    text-align: center;
}

.left > div {
    padding-right: 2rem;
    padding-top: 2rem;
}
.right > div {
    padding-left: 2rem;
    padding-top: 2rem;
}

.block-half.no-title-container {
    width: 55%;
}

.block-half.title-container {
    width: 45%;
}

.block-full {
    width: 100%;
    height: auto;
    margin: auto;
    margin-bottom: 2rem;
}

.page-up {
    margin: 0 auto 2rem auto;
    display: flex;
    flex-flow: row;
    justify-content: center;
    text-decoration: none;
}
.page-up p:before {
    content: "\21B8";
    font-size: 3rem;
}
.page-up p:hover {
    color: rgba(31, 31, 31, 0.5);
}
.page-up p {
    transition: all 0.2s;
}

#up {
    display: none;
}

.footer .flex-row {
    justify-content: center;
}

.footer-link {
    padding: 0.25rem 0.75rem;
    transition: all 0.2s;
    font-size: 0.8rem;
    margin: 0 2rem;
    text-decoration: none;
}

.footer-link:hover {
    color: rgba(31, 31, 31, 0.5);
}

/* Button */
button {
    font-family: 'Open Sans', sans-serif;
    background: white;
    border: solid 3px #ee8003;
    color: #ee8003;
    padding: 0.75rem 3rem;
    transition: all 0.1s;
    font-variant-caps: all-petite-caps;
    font-size: 1.25rem;
    letter-spacing: 3px;
    cursor: pointer;
    margin: 1rem 0;
    padding-bottom: 0.9rem;
    outline: none;
    border-radius: 3px;
    font-weight: 600;
}

button:hover {
    background: #ee8003;
    color: white;
    box-shadow: 0px 15px 50px -10px #ee8003;
}

button.active {
    background: #ee8003;
    color: white;
}

/* Modal Container */
.modal {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    display: none;
    z-index: 150;
}

.modal-container-sub {
    height: auto;
    width: 28rem;
    background-color: white;
    margin: auto 1rem 1rem auto;
    border-radius: 3px;
}

.modal-container {
    height: 95vh;
    width: 1200px;
    margin: 0 auto;
}

.modal-container-sub div {
    justify-content: flex-end !important;
}

.modal-content {
    padding: 0.25rem 1.75rem;
    width: auto;
}

/* Container Bilder */
.img-container {
    height: auto;
    width: calc(100% - 2rem);
    padding: 0 1rem !important;
    display: grid;
    grid-template-columns: repeat(2, calc(644px / 2));
    grid-template-rows: repeat(5, calc(644px / 2 * 0.6));
    gap: 3px;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-container img:first-of-type {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}

.img-container img.vert {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 5;
}

.imgSlide {
    height: 100%;
    width: 100%;
    /* display: none; */
    position: absolute;
    overflow: hidden;
    border-radius: 3px;
}

.imgSlide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 3px;
    transition: opacity 0.2s ease-in-out;
}

.imgSlide img:first-child {
    position: absolute;
    z-index: 100;
    transform: scale(1.05);
    opacity: 0;
}

.imgSlide img:first-child.imgSlideLoaded {
    opacity: 1;
}

.imgSlide img:last-child {
    filter: blur(10px);
    transform: scale(1.05);
}

.imgSlide img:last-child.imgSlideLoaded {
    opacity: 0;
}

.imgContain img {
    object-fit: contain !important;
}

.container-dots {
    position: absolute;
    bottom: 0;
    margin: 1rem 0;
    padding: 0.25rem;
}

.ua-webkit .container-dots {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 5rem;
    background-color: rgba(0, 0, 0, 0.4);
}

.ua-firefox .container-dots {
    border-radius: 5rem;
    background: rgba(0, 0, 0, 0.9);
}

.ua-firefox .isSupported .container-dots {
    backdrop-filter: blur(10px);
    border-radius: 5rem;
    background-color: rgba(0, 0, 0, 0.4);
}

.dots {
    padding: 0.15rem 0.75rem;
    transition: all 0.1s;
    cursor: pointer;
    height: 2.5rem;
}

.dots div {
    height: 0.5rem;
    width: 0.5rem;
    border: solid white 1px;
    border-radius: 0.75rem;
}

.activeIMG div,
.dots:hover div {
    background: white;
    transition: all 0.2s;
}

.prev, .next {
    padding: 0.15rem 0.75rem;
    cursor: pointer;
}

.prev div:after {
    content: "\21A4";
    color: white;
    font-size: 1.2rem;
}

.next div:after {
    content: "\21A6";
    color: white;
    font-size: 1.2rem;
}

/* Nav */
.container-nav-main {
    position: fixed;
    width: 100%;
    height: 9rem;
    top: 0px;
    z-index: 50;
}

.ua-webkit .container-nav-main-bg:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background: rgba(197, 197, 197, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 140px 30px rgba(31, 31, 31, 0.3);
}

.ua-webkit .noscroll .container-nav-main-bg:before, .ua-webkit .modalIsOpen .container-nav-main-bg:before {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: white !important;
}

.ua-firefox .isSupported .container-nav-main-bg:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background: rgba(197, 197, 197, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 140px 30px rgba(31, 31, 31, 0.3);
}

.ua-firefox .noscroll.isSupported .container-nav-main-bg:before, .ua-firefox .modalIsOpen.isSupported .container-nav-main-bg:before {
    backdrop-filter: none;
    background: white !important;
}

.header-not-at-top .container-nav-main {
    background: white;
    box-shadow: 0px -2px 50px -10px rgba(0,0,0,0.3);
    height: 5rem;
    transition: all 0.2s, backdrop-filter 0ms;
    z-index: 101;
}
.header-not-at-top .container-nav-main-bg:before {
    box-shadow: unset !important;
    background: unset !important;
}

.ua-webkit .header-not-at-top .container-nav-main {
    background: rgba(255,255,255,0.85);
}

.ua-firefox .header-not-at-top.isSupported .container-nav-main {
    background: rgba(255,255,255,0.85);
}

.header-not-at-top .nav-link,
.header-not-at-top .nav-burger-menu > div:after {
    color: rgba(0,0,0,0.9);
    font-size: 1.65rem;
}

.header-not-at-top .logo {
    height: 3rem;
    width: calc(2.24 * 3rem);
}

.header-not-at-top .burger-close {
    height: 5rem;
}

.header-not-at-top .burger-close > div {
    height: 2.05rem;
}

.container-nav-sub {
    height: auto;
    width: 100%;
}

.container-nav-links {
    height: auto;
    width: 1200px;
    margin: auto;
}

.nav-burger-menu {
    display: none;
}

.nav-burger-menu > div {
    margin: auto 1.75rem;
}

.nav-burger-menu > div:after {
    content: "\2630";
    font-size: 2rem;
    color: white;
    cursor: pointer;
    font-weight: 600;
}

.burger-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 20rem;
    z-index: 201;
    background: white;
}

.ua-webkit .burger-menu {
    background: rgba(255,255,255,0.9) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ua-firefox .isSupported .burger-menu {
    background: rgba(255,255,255,0.9) !important;
    backdrop-filter: blur(10px);
}

.burger-close {
    height: 9rem;
}

.burger-close > div {
    margin: auto 1.75rem auto auto
}

.burger-close > div:after {
    content: "\2715";
    font-size: 2rem;
    color: rgb(31,31,31);
    cursor: pointer;
    margin: auto;
    font-weight: 600;
}

.header-not-at-top .burger-close > div:after {
    font-size: 1.65rem;
}

.burger-link-container {
    position: absolute;
    top: 5rem;
    padding: 1rem;
    width: calc(100% - 2rem);
    height: calc(100% - 5rem);
    overflow-y: scroll;
}

.burger-link-container a {
    text-decoration: none;
    transition: all 0.2s;
}

.burger-link-container a:hover {
    color: rgba(31, 31, 31, 0.5)
}

.burger-link-container ul li:first-of-type a {
    font-size: 1.25rem;
}

/* Navigationsanker */

#start #top-of-site-pixel-anchor {
    position: absolute;
    width: 1px;
    height: 1px;
    top: calc(100vh - 15rem);
    left: 0;
}

#buero #top-of-site-pixel-anchor {
    position: absolute;
    width: 1px;
    height: 1px;
    top: -5rem;
    left: 0;
}

#projekte #top-of-site-pixel-anchor {
    position: absolute;
    width: 1px;
    height: 1px;
    top: -5rem;
    left: 0;
}

#auszeichnungen #top-of-site-pixel-anchor {
    position: absolute;
    width: 1px;
    height: 1px;
    top: -5rem;
    left: 0;
}

#kontakt #top-of-site-pixel-anchor {
    position: absolute;
    width: 1px;
    height: 1px;
    top: -5rem;
    left: 0;
}

/* Dropdown */

.dropdown {
    display: inline-block;
    position: relative;
    margin: auto;
    transition: all 0.2s !important;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 10rem;
    z-index: 51;
    margin: 0.65rem 0.25rem;
    padding: 0.5rem 0.75rem;
    border-radius: 3px;
}

.ua-webkit .dropdown-content {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ua-webkit .noscroll .dropdown-content {
    backdrop-filter: unset;
    -webkit-backdrop-filter: unset;
    background: white;
}

.ua-firefox .isSupported .dropdown-content {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
}

.ua-firefox .noscroll.isSupported .dropdown-content {
    backdrop-filter: unset;
    background: white;
}

.dropdown-content a {
    display: block;
    text-decoration: none;
    transition: all 0.2s;
    padding: 0.25rem 0;
}

.dropdown-content a:hover {
    color: rgba(31, 31, 31, 0.5);
}

/* verschiedenes */

.shadow {
    box-shadow: 0px 15px 50px -10px rgba(31, 31, 31, 0.5);
}

.logo {
    background-image: url(../img/logo_psing_klein.png);
    height: 4rem;
    width: calc(2.24 * 4rem);
    background-size: contain;
    background-repeat: no-repeat;
    margin: auto 1.75rem;
}

.nav-link {
    margin: auto 0.25rem;
    margin-right: 1.75rem;
    padding: 0.25rem 0.75rem;
    color: white;
    font-weight: 400;
    font-size: 1.95rem;
    text-decoration: none;
    font-variant-caps: all-petite-caps;
    transition: all 0.2s;
    line-height: 1;
    cursor: pointer;
    padding-bottom: 0.5rem;
    border-radius: 3px;
}

.nav-link:hover {
    background: white;
    color: rgb(31, 31, 31);
}

.ua-webkit .nav-link:hover {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ua-firefox .isSupported .nav-link:hover {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
}

.img-full {
    height: 100%;
}

.link {
    text-decoration: none;
    transition: all 0.2s;
    color: rgb(31,31,31);
}

.link:hover {
    color: rgba(31, 31, 31, 0.5);
}

.link:after {
    content: "\2192";
    padding-left: 5px;
}

.link.var {
    color: white;
}

.link.var:hover {
    color: white;
    text-decoration: underline;
}

.link.var:after {
    content: "\2192";
    padding-left: 5px;
} 

.discriptive-link.dark {
    color: rgb(31,31,31) !important;
}

.dark .prev div:after,
.dark .next div:after {
    color: rgb(31,31,31) !important;
}

.dark .dots div {
    border-color: rgb(31,31,31) !important;
}

.dark .dots:hover div {
    background: rgb(31,31,31) !important;
}

.dark .dots.activeIMG div {
    background: rgb(31,31,31) !important;
}

.discriptive {
    font-size: 0.8rem;
    font-style: italic;
    color: white;
    margin: 0 1rem !important;
    padding: 0.15rem 0.75rem !important;
    text-align: right !important;
    width: calc(100% - 2*0.75rem - 2rem) !important;
}

.discriptive-link {
    font-size: 0.8rem;
    font-style: italic;
    text-decoration: none;
    transition: all 0.2s;
    color: white;
    margin: auto 1rem 1rem auto;
    padding: 0.15rem 1.75rem;
}

.modal-container-sub a {
    color: rgb(31, 31, 31);
    margin: 0 !important;
}

.table {
    display: grid;
    grid-auto-flow: column;
    padding: 3rem 0;
    grid-gap: 2rem;
}

.table-sub {
    width: calc(1200px / 2);
    height: auto;
}

.table-sub.var {
    width: calc(1200px / 4);
    height: auto;
}

.table-sub.var2 {
    width: unset;
}

.table-sub h3 {
    margin: 1rem 0;
}

.table-sub.var2 h3 {
    height: 5rem;
}

.animated {
    animation-duration: 0.25s !important;
}

/* Head - Slide */

.slide,
.slide:after {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
    padding: 0;
    margin: 0;
    list-style: none;
}

.slide:after {
    content: "";
}

.slide li span {
    width: 100%;
    height: 100%;
    position: absolute;
    color: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: none;
    opacity: 0;
    z-index: 9;
    animation: imageAnimation 25s linear infinite 0s;
}
.slide li {
    display: flex;
    flex-flow: row;
    justify-content: space-around;
}

.slide li div {
    z-index: 20;
    position: absolute;
    width: 1200px;
    text-align: center;
    opacity: 0;
    color: white;
    animation: titleAnimation 25s linear infinite 0s;
    display: flex;
    flex-flow: row;
    justify-content: flex-end;
    height: 100%;
}

/* Keyframes orientieren sich an der Gesamtzeit der Animation: 10s je Bild bei 20s Gesamtzeit = bei 50% Animation wird Bild wieder abgebaut */
@keyframes imageAnimation { 
    0% { opacity: 0; animation-timing-function: ease-in; }
    2% { opacity: 1; animation-timing-function: ease-in;}
    15% { opacity: 1; animation-timing-function: ease-out; }
    20% { opacity: 1 }
    22% { opacity: 0 }
    100% { opacity: 0 }
}

@keyframes titleAnimation {
    0% {opacity: 0; z-index: 20;}
    2% {opacity: 1; z-index: 22;}
    15% {opacity: 1; z-index: 22;}
    20% {opacity: 1; z-index: 22;}
    22% {opacity: 0; z-index: 20;}
    100% {opacity: 0; z-index: 20;}
}

.slide li:nth-child(1) div {
    animation-delay: 0s;
}
.slide li:nth-child(2) div {
    animation-delay: 5s;
}
.slide li:nth-child(3) div {
    animation-delay: 10s;
}
.slide li:nth-child(4) div {
    animation-delay: 15s;
}
.slide li:nth-child(5) div {
    animation-delay: 20s;
}

.slide li.pause div, .slide li.pause span {
    -webkit-animation-play-state:paused;
    -moz-animation-play-state:paused;
    -o-animation-play-state:paused;
    animation-play-state:paused;
}

/* Referenzen Kacheln */

.ref {
    padding: 3rem 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ref.var {
    grid-template-columns: repeat(2, 1fr);
}

.filter-container {
    justify-content: center;
}

.filterLink {
    margin: 0.5rem;
}

.filterLink a {
    font-size: 0.8rem;
    transition: all 0.2s;
    padding: 0.25rem 0.75rem;
    text-decoration: none;
}

.filterLink a:hover {
    color: rgba(31, 31, 31, 0.5);
}

.ref-card {
    height: 100%;
}

.ref-card div {
    width: calc(100% - 2rem);
    padding-top: calc(60% - 2rem);
    margin: 1rem 1rem 0.5rem 1rem;
    box-shadow: 0px 15px 25px -15px rgba(31, 31, 31, 0.35);
    cursor: pointer;
    border-radius: 3px;
    position: relative;
}

.ref-card div img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    border-radius: 3px;
}

.var.discriptive-link {
    color: rgb(31,31,31);
    text-align: end;
    margin: 0;
    padding: 0.15rem 1rem;
    margin-bottom: 1rem;
    height: 3rem;
}

.var.discriptive-link:hover {
    color: rgba(31, 31, 31, 0.5);
}

.filterDiv {
    display: none;
}

.filterList {
    display: none;
}

.show {
    display: block !important;
    animation: fadeIn 0.1s all !important;
}

.filterLink.active:after {
    content: "\002B";
    font-style: normal !important;
    padding-left: 1.2rem;
    font-size: 1rem;
}

.viewStyle {
    display: none;
}

/*Modal Auszeichnungen*/
.modal-info {
    display: none;
}

.modal-info-content {
    padding-top: 0 !important;
    height: 328px;
    background: rgb(31,31,31);
}

.modal-info-content h3, .modal-info-content p {
    margin: 0.6rem 1rem;
}

.modal-info-content>* {
    padding: 0.25rem 0.75rem;
    color: white;
}

/*Modal*/
.modal-full {
    display: none;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 51;
}

.modal-full-container {
    height: 100vh;
    width: calc(100vw - 17px);
    width: 100vw !important;
}

.ua-webkit .modal-full-container {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ua-firefox .modal-full-container:before {
    background: rgba(255, 255, 255, 0.75);
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    content: '';
    display: inherit;
    z-index: -10;
}

.ua-firefox .isSupported .modal-full-container:before {
    content: unset;
}

.ua-firefox .isSupported .modal-full-container {
    backdrop-filter: blur(10px);
}

.modal-full-container-inner {
    width: calc(1200px - 5rem);
    margin: 7.5rem auto 2.5rem auto;
    height: calc(100% - 12.5rem);
    padding: 2.5rem 2.5rem 0 2.5rem;
    background: white;
    border-radius: 3px;
}

.modal-close {
    height: 5rem;
}

.text .modal-close {
    margin: 0 -2.5rem;
}

.modal-full-content {
    height: calc(100% - 5rem);
    overflow-y: scroll;
}

.modal-full-placeholder {
    height: calc(100% - 5rem);
}

.modal-full-container-img {
    width: 1200px;
    max-height: calc(100% - 10rem);
    height: calc(1200px *0.6);
    margin: 7.5rem auto 2.5rem auto;
    background: white;
    position: relative;
    border-radius: 3px;
}

.modal-full-container-img .modal-close {
    position: absolute;
    bottom: 0;
    right: 0;
}

.modal-detail {
    position: absolute;
    margin: 1rem;
    bottom: 0;
    left: 0;
    height: calc(100% - 2rem);
    width: 35%;
    background: white;
    display: none;
    z-index: 52;
    border-radius: 3px;
}

.modal-detail-content {
    margin: 0 1rem 1rem 1rem;
    height: calc(100% - 4rem);
    width: calc(100% - 2rem);
    overflow-y: auto;
}

.modal-detail-content .block-full {
    padding-top: 1rem;
}

.modal-detail-trigger {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.detail {
    padding: 0.15rem 0.75rem;
    margin: auto auto 0 0 !important;
    color: rgb(31,31,31);
    text-decoration: none;
    text-align: left !important;
}

.detail-trigger {
    height: 5rem;
    position: absolute;
    bottom: 0;
    left: 0;
}
.detail-trigger .discriptive-link {
    margin: auto auto 1rem 1rem;
}

/*Modal Banner - Datenschutzhinweis*/
.modal-banner {
    display: none;
    height: auto;
    min-height: 10rem;
    width: 100%;
    z-index: 999;
    position: fixed;
    left: 50%;
    bottom: 0;
    background: rgb(31,31,31);
    flex-wrap: nowrap;
    transform: translateX(-50%);
    padding: 0 1px;
}

.ua-webkit .modal-banner {
    background: rgba(31, 31, 31, 0.75) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ua-firefox .isSupported .modal-banner {
    background: rgba(31, 31, 31, 0.75) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-banner p, .modal-banner a {
    color: white;
}

.modal-banner-content {
    padding: 0.75rem;
    margin: 0 1rem;
}

/* Karte */
.map {
    height: 35rem;
    margin: 5rem 0 !important;
}
.map div {
    height: 100%;
}

.ol-control {
    padding: 0 !important;
    background-color: inherit !important;
}

.ol-zoom {
    height: auto !important;
}

.ol-zoom > button {
    margin: 0.75rem !important;
    background-color: white !important;
    color: rgba(255,255,255,0.0) !important;
    border-radius: 50% !important;
    height: 2rem !important;
    width: 2rem !important;
}

.ua-webkit .ol-zoom > button {
    background-color: rgba(255,255,255,0.5) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    transition: all 0.2s;
}

.ua-webkit .ol-zoom > button:hover {
    background-color: rgba(255,255,255,0.9) !important;
}

.ol-zoom-in, .ol-zoom-in:hover {
    background: url(../img/plus.svg);
    background-size: 50% 50%;
    background-repeat: no-repeat;
    background-position: center;
}

.ol-zoom-out, .ol-zoom-out:hover {
    background: url(../img/minus.svg);
    background-size: 50% 50%;
    background-repeat: no-repeat;
    background-position: center;
}


.ol-rotate {
    display: none;
}

.ol-attribution {
    background: none !important;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
}

.ol-attribution li {
    font-size: 0.75rem;
    padding-left: 0 !important;
}

.ol-attribution li:before {
    border: none;
    padding-right: 0 !important;
    margin-left: 0 !important;
}

.ol-attribution li a {
    font-size: 0.75rem;
    text-decoration: none;
}

.ol-overlay-container {
    height: auto !important;
    padding-bottom: 4rem;
}

.marker, .marker:hover {
    height: 3rem;
    width: 3rem;
    background: url(../img/marker.svg);
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    color: unset;
    padding: 0;
    margin: 0;
    transform-origin: bottom;
}

.marker:hover {
    transform: scale(1.2);
    box-shadow: unset;
}

/*Icons - Austausch*/

.modal-close .discriptive-link {
    color: rgba(255,255,255,0.0) !important;
    background: url(../img/quit-white.svg);
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
    background-position: center;
    width: 3rem;
    height: 3rem;
    padding: 0.15rem 0.15rem;
}

.ua-webkit .modal-close .discriptive-link {
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.4);
}

.ua-firefox .modal-close .discriptive-link {
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.9);
}

.ua-firefox .isSupported .modal-close .discriptive-link {
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-close .dark.discriptive-link {
    color: rgba(255,255,255,0.0) !important;
    background: url(../img/quit-dark.svg);
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
    background-position: center;
    width: 3rem;
    height: 3rem;
    padding: 0.15rem 0.15rem;
}

.ua-webkit .modal-close .dark.discriptive-link {
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: unset;
}

.ua-firefox .modal-close .dark.discriptive-link {
    border-radius: 50%;
    background-color: unset;
}

.ua-firefox .isSupported .modal-close .dark.discriptive-link {
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background-color: unset;
}

.detail-trigger .discriptive-link {
    color: rgba(255,255,255,0.0) !important;
    background: url(../img/info-white.svg);
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
    background-position: center;
    width: 3rem;
    height: 3rem;
    padding: 0.15rem 0.15rem;
}

.ua-webkit .detail-trigger .discriptive-link {
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.4);
}

.ua-firefox .detail-trigger .discriptive-link {
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.9);
}

.ua-firefox .isSupported .detail-trigger .discriptive-link {
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.4);
}

.detail-trigger .dark.discriptive-link {
    color: rgba(255,255,255,0.0) !important;
    background: url(../img/info-dark.svg);
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
    background-position: center;
    width: 3rem;
    height: 3rem;
    padding: 0.15rem 0.15rem;
}

.detail.discriptive {
    color: rgba(255,255,255,0.0) !important;
    background: url(../img/info-dark.svg);
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
    background-position: center;
    width: 3rem !important;
    height: 3rem !important;
    padding: 0.15rem 0.15rem !important;
}

.head .modal .discriptive-link {
    color: rgba(255,255,255,0.0) !important;
    background: url(../img/quit-dark.svg);
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
    background-position: center;
    width: 3rem;
    height: 3rem;
    padding: 0.15rem;
}

.next div:after, .prev div:after {
    color: rgba(255,255,255,0.0);
}

.dark .next div:after, .dark .prev div:after {
    color: rgba(255,255,255,0.0) !important;
}

.next {
    background: url(../img/arrow-light.svg);
    background-size: 0.75rem;
    background-repeat: no-repeat;
    background-position: center;
}

.prev {
    background: url(../img/arrow-light.svg);
    background-size: 0.75rem;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
}

.dark .next {
    background: url(../img/arrow-dark.svg);
    background-size: 0.75rem;
    background-repeat: no-repeat;
    background-position: center;
}

.dark .prev {
    background: url(../img/arrow-dark.svg);
    background-size: 0.75rem;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
}

.sign {
    font-size: 8px;
    text-align: center;
    margin-bottom: 0;
}

.burger-menu .sign:first-child {
    padding-left: calc(1rem + 2px);
    text-align: left;
    font-size: 0.75em;
}

.burger-menu .sign {
    padding-left: calc(1rem + 2px);
    text-align: left;
}

.VarVers:before {
    content: 'v1.0.3';
}