body, html{
    position: absolute;
    width: 100%;
    min-height: 100vh;
    top: 0;
    margin: 0;
    padding: 0;
    z-index: -20;
    flex-direction: column;
    scroll-behavior: smooth;
    font-family: 'Saira Semi Condensed', sans-serif;
    font-weight: 500;
    font-size: calc(.1em + .65vw);
    color: #0c0c0c;
    text-decoration: none;
    scrollbar-width: none;
    background-image: radial-gradient(farthest-corner at 0px 00px, rgb(143, 188, 202) 0%, rgb(84, 95, 143)100%);
    background-size: 150%;
    /*animation: backgroundAnimation 10s infinite alternate;*/
}

.particles-js-canvas-el{
    z-index: -1;
    height: 99vh;
    position: fixed;
    top: 0;  
    opacity: 0.15; 
}

#iconNav{
    position: fixed;
    bottom: 1.5vh;
    left: 1vw;
    display: flex;
    flex-direction: column;
}

nav i{
    color: rgba(255, 255, 255, .8);
    margin-top: .6rem;
    font-size: 1.4rem;
}

#form{
    top: 0;
    display: flex;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: #dadada5b;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

input{
    text-align: center;
    width: 15vw;
    height: 2rem;
    margin-bottom: 2vh;
    padding:5px; 
    border:3px solid #ccc; 
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

button{
    font-size: 1rem;
    border:3px solid #ccc; 
    width: 15vw;
    height: 3rem;
    padding:5px 15px; 
    margin-bottom: 2vh;
    background:#ccc; 
    border:0 none;
    cursor:pointer;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
#timeStampBackground{
    position: fixed;
    background-color: rgba(255,255,255,0.4);
    z-index: -100;
    width: 52vw;
    height: 30vh;
    top: 90vh;
    left: 24vw;
    border-radius: 1rem;
    transform: perspective(800px) rotateX(40deg) translateY(10vh);
    transition: .4s ease-out;
}
#timeStampIcon{
    cursor: pointer;
    position: fixed;
    padding: 2vh;
    left: 48vw;
    top: 94vh;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.8);
    transition: .4s ease-out;
}
#timeStampForm{
    position: fixed;
    width: 45vw;
    height: 1rem;
    top: 96vh;
    bottom: 0;
    left: 50%;
    text-align: center;
    margin-bottom: 1.5rem;
    transform: translateX(-50%) translateY(10vh);
    transition: .4s ease-out;
}
#timeStampForm input{
    height: 100%;
}
#timeStampUser, #timeStampFiliale{
    width: 12vw;
    height: 210%;
}
#timeStampButton{
    height: 210%;
}

#timeSelectBackground{
    position: fixed;
    background-color: rgba(255,255,255,0.4);
    width: 22vw;
    height: 12.5vh;
    left: 39vw;
    top: -5vh;
    border-radius: 1rem;
    transform: perspective(250px) rotateX(-40deg) 
}
#timeSelect{
    position: fixed;
    top: 1vh;
    left: 50%;
    transform: translateX(-50%);
    height: 1rem;
    width: 18vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#timeSelect input{
    height: 100%;
    width: 8vw;
    margin: .1rem;
    margin-top: 0;
    border-color: rgba(255,255,255,0);
}
#content{
    padding-bottom: 3vh;
}

section{
    display: flex;
    flex-direction: column;
}
.collapsible {
    background-color: rgba(255,255,255,0);
    cursor: pointer;
    margin: 0;
    margin-top: 3vh;
    padding-left: 3vw;
    width: 94vw;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    text-align: left;
    outline: none;
    font-size: 1.5rem;
}
.collapsible:before {
    content: '+';
    position: absolute;
    left: 1vw;
    margin-top: -1vh;
    font-size: 2rem;
    color: rgba(255,255,255,0.5);
    outline: none;
    border: none;
    float: right;
    margin-left: 5px;
  }
  
  .active:before {
    content: "-";
  }

.name{
    font-size: 1.5rem;
    font-weight: 800;
    padding-left: 3vw;
    padding-right: 3vw;
    width: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out
}

.kalenderWoche{
    background-color: rgba(255,255,255,0.1);
    padding: 1rem;
    margin-bottom: 1.75vh;
    font-weight: 500;
    display: flex;
    flex-direction: row;
}

.wochenStundenDiv{
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-left: -4vw;
}
.wochenGesamtZeit, .wochenRestZeit{
    text-align: end;
}

.dateContainer{
    background-color: rgba(255,255,255,0.1);
    width: 10vw;
    padding: 1rem;
    padding-bottom: 0;
    margin-left: 1vw;
    font-size: 1.1rem;
    display: grid;
    grid-template-rows: 4vh 1fr 6vh;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
    "date date"
    "stempel arbeitszeit"
    ". tageszeit";    
}
.date{
    grid-area: date;
    font-size: 1.4rem;
    text-align: center;
    padding-bottom: 1rem;
}

.stempelContainer{
    grid-area: stempel;
    margin: 0;
    padding: 0;
}
.stempel{
    width: 6vw;
    font-size: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.arbeitsZeitContainer{
    grid-area: arbeitszeit;
    margin: 0;
    padding-left: 1vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.arbeitsZeit{
    display: flex;
    align-items: center;
    height: 5vh;
    
}
hr{
    margin: 0;
    transform: translateY(4.3vh);
    position: absolute;
    left: 3vw;
    width: 93.8vw;
    opacity: 0.1;
    mix-blend-mode: screen;
}

.tagesZeit{
    grid-area: tageszeit;
    font-size: 1.35rem;
    font-weight: 700;
    margin-left: -3.5vw;
    display: flex;
    justify-content: right;
    align-items: flex-end;
}
.gesamtBalkenDiagramm{
    border-radius: .8rem;
    height: 1.5rem;
    width: 47vw;
    background-color: rgba(255,255,255,0.2);
}
.arbeitsZeitBalkenDiagramm{
    text-align: center;
    font-size: 1rem;
    font-weight: 100;
    color: rgba(0,0,0,0.8);
    border-radius: .8rem;
    height: 100%;
    width: 35vw;
    background-color: rgba(255,255,255,0.8);
}

footer{
    text-align: right;
    position: fixed;
    top: 94vh;
    right: 1vw;
}



/**************************************/
#userSetContent{
    margin-left: 20vw;
    margin-right: 20vw;
    margin-top: 5vh;
    padding: 1vw;
    padding-top: 1vh;
    padding-top: 5vh;
    font-size: 1.4rem;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    animation: fadeIn .6s ease-in-out;
}

#userSetContent section{
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
}
.userSection input, .titleSection div{
    width: 10vw;
}

.titleSection{
    height: 4vh;
}
.userContainer{
    height: 7vh;
    border-top: thin solid rgba(255,255,255,0.2);
    margin-top: 2.5vh;
}
.userContainer input, .userContainer div{
    margin-top: 2.5vh;
    width: 10vw;
    height: 2vh;
    font-family: 'Saira Semi Condensed', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: #0c0c0c;
    background-color: rgba(255,255,255,0);
    border-color: rgba(255,255,255,0);
}
.buttonContainer i{
    cursor: pointer;
    width: 2vw;
    color: rgba(255, 255, 255, .65);
}
.buttonContainer{
    display: flex;
    flex-direction: row;
    font-size: .9rem;
    position: absolute;
    margin-top: 4vh;
    left: 81vw;
    width: 4vw;
}

/********** MONTH PICKER *********/
#startMonth, #endMonth {width: 5.5vw;}
#CalendarControl {  
    position: fixed;  
    top: calc(2.5rem + 3vh);
    left: 50vw;
    width: 20rem;
    height: 18rem;
    transform: translateX(-50%);
    background-color:#d1e3f94b;  
    margin-bottom:0;  
    padding:0;  
    display:none; 
    text-align: center;
    z-index: 100;
}
  .cal_header {  
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #eceeed6c;  
    color:#000;  
    height: 2rem;
    font-size: 1.3rem;
}
.cal_header .previous, .next{
    width: 2vw;
    cursor: pointer;
}  

#CalendarControl table {  
    width: 20rem; 
    height: 10rem;
    font-size: 1.1rem;
    font-weight: 100;
}
#CalendarControl a{
    cursor: pointer;
    width: 5.14rem;
    height: 2.5rem;
    line-height: 2.5rem;
    padding: .6rem;
    display: block;
}

#CalendarControl .weekday {  
    background-color: #d1e3f988;  
    color: #000;
}

#CalendarControl .current { 
    background-color: #2c71cc85;  
    color: #FFF;
}
#CalendarControl a:hover {  color: #FFF;  background-color: #2c71ccb2;}


@keyframes backgroundAnimation{
    0%{ background-position: left;}
    100%{background-position: right;}
}
@keyframes fadeIn{
    0%{ opacity: 0;}
    100%{opacity: 1;}
}
