* {
  box-sizing: border-box;
}
body{
  margin: 0;
  padding: 3%;
  background: #303030;
  font-family: 'Exo 2';
}
h1, h2{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
h1{
  color: #fff;
}
p{
  color: #fff;
}
h2 ~ p{
  color: #000;
}
a{
  color: #428bca;
  text-decoration: none;
}
.heading a{
  color: #fff;
}
a:hover{
  text-decoration: underline;
}
button{
  font-family: 'Roboto';
  background: #888;
  color: #fff;
}
button:hover{
  cursor: pointer;
  background-color: #555 !important;
}
.createNewForm{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding:5px;
}
.createNewForm > input, select{
  margin-bottom:10px;
}
.menu-section{
  height: auto;
  width: 100%;
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
  margin-bottom: 15px;
}
.heading{
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  text-transform: uppercase;
  margin-top: 25px;
  margin-bottom: 15px;
  position: relative;
}
.menu-heading{
  font-size: 14px;
  line-height: 18px;
  padding: 10px 15px;
  border: 1px solid #293a4a;
  background-color: rgba(41,58,74,0.95);
  color: #fff;
  text-transform: uppercase;
  position: relative;
}
.menu-heading + .desc2, .menu-heading + .desc3{
  font-size: 80%;
  background-color: rgba(41,58,74,0.95);
  margin: 0;
  padding: 0 15px 10px 25px;
}
.desc{
  display: inline-block;
  font-family: "Roboto";
  font-size: 10px;
  color: #000;
  position: absolute;
  margin-left: 10px;
}
.desc span{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  height:15px;
  width:15px;
  border: 1px solid #000;
  border-radius: 1vw;
}
.desc span:hover{
  cursor: pointer;
  color: red;
  border-color: red;
}
.coll{
  font-family: "Roboto";
  font-size: 10px;
  color: #000;
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  height:20px;
  padding:3px;
}
.coll:hover{
  cursor: pointer;
}
.menu-body-container{
  display: flex;
  background: #fff;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.menu-body{
  max-height:10000px;
  padding: 15px;
  clear: both;
  overflow: hidden;
}
.item{
  height: 60px;
  margin-right: 25px;
  float: left;
}
.item1{
  height: 60px;
  width:100%;
  margin-right:0;
  display:flex;
  flex-flow:column;
  height:auto;
  align-items:center;
  text-align:center;
}
.mission-item{
  border: 1px solid black;
  border-radius: 5px;
  position: relative;
  margin-bottom: 10px;
}
.item2{
  width: 100%;
}
.item3{
  width: 85%;
}
.item-icon{
  display: inline-block;
  vertical-align: middle;
  min-height: 40px;
  min-width: 40px;
  background-size: contain;
  background-image: url('../img/icon.png');
  background-repeat: no-repeat;
}
.item-text{
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 0 10px 5px;
}
.description{
  background-color: rgba(41,58,74,0.95);
  font-weight: bold;
  padding: 10px 25% 10px 15px;
  color: #fff;
  min-height: 50px;
}
.button-container{
  position: absolute;
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  justify-content: space-around;
  right: 0;
  top: 0;
  height: 50px;
}
.button{
  font-size: 12px;
  background: tomato;
  border-radius: 5px;
  padding: 3px 7px;
  text-transform: uppercase;
  margin-right: 10px;
  text-align: center;
}
.button:hover{
  cursor: pointer;
  background: #cc1f00;
}
.notes-container{
  display: none;
  border: 1px solid black;
  border-radius: 5px;
  position: relative;
  margin: 10px;
}
.notes{
  background: rgba(41,58,74,0.95);
  color: #fff;
  display: inline-block;
  padding: 3px 7px 3px 3px;
}
#createNew2{
  display: inline-block;
  background: #fff;
  padding: 20px 50px;
  border: 3px ridge #777;
  position: relative;
}
#createNew2exit{
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
#createNew2exit:hover{
  color: #f00;
}
#topButtons{
  position:absolute;
  top: 0;
  left: 0;
}
#menu {
  display: none;
  position: absolute;
  padding: 10px;
  color: white;
  background-color: #f00;
  border: 1px solid #000;
  z-index: 100;
}
#menu-body1{
  width: 100%;
}
#menu-body2{
  color: black;
  border-left: 1px solid grey;
  padding: 10px;
  min-width: 65%;
  display: flex;
  flex-flow: column;
  align-items: flex-end;
}
