.c-image-rotator__container {
	position: relative;
	background: #ccc;
	overflow: hidden;
}
.c-image-rotator__container:before {
	display: block;
	content: "";
	width: 100%;
}
.c-image-rotator__container > .o-image{
	top: 0;
	bottom: 0;
}

.c-image-rotator .o-image {
	position: absolute;
	height: 100%;
	width: 100%;
	overflow: hidden;
	z-index: 0;
	top: 0;
}

.c-image-rotator .o-image:not(.o-image--active) {
	left: 100%;
}

.o-image__disable-select {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
}

.c-image-rotator .o-image__img {
	position: absolute;
	top: -100%;
	bottom: -100%;
	left: -100%;
	right: -100%;
	margin: auto;
	height: 100%;
	width: auto;
	max-width: inherit;
	z-index: 0;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.c-image-rotator .o-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1;
	-webkit-user-select: none;
	/* Safari */
	-moz-user-select: none;
	/* Firefox */
	-ms-user-select: none;
	/* IE10+/Edge */
	user-select: none;
	/* Standard */
}

.c-image-rotator .o-image__caption-toggle {
	display: block;
	position: absolute;
	right: 0;
	top: -2rem;
	background: #00a3c7;
	color: #fff;
	font-family: 'Linotype Tetria', sans-serif;
	text-transform: uppercase;
	font-size: .7rem;
	font-weight: bold;
	padding: .5rem;
	border-top-left-radius: 5px;
	cursor: pointer;
}

.c-image-rotator .o-image__caption-toggle-icon {
    font-size: 1rem;
    line-height: 0;
    position: relative;
    margin-right: .25rem;
    top: .2rem;
}

.c-image-rotator .o-image__caption-toggle-icon::before {
    content: '\f0d7';
}

.c-image-rotator .o-image__caption-toggle--active .o-image__caption-toggle-icon::before {
    content: '\f0d8';
}

.c-image-rotator .o-image__caption-toggle-text::before {
	content: 'Close ';
}

.c-image-rotator .o-image__caption-toggle--active .o-image__caption-toggle-text::before {
	content: 'Open ';
}

.c-image-rotator__control {
	position: absolute;
	z-index: 2;
	cursor: pointer;
	height: 2.75rem;
	padding: 1rem;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	font-weight: bold;
	font-size: 1.5rem;
	text-decoration: none;
	opacity: .5;
	-webkit-user-select: none;
	/* Safari */
	-moz-user-select: none;
	/* Firefox */
	-ms-user-select: none;
	/* IE10+/Edge */
	user-select: none;
	/* Standard */
}

.o-image__disable-select {
	-webkit-user-select: none;
	/* Safari */
	-moz-user-select: none;
	/* Firefox */
	-ms-user-select: none;
	/* IE10+/Edge */
	user-select: none;
	/* Standard */
}

.c-image-rotator__control:hover {
	opacity: 1;
}

.c-image-rotator__control:not(.c-image-rotator__control--inactive) {
	background: #0054a6;
	color: #fff;
}

.c-image-rotator__control--prev {
	left: 1rem;
}

.c-image-rotator__control--next {
	right: 1rem;
}

.c-image-rotator__control--inactive {
	background: #ccc;
	color: #777;
}

.c-image-rotator__icon {
	height: 1rem;
	width: 1rem;
	background: #ccc;
	border-radius: 100%;
	margin: 1rem;
	cursor: pointer;
}

.c-image-rotator__nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
}

.c-image-rotator__icon--active {
	background: #333;
}

@media (min-width: 45.5rem) {
	.c-image-rotator__control {
		top: calc(50% - 1rem);
	}
	.c-image-rotator__container:before {
		padding-top: 43.25%;
	}
}

@media (max-width: 45.5rem) {
	.c-image-rotator__control {
		top: calc(50% - 3rem);
	}
	.c-image-rotator__container:before {
		padding-top: 75%;
	}
}

.c-image-rotator__container--full::before {
	padding-top: 48%;
}

.c-image-rotator__container--column-contained::before {
	padding-top: 66.667%;
}

.c-image-rotator__container--square::before {
	padding-top: 100%;
}