.embed-responsive {
	position: relative;
	display: block;
	padding: 0;

	.embed-responsive-item,
	iframe,
	embed,
	object {
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		height: 100%;
		width: 100%;
		border: 0;
	}

	// Modifier class for 16:9 aspect ratio
	&.embed-responsive-16by9 {
		padding-bottom: $embed__ratio;
	}

	// Modifier class for 4:3 aspect ratio
	&.embed-responsive-4by3 {
		padding-bottom: 75%;
	}
}

/* Audio */
.entry-content .mejs-container-wrapper {
	@include border-radius($border__radius);
	padding: 30px 20px;
	margin-bottom: 1em;
	@include media-breakpoint-up(lg) {
		margin-bottom: 1.5em;
	}
	@include media-breakpoint-up(xl) {
		padding: 40px;
	}

	.single &{
		margin-bottom: 40px;
		&:first-child {
			margin-top: 10px;
		}
	}
}

/* Facebook embed */
.fb_iframe_widget {
	max-width: 100%;
	> span {
		max-width: 100%;
	}
}