#galeriaOpcje {
	display:block;
	position:fixed;
	width:7%;
	bottom:2%;
	float:left;
	right:1%;
}
.galeriaPrzyciski{
    display:block;
    width:30%;
    margin-left:3%;
	cursor:pointer;
	float:left;
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	height:42px;
	background-position: center;
	background-repeat: no-repeat;
	background-size:45%;
	background-color:rgba(27,30,39,0.7);
	transition:0.5s ease;
	border-radius:50%;
}
#prev{
	background-image: url(../img/prev.png);
}
#prev:hover{
	background-image: url(../img/prevh.png);
}
#pause{
	background-image: url(../img/pause.png);
}
#pause:hover{
	background-image: url(../img/pauseh.png);
}
#play{
	background-image: url(../img/play.png);
}
#play:hover{
	background-image: url(../img/playh.png);
}
#next{
	background-image: url(../img/next.png);
}
#next:hover{
	background-image: url(../img/nexth.png);
}

#play{
	display:none;
}