/* Main Document Styling */
body{
  margin: 0px;
  padding: 0px;
  background-color: rgb(0,0,50);
}
p,td{
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
}


/* Center Container */
.container-mainpage {
  width: 100%;
  padding-top: 100px;
}
.vertical-center {
  display: table;
  margin: 0 auto;
}
.horizontal-center {
  text-align: center;
}


/* Form Styling */
input[type=text],input[type="password"] {
  width: 100%;
  padding: 12px 20px;
  margin: 2px 0;
  box-sizing: border-box;
  border-radius: 5px;
  border: 10px solid rgb(50,50,100);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: black;
  background-color: white;
}
input[type=button] {
  width: 100%;
  padding: 12px 20px;
  margin: 2px 0;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid rgb(50,50,100);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: white;
  background-color: rgb(50,50,100);
  text-align: center;
  cursor: pointer;
}


/* Login Styling  */
.div-login{
  padding-top: 20px;
  width: 300px;
}


/* Material Icons Styling */
.material-icons.logindone { 
  font-size: 72px; 
  color: rgb(255,255,255);
}
.material-icons.bigicon {
  font-size: 48px;
  color: rgb(255,255,255);
}
.material-icons.smallicon {
  font-size: 28px;
  color: rgb(255,255,255);
}
.material-icons.menuicon {
  font-size: 28px;
  color: rgb(100,100,100);
}

/* Start Page Sections */
.header{
  width: 100%;
  height: 60px;
  background-color: rgb(0,0,20);
  position: fixed;
  top: 0;
}
.headerlink{
  cursor: pointer;
  color: white;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; 
}
.headerlogout{
  padding-right: 10px;
  padding-left: 30px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.wrap{
  padding-top: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.wrap-box{
  width: 32%;
  min-width: 300px;
  float: left;
  padding-left: 15px;
  padding-top: 5px;
  padding-bottom: 10px;
  cursor: pointer;
}
.wrap-box-content{
  background-color: rgba(0,0,0,0.6);
  height: 100px;
  padding: 10px;
  color: white;
  border-radius: 20px;
}
.wrap-box-title{
  font-size: 22px;
  padding-bottom: 10px;
  color: rgb(200,200,200);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.wrap-box-small{
  width: 24%;
  min-width: 300px;
  float: left;
  padding-left: 15px;
  padding-top: 5px;
  padding-bottom: 10px;
  cursor: pointer;
}


/* Content Pages */
.leftmenu{
  width: 50px;
  height: 100%;
  background-color: rgb(0,0,20);
  position: fixed;
  left: 0;
  top: 60px;
  padding-top: 25px;
  padding-left: 15px;
  line-height: 40px;
}
.pagecontent{
  padding-top: 65px;
  padding-left: 90px;
}
.pagetitle{
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  padding-bottom: 10px;
  color: rgb(200,200,200);
}
.pagetext{
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: white;
  padding-right: 20px;
}
.fieldtitle{

}
.fieldtext{
  background: white;
  color: black;
  padding: 5px;
  border-radius: 5px;
  max-width: 400px;
}
