/* ====================== Mobile and Up ========================== */

/* CODED BY AL BAKER FOR USE ON ALL CET PAGES */
/* USED WITH PERMISSION BY JEFF TURPIN FOR USE ON CHPS PAGES */

.video div {
	margin: 0 auto;
}

/* VIDEO BANNER WITH APFY SHAPES - CODED BY AL BAKER */
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	.video-content {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	.video-content {
		position: relative;
	}
	.video-content::after {
		content: '';
		background: url(/criminaljustice/images/zigzag.svg);
		height: 50px;
		width: 50px;
		position: absolute;
		top: -25px;
		right: 50px;
		transform: rotateZ(180deg);
	}
}

/* ====================== Extra-Wide Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1500px) {
	.video-banner {
		position: relative;
	}
	.video-banner::before {
		content: '';
		background: url(/criminaljustice/images/circle.svg);
		height: 200px;
		width: 200px;
		position: absolute;
		bottom: 100px;
		left: -100px;
	}
}
