html {
  box-sizing: border-box;
}
body {
  background: #f1f2f7;
  font-family: "Open Sans", arial, sans-serif;
  color: darkslategray;
}

.warn {
  color: red;
}
header[role="banner"] {
  background: white;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}
header[role="banner"] h1 {
  margin: 0;
  font-weight: 300;
  padding: 1rem;
  color: #00316b;
}
header[role="banner"] h1:before {
  content: "\f248";
  font-family: FontAwesome;
  padding-right: 0.6em;
  color: red;
}
header[role="banner"] .utilities {
  width: 100%;
  background: slategray;
  color: #ddd;
}
header[role="banner"] .utilities li {
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}
header[role="banner"] .utilities li a {
  padding: 0.7em;
  display: block;
}
.utilities a:before {
  content: "\f248";
  font-family: FontAwesome;
  padding-right: 0.6em;
}
.logout a:before {
  content: "";
}

.users a:before {
  content: "";
}
nav[role="navigation"] {
  background: #00316b;
  color: #ddd;
}
nav[role="navigation"] li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
nav[role="navigation"] li a {
  color: #ddd;
  text-decoration: none;
  display: block;
  padding: 0.7em;
}
nav[role="navigation"] li a:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
nav[role="navigation"] li a:before {
  content: "\f248";
  font-family: FontAwesome;
  padding-right: 0.6em;
}
nav[role="navigation"] .dashboard a:before {
  content: "";
}
nav[role="navigation"] .mentors a:before {
  content: "\f21d";
}
nav[role="navigation"] .session a:before {
  content: "\f2ba";
}
nav[role="navigation"] .back a:before {
  content: "\f04a";
}
nav[role="navigation"] .users a:before {
  content: "\f0c0";
}
.panel {
  background-color: white;
  color: darkslategray;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  -ms-border-radius: 0.3rem;
  border-radius: 0.3rem;
  margin: 1%;
}
.panel > h2, .panel > ul {
  margin: 1rem;
}
.panel button{
  width: 180px;
  color:#fff;
  font-size: 18px;
  line-height: 25px;
  padding: 25px 0px;
  background: #00316b; 
  border-radius: 6px;
  margin-left:20px;
  margin-bottom:10px;
}
.panel .two{
   background: #008CBA !important; 
}
.panel .tree{
   background: #7656D5 !important; 
}
.panel .four{
   background: #00A65A !important; 
}
.admin ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.admin li {
  border: 1px solid #ddd;
  margin-top: -3px; 
  background-color: #eee;
  padding: 14px;
  border-radius: 3px;
}
.admin li:hover {
  background-color: #f6f6f6;
}
.admin li img {
  width: 45px;
  border-radius: 50px;
}
.admin li p {
   margin-left:3.5em;
   padding-top: 25px; 
   margin-top:-4em;
   font-size: 16px;
   font-weight: bold;
}
.admin li p a {
   border:2px solid #008CBA;
   float:right;
   text-decoration: none;
   padding: 3px;
   border-radius: 5px;
   color: #00316b;
   margin-right: 48px;
   font-size: 14px;
}
.admin li p a:hover{
   color: #fff;
   background:#008CBA; 
}
.admin h4{
  margin-top: -5px;
  margin-bottom: 10px;
  border-bottom:2px solid #000;
  width: 180px;
}
.admin a.remove{
  border:2px solid #AA3A2D !important;
  color: #AA3A2D !important;
}
.admin a.remove:hover{
  background: #AA3A2D !important;
  color: #fff !important;
}
.admin li i{
  font-size: 14px;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
}

h2,
h3,
h4 {
  font-weight: 300;
  margin: 0;
}

h2 {
  color: #ff1a1a;
}

/* lists */
ul,
li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

main li {
  padding-left: 1.2em;
  margin: 0.5em 0;
}
main li:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 0.3em;
  border-left: solid 10px #dde;
  border-top: solid 5px transparent;
  border-bottom: solid 5px transparent;
}

@media screen and (min-width: 600px) {
  html,
  body {
    height: 100%;
  }

  header[role="banner"] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    height: 75px;
  }
  header[role="banner"] .utilities {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    color: darkslategray;
    width: auto;
  }
  header[role="banner"] .utilities li {
    display: inline-block;
  }
  header[role="banner"] .utilities li a {
    padding: 0.5em 1em;
  }

  nav[role="navigation"] {
    position: fixed;
    width: 200px;
    top: 75px;
    bottom: 0px;
    left: 0px;
  }

  main[role="main"] {
    margin: 75px 0 40px 200px;
  }
  main[role="main"]:after {
    content: "";
    display: table;
    clear: both;
  }

  .panel {
    margin: 2% 0 0 2%;
    float: left;
    width: 96%;
  }
  .panel:after {
    content: "";
    display: table;
    clear: both;
  }

}
@media screen and (min-width: 900px) {
  .panel {
    width: 47%;
    clear: none;
  }
  .panel.important {
    width: 96%;
  }
  .panel.secondary {
    width: 23%;
  }
}

