#slidepanel {
  background-color: #fff;
  color: #444;
  padding: 10px;
  z-index: 1002;
}
#slidepanel {
  background-color: #fff;
  color: #444;
  z-index: 1002;
}

#slidepanel .sp-handle {
  left: -40px;
  padding: 10px;
  position: absolute;
  top: 48px;
  cursor: pointer;
  background-color: #9acd64;
  background-image: url('arr-left.svg');
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 50%;
  height: 40px;
  width: 40px;
  margin: 0;
  border-top: solid 1px rgba(255,255,255,0.5);
  border-bottom: solid 1px rgba(255,255,255,0.5);
  border-left: solid 1px rgba(255,255,255,0.5);
  border-right: none;
}
#slidepanel .sp-handle.sp-right {
  background-color: #5cb85c;
  background-image: url('arr-right.svg');
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 50%;
}
#slidepanel {
  position: fixed; 
  width: 250px; 
  transition: all 300ms ease; 
  height: 100%; 
  top: 0px; 
  right: -250px;
}
#slidepanel.sp-show  {
  position: fixed; 
  width: 250px; 
  transition: all 300ms ease; 
  height: 100%; 
  top: 0px; 
  right: 0px;
  box-shadow: -4px 4px 4px rgba(0,0,0,0.15);
}
#slidepanel i {
  color: #ccc;
}
#slidepanel h4 {
  text-align: center;
  color: #9acd64;
}
