// LAYOUT THEME
// hide right, show on hover
.sliderjs.th-hide-right-hover {
  div.right {
    .opacity(0);
    .transition-duration(.5s);
  }
}
.sliderjs.th-hide-right-hover:hover {
  div.right {
    .opacity(1);
  }
}
