/* -------- ISO SIDBAR BUTTON------------*/
.isobutton{
  background:#f8991d;
  color:#fff;
  border:none;
  position:relative;
  height:45px;
	min-width: 100%;
  font-size:1.6em;
 /* padding:0 3em; */
  cursor:pointer;
  transition:800ms ease all;
  outline:none;
}
.isobutton:hover{
  background:#fff;
  color:#f8991d;
}
.isobutton:before,button:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:2px;
  width:0;
  background: #f8991d;
  transition:400ms ease all;
}
.isobutton:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}
.isobutton:hover:before,button:hover:after{
  width:100%;
  transition:800ms ease all;
}

/*-------------end Button--------*/
