@import url(/assets/stylesheets/font-awesome-4.7.0.min.css);
#MainMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(0,0,0,0.75);
  border-color: #000;
  border-style: solid;
  border-width: 0;
  color: white;
  z-index: 1050;
  -webkit-transition: border-width .2s, background-color .2s, height 0s .2s;
  -moz-transition: border-width .2s, background-color .2s, height 0s .2s;
  -ms-transition: border-width .2s, background-color .2s, height 0s .2s;
  -o-transition: border-width .2s, background-color .2s, height 0s .2s;
  transition: border-width .2s, background-color .2s, height 0s .2s;
}
#MainMenu.open {
  height: 100%;
  border-width: 0 320px 0 0;
  -webkit-transition: border-width .2s, background-color .2s;
  -moz-transition: border-width .2s, background-color .2s;
  -ms-transition: border-width .2s, background-color .2s;
  -o-transition: border-width .2s, background-color .2s;
  transition: border-width .2s, background-color .2s;
}
#MainMenu .touchbox {
  height: 100%;
}
#MainMenu .container {
  position: absolute;
  right: 0;
  margin: 0;
  padding: 0;
  width: 320px;
  height: 100%;
  margin-right: -320px;
  overflow: hidden;
  overflow-y: auto;
}
#MainMenu *[class*="col-*"] {
  padding-left: 5px;
  padding-right: 5px;
}
#MainMenu label {
  display: block;
  padding: .2em 2em;
  font-weight: normal;
}
#listLinks {
  padding: 3em 0;
}
#listLinks label {
  padding-bottom: 2em;
}
#listLinks li a {
  color: gray;
  text-decoration: none;
  display: block;
  padding: .2em 2em;
}
#listLinks li a:hover {
  color: silver;
}
#listLinks li.active a {
  background-color: black;
  color: white;
}
#listNotifications {
  padding: .2em 0;
}
#listNotifications label {
  padding-bottom: 1.5em;
}
#listNotifications .notification {
  font-size: .8em;
  padding: .5em 1em;
  margin: 0 0 1em;
  border-bottom: 1px solid #333;
  min-height: 4em;
}
#listNotifications .notification label {
  margin: 0;
  padding: 0 0 .2em;
}
#listNotifications .notification label,
#listNotifications .notification p,
#listNotifications .notification div {
  margin-left: 3.5em;
}
#listNotifications .notification .thumbnail {
  float: left;
  margin: 0 1em 0 0;
  width: 2.5em;
  height: 2.5em;
  overflow: hidden;
  border-radius: 1.25em;
  box-shadow: 1px 1px 2px #666;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
#btnMainMenu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1050;
  margin: 30px 20px 0;
  background: none;
  border: 0;
  color: white;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#btnMainMenu:hover {
  color: silver;
}
#btnMainMenu:focus {
  outline: none;
}
#btnCloseMenu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  margin: 1em .8em;
  z-index: 1050;
  color: white;
  cursor: pointer;
  text-decoration: none;
}
#btnCloseMenu:hover {
  color: silver;
}
.open #btnCloseMenu {
  display: inherit;
}
