
.diy-slideshow{
  position: relative;
  display: block;
  overflow: hidden;
}

figure img {
	width:100%;
}
figure{
  position: absolute;
  opacity: 0;
  -webkit-transition:transition: 1s opacity;
  transition: 1s opacity;
  width:1%;
}
figure.show{
  position: static;
  opacity: 1;
  -webkit-transition:transition: 2s opacity;
  transition: 2s opacity;
  width:100%;
}
.next, .prev{
  color: #fff;
  position: absolute;
  background: rgba(0,0,0, .6);
  top: 50%;
  z-index: 1;
  font-size: 70px;
  margin-top: -.75em;
  opacity: .3;
  user-select: none;
}
.next:hover, .prev:hover{
  cursor: pointer;
  opacity: 1;
}
.next{
  right: 0;
  padding: 10px 5px 15px 10px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.prev{
  left: 0;
  padding: 10px 10px 15px 5px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}


/*@media screen and (max-width: 640px){*/

@media only screen and (min-device-width : 320px) and (max-device-width : 480px){
	.next, .prev{
	  font-size: 150px;
	}
}