.pods-slider,
.pods-slider * {
	box-sizing: border-box;
}
.pods-slider {
	overflow:hidden;
	/* fix ie overflow issue */
	position:relative;
	width: 100%;
    display: block !important;
}
.pods-slider .slides {
	position:relative;
	left:0;
	top:0;
	list-style:none;
	margin:0;
	padding:0;	
	/* width:750px;	*/
    display: block;		
}

.pods-slider:not(.started) .slides,
.pods-slider:not(.started) > div,
.pods-slider:not(.started) > section {display: flex; }
.pods-slider:not(.started)[data-show="1"] > * > *:nth-child(n+2):not(.slides),
.pods-slider:not(.started)[data-show="2"] > * > *:nth-child(n+3):not(.slides),
.pods-slider:not(.started)[data-show="3"] > * > *:nth-child(n+4):not(.slides),
.pods-slider:not(.started)[data-show="4"] > * > *:nth-child(n+5):not(.slides),
.pods-slider:not(.started)[data-show="5"] > * > *:nth-child(n+6):not(.slides),
.pods-slider:not(.started)[data-show="6"] > * > *:nth-child(n+7):not(.slides) {display: none; }

.pods-slider .slides:after {
    content: '';
    clear: both;
    display: block;
}
.pods-slider .slides .slide {
	/* width:50%; */
	/* height:250px; */
	/* float:left; */
}
.pods-slider .slides .slide img {
	padding:4px;
}

/* Styling for prev and next buttons */
/*
.pods-slider .slider-nav {
	padding:0 0 5px 0;	
	float:right;
}
.pods-slider .slider-nav a {
	display:block; 
	width:31px; 
	height:32px;
	text-indent:-999em;
	float:left;
	outline:0;
}
.pods-slider .slider-nav a.prev {
	background:url(arrow.gif) 0 -31px no-repeat; 
}
.pods-slider .slider-nav a.prev:hover {
	background:url(arrow.gif) 0 0 no-repeat;
}
.pods-slider .slider-nav a.next {
	background:url(arrow.gif) -32px -31px no-repeat; 
}
.pods-slider .slider-nav a.next:hover {
	background:url(arrow.gif) -32px 0 no-repeat;
}
*/
.pods-slider .slider-nav-prev,
.pods-slider .slider-nav-next {
	display:block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
	font-size: 2em;
    line-height: 0.6em;
    color: #FFF;
    background: #000;
    opacity: 0.5;
    cursor: pointer;
    padding: 0.5em;
    border-radius: 1000px;
}
.pods-slider .slider-nav-prev {
    left: -10px;
}
.pods-slider .slider-nav-next {
    right: -10px;
}
.pods-slider .slider-nav-prev:hover,
.pods-slider .slider-nav-next:hover {
	opacity: 1;
}
.pods-slider .slider-nav-prev,
.pods-slider .slider-nav-next {display: none; } /* Nav is not ready yet */

.pods-slider .slides {
	display: flex;
	flex-wrap: wrap;
}
.pods-slider[data-show="1"] .slides .slide {width: 98%; }
.pods-slider[data-show="2"] .slides .slide {width: 48%; }
.pods-slider[data-show="3"] .slides .slide {width: 31.33%; }
.pods-slider[data-show="4"] .slides .slide {width: 23%; }
.pods-slider[data-show="5"] .slides .slide {width: 18%; }
.pods-slider[data-show="6"] .slides .slide {width: 14.66%; }
.pods-slider .slides .slide {
	margin: 0 1%;
	/* display: flex; */
	/* flex-direction: column; */
	position: relative;
}
.pods-slider .slides a.slide {
    color: inherit;
}

.pods-slider .slides .slide .content {
    z-index: 1;
}
.dot-nav {
    display: flex;
    justify-content: flex-end;
}
.dot-nav-item {
    font-size: 0.5em;
    height: 2em;
    width: 2em;
    color: #FFF;
    background: #000;
    opacity: 0.5;
    transition: 0.3s;
    border-radius: 100px;
    display: inline-block;
    margin: 0 0.25em;
}
.dot-nav-item:hover {
    opacity: 0.75;
}
.dot-nav-item.active {
    opacity: 1;
    font-weight: bold;
}

@media (max-width: 767px) {
	.pods-slider:not([data-show="1"]) .slides .slide {
		width: 48%;
	}
}
@media (max-width: 450px) {
	.pods-slider .slides .slide {
		width: 98%;
	}
}