html,body{
    border:none; padding:0; margin:0;
    background:#222222;
    color:#cfcfd1;
}
body{
    text-align:center;
    font-family:"Roboto",sans-serif;
}
h1{
    color:#fff;
    font-size:1.2em;
}


#header
{
 margin:0 auto;
 width:100%;
 height:10%;	
}




#startStopBtn{
    display:inline-block;
    margin:20px auto;
    color:#FFF;
    background-color:#00bd8b;
    border:0.15em solid #00bd8b;
    border-radius:0.3em;
    transition:all 0.3s;
    box-sizing:border-box;
    width:8em; height:3em;
    line-height:2.7em;
    cursor:pointer;
    box-shadow: 0 0 0 rgba(0,0,0,0.1), inset 0 0 0 rgba(0,0,0,0.1);
}

#startStopBtn:hover{ color:#444444;
    box-shadow: 0 0 2em rgba(0,0,0,0.1), inset 0 0 1em rgba(0,0,0,0.1);
}

#startStopBtn.running{
    background-color:#355980;
    border-color:#355980;
    color:#FFFFFF;
}

#startStopBtn:before{
    content:"START";
}

#startStopBtn.running:before{
    content:"Abort";
}

#test{
    margin-top:2em;
    margin-bottom:10em;
}

div.testArea{
    display:inline-block;
    width:16em;
    height:12.5em;
    position:relative;
    box-sizing:border-box;
}

div.testName{
    position:absolute;
    top:0.1em; left:0;
    width:100%;
    font-size:1.4em;
    z-index:9;
}

div.meterText{
    position:absolute;
    bottom:1.55em; left:0;
    width:100%;
    font-size:2.5em;
    z-index:9;
}

div.meterText:empty:before{
    content:"0.00";
}

div.unit{
    position:absolute;
    bottom:2em; left:0;
    width:100%;
    z-index:9;
}

div.testArea canvas{
    position:absolute;
    top:0; left:0; width:100%; height:100%;
    z-index:1;
}

div.testGroup{
    display:inline-block;
}

#shareArea{
    width:95%;
    max-width:40em;
    margin:0 auto;
    margin-top:2em;
}

#shareArea > *{
    display:block;
    width:100%;
    height:auto;
    margin: 0.25em 0;
}











/*DragosDev*/
#added_text
{
    width:50%;
    min-height: 800px;
    text-align:left;
    margin:0 auto;
    font-size:1em;
    color:#fff;
}

#added_text .title{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 24px;
}

#added_text a{
    color:#00bd8b;
}

#form{
    margin:50px 0 0 0;
    width: 100%;
    text-align:center;

}

#form input{
    margin:10px 0 10px 0;
    width: 98%;
    height: 40px;
    padding:0 0 0 2%;
    background-color:#333;
    border: 1px solid #666;
    color: #ccc;
}

#form textarea{
    margin:10px 0 10px 0;
    width: 98%;
    height: 100px;
    padding: 10px 0 0 2%;
    background-color:#333;
    border: 1px solid #666;
    color: #ccc;
    resize: none;
}

#form .submit{
    margin: 20px 0 100px 0;
    padding: 0 !important;
    width: 20%;
    cursor: pointer;
    color:#FFF;
    background-color:#00bd8b;
    border:0.15em solid #00bd8b;
    border-radius:0.3em;
    transition:all 0.3s;
    box-sizing:border-box;
    text-align: center;
}

#form .error{
    color: red;
}

#footer
{
    margin:0 auto;
    width:50%;
    height:10%;	
}

#footer .line 
{
    width:100%;
    height:1px;
    background-color:#666;
}

#footer .link{
    margin: 20px 0 0 0;
    width:100%;
    color:#fff;
    text-align:center;
    font-size:1em;	
}
#footer .link a{
    margin:0 0 0 10px;
    color:#fff;
    text-decoration: none;
}

#footer .text
{
    width:100%;
    color:#fff;
    text-align:center;
    font-size:0.8em;	
}
/*----*/











@media all and (max-width:65em){
    body{
        font-size:1.5vw;
    }
    
    #banner {
        width: 100%;
        height: 80px;
        align-content: center;
    }
    
    #banner .first{
        display: block;
    }
    #banner .second{
        display: none;
    }
}
@media all and (max-width:40em){
    body{
        font-size:0.8em;
    }
    div.testGroup{
        display:block;
        margin: 0 auto;
    }
    
    #banner {
        width: 100%;
        height: 60px;
        align-content: center;
    }

    #banner .first{
        display: none;
    }
    #banner .second{
        display: block;
    }
}

@media all and (min-width:66em){
    #banner {
        width: 100%;
        height: 80px;
        align-content: center;
    }
    
    #banner .first{
        display: block;
    }
    #banner .second{
        display: none;
    }
}