/* CSS Document for Webcasts  */
/*
--- TYPOGRAPHY SYSTEM  ---
	- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

	- font-size: 10px; 
	- 10px / 16px = 0.625 = 62.5% 
	- Percentage of user's browser font-size setting 
	
	- Font weights
		Default: 300
		Medium: 400
		Bold: 500

	- Line heights
		Default: 1
		Small: 1.05
		Medium: 1.2
		Large: 1.8
		Paragraph default: 1.6

	- Letter spacing
		- 0.5px
		- 0.75px
  
	- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

/* Universal Reset  */
* {
	margin:0;
	padding:0;
	box-sizing:border-box;
}

html {
  	font-size: 62.5%;
}

body {
	font-family: 'Roboto', sans-serif;
	color: #333;
	font-size: 1.6rem;
	line-height: 1.25;
	font-weight: 400;  
}

.container-box {
	margin:0 auto;
	padding:0 2rem;
}

.para-box {
	max-width:900px;
}

.tdsbLogo {
	text-align:center;
	padding-bottom:1.8rem;
	width:100%;
	max-width:880px;
	margin:0 auto 1rem auto;
	background-image: url(/stream/images/header_border.jpg);
	background-repeat: no-repeat;
	background-position:bottom;
}

.tdsbLogo img {
	max-width:500px;
	height:auto;
}

p {
  	font-size: 1.8rem!important;
  	line-height: 1.2!important;
}

h1, h2, h3, .webcast-green-heading {
	font-size:3.2rem!important;
	font-weight:500!important;
}

h1.webcast-green-heading {
	color:#509a45!important;;
}

h2 {
	font-size:2.4rem;
	font-weight:500;
	color:#222;
	line-height:1.4;
	padding-bottom:0.58em;
}

.webcast-datetime h2 {
	text-align:center;
	font-size:2.4rem!important;
	line-height: 3.4rem !important;
}

h3 {
	font-size:1.8rem;
	font-weight:500;
	color:#222;
}

.webcast-title-box {
	width:100%;
	max-width:800px;
	margin:0 auto;
	margin-top:2.2rem;
	text-align: center;
}

.text-center {
	text-align:center;
}

.webcast-placeholder-image {
	margin:0 auto;
	margin-top:1.4rem;
	padding:0 1.4rem;
	display: flex;
	justify-content: center;
}

.webcast-placeholder-image img {
	width:100%;
	max-width:700px;
}

.webcast-video {
	display: block;
  	padding-right: 25%;
  	padding-left: 25%;
  	padding-top: 1%;
}

.video-container {
	position:relative;
	padding-bottom:58.25%;
	height:0;
	overflow:hidden;
}

.video-container iframe, .video-container object, .video-container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.videoScreen, #PlayerOne.ui-enabled #topContainer {
	border:1px solid #fff!important;
	margin-bottom:1em;
}

@media only screen and (min-width:1841px) {   
.webcast-video {
	padding-right: 30%;
	padding-left: 30%;
}
}

@media only screen and (max-width:1001px) and (max-width: 1840px) {   
.webcast-video {
	padding-right: 15%;
	padding-left: 15%;
}
}

@media only screen and (min-width:1401px) {   
.tdsbLogo {
	margin-top:-5%;
}
}

@media only screen and (max-width:1400px) {   
.tdsbLogo {
	margin-top:-5%;
}
}

@media only screen and (max-width:900px) {   
	.webcast-video {
		padding-right: 5%;
		padding-left: 5%;
}
}


