@charset "utf8";
@font-face {
    font-family: 'beyond_the_mountains';
    font-style: normal;
    font-weight: normal;
    src: local('beyond_the_mountains'), url('beyond_the_mountains.woff2') format('woff2');
    }

:root{
    --dunkelgruen: rgb(182,140,30);
    --hellgruen: rgba(255,255,255,0.7);
}

*{
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size:14px;
    color:#000;
    margin:0;
    padding:0;
    text-decoration: none;
    box-sizing: border-box;
}
html{
    background-color: #fff;
    overflow-x: hidden;
    background-image:url(../images/bg.webp);
    background-attachment:fixed;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
}
/*
html#siteremember{
    background-image:none;
}
*/
a, button, .button{
    color:inherit;
    cursor:pointer;
}
ul{
    padding-left:30px;
    padding-top:8px;
}
h1{
    font-size:1.2rem;
    font-style: italic;
}

body  > header{
    position: sticky;
    top:-100px;
    width: 100%;
    height:250px;
    z-index: 100;
}
header > header{
    position: absolute;
    top:0px;
    height:250px;
    width:60%;
    background-color: var(--hellgruen);
    z-index: 100;
}

header > header:nth-of-type(1){
    position: fixed;
    left:calc(50% - 150px);
    top:15px;
    width:300px;
    border-radius: 100%;
    box-shadow: 0px 0px 15px #7e7d7d;
    text-align: center;
    transition:all 0.2s;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    overflow:hidden;
    background-image:url(../images/logo.svg);
}
header > header:nth-of-type(1):hover{
    box-shadow: 0px 0px 15px #313131;
}
header > header:nth-of-type(1) a{
    display:block;
    height:250px;
    width: 100%;
}
header > header:nth-of-type(1) img{
    max-width: 80%;
}
body > footer{
    background-color: rgb(167, 163, 126);
    height: 120px;
    width:140%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    position: fixed;
    bottom: -50px;
    left: -20%;
    z-index: 100;
    text-align: center;
    line-height: 90px;
    padding:0px 21%;
}
body > footer *{
    font-size:0.85rem;
}
body > footer a{
    display: inline-block;
    margin: 0px 10px;
    float: right;
}
body > footer span{
    float: left;
}

main{
    padding:25px 8px 80px 8px;
    width: 90%;
    margin: auto;
}
main form{
    max-height: 100%;
}

main section.grid11{
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "links rechtsoben";
    grid-gap: 25px;
}
main section.grid12{
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "links rechtsoben" "links rechtsunten";
    grid-gap: 25px;
}
main section.grid21{
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    grid-template-rows: auto auto;
    grid-template-areas: "linksoben rechts" "linksunten rechts";
    grid-gap: 25px;
}
section:not(.contentbox) > h1{
    display:none;
}
.grid12 figcaption{
    grid-area: links;
}
.grid12 figure,.grid11 figure{
    transform: rotate(-6deg);
}
.img{
    margin:0px 30px;
}
img{
    max-width: 90%;
    max-height: 350px;
    filter:sepia(0.6) grayscale(0.8);
    transition: all 0.7s;
    border-radius: 15px;
    box-shadow: 4px 4px 8px #000;
    transition:all 0.2s;
    position: relative;
    top:25px;
}
img:hover,.fancybox__dialog img{
    filter:none;
}
.fancyboximage img{
    filter:none;
    border-radius: 0px;
    box-shadow:none;
    transition:all 0.2s;
    position: static;
    max-height:100%;
}

.contentbox{
    background-color: rgba(255,255,255,0.8);
    border-radius: 15px;
    box-shadow: 4px 4px 8px #000;
    padding:20px;
}
.contentbox .button{
    padding:20px;
    font-weight:bold;
    background-color:var(--dunkelgruen);
    border:0;
    border-radius:8px;
    color:#fff;
    margin:7px 5px;
    display: inline-block;
    box-shadow: 4px 4px 8px #000;
}
.contentbox .button.adminlink{
    background-color:#DC8787;

}

.contentbox h1{
    font-family:beyond_the_mountains;
    letter-spacing:2px;
    font-size:1.6rem;
    color:var(--dunkelgruen);
}
.contentbox h2{
    font-family:beyond_the_mountains;
    letter-spacing:1px;
    font-size:1.3rem;
    color:var(--dunkelgruen);
    margin-top: 5px;
    margin-bottom: 5px;
}
.contentbox h3{
    font-family:beyond_the_mountains;
    letter-spacing:1.5px;
    font-size:1.1rem;
    color:var(--dunkelgruen);
    margin-top: 5px;
    margin-bottom: 5px;
}
.white{
    color:#fff;
}
.col{
    display: inline-block;
    width:130px;
}

form{
    line-height:34px;
}
form input,form select{
    width:80%;
    border-radius:7px;
    padding:5px 7px;
    border:1px solid var(--dunkelgruen);
}
form select{
    width:79.8%;
}
form input[name=plz]{
    width:20%;
}
form input[name=ort]{
    width:59.3%;
}
form input[name=vname]{
    display:none;
}
form input[type=checkbox],form input[type=radio]{
    width:auto;
}

#alpha{
    position:fixed;
    top:0;
    left:0;
    height: 100vH;
    width: 100%;
    z-index: 1100;
    background-color:rgba(0,0,0,0.8);
    display: none;
}
input[type=file] {
    display:none;
}
/*********** Baseline, reset styles ***********/
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  width: 80%;
  vertical-align: middle;
  margin:5px 0px;
  border:0;
}

/* Removes default focus */
input[type="range"]:focus {
  outline: none;
}

/******** Chrome, Safari, Opera and Edge Chromium styles ********/
/* slider track */
input[type="range"]::-webkit-slider-runnable-track {
  background-color: var(--dunkelgruen);
  border-radius: 0.5rem;
  border-color:var(--dunkelgruen);
  height: 1rem;
}

/* slider thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  margin-top: -4px; /* Centers thumb on the track */
  background-color: var(--hellgruen);
  border-radius: 1rem;
  border-color:var(--dunkelgruen);
  height: 1.5rem;
  width: 1.5rem;
  outline: 1px solid var(--dunkelgruen);
  /*outline-offset: 0.125rem;*/
}

input[type="range"]:focus::-webkit-slider-thumb {
}

/*********** Firefox styles ***********/
/* slider track */
input[type="range"]::-moz-range-track {
  background-color: var(--hellgruen);
  border-radius: 0.5rem;
  height: 1rem;
}

/* slider thumb */
input[type="range"]::-moz-range-thumb {
  background-color: var(--hellgruen);
  border: none; /*Removes extra border that FF applies*/
  border-radius: 1rem;
  border-color:var(--hellgruen);
  height: 1.5rem;
  width: 1.5rem;
}

input[type="range"]:focus::-moz-range-thumb{
  outline: 3px solid var(--dunkelgruen);
  outline-offset: 0.125rem;
}

#preis_monat{
    font-size:0.7em;
    text-align:right;
    width:94%;
    display:block;
    margin:auto;
    position: relative;
    top:-7px;
    line-height:1.8em;
}

#burger{
    position: fixed;
    top:30px;
    right:30px;
    font-size:50px;
    z-index:1000;
    color:var(--dunkelgruen);
    background-color:rgba(255,255,255,0.7);
    border-radius:7px;
}
body > menu{
    position:fixed;
    top:0;
    left:0;
    height: 100vH;
    width: 100%;
    z-index: 1200;
    background-color:rgba(0,0,0,0.8);
    display: block;
    margin-left:-120%;
    transition: all 0.7s;
    overflow:auto;
    padding-top:60px;
}
body > menu.aktiv{
    margin-left:0;
}
body > menu li{
    line-height:2.8rem;
    text-align: center;
    list-style-type: none;
}
body > menu a{
    display:block;
    color:#fff;
    font-size:1.4rem;
    position: relative;
}
body > menu a.aktiv,body > menu a:hover{
    color:var(--hellgruen);
}
body > menu a:not(.close):after{
    content:"";
    display:block;
    height:1px;
    width:0%;
    position: absolute;
    bottom: -1px;
    left:50%;
    background-color:var(--hellgruen);
    transition: all 0.4s;
}
body > menu a:hover:after{
    width:80%;
    left:10%;
}
body > menu a.close{
    color:var(--hellgruen);
    position: absolute;
    top:30px;
    right:30px;
    font-size:40px;
}

#loginform label,.loginform label{
    display:inline-block;
    width:15%;
    margin-left:3%;
}
a.login{1
    display:inline-block;
    vertical-align: top;
    width:100px;
    height:100px;
    line-height:60px;
    font-size:50px;
    text-align: center;
    margin: 6px;
    transition: all 0.2s;
}
.login:hover{
    margin: 10px 3px 2px 7px;
    box-shadow: 0px 0px 4px #000;
}
.hide{
    display:none;
}
td.status a{
    width:15px;
    height:15px;
    display:block;
    font-size:1.4em;
    vertical-align:middle;
}
.icon-eye-with-line{
    color: red;
}
.icon-eye{
    color: green;
}
.thumb{
    vertical-align: top;
    display: inline-block;
    height: 130px;
    width: 130px;
    line-height:130px;
    text-align: center;
    background-position: center center;
    background-size:contain;
    background-repeat: no-repeat;
    background-color: rgba(0,0,0,0.1);
    margin: 8px;
    border-radius: 8px;
    box-shadow: 4px 4px 8px #000;
    opacity: 0.7;
    transition: all 0.7s;
    border:6px solid transparent;
    position: relative;
    overflow: hidden;
}
.thumb:hover{
    opacity: 1;
}
.thumb div{
    position: absolute;
    top:120%;
    left:0px;
    width:100%;
    height:100%;
    background-color: rgba(0,0,0,0.7);
    transition: all 0.4s;
    border-radius: 8px;
    text-align: center;
}
.thumb:hover div{
    top:0;
}
.thumb .fancyboximage{
    display:inline-block;
    position: absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
}
.thumb.portrait{
    background-color: var(--dunkelgruen);
}
.thumb.portrait .icon-user,.thumb .band{
    display:none;
}

.portrait .band{
    display:block;
    position:absolute;
    right:-40px;
    top:10px;
    background-color: rgba(0,0,0,0.8);
    width:100%;
    height:17px;
    line-height:17px;
    text-align:center;
    color:var(--hellgruen);
    font-size:0.6em;
    transform:rotate(45deg);
    border:1px solid var(--hellgruen);
}

.fancybox-image,.fancybox-thumbs *{
    filter:none !important;
}
.fancybox-infobar__body span{
    color:#fff;
    font-size:0.9em;
}
progress{
    height:0.5rem;
    border-radius: 50%;
}
progress[value] {
  --color: green;
  --background: lightgrey;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 10em;
  background: var(--background);
}
progress[value]::-webkit-progress-bar {
  border-radius: 10em;
  background: var(--background);
}
progress[value]::-webkit-progress-value {
  border-radius: 10em;
  background: var(--color);
}
progress[value]::-moz-progress-bar {
  border-radius: 10em;
  background: var(--color);
}
#filebt,#coverbt{
    padding:5px 20px;
    font-weight:bold;
    background-color:rgb(167, 163, 126);
    border:0;
    border-radius:8px;
    color:#fff;
    margin:7px 5px;
    display: inline-block;
    box-shadow: 4px 4px 8px #000;
}

.remembers{
    display:grid;
    grid-template-columns:30px 1fr 1fr 1fr;
    grid-template-rows:1fr;
    grid-column-gap:5px;
    grid-template-areas:"status name died links";
}
.remembers > span{
    vertical-align:middle;
    line-height:1.9em;
}
.remembers > span a{
    display:inline-block;
    margin:0px 5px;
}
.remembers > span:nth-of-type(1){
    grid-area: status;
}
.remembers > span:nth-of-type(2){
    grid-area: name;
}
.remembers > span:nth-of-type(3){
    grid-area: died;
}
.remembers > span:nth-of-type(4){
    grid-area: links;
}

.users{
    display:grid;
    grid-template-columns:1fr 1fr 0.5fr 0.3fr 0.3fr 0.3fr;
    grid-template-rows:1fr;
    grid-column-gap:5px;
    grid-template-areas:"name mail ablauf more code qr";
}
.users > span:nth-of-type(1){
    grid-area: name;
}
.users > span:nth-of-type(2){
    grid-area: mail;
}
.users > span:nth-of-type(3){
    grid-area: ablauf;
    text-align:center;
}
.users > span:nth-of-type(4){
    grid-area: more;
    text-align:center;
}
.users > span:nth-of-type(5){
    grid-area: code;
    text-align:center;
}
.users > span:nth-of-type(6){
    grid-area: qr;
    text-align:center;
}
.user_kond{
    position: relative;
}
.user_kond .icon-trash{
    position: absolute;
    right:15px;
    display: block;
    line-height: 40px;
    width: 40px;
    text-align: center;
    top:0px;
    border-radius:50%;
    font-size:20px;
    background-color:var(--hellgruen);
    transition:all 0.6s;
    opacity: 0;
    color:var(--dunkelgruen);
}
.user_kond:hover .icon-trash{
    opacity: 1;
}


#progressbar{
    display:inline-block;
    height:6px;
    border-radius:3px;
    border:1px solid var(--dunkelgruen);
}
#progressbar span{
    display:block;
    background-color:#000;
    width:0%;
    height:100%;
}
.fehler{
    color:#E07171;
}