/* ----------------- sideout - app glide menu ----------------- */
#sideout {
  position: fixed;
  z-index: 600; /* more than fabmenu (550) */
  left: -314px; /* 10 for shadow */
  width: 304px;
  bottom: 0;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  transform: translateX(0);
  
  background: rgba(217,221,225,0.8);
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);    /*x-only*/
}

#sideout.active {
  left: 0;
}

#sideout_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  
  /*padding: 2px 5px 2px 0;*/
  padding: 0;
  background-color: #B8BFC7;
  
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);    /*Y-only*/
}

#sideout_title .close {
  padding: 0.8rem 0.8rem 1rem 0.8rem;
}

#mm_inout_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  padding: 6px 8px 4px 8px;
  
  color: #49648F;
  border-left: 1px solid #738CB7;
  background-color: #C0CCDE;
}

#sideout_body {
  background: rgba(217,221,225,0.75);
}

#sideout_footer {
  position: absolute;
  width: 304px;
  height: 40px;
  line-height: 40px;
  bottom: 0;
  background-color: #CFD5DA;
  opacity: 0.3;
  vertical-align: middle;
  text-align: center;
  font-size: .8rem;
  color: black;
}

.sideout-strike {
  text-align: center;
  overflow: hidden;
  white-space: nowrap; 
  margin: 0;
  padding: 2px 0;
  
  font-size: 0.7rem;
}

.sideout-strike.back {
  background-image: linear-gradient(to right, #D9DDE1, #D2D7DB, #D9DDE1);
}
.sideout-strike.back > span {
  color: #F5F5F5;   /* #889DC1 */
}

.sideout-menuitem {
  display: block;
  font-size: 1.2rem;
  padding: 10px;
  
  color: #49648F;
}

.sideout-menuitem:hover { background-image: linear-gradient(#D9DDE1, #D2D7DB); }
.sideout-menuitem:active { background-image: linear-gradient(#D2D7DB, #D9DDE1); }
