.pl_slider {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin: auto;
	margin-top: 20px;
}

.pl_slides {
	display: flex;
	transition: transform 2s ease-in-out;
}

.pl_slide {
	min-width: 100%;
	min-height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FFFFFF;
	transition: background-color 1s ease-in-out, color 1s ease-in-out;
	border-radius: 10px;
}
.pl_slide:hover {
	background-color: silver;
	color: black;
}

/* Strzałki */
.pl_slide_prev, .pl_slide_next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	color: #000000;
	border: none;
	padding: 10px;
	cursor: pointer;
	transform: scale(1.2,3);
}

.pl_slide_prev {
	left: 10px;
}

.pl_slide_next {
	right: 10px;
}

.pl_slide_prev:hover, .pl_slide_next:hover {
	background: none;
	border: none;
}

.pl_slide_left {
	width: 30%;
	height: 200px;
	margin-left: 50px;
	text-align: center;
	line-height: 40px;
}
.pl_slide_right {
	width: 70%;
	height: 200px;
	margin-right: 50px;
}
.pl_slide_author {
	font-weight: bold;
}
.pl_slide_time {
	font-size: small;
}
.pl_slide_rating {
	font-size: xx-large;
	color: gold;
}
.pl_slide_text {
	height: 100%;
	overflow: hidden;
}

@media screen and (max-width: 768px) {
	.pl_slide {
		display: block;
		padding: 10px;
	}
	.pl_slide_left, .pl_slide_right {
		width: 100%;
		line-height: 20px;
		margin: 0px;
	}
	.pl_slide_left {
		height: 100px;
	}
	.pl_slide_prev, .pl_slide_next {
		position: absolute;
		top: 10px;
	}
}