/* post-slide.js */

.post-slide-button {
	position: fixed;
	width: 40px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	background-color: #333;
	opacity: 0.5;
	cursor: pointer;
	transition: all 0.5s ease-in-out;
	top: calc(50% - 20px);
}
.post-slide-button:hover {
	opacity: 1;
}
.post-slide-button:before {
    color: #fff;
	content: "\f054";
    font-size: var(--e-icon-list-icon-size);
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}
.post-slide-button.prev:before {
	content: "\f053";
}
.post-slide-button.prev {
	left: -15px;
	border-radius: 0 10px 10px 0;
}
.post-slide-button.prev:hover {
	left: 0px;
}
.post-slide-button.next {
	right: -15px;
	border-radius: 10px 0 0 10px;
}
.post-slide-button.next:hover {
	right: 0px;
}

@media (max-width: 992px) {
	.post-slide-button.prev {
		left: -20px;
	}
	.post-slide-button.prev:hover {
		left: -10px;
	}
	.post-slide-button.next {
		right: -20px;
	}
	.post-slide-button.next:hover {
		right: -10px;
	}
}