@import "https://fonts.googleapis.com/css?family=Open+Sans:800&display=swap";
 
 
 .ngendux-slider1 {
	 display: flex;
	 height: 150px;
	 max-height: auto;
	 overflow-y: hidden;
	 overflow-x: scroll !important;
	 padding: 7px;
	 transform: scroll(calc(var(--i,0)/var(--n)*-100%));
	 scroll-behavior: smooth;
	 background-color:transparent;
}
 .ngendux-slider1::-webkit-scrollbar {
	 height: 5px;
	 width: 150px; 
}
 .ngendux-slider1::-webkit-scrollbar-track {
	 background: rgba(0,0,0,0.15);;
}
 .ngendux-slider1::-webkit-scrollbar-thumb {
	 background:rgb(95, 44, 62);
}
 .ngendux-slider1::-webkit-scrollbar-thumb:hover {
	 background: yellow;
}
 .ngendux-slider1 img:hover {
	 transform: scale(1.05);
	 box-shadow: 10px 10px 10px rgba(0,0,0,0.15);
}
 .ngendux-slide1 { 
	 position: relative;
}
 .ngendux-slide1 img {
	 height: 100%;
	 width: 100px;
	 margin: 0 3px;
	 object-fit: cover;
	 border-radius: 7px;
	 cursor: pointer;
	 transition: .25s ease-in-out;
}
 .control-prev-btn {
	 position: absolute;
	 top: 50%;
	 left: 0;
	 background-color:rgba(0,0,0,0.55);
	 height: 130px;
	 line-height: 130px;
	 width: 25px;
	 text-align: center;
	 box-shadow: 0 1px 3px rgb(95, 44, 62);
	 user-select: none;
	 color:rgba(255,255,255,1);
	 cursor: pointer;
	 font-size: 1.3em;
}
 .control-next-btn {
	 position: absolute;
	 top: 50%;
	 right: 7px;
	 background-color: rgba(0,0,0,0.55);
	 height: 130px;
	 line-height: 130px;
	 width: 25px;
	 text-align: center;
	 box-shadow: 0 1px 3px rgb(95, 44, 62);
	 user-select: none;
	 color:rgba(255,255,255,1);
	 cursor: pointer;
	 font-size: 1.3em;
}
.ngendux-slide1 img.zoomed{
	width: 500px;
    height: 600px;
    position: fixed;
    left: 25%;
    top: 0%;
    z-index: 1000;
		transform: scale(1) translatey(0) !important; 
	
}
.ngendux-overlay1{
	position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,.45);
    top: 0;
	display: none;
}
.ngendux-overlay1.active{
	display: block;
}
 @media only screen and (max-width: 420px) {
	 .ngendux-slider1 {
	
	
		padding: 0;
	}
	 .ngendux-slide1 {
		 padding: 7px 4px;
	}
	 .ngendux-slide1 img {
		 margin: 0;
	}
	 .control-prev-btn {
		 top: 47%;
	}
	 .control-next-btn {
		 top: 47%;
	}
}