/*DESKTOP*/

/*slide show*/
.slide_show {
	width: 50vw;
	height: 100vh;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 25;
	pointer-events: none;
}

.slide_show div.slide_img{
	width: 100%;
	height: 100%;
	position: absolute;
	background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
	transition: opacity .5s ease-in;
}

div.slide_img + div.slide_img {
	opacity: 0;
}

/* TABLET */
@media (max-width:1024px) {
}

/* MOBILE */
@media (max-width:600px) {

.slide_show {
    width: 100vw;
    height: 83.5vh;
    position: fixed;
    top: 16.5vh;
    right: 0;
    z-index: 25;
    pointer-events: none;
}

}