.poster {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	justify-content: space-between;
	visibility: hidden;
}
.poster.loaded {
	visibility: visible;
}
.poster .slide {
	position: relative;
	flex-basis: calc(50% - 5px);
	overflow: hidden;
}
.poster .slide a {
	display: block;
	width: 100%;
	height: 100%;
}
.poster .slide img {
	width: 100%;
	height: auto;
}
.poster .slide .button-wrapper {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
}
.poster .slide .button-wrapper button i {
	padding-left: 5px;
}

@media only screen and (min-width: 40.063em) {
	.poster .slide {
		flex-basis: calc(50% - 10px);
	}
}
