html, body, div, li, ul, form
{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: 'robotoregular';
    vertical-align: baseline;
    position:relative;
    box-sizing: border-box;
}

.red {color:#CC0000; font-weight: bold;}
.green {color:#00CC00; font-weight: bold;}
.orange {color:#FFCC00; font-weight: bold;}

ul.text
{
    padding-left: 20px;
    font-size: 14px;
    list-style-type: square;
}

.pdf_download
{
    padding-left: 22px;
    background-image: url("/z_images/icons/pdf_download.png");
    background-repeat: no-repeat;
    background-size: contain;
}



body
{
    position:relative; background-image: linear-gradient(to top, #505050 0%, #202020 100%);
}

a
{
    text-decoration: none;
    font-weight: bold;
    color: #000000;
}

.bar
{
width: 100%;
        max-width: 400px;
        height: 30px;
        position: relative;
        padding: 0px;
        border-style: solid;
        border-width: 1px;
        border-color: #808080;
        border-radius: 5px;
}

.animatedBar.loaded {
    max-width: 100%;
}

.animatedBar {
    max-width: 0%;
    transition: 3s;
    background-color: #FFCC00;
}

#footer
{
    position:fixed; z-index:1; width:100%; max-width:800px; min-width:280px; background-color:#404040;  bottom: 0;
        left: 50%; transform: translateX(-50%); height: 400px; overflow-y:auto; color: #CCCCCC;
    padding: 0px 20px 20px 20px;  scrollbar-color: #505050 #404040;
  scrollbar-width: thin; border-width: 0px;
} 

#footer.hide
{
    display: none;
}


#topbar
{
    position:fixed;
    z-index: 5000;
    width: 100%; max-width: 800px; min-width: 300px;
    min-height: 55px;
    left: 50%; transform: translateX(-50%);
    border-style:solid; border-width: 0px 0px 0px 0px;
    box-sizing: border-box;
}

#info
{
    position:absolute;
    width:100%; text-align:center; height:60px; padding-top:10px; font-size: 10px; color: #303030; border-style: solid; border-color: #FFCC00 #303030 #303030 #303030; border-width: 3px 0px 1px 0px;
    background-image: linear-gradient(30deg, #EEEEEE 0%, #DDDDDD 60%);
}

#info .header
{
    width:60%; margin:auto;  font-size: 2vw;
}

#info .title
{
    padding-top: 5px; width:60%; margin:auto;  font-size: 3vw; font-weight: bold;
}

@media (min-width: 500px)
{
    #info .header {font-size: 10px;}
    #info .title {font-size: 16px;}
}

#qr
{
    display: none;
    padding:60px 30px 0px 30px;
    position:relative; top: 50%; left: 50%; -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%);
    max-height:90%; max-width: 90%; aspect-ratio:1;
    z-index: 1000;
}

#qr.open
{
    display:block;
}




.error {background-color: #FFDDDD; margin-left: -5px; padding-left: 5px; border-radius: 5px;}



@-webkit-keyframes yellow-fade {
  from {
    background: #FFCC00;
  }
  to {
    background: #fff;
  }
}
@-moz-keyframes yellow-fade {
  from {
    background: #FFCC00;
  }
  to {
    background: #fff;
  }
}
@keyframes yellow-fade {
  from {
    background: #FFCC00;
  }
  to {
    background: #fff;
  }
}

.check_error {
  -webkit-animation: yellow-fade 1s ease-in-out 0s;
  -moz-animation: yellow-fade 1s ease-in-out 0s;
  -o-animation: yellow-fade 1s ease-in-out 0s;
  animation: yellow-fade 1s ease-in-out 0s;
}


#qr_control
{
    position: absolute;
    margin: 12px 0px 0px 20px;
    width: 40px;
    height: 40px;
    padding: 0; border: 0;
    display:block;
    box-sizing: content-box;
    background-color: none;
    z-index: 1000;
    }



#content
{
    z-index:100; width:100%; max-width:800px; min-width:280px; min-height: 100%; background-color:#FFFFFF; margin: 0px auto 400px auto;
    padding: 70px 20px 20px 20px;
} 

#content.hide
{
    display: none;
}

#content h1, h2, h3, h4
{
    font-weight: bold; padding: 5px 0px 5px 0px; margin: 0px;
}

#content h1
{
    font-size: 24px;
}
#content h2
{
    font-size: 18px; 
}
#content h3
{
    font-size: 16px; 
}
#content h4
{
    font-size: 12px; margin-top:3px;
}

#content p
{
    font-size: 14px; padding: 5px 0px 5px 0px; margin: 0px; text-align:justify;

}  

#content ul
{
    font-size: 14px; padding: 0px 0px 0px 20px; max-width: 400px; font-size: 75%;
}

.drawer
{
    height: 50px; min-height: 50px;
    transition: height 1s;
    border-style: solid; border-width: 0px 0px 1px 0px; border-color: #808080;
    overflow:hidden;
    margin: 0px 0px 5px 0px;
}
.drawer.open
{
    height:auto;
}
.drawer .handle
{
    z-index: 1000;
    position:absolute;
    right: 0px;
    width:50px;
    height:50px;
}

.drawer .title
{
    border-style: solid; border-width: 0px 0px 0px 5px; border-color: #808080; padding: 0px 50px 0px 5px; margin: 0px 0px 5px 0px; overflow:hidden; height:45px;
}
.drawer .content
{
    padding: 2px 50px 2px 10px; overflow:hidden;
}

.drawer .handle label
{
    display: inline-block;
    text-align: center;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out;
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    margin: 0px 0px 0px 0px;
}

.drawer .handle label:before, .drawer .handle label:after {
    content: '';
    display: inline-block;
    padding: 0px;
    margin: 10px 0px 0px 0px;
    top: 0;
    left: 0;
    width: 15px;
    height: 1px;
    background: #000000;
    transition: all ease 0.2s;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.drawer.open .handle label:before {
    transform: translate(5.55px, 0px);
}
.drawer .handle label:after {
    margin-left: -4px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.drawer.open .handle label:after {
    transform: translate(-5.5px, 0px);
}


#navigator
{
    position: relative;
    margin:60px 0px 0px 0px;
    clear: left;
    z-index: 1000;
    border-style: solid;
    border-width: 0px 1px 0px 1px;
    border-color: #606060;
}

#navigator *
{
    color: #BBBBBB; font-family: 'robotoregular';
}
#navigator li
{
    height: 40px;

}
#navigator li.header
{
    height: 18px;

}
#navigator li a
{
    transition: all 500ms cubic-bezier(.42,0,.58,1);
}
#navigator li a:hover
{
    background-color: #505050;
}

#navigator .item
{
    font-size:22px; width:100%; height: 100%; max-width:400px; margin: auto 0px auto auto; padding: 10px 0px 10px 20px;
}

#navigator .item_header
{
    font-size:12px; color:#FFFFFF; font-weight: bold; width:100%; height: 100%; max-width:400px; margin: auto 0px auto auto; padding: 10px 0px 10px 20px;
    cursor:default;
}

#navigator_menu .button
{
    display:block; width:100%; height:100%;
}

#navigator a
{
    text-decoration: none;
}

#navigator_menu
{
    transition: all 500ms cubic-bezier(.42,0,.58,1); width:100%; background-color:#303030; overflow-x:hidden; overflow-y:auto; max-height: 0px; height: calc(100vh - 60px);
}

#navigator_control
{
    position: absolute;
    top: -45px;
    right: 22px;
    width: 44px;
    height: 44px;
    padding: 0; margin: 0; border: 0;
    display:block;
    box-sizing: content-box;
}

#navigator_control .hamburger {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    box-sizing:content-box;
    border-width:12px;
    border-style: solid;
    border-color: #DDDDDD;
background-color:#000000;
    margin: 0px;
    padding: 0px;
}



#navigator_control .hamburger:before, #navigator_control .hamburger:after
{
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: 20%;
    background: #DDDDDD;
    transition: all ease 0.2s;
    -webkit-transform: translateZ(0);

}

#navigator_control .hamburger:after
{
    top: 60%;
}

#navigator_control.open .hamburger {
    background-color: #303030;
    border-color: #303030;
}

#navigator_control.open .hamburger:before {
    top: 40%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#navigator_control.open .hamburger:after {
    top: 40%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

p.support
{
    padding: 10px !important; background-color: #CCCCCC; margin-bottom: 10px !important; margin-top: 10px !important;
}