@charset "UTF-8";


#notification-bar {
    display: flex;
    position: absolute;
    top: 0px;
    padding: 8px 12px;
    width: auto;
    text-align: left;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 0px 0px 10px 10px;
}

.error {
    background: rgba(219, 43, 43, 0.75);
    border: 1px solid rgba(255, 161, 161, 0.5);
    color: white;
}

.warning {
    background: rgba(255, 217, 0, 0.75);
    border: 1px solid rgba(255,180,0,0.5);
    color: black;
}

.success {
    background: rgba(32, 129, 32, 0.75);
    border: 1px solid rgba(126, 255, 126, 0.5);
    color: white;
}

.info {
    background: rgba(185, 185, 185, 0.75);
    border: 1px solid rgba(220,220,220,0.5);
    color: black;
}

.error::before, .warning::before, .success::before, .info::before { align-self: center; padding-right: 10px; font-size: 25px; }
.error::before { content: '🚨'; }
.warning::before { content: '⚠︎'; }
.success::before { content: '👍'; }
.info::before { content: 'ℹ︎'; }


#pagewrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


/* CSS Document */
@media only screen and (min-width: 1300px) and (max-width: 1500px) {
    #border {
        transform: scale(1.2);
    }
}

@media only screen and (min-width: 1500px) and (max-width: 2000px) {
    #border {
        transform: scale(1.3);
    }
}

@media only screen and (min-width: 2000px) and (max-width: 2500px) {
    #border {
        transform: scale(1.5);
    }
}

@media only screen and (min-width: 2500px) and (max-width: 9999px) {
    #border {
        transform: scale(1.7);
    }
}



* {
    font-family: Tahoma, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.softfade {
    animation: fading 10s infinite;
}

@keyframes fading{
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

body {
    z-index: 0;
}

.legende {
    color: rgba(255,255,255,0.5);
    font-size: 0.8em;
    background-color: rgba(0,0,0,0.6);
    padding: 10px;
    border-radius: 10px 10px 0px 0px;
    backdrop-filter: blur(5px);
}

.legende span,
.legende a {
    color: rgba(255,255,255,0.7);
}

#border {
    z-index: 20;
}

.z100 {
    z-index: 100;
}

.backback,
.slideimg {
    z-index: -1;
}

.backback {
    position: absolute;
}

.si1 {
    background: url('../images/gallery/pool_offen-25_04.jpg') no-repeat center center fixed;
}

.si2 {
    background: url('../images/gallery/haus4.jpg') no-repeat center center fixed;
}

.si3 {
    background: url('../images/gallery/sauna3.jpg') no-repeat center center fixed;
}

.si4 {
    background: url('../images/gallery/wohnung-a2.jpg') no-repeat center center fixed;
}

.btn-active {
    background-color: lightblue;
}

.fewo-color {
	color: #680007;
}

.fewo-bg {
	background-color: #680007;
}