@charset "utf-8";
/* CSS Document */

.swap-on-hover {
  position: relative;	
	margin:  0 auto;
}

.swap-on-hover img {
  position: absolute;
  top:0;
  left:50px;
	overflow: hidden;
}

.swap-on-hover .swap-on-hover__front-image {
  z-index:99;
  transition: opacity .5s linear;
  cursor: pointer;
}

.swap-on-hover:hover > .swap-on-hover__front-image{
  opacity: 0;
}




