/* PFUSCH */
.pfusch_uebunsauswertungDiv{
    text-align: end;
    padding: 2px 5px;
    
}



/* Standartwerte*/
:root {
    --farbeBlau : rgb(2, 110, 184);
    --farbeBlauOpacity : rgb(2, 110, 184, 0.3);
    --farbeRot: rgb(255, 3, 3); 
    --border: solid 2px var(--farbeBlau);
    --borderRadius: 5px;
    --farbeGrau: rgba(153,161,166, 0.3); 
    --bodyBackgroundColor: rgba(243, 239, 239, 0.8);

}


body{ /* Hintergund */
    font-family: 'fira-light';
    font-size: 1rem;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top;
    background-size: cover;
    background-color: var(--bodyBackgroundColor) ;
    margin: 0 auto;
    
      
}
.body{
    position: relative;
    z-index: 8;
    padding: 10px 25px 25px 25px;
    margin: 0 auto;
    margin-top: 70px;
    margin-bottom: 10px;
    max-width: 950px; 
    padding: 10px;
    border: var(--border);
    border-radius: 10px;
    background-color: rgba(243, 239, 239, 0.8)
    
}
.bodyIntern{
    width: fit-content;
    max-width: 91vw;
}

@media screen and (max-width:500px) {
    .bodyIntern{
        width: 90vw;
}
    }
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .body,
    .hilfeSidebarBody {
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
    }
  }
  
  /* slightly transparent fallback for Firefox (not supporting backdrop-filter) */
  @supports not ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
    .body,
    .hilfeSidebarBody{
      background-color: rgba(243, 239, 239, 0.95);
    }
  }
.seite{   
    
    z-index: 9;
    text-align-last: none;
    /*min-height:400px;*/
    height: 82vh;

    padding-bottom: 10px;
    padding-right: 15px;
    overflow-y: auto;
    overflow-x: hidden;
    }
.seiteIntern{
    overflow: auto;
    min-width: 800px;
}
@media screen and (max-width: 799px) {
    .seiteIntern{
        min-width: 90vw;
    }
}
  

@media screen and (max-width: 476px) {
    .seite{
        height: 76vh;
        width: 100%;
    }
    .body{
        margin-top: 3.3rem;
    }   
    .bodyIntern{
        width: 92vw;
    }
}



a{
    text-decoration: none;
    color: #000000;
    font-size: 1rem;
}
a:hover{
    color: var(--farbeBlau);
    cursor: pointer;
}
.link{
    text-decoration: none;
    color: #000000;
    font-size: 1rem;
    
}
.link:hover{
    cursor: pointer;
    color: var(--farbeBlau);
}

/* Schriftarten */
@font-face {
    font-family: lato;
    src: url(fonts/lato/Lato-Regular.ttf);
}
@font-face {
    font-family: fira;
    src: url(fonts/fira_sans/FiraSans-Regular.ttf);
}

@font-face {
    font-family: fira-light;
    src: url(fonts/fira_sans/FiraSans-Light.ttf);
}

@font-face {
    font-family: fira-light-italic;
    src: url(fonts/fira_sans/FiraSans-LightItalic.ttf);
}

p{
    color: #000000;
    font-family: fira-light; 
    line-height: normal;
    font-size: 1rem;
    margin-top: 5px;
    margin-bottom: 10px;
    margin: 5px 0 5px 0;
}
h1{
    color: #000000;
    font-family: lato;
    font-size: 1.4rem;
    margin-bottom: 20px;
    margin-top:10px;
}
h2{
    color: #000000;
    font-family: lato;
    font-size: 1.2rem;
    margin-bottom:15px;
    margin-top:10px;
}
h3{
    color: #000000;
    font-family: lato;
    font-size: 1.1rem;
    margin-bottom: 10;
    margin-top: 5;
}
h3 a{
    font-size: 1.1rem;
}
hr.blau{
    border: 0;
    height: 2px;
    margin: 20px 0 20px 0;
    background-color: var(--farbeBlau);
}
/* Hintergünde*/
.bg-grün{
    background-color: #4bb71b;
}
.bg-orange{
    background-color: orange;
}
.bg-rot{
    background-color: #FF3D00;
}
.bg-gelb{
    background-color: yellow;
}
.bg-weiss{
    background-color: white;
}

/* Badges */
.badge{
    border: solid 1px white;
    border-radius: 10px;
    display: block;
    padding: 2px 8px;
    text-align: center;
}
.fit-content{
    width: fit-content;
}


/*buttons unf forms*/
.button {
    font-family: lato;
    font-size: 1em;
    font-weight:500;
    color:white;
    border: solid 1px;
    border-radius: var(--borderRadius);
    width: fit-content;
    background-color: var(--farbeBlau);
    opacity: 0.6;
    padding: 0.3em;
    margin: 10px 0;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    line-height: 1.4em;
    white-space: nowrap;
    text-align: center;
    
    
    
}

.button:hover {
    background-color: var(--farbeBlau);
    box-shadow: 0px 5px 15px rgba(41, 155, 242, 0.8);
    color: white;
    
  }


.button-reset {
    background-color: rgb(247, 9, 9);
    color: #ddd;
    border-radius: var(--borderRadius);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
}
.button-reset:hover {
    background-color: rgb(247, 9, 9);
    color: #ddd;
    background-color: rgb(247, 9, 9);
    box-shadow: 0px 5px 15px rgba(251, 60, 18, 0.8);
    }
.button-dropdown{
    position: relative;
    display: inline-block;
}

.button-dropdown-content{
        display: none;
        position: absolute;
        background-color: #ddd;
        color: black;
        z-index: 9;
        padding: 15px 10px 10px 10px;
        overflow-y: scroll;
        width: fit-content;
        
}
.button-dropdown:hover .button-dropdown-content {
    display: block;
}




.buttonNackt{
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font-family: fira-light; 
    line-height: normal;
    font-size: 1rem;
    cursor: pointer;
    }
.buttonNackt:hover{
    color: var(--farbeBlau);
}

.buttonfahrzeuge {
    background-color: var(--farbeBlau);
    background-size: 400% 100%;
    border: solid 1px;
    border-radius: var(--borderRadius);
    width: fit-content;
    cursor: pointer;
    padding: 0.3em;
    font-family: lato;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    line-height: 1.3em;
    margin: 10px 0;
    display: inline-block;
    white-space: nowrap;
    font-size: 1em;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    box-shadow: 2px 2px 4px rgba(72, 72, 72, 0.75);
}

.buttonfahrzeuge:hover {
    background-position: -100% 0;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    background-image: linear-gradient(to right, var(--farbeBlau), var(--farbeBlau), lightblue, var(--farbeBlau));
    box-shadow: 0 4px 15px 0 rgba(0, 0, 164, 0.75);
   
}

.formular{
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 250px auto;
    row-gap: 10px;
    column-gap: 10px;
    align-items: center;
}
@media (max-width: 476px) {
    .formular {
        grid-template-columns:auto;
    }
.submitButtonGroupFlex{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        column-gap: 10px;
        
    }
    @media (max-width:476px) {
        .submitButtonGroupFlex{
            flex-direction:column-reverse;
            row-gap: 2px;
            
        }
    }
   
}
 .buttonGroup{
                font-family: fira; 
                font-size: 14px; 
                border: var(--border); 
                border-radius: var(--borderRadius);
                display: grid;
                grid-template-columns: auto 30px;overflow: hidden;
            }
            .buttonGroup input, button{
                background-color: white;
                border: none;
                border-radius: 0px;
                
            }
            .buttonGroup input{
                border-right: solid var(--farbeBlau);
            }
 
  label, input, select, textarea{
    
    padding: 10px 10px;
    font-family: fira; 
    line-height: normal;
   
  }
 select{
    background-color: white;    
    font-family: fira; 
    line-height: normal;

  }
   input,select,textarea{
    font-family: fira;
    
    border: var(--border);
    border-radius: var(--borderRadius);
    
  }
  input:disabled{
    background-color:lightgray;
}
input[type="checkbox"]{
    justify-self: start;
    box-sizing: border-box;
    width: 1.5em;
    height: 1.7rem;
    accent-color: var(--farbeBlau);
    
}

  


.p-1{padding: 1px;} .p-2{padding: 2px;} .p-3{padding: 3px;} .p-4{padding:4px;} .p-5{padding: 5px;}


/* Suchfeld */

.searchbarExportWrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 10px 5px;
    height: auto;
}
.searchbarExportWrapper form{
    margin: 0;
    padding: 0;
}

.searchBar{
    display: flex;
    border: solid var(--farbeBlau);
    border-radius: var(--borderRadius);
    width: fit-content;
    height: fit-content;
    overflow: hidden;
    background-color: white;
    align-items: center;

}
.searchBar input{
    background-color:transparent;
    border: none;
    border-right: solid var(--farbeBlau);
    
}
.serchbarFilter{
    background-color: white;
    margin: 0;
    height: 400px;
    padding-top: 0;
    
  
    
}
.echoTableSpeichernDiv{
    position: sticky;
    background-color: white;
    top:-10px;
    overflow: hidden;
    border-bottom: solid var(--farbeBlau);
    
    
    
}

/*allgemein*/

.seitenüberschrift{
    text-align: center;
}



/*admin dashboard*/
.tab{
    display: none;
}
.dash-box{
    display: grid;
    grid-template-columns: repeat(4, 23%);
    justify-content: center;
    gap: 20px;
    box-sizing: border-box;
    
}
@media (max-width: 700px){
    .dash-box{
        grid-template-columns: 100%;

    }
}
.dash-item{
    border: solid var(--farbeBlau);
    border-radius: var(--borderRadius);
    padding: 15px;
    text-align: left;
}
.dash-ueberschrift{
    border-bottom: solid var(--farbeBlau);
}
.dash-ueberschrift h3{
    margin-bottom: 5px;
}

/*grid und flexbox*/
.grid{
    display: grid;
    align-items: center;
    row-gap: 1em;
    column-gap: 1em;

}
.grid.grid-useruebersicht{
    grid-template-columns: auto auto auto auto auto auto;
}
.grid.grid-führerschein{
    grid-template-columns: fit-content(100px) auto;
    row-gap: 15px;
    column-gap: 15px;
    font-size: 18px;

}
.grid.grid-führerschein-bilder{
    grid-template-columns: 50% auto;
    margin: 10px 0 ;
}
.gridUebungFahrzeuge{
     display: grid;
     grid-template-columns: fit-content(120px) fit-content(160px) auto;
    align-items: center;
    row-gap: 1em;
    column-gap: 1em;

}
.gridUebungZusätzlicheKräfte{
     display: grid;
     grid-template-columns: fit-content(170px) 1fr 1fr;
    align-items: center;
    row-gap: 1em;
    column-gap: 1em;

}
.gridUebungErstellenFahrzeuge{
    display: grid;
    grid-template-columns: 30px 1fr;
    
}
@media screen and (max-width:500px) {
    .gridUebungFahrzeuge{
     grid-template-columns: 70px 1fr 1fr;
    }
    
}


    
    

.grid.col-2{
    grid-template-columns: fit-content(200px) auto;
}
.grid.col-3{
    grid-template-columns:auto auto auto;
}
.grid.col-4{
    grid-template-columns:auto auto auto auto;
}

/*Bildergallerie Slideshow*/

.sliderWrapper{
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    
    
}
.slideBild{
    box-sizing: border-box;
    position: relative;
   
    
    
}
.slideBild img{
    box-sizing: border-box;
    object-fit: contain;
    width: 100%;
    height: auto;
    max-height: 85vh;
    border: solid var(--farbeBlau);
    border-radius: var(--borderRadius);

}
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

@media screen and (max-width:476px) {
    .slider-wrapper{
        width: 100%;
        height: auto;
    }
    .slider-new{
        width: 300px;
        height: 250px;
    }
    .slider-new-fullscreen{
        width: 300px;
        height: 250px;
    }
    .slider-new-fullscreen-wrapper{
        width: 100%;
        height: 200px;
    }
    
    
}
.btn-slide{
    position:absolute;
    top:50%;
    z-index: 10;
    transform: translateY(-50%);
    height: 3.5rem;
    width: 3.5rem;
    cursor: pointer;
    background-color: none;
    border-radius: 50%;
    border: solid var(--farbeBlau);
}
.btn-slide button{
    border: none;
    
}
.prev{
    background-color: rgba(189, 205, 216, 0.4);
    left: 10px;
}
.next{
    background-color: rgba(189, 205, 216, 0.4);
    right: 10px;
}

.dots-container{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(243, 239, 239, 0.705);
  padding:0;
  border-radius:var(--borderRadius);
}
.dot{
    width: 1.8rem;
    height: 0.5rem;
    margin: 7px 5px;
    border-radius: .5rem;
    background-color: rgba(39,39,39, .5);
    cursor: pointer;
}   
.dot.active{
background-color:#272727;
}
.slideshow-urheber{
    bottom: 5px;
    right: 5px;
    text-align: end;
}

/* startseite */


.Gesamtkommando {
    list-style-type: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.Abteilungliste {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.Abteilung {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.Abteilung img {
    display: block;
    margin: 0 auto 10px;
}

#aktuelles {
    color: black;
    text-align: left;
    margin: 0 5px;
}





.details_header a {
    color: black;
}

.details_body{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subpage_links {
    color: black;
    text-align: center;
}

.subpage_links a{
    color: black;
    text-align: center;
    text-decoration: none;
}

.subpage_links p{
    color: black;
}

#technik {
    color: black;
    text-align: left;
  
}

.abteilung {
    
    text-align: left;
}



.fahrzeug_tiles {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 10px;
    
}

@media screen and (max-width: 800px) {
    .fahrzeug_tiles {
    
    grid-template-columns: auto;}
    
    
}

.fahrzeug_tile {
    color: #000000;
    margin: 0 30px 35px 0;
    padding: 0;
   
    clear: both;
    text-align: left;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    
}

.fahrzeug_tile .textFahrzeugkurzname {
    position: absolute;
    top: 15px;
    right: 5px;
    text-align: right;
    text-shadow: 2px 2px 4px black;
    vertical-align: top;
    width: 120px ;
}

.fahrzeug_tile .textFahrzeugname {
    position: absolute;
    bottom: 60px;
    right: 5px;
    text-align: right;
    text-shadow: 2px 2px 4px black;
    vertical-align: bottom;
    width: 200px ;
}

.fahrzeug_tile .textFahrzeugdetailslink {
    position: absolute;
    bottom: 15px;
    right: 5px;
    text-align: right;
    vertical-align: bottom;
    width: 300px;
}

.fahrzeug_tile .textFahrzeugkurzname h4{
    color: #ffffff;
    font-family: lato;
    font-size: 18px;
    font-weight: bold;
    margin: 0px;
}

.fahrzeug_tile .textFahrzeugname h4{
    color: #ffffff;
    font-family: lato;
    font-size: 18px;
    font-weight: bold;
    margin: 0px;
}

.fahrzeug_tile .textFahrzeugdetailslink a{
    color: #ffffff;
    font-family: fira-light-italic;
    font-size: 14px;
    margin: 5px 0 10px 0;
}

.fahrzeug_tile .textFahrzeugdetails a{
    color: #ffffff;
    font-family: fira;
    font-size: 14px;
    margin: 5px 0 10px 0;
    
}
.textbg{
    position: absolute;
    right:-230px;
    bottom: -50px;
    transform: skew(-20deg);
    background-color: rgba(0, 109, 183, 0.66);
    width: 400px;
    height: 130%;
    
}


.fahrzeug_tile .image {
    padding: 0;
    margin: 0;
    max-height: 300px;
}
.fahrzeug_tile .image img {
    width: 100%;
    height: 100%;
    object-fit:cover;
}


.fahrzeug{
    
display: grid;
grid-template-columns: 50% auto;
gap: 25px;
}
.fahrzeugGalerie{
    width: 200px;
    height: 130px;
    overflow: visible;
}
.fahrzeugGalerie img{
    width: 110%;
    height: 110%;
    
    
}

.fahrzeug_img img{
    object-fit: contain;
width: 100%;
height: 100%;    
}
@media  (max-width:600px) {
.fahrzeug{
    grid-template-columns: auto; 
}
   
}





/*FWTN Admin CSS file*/

/*#006db7*/


/*Einsatz*/
#admin_einsatz .einsatz {
    color:#000000;
    overflow: hidden;
    border: 1px solid black;
    max-width: 750px;
}
@media screen and (max-width: 785px) {
    #admin_einsatz .einsatz {
       font-size: 18px;
        line-height: 1.5;
    }
}

#admin_einsatz .einsatz div {
    padding: 10px;
    border-bottom: 1px solid black;
}

#admin_einsatz .einsatz textarea {
    width: 100%;
    height: 450px;
}

#admin_aktuelles table {
    border-collapse:collapse;
}

#admin_aktuelles table th, #admin_aktuelles table td {
    text-align: left;
    padding: 5px;
}
.tableOptions{
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    gap: 10px;
}
.tableOptions form{
    margin: 0;
    padding: 0;
}
.seitenIndexButtonGroup{
    display: flex;
    gap: 5px;
    align-items: center;
}

/* Einsatz neu als Grid*/
.box-einsaetze{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.datetime {grid-area: datetime;}
.what {grid-area: what;}
.bearbeiten{grid-area: bearbeiten;}
.open{grid-area: open;}

.einsatz_row{
    border: none;
    margin: 0 0 10px 0;
}
.einsatz_summary{
    display: grid;
    grid-template-columns: 160px auto 40px 20px;
    grid-template-areas:"datetime what bearbeiten open" ;
    vertical-align: middle;
    padding: 5px;
    column-gap: 10px;
    row-gap: 10px;
    border: solid  var(--farbeBlau);
    border-width: 1px 1px 0 1px;
    border-radius:5px 5px 0 0;
}
@media (max-width:476px) {
    .einsatz_summary{
        
       grid-template-areas:"datetime datetime bearbeiten open" "what what what what";
    }
    .einsatz_details .slideshow{
        width: 96%;
        height: 100%;
        object-fit: cover;
        min-height: 200px;
        margin: 5px;
        overflow: hidden;
    }
    .einsatz_details .slideshow img{
       position: absolute;
       top: 0;
       left: 0px;
    }
    
    
}


.einsatz_details {
    padding: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    cursor: auto;
    
    border: solid 1px var(--farbeBlau);
    border-width: 0px 1px 1px 1px;
    border-radius: 0 0 5px 5px;
}
.einsatz_details .slideshow{
    margin: 0 auto;
    width: 100%;
    height: 100%;
    max-width: 650px;    
}
.type , .what_where{
    margin: 0 5px 0 0;
    font-weight: bold;
}

/* Führerscheine */
.füherschein-wrapper{
    border: solid var(--farbeBlau);
    border-radius: var(--borderRadius);
    padding: 10px;
}
.button-führerschein{
    width: fit-content;
}
.img-führerschein{
     
     border:solid silver;
}
.img-führerschein img{
   object-fit: cover;
    width: 100%;
    height: auto;
}
.grid-führerschein-bilder{
    display: grid;
    grid-template-columns: 50% 50%;
}
@media  screen and (max-width:476px) {
    .grid-führerschein-bilder{
        grid-template-columns: auto;
    }
}

/*Statusbar*/
.uploadStatusCSS{
    position: relative;
    display: block;
    padding: 5px;
    font-size: 16px;
    line-height: 16px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.8);
}
.uploadStatusCSS span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    height: 15px;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    background-color: #453bdc;
    background-size: 100%;
    background-image: linear-gradient(to top, blue, lightblue );
    

}
.uploadStatusCSS span::after{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-size: 100%;
    background-image: linear-gradient(45deg, #fff 25%, 
                                                rgba(0,0,0,0) 25%,
                                                rgba(0,0,0,0) 50%,
                                                #fff 50%,
                                                #fff 75%,
                                                rgba(0,0,0,0) 75%,
                                                rgba(0,0,0,0) );
    background-size: 20px 20px;
    opacity: 0.3;
}
.uploadStatusCSS span::after{
    animation: bewegungLeitungWarm 0.5s infinite linear;
}
@keyframes bewegungLeitungWarm {
    0% {
        background-position: 0 100%;
    }
    100%{
        background-position: 20px 100%;
    }
}

/*medungen container*/
.meldung{
    display: grid;
    grid-template-columns: 30% auto;
    border-radius: var(--borderRadius);
    align-items: center;
    column-gap: 10px;
    padding: 10px;
    margin: 10px 0;
    width:fit-content;
}
.meldung.sm{
    grid-template-columns: 50px auto;
    
    
}
.meldung.md{
    grid-template-columns: 100px auto;
    max-width: 470px;
    
}
.meldung.xl{
    grid-template-columns: 200px auto;
    max-width: 470px;
    
}
@media (max-width:476px) {
    .meldung{
        grid-template-columns: 15% auto ; 
    }
    
}


.meldung.info{
    border: solid 2px #ff8000;
    
    background-color: #ffaf5f;
}
.meldung.erfolg{
    background-color: rgb(110, 196, 110);
    border:solid rgb(25, 188, 25);
    border-radius: var(--borderRadius);
    }
.meldung.warnung{
    background-color: rgb(238, 72, 72);
    border:solid rgb(246, 15, 15);
    border-radius: var(--borderRadius);
    }
.meldungLed{
    display: grid;
    grid-template-columns: 40px auto;
    align-items: center;
    
    }
.meldungInfoBoxWrapper{
    box-sizing: border-box;
    border: solid var(--farbeBlau);
    border-radius: var(--borderRadius);
    margin: 10px 0;
}
.meldungInfoBoxÜberschrift{
    background-color: var(--farbeBlau);
    color: white;
    padding: 5px;
    text-align: center;
    font-weight: bold;

}
.meldungInfoBoxText{
    background-color: var(--farbeGrau);
    padding: 5px;
}


.meldungPopUp {
    z-index: 10001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 15px;
    width: 300px;
    height: 200px;
    position: absolute;
    top:50%;
    left:50%;
   
    transform: translate(-50%, -50%);
    

   } 

.meldungPopUp.erfolg{
    background-color: white;
    border:solid rgb(25, 188, 25);
    border-radius: var(--borderRadius);
    -webkit-animation: slide-out-blurred-top 0.45s cubic-bezier(0.755, 0.050, 0.855, 0.060) 2.6s both;
	        animation: slide-out-blurred-top 0.45s cubic-bezier(0.755, 0.050, 0.855, 0.060) 2.6s both;
}
.meldungPopUp.loading{
    background-color: #ddd;
    width: 170px;
    height: 150px;
    border: solid var(--farbeBlau);
    border-radius: var(--borderRadius);
}
.meldungPopUpError{
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    gap: 15px;
    background-color: rgba(248, 6, 6, 0.747);
    border:solid rgb(246, 15, 15);
    border-radius: var(--borderRadius);
    text-align: center;
    position: absolute;
    box-sizing: border-box;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
}
.meldungPopUp.loeschen{
    z-index: 999999;
    text-align: center;
    position: absolute;
    box-sizing: border-box;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    min-width: 400px;
    height: auto;
}


@-webkit-keyframes slide-out-blurred-top {
    0% {
      -webkit-transform: translateY(0) scaleY(1) scaleX(1);
              transform: translateY(0) scaleY(1) scaleX(1);

      -webkit-transform-origin: 50% 0%;
              transform-origin: 50% 0%;
              transform: translate(-50%, -50%);
      -webkit-filter: blur(0);
              filter: blur(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateY(-1000px) scaleY(2) scaleX(0.2);
              transform: translateY(-1000px) scaleY(2) scaleX(0.2);
      -webkit-transform-origin: 50% 0%;
              transform-origin: 50% 0%;
              
      -webkit-filter: blur(40px);
              filter: blur(40px);
      opacity: 0;
    }
  }
  @keyframes slide-out-blurred-top {
    0% {
      -webkit-transform: translateY(0) scaleY(1) scaleX(1);
              transform: translateY(0) scaleY(1) scaleX(1);
      -webkit-transform-origin: 50% 0%;
              transform-origin: 50% 0%;
              transform: translate(-50%, -50%);
      -webkit-filter: blur(0);
              filter: blur(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateY(-1000px) scaleY(2) scaleX(0.2);
              transform: translateY(-1000px) scaleY(2) scaleX(0.2);
      -webkit-transform-origin: 50% 0%;
              transform-origin: 50% 0%;
              
      -webkit-filter: blur(40px);
              filter: blur(40px);
      opacity: 0;
    }
  }

  .checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #4bb71b;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4bb71b;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position:relative;
    top: 5px;
    right: 5px;
   margin: 0 auto;
}
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4bb71b;
    fill: #fff;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
 
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #4bb71b;
    }
}

.tableRes {
    border: 1px solid var(--farbeBlau);
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: fit-content;
    table-layout: auto;
  }
  
.tableRes tr {
   
    border: 1px solid var(--farbeBlau);
    padding: .3em;
  }
  
.tableRes th,
  .tableRes td {
    padding: .3em;
    text-align: left;

  }
  
  .tableRes th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
    position: sticky;
    background-color: lightgray;
    top:-5px;
    
    
  }
  .tableRes .taetigkeitsverlauffirst td {
    font-family: 'fira';
    font-weight: 500;
    background: linear-gradient(to bottom, #344051, #677a93);
    color: #dde1e7;
    border-top-style:hidden;
    line-height: 0.5em;
    padding: 0.2em;
}
.tableRes .taetigkeitsverlauf td{
    font-family: 'fira';
    font-weight: 500;
    background-color: #677a93;
    color: #dde1e7;
    border-top-style:hidden;
    line-height: 0.5em;
    padding: 0.2em;
}
  
  @media screen and (max-width: 600px) {
    .tableRes {
      border: 0;
      width: 90vw;
    }
  
    .tableRes caption {
      font-size: 10em;
    }
    
    .tableRes thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
    
    .tableRes tr {
      border-bottom: 3px solid var(--farbeBlau);
      display: block;
      margin-bottom: .625em;
    }
    
    .tableRes td {
      border-bottom: 1px solid var(--farbeBlau);
      display: block;
      font-size:0.9rem;
      line-height: 1rem;
      min-height: 1rem;
      font-weight: bold;
      text-align: right;
    }
    
    .tableRes td::before {
      /*
      * aria-label has no advantage, it won't be read inside a table
      content: attr(aria-label);
      */
      content: attr(data-label);
      float: left;
      font-weight: bold;
      text-transform: uppercase;
    }
    
    .tableRes td:last-child {
      border-bottom: 0;
    }
  }
.tableÜberschrift{
    font-family: lato;
    margin: 5px 0;
    padding: 7px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tableÜberschrift span{
    font-size: 1.6em;
    font-weight: bold;
    
   
}


/* modal*/

.modal {
    display: block; 
    position: fixed;
    z-index: 10000; 
    padding: 15px 20px;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    box-sizing: border-box;
    
  }
  
  /* Modal Content */
  
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding-top: 46px;
    border: var(--border);
    border-radius: var(--borderRadius);
    overflow: visible;
    width: 70vw;
    height: 95vh;
    box-sizing: border-box;
  }

  .modal-content.bildergalerie{
    width: fit-content;
    height: fit-content;
    padding: 30px;
    box-sizing: border-box;
  }
.platzhalterUntenPersonalerfassung{
    width: 90%;
    height: 60vh;
}
.modalPlatzhalterOben{
    width: 100%;
    height: 0;
}

  .modal-body{
    position: relative;
    padding: 0 7px 0 7px;
    box-sizing: border-box;
    overflow: auto;
    width: 100%;
    height: 100%;
    
  }
  .modalStickyFooter{
    position: sticky;
    bottom: 0;
    background-color: white;
    width: 100%;
    height: auto;
    
  }
  .fit-content{
    width: fit-content;
    height: fit-content;
  }
  .fullscreen{
    width: 95vw;
    height: fit-content;
  }
  @media screen and (max-width:500px) {
    .modal-content{
        height: 87vh;
        width: 95vw;
        
    }
    
  }
  @media screen and (max-width:900px) {
    .modal-content{
    padding-top: 40px;
      width: 90vw;
      max-height: 95vh;
      
    }
    .close{
        padding: 0;
        width: .5em;
        height: .5em;
    }
    
  }
  
  .close {
    
    
    position: absolute;
    font-size: 50px;
    top: -13px;
    right: -13px; 
      
  }
  .rundeButtonsFabrwechsel{
    background-color: var(--farbeBlau);
    border: solid 3px white;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: .8em;
    height: .8em;
  }

  
  .rundeButtonsFabrwechsel:hover,
  .rundeButtonsFabrwechsel:focus,
  .zurück:hover,
  .zurück:hover {
    color: black;
    background-color: red;
    border-color: var(--farbeBlau);
    text-decoration: none;
    cursor: pointer;
    transition: ease 0.5s;
  }
  .zurück{
    background-color: var(--farbeBlau);
    border: solid 3px white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: .8em;
    height: .8em;
    
    font-size: 50px;
    font-weight: bold;
    position: sticky;
    top: 0;
    left: 0;
    
  }
  
  /* Dinge je nach gfröße ein und ausblenden*/
@media screen and (max-width:476px) {
    

  .d-sm-none{
    display: none;
  }
}


/*Loader / Warten / Fileupload*/
.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: var(--farbeBlau) var(--farbeBlau) transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  .loader::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent #FF3D00 #FF3D00;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
  }
  
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } 
      
  @keyframes rotationBack {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-360deg);
    }
  }
  /* Accordion */ 
  .accordion {
    cursor: pointer;
    background-color:transparent;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    width: 100%;
    font-size: 1.2em;
    line-height: 1.8em;
    }
  .accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    font-size: 1.2em;
    float: right;
    margin-left: 5px;
  }
  .active:after {
    content: "\2212";
  }
  
  .panel {
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

/* Tooltips*/
[data-tip] {
	position:relative;

}
[data-tip]:before {
	content:'';
	/* hides the tooltip when not hovered */
	display:none;
	content:'';
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #1a1a1a;	
	position:absolute;
	top:30px;
	left:35px;
	z-index:8;
	font-size:0;
	line-height:0;
	width:0;
	height:0;
}
[data-tip]:after {
	display:none;
	content:attr(data-tip);
	position:absolute;
	top:35px;
	left:0px;
	padding:5px 8px;
	background:#1a1a1a;
	color:#fff;
	z-index:9;
	font-size: 0.75em;
	height:fit-content;
	line-height:18px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	
	word-wrap:normal;
}
[data-tip]:hover:before,
[data-tip]:hover:after {
	display:block;
}
.tooltip input{
    box-sizing: border-box; 
    width:100%;
}

/*Grid Mein FWTN*/

.gridMeinFwtn{
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(3, 32%); 
    gap:1%;
   justify-content: center;
}
.grid-col-2{
    grid-template-columns: repeat(2, 48%);
}
.grid-col-3{
    grid-template-columns: repeat(3, 32%);
}
.grid-col-4{
    grid-template-columns: repeat(4, 23);
}
.grid-col-5{
    grid-template-columns: repeat(5, 17%);
}
.grid-col-6{
    grid-template-columns: repeat(6, 15%);
}
.flexMeinFwtn{
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    box-sizing: border-box;
}

.itemMeinFwtn{
    
    box-sizing: border-box;
    border: solid var(--farbeBlau);
    border-radius: var(--borderRadius);
}
.itemMeinFwtnHearder{
    background-color: var(--farbeBlau);
    color: white;
    text-align: center;
    padding: 5px;
    font-size: 16px;
    font-weight: 600;
}
.itemMeinFwtnBody{
    padding: 5px;
    overflow: hidden;
    text-align: start;
}

@media (max-width: 900px) {
    .gridMeinFwtn{
        grid-template-columns: auto auto;
}
    .grid-col-4{
        grid-template-columns: repeat(3, 32%);
    }
}
@media (max-width: 500px) {
    .gridMeinFwtn{
        grid-template-columns: 1fr;
    }
    .grid-col-4{
       grid-template-columns: 1fr; 
    }
}

/* Flex boxen und Listen*/
.flex-column{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Menu Userdaten*/
.menubarUserdaten{
    position: sticky;
    top:-20px;
    padding-top: 20px;
    background-color: white;
    overflow: scroll;
    display: flex;
    border-bottom: solid var(--farbeBlau);
    z-index: 999999;
    
}
.menubarUserdatenItem{
    padding: 5px 15px 2px 15px;
    font-size: 1.1em;
    
}
.tabAktiv {
   border-radius: 5px 5px 0 0 ;
   background-color: var(--farbeBlau);
   color: white;
   font-weight: bold;
   }
.tabAktiv:hover{
    color: white;
}

.nameBildUserBearbeitenWrapper{
    display: grid;
    grid-template-columns: auto fit-content(170px);
    gap: 10px;
    
}

/* Passfoto / User Bilder*/

.passfoto{
    width:150px;
    aspect-ratio: 7/9;
    border: solid var(--farbeBlau);
    border-radius: var(--borderRadius);
}
.passfoto img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    
    
}
.passfotoUpload{
    position: relative;
    background-image: url("resources/templates/icons/passbild.svg");
    background-repeat: no-repeat;
    background-size: cover;
     width:150px;
    aspect-ratio: 7/9;
    border: solid var(--farbeBlau);
    border-radius: var(--borderRadius);
 }
 .passfotoUpload label{
    position:absolute; 
    bottom:5px; 
    left:50%; 
    transform: translateX(-50%);
 }
/* Blur Hinweis Inaktivität*/
.blurHinweisWrapper{ 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
    }
    @media (max-width: 900px){
        .blurHinweisWrapper{
            width: 80vw;
            height: auto;
        }
        
    }
.blurHinweisInner{
    position: relative;
    background-color: white;   
    border: solid var(--farbeBlau);
    border-radius: var(--borderRadius);
    padding: 20px;
    align-items: center;
    text-align: center;
    z-index: 999999999999;
}

.blurHinweisActive{
    display: block;
}    

.blurActive{
    display: block;
    background-size:cover;
    -webkit-filter: blur(4px);
    -moz-filter: blur(4px);
    -ms-filter: blur(4px);
    -o-filter: blur(4px);
    filter: blur(4px);
    }

.bilderuebersicht{

    display: flex;
    flex-wrap: wrap;
    justify-content:flex-start;
    box-sizing: border-box;
    gap: 10px;
    
}
.bilderuebersichtImgWrapper{
    position: relative;
    display: flex;
    gap:7px;
    justify-content: space-between;
   
    border: solid var(--farbeBlau);
    border-radius: var(--borderRadius);
    padding: 5px;
    margin: 10px 0;
    overflow: visible;
}
.bilderuebersicht img{
    height:100%;
    width: 100%;
    object-fit: contain;
   
   
}
.bilderuebersichtImgWrapperStandart{
    height: 240px;
    width: 300px;
}
.bilderübersichtSidebar{
    width: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 5px 0 5px 5px;
    align-items: center;
    gap: 10px;
}
.bilderüberischtAGT{
    height: 600px;
    width:auto;
}
.bilderüberischtFührerschein{
height: 600px;
width: auto;
}
    
.logoutPinLogin{
    position: absolute;
    top:10px;
    left:245px;
   
    padding: 7px 5px;
    color: white;
    
}
@media screen and (max-width:600px) {
    .logoutPinLogin{
        left: 40px;
        top: 40px;
    }
     
}

 /* Hilfe sidebar */
 .hilfesidebarWrapper{
    position: fixed;
    right: 0;
    top: 0;
    overflow: visible;
    height: 100%;
    padding-top: 20px;
    z-index: 10000;
    
    
}
.hilfeSidebarBody{
    display: none;
    width: 400px;
    height: 100%;
    padding: 7px;
    border-left: solid var(--farbeBlau);
    overflow: hidden;
   
    background-color: var(--bodyBackgroundColor);
   opacity: 1;
    
    }
    @media screen and (max-width:600px) {
        .hilfeSidebarBody{
            width: 67vw;
        }
    }
 .hilfeÜberschrift{
    border-bottom: solid var(--farbeBlau);
}
 .hilfeTextBody{
    text-align: start;
 }
 .hilfeToggleButton {
    position: absolute;
    left: -60px;
    top: 50%;
    
    font-size: 2em;
    width: 1.5em;
    height: 1.5em;
    
 }
 @media screen and (max-width:500px) {
    .hilfeToggleButton{
        left: -60px;
        top: 85%;
    }
 }

 .hilfeToggleButton a{
    line-height: 1.4em;
     font-size: 1em;
    width: 1.5em;
    height: 1.5em;
    text-align: center;
    vertical-align:middle;
 }
 .xhrStatusNavbar{
    position: absolute;
    bottom: 5px;
    left: 100px;
    width: fit-content;
    padding: 3px 10px;
    border: 1px solid var(--farbeBlau);
    border-radius: var(--borderRadius);
 }
 .xhrStatusModal{
    position: absolute;
    top: 5px;
    left: 5px;
    width: fit-content;
    padding: 3px 10px;
    border: 1px solid var(--farbeBlau);
    border-radius: var(--borderRadius);
 }
 

 .offlineWrapper{
    display: flex;
    width: 100%;
    background-color: white;
    margin-left: 2rem;
    
    padding: 10px;
    gap: 10px;
    align-items: center;
 }
 .offlineText{
    width: 100%;
    text-align: start;
 }
 
@media screen and (max-width: 700px){
    .offlineWrapper{
        margin: 0;
        height: 50px;
        padding-left:70px;
        align-items: start;
        width: 100%;
        overflow: scroll;
    }
    .offlineText h2{
        font-size: 0.8rem;
    }
    .offlineText{
        overflow: scroll;
    }
    .offlineHideLogoOnMobile{
        display: none;
    }
    .xhrStatusNavbar{
        bottom: 0px;
        left:45px;
    }
    .xhrStatusNavbar.offline{
        bottom: 50%;
        left:10px;
        transform: translateY(50%);
    }
}
.d-block{
    display: block;
}
.d-none{
    display: none;
}
.benutzerwechselModal{
    margin: 5px 0;
}

.probeBearbeitenStatistikWrapper{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: solid red;
    gap: 10px;
    width: 100%;
}
