/*
OPCJONALEN ELEMENTY:
1. #slider-nav - punkty, dolna nawigacja 
*/

#slider-wrapper {
	position: relative;
	width: 100%;
	height: 80%;
	box-sizing: border-box;
	padding: 30px;
	margin-bottom: -20px;
}
#slider-wrapper.podstrona {height: 40%}

#slider {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	overflow: hidden;
}

#slider .slide {
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: white;
	background-position: center;
	background-size: cover;
}

#slider-wrapper.podstrona section {
	width: 100%;
	height: 100%;
	background-color: white;
	background-position: center;
	background-size: cover;
}

#slider .slide.active {
	z-index: 4;
}

#slider .slide.next {
	z-index: 3;
}

#slider-nav {
	text-align: center;
	position: absolute;
	z-index: 5;
	bottom: 15px;
	left: 15px;
}

#slider-nav a {
	display: inline-block;
	width: 10px;
	height: 10px;
	position: relative;
	border: 2px solid white;
	margin: 0 4px;
}

#slider-nav a.active, #slider-nav a:hover{background: white}


/* #Base 1024 Grid
================================================== */
@media only screen and (max-width: 1024px) {
	
#slider-wrapper {
	padding: 20px;
}	
	
#slider-nav {
	bottom: 10px;
	left: 10px;
}

}


/* #Base 750 Grid
================================================== */
@media only screen and (max-width: 750px) {
	
#slider-wrapper {
	padding: 15px;
	margin-bottom: -10px;
	height: 80%;
}	

}

/* #Base 500 Grid
================================================== */
@media only screen and (max-width: 500px) {
	
#slider-wrapper {padding: 10px}	

}