/* Mobile Screen */
@media only screen and (max-width: 1000px){


#topbaar {

background-color: #16163f; 
width: 100%; 
color: white; 
height: 25px;
line-height: 25px;

}

#top1 {

margin-left: 20px;

}


nav {

width:100%; 
height: 80px;
border: 0px solid black; 
box-shadow: 0px 0px 5px 0px;
position: sticky;
top: 0;
background: white;

}

label.logo{

font-size: 20px;
line-height: 80px;
border: 0px solid red;
margin: 0 20px;
font-weight: 600px;


}

nav ul {

width: 100%;
list-style-type: none;
border: 0px solid green;
margin-right: 0px;
position: fixed;
background-color: green;
top: -100%;
box-shadow: 0px 0px 5px 0px;

}

nav ul li {

display: block;
line-height: 55px;
font-size: 16px;
color: gray;
font-weight: 500;
border: 0px solid green;


}



#checkbtn {
float: right;
font-size: 25px;
border: 0px solid green;
display: block;
line-height: 80px;
margin-right: 15px;
}

#check {
display: none;
}

#check:checked ~ ul {
top: 115px;
transition: .5s

}


}
