.gallery {
	position: relative;
}

.previous,
.next {
	cursor: pointer;
	position: absolute;
	top: 40%;
	padding: 16px;
	color: #0C6291;
	font-weight: bold;
	font-size: 20px;
	user-select: none;
	-webkit-user-select: none;
}

.previous {
	left: 0;
	border-radius: 0 3px 3px 0;
}

.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

.previous:hover,
.next:hover {
	color: white;
	background-color: #0C6291;

}