
html { heigt: 100%; }

body {
  background: #fafafa;
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Open Sans', helvetica, arial;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hidden { display: none; }

/* ===================================
    Resets
=================================== */


ul,
ol,
li {
  list-style: none;
  color: white;
  margin: 0;
  padding: 0;
}

.ms_menu_bar__wrapper {
  height: 100%;
  width: 60px;
  background: #2B1F34;
  padding: 15px 10px;
  float: left;
  position: relative;
  z-index: 10;
}

.ms_menu__trigger {
  font-size: 30px;
  text-align: center;
  cursor: pointer;
  transition: color 0.6s;
}

.ms_menu__trigger:hover { color: #2F879B; }

.ms_menu__item-icon { margin-right: 10px; }

.ms_menu_body__wrapper {
  float: left;
  background: rgba(24, 88, 109, 0.8);
  position: relative;
  left: -1px;
}

.ms_menu__item {
  border-bottom: 1px solid #37616A;
  padding: 15px 40px 15px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.6s;
}

.ms_menu__item:hover { background: rgba(0,0,0,0.4); }

.hide-menu {
  opacity: 0;
  transition: all 0.06s;
  position: relative;
  z-index: 0;
  left: -90px;
}

.show-menu {
  transition: all 0.1s;
  left: -1px;
}
