* 
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html 
{
    position: relative;
    min-height: 100%;
    
}

body {
    background: rgb(0,95,171);    
}

body.loading-hidden {
    visibility: hidden;
    background: transparent;
}

body,
html
{
    color:white ;
    font-family: Arial, Helvetica, sans-serif !important;
    font-style: normal; 
    font-size: 18px;
}

.main
{
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 2.5rem 0;
    min-height: 800px;
}

.navbar 
{
    background: Red;
    width: 100%;
    height:var(--nav-height);
    position: fixed !important;
    top: 0 ;
    left: 0;
    z-index: 9000;
    box-shadow: 0 0 0.6rem 0rem Red;
    padding: 0 0 0 0 !important;
    border-bottom: 1px rgb(255,238,0) solid;
}

.brandImg
{   
    padding-left: 10px;
    height:2.6rem;
    float: left;
    border-radius: var(--border-radius2);
}

.iconsRight
{   
    width: 80%;
    margin-left: 20%;
    height: var(--nav-height);
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.2rem;
}
.refreshNavIcons
{
    margin-top: 8px;
}
.logo
{   
    margin-left: 15px;
    height: 26px;
}
.logo2
{   
    margin-left: 4px;
    margin-right: 10px;
}
.logo3
{
    margin-left: 10px;
    margin-right: 10px;
}
.iconNav
{
    color: rgb(255,238,0);
    background: transparent;
    font-size:26px;
}

.iconNav2
{
    color: rgb(255,238,0);
    background: transparent;
    font-size:2.2rem;
    margin: 0.4rem 0 0.4rem;
}

.iconNav:hover,
.iconNav2:hover
{
    color: rgb(255,238,0);
}
.navbarToggler {
    background: transparent;
    border: none;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1.5rem;
    padding: 0 0 0 0;
}
.navbarToggler:hover
{
    /* TODO check preset transparancy variables */
    background-color: var(--color-btn-focus); 
    border-radius: 50%;
}
.navbarToggler i {
    font-size: 30px;
    color: rgb(255,238,0);
} 

.navbar ul.open:hover, 
.chatNav .tabbed.open:hover
{
    background: Red;

}

.navbar ul,
.chatNav .tabbed
{
    display: none;
    list-style: none;
    position: absolute;
    background:Red;
    height: auto; 
    transition: all ease-in-out 0.3s;
    float: left;  
    text-align: center;
    border-left: 1px rgb(255,238,0) solid;
    border-bottom: 1px rgb(255,238,0) solid;
    border-bottom-left-radius: 3px;
} 
.tabbed figure>div {
    width: 100%;
    line-height: 1.5em;
    letter-spacing: 0.3px;
}
.navbar ul
{
    padding: 0 10px 20px 10px ;

}
.navbar ul.open,
.chatNav .tabbed.open,
.tabbed figure>div
{ 
    max-height: 90vh;
    display:block;
    top: var(--nav-height);
    right:0;
    min-width: 8rem;
    font-size:1.5rem;
    overflow: auto;
}
.chatNav .tabbed.open
{
    min-width: 301px;
}
.navbar ul li
{
    padding: 20px 0 0 0;
    
 } 

 nav label {
    float: left;
    padding: 15px 15px;
    border-right: 1px solid rgb(255,238,0);
    background: var(--color-header-focus);
 }
.test
{
    background: var(--color-header-focus);
    border-color: var(--color-btn-focus); 
    height:40px;
    width: 50px;
    color:var(--color-input-default-bg);
    border-top-color: var(--color-placeholder); 
}
.navbar a,
.navbar button,
.navbar input,
.tabbed figure {
    text-decoration: none;
    color: rgb(255,238,0);
    border: none;
    font-family: Arial, Helvetica, sans-serif;
    background: transparent;
    font-weight: 600;
}
.navbar a:hover, 
.navbar button:hover,
.navbar input:hover
{
    color: rgb(255,238,0);
}
.tabbed > input,
.tabbed figure > div 
{ 
    display: none;
}
#tab1:checked ~ figure .tab1,
#tab2:checked ~ figure .tab2,
#tab3:checked ~ figure .tab3 
{
    display: block; 
}
#tab1:checked ~ nav label[for="tab1"],
#tab2:checked ~ nav label[for="tab2"],
#tab3:checked ~ nav label[for="tab3"] 
{
   background: Red;
   color: rgb(255,238,0);
   position: relative;
   border-bottom: none;
   padding-left: 100px;
}
 
#tab1:checked ~ nav label[for="tab1"]:after,
#tab2:checked ~ nav label[for="tab2"]:after,
#tab3:checked ~ nav label[for="tab3"]:after 
{
   content: "";
   display: block;
   position: absolute;
   height: 2px;
   width: 100%;
   left: 0;
   bottom: -1px;
}

.pagetitleDiv
{
    padding-top: var(--nav-height);
    width: 100%;
    background-color: Red; 
    color: rgb(255,238,0);
    height: 2rem;
    display: inline-block;
}
.pagetitleDiv p {
    padding-top: 5px;
}
 
.footer 
{
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: var(--footer-height);
    background: transparent;
    border-top: 1px rgb(255,238,0) solid;
    color: rgb(255,255,255) !important;
    padding-bottom: 8px;
    
}
.footercontent
{
    display: flex;
    justify-content: center;
    position: relative;
    height: var(--footer-height);
}
.footermain
{
    margin-left: auto;
    margin-right: auto;
}
.footersmall
{
    position: absolute;
    right: 5px;
    font-size: 0.7rem;
}
/* wenn attendancedash.css dann dort rein  */
#dropdownMenu
{
    display: none;
    transition: all ease-in-out 0.3s;
}

#dropdownMenu.open
{ 
    display: block;
}

/* end */


@media (max-width: 768px) 
{
    body 
    {
        padding-bottom: var(--footer-height);
        margin-bottom: var(--footer-height);
    }

    .footercontent
    {
        display: initial;
        line-height: 0.8rem;
    }
    .footersmall
    {
        display: block;
        position: inherit;
        right: initial;
        margin-bottom: 5px;
        font-size: 0.6rem;
    }
    .footermain
    {
        margin: 7px 0 5px 0;
        font-size: 0.8rem;

    }
}

.banner {
    padding: 4px;

    pointer-events: none;
}

.banner-popup {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 4px;

    display: none;
}

.banner-content {
    display: flex;
    position: relative;
    background-color: rgb(0,95,171);
    max-width: 600px;
    margin: 0 auto;
    pointer-events: auto;
}

.banner-link {
    display: inline-block;

    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 60px;
}

.banner-content img {
    width: 60px;
    height: 60px;
}

.banner-text {
    padding-left: 20px;
    padding-right: 40px;

    font-size: 14px;
}

.banner-text p {
    margin-top: 6px;
    margin-bottom: 10px;
}

.banner-close {
        position: absolute;
        top: 2px;
        right: 2px;
        border: 1px solid white;
    }

.banner-static .banner-close {
    display: none;
}

.banner-close-btn {
    color: white;
    line-height: 1;
    padding: 4px;
}