.glightbox-clean .gslide-description {
	border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.03);
}

.glightbox-clean .gslide-title {
    font-size: 1em;
    font-weight: 400;
	font-family: "Lexend", Helvetica, sans-serif;
    color: #ffffff;
    margin: 0.5rem;
	text-align: center;
}

.glightbox-clean .gprev,
.glightbox-clean .gnext,
.glightbox-clean .gclose {
	background: #ffffff;
	color: #212931;
	border: none;
	border-radius: 2rem;
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	outline: none;
	box-shadow: none;
	padding: 1rem;
}

.glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gclose:hover,
.glightbox-clean .gprev:focus,
.glightbox-clean .gnext:focus,
.glightbox-clean .gclose:focus {
	background: #009966;
	color: #ffffff;
	outline: none;
	box-shadow: none;
}

/* Force the SVG itself to use the button colour */
.glightbox-clean .gprev svg,
.glightbox-clean .gnext svg,
.glightbox-clean .gclose svg {
	display: none;
}

.glightbox-clean .gprev::before,
.glightbox-clean .gnext::before,
.glightbox-clean .gclose::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 1.25rem;
	line-height: 1;
	color: #212931;
}

.glightbox-clean .gprev::before {
	content: "\f104"; /* chevron-left */
}

.glightbox-clean .gnext::before {
	content: "\f105"; /* chevron-right */
}

.glightbox-clean .gclose::before {
	content: "\f00d"; /* times / x */
}