.cycle-slideshow {
	transform: translate3d(0,0,0);
	position: relative;
}
.cycle-slideshow img {
	width: 100%;
}
.cycle-slideshow .prev, .cycle-slideshow .next {
	position: absolute;
	bottom: 1rem;
	/*transform: translateY(-50%);*/
	z-index: 999;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	display: none;
}
.cycle-slideshow .prev svg:first-of-type, .cycle-slideshow .next svg:first-of-type {
	color: rgba(0,0,0,0.7);
}
.cycle-slideshow .prev {
	left: 1rem;
}
.cycle-slideshow .next {
	right: 1rem;
}
.cycle-slideshow .pager {
	position: absolute;
	bottom: .5rem;
	z-index: 999;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
}
.cycle-slideshow .pager span + span {
	margin-left: .25rem;
}
.cycle-slideshow .pager svg:first-of-type {
	color: rgba(0,0,0,0.7);
}
.cycle-slideshow .pager svg:nth-of-type(2) {
	color: rgba(255,255,255,0.2);
}
.cycle-slideshow .pager .cycle-pager-active svg:nth-of-type(2) {
	color: rgba(255,255,255,1);
}