  /*
Implementation Skeleton v3 - 12/6/18
Add styles to overwrite customer CSS, USE WITH CAUTION.
*/

/* add styling to the div in the program listing pop up modal so it's consistent */
.programInfo > .content > div {
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 20px;
	color: var(--black);
	letter-spacing: .54px;
}

/*  add styling to video container Ticket #256486*/
.video-container {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	max-width: 100%; /* keep within parent container */
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}