/**
 * Gel 5.3
 * Main Gel Stylesheet
 * File Version 5.3.9
 * Last Modified 2017-08-18 by Kelly Chisum
 */.credits {
	margin: 0 1em -.5em;
}
.schedule {
	position: relative;
	margin-top: 2.5em;
	padding-top: 5.9em;
	
	border-radius: 1rem;
}
.day-header {
	position: absolute;
	top: 0;
	z-index: 1;
	width: 50%;
	margin: 0;
	padding: .6em;
	background: url("/images/design/blue.jpg") fixed;
	border-right: 1px solid #FFF;
	color: #FFF;
	font-size: 2em;
	text-align: center;
	cursor: pointer;
}
.day-header:first-of-type {
	left: 0;
	border-top-left-radius: .7rem;
}
.day-header:last-of-type {
	left: 50%;
	border: none;
	border-top-right-radius: 1rem;
}
.day-header:hover {
	background: url("/images/design/red.jpg") fixed;
}
.day-header-day {
	position: relative;
}
.day-header-day:after {
	content: ",";
	margin-right: .25em;
}
.day-open {
	background: url("/images/design/red.jpg") fixed;
	color: #FFF;
}
.day-open .day-arrow {
	position: absolute;
	bottom: -.75em;
	left: 50%;
	z-index: -1;
	width: 2em;
	height: 1em;
	margin-left: -1em;
	background: url("/images/design/red.jpg") fixed;
	border-radius: 2px;
}
.day-open .day-arrow:before, .day-open .day-arrow:after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 0;
	height: 0;
}
.day-open .day-arrow:before {
	left: 0;
	border-bottom: .75em solid #F2F2F2;
	border-right: 1.5em solid transparent;
}
.day-open .day-arrow:after {
	right: 0;
	border-bottom: .75em solid #F2F2F2;
	border-left: 1.5em solid transparent;
}
.day {
	position: relative;
	height: 0;
	overflow: hidden;
	opacity: 0;
	border-bottom-right-radius: 1rem;
	border-bottom-left-radius: 1rem;
	-moz-transition: opacity 2s ease;
	-webkit-transition: opacity 2s ease;
	transition: opacity 2s ease;
}
.day-open + .day {
	height: auto;
	margin-top: -1em;
	padding: 3em 3em 1em 0;
	opacity: 1;
}
.day:after {
	content: "";
	position: absolute;
	top: 0;
	left: 6.5625em;
	z-index: 0;
	width: 1px;
	height: 100%;
	background-color: #DBDCDE;
}
.time-slot {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	position: relative;
	z-index: 1;
	margin: 0 0 2em;
}
.start-end-time {
	position: relative;
	width: 15em;
	margin: .175em 0 0;
	color: #6D6E71;
	font-size: .875em;
	text-align: center;
	font-variant: small-caps;
}
.start-end-time:after {
	content: "";
	position: absolute;
	top: .1em;
	left: 50%;
	z-index: -1;
	width: 1.3em;
	height: 1.3em;
	margin-left: -.65em;
	background-color: #DBDCDE;
	border-radius: 2px;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.sessions {
	-webkit-box-flex: 1 0 40%;
	-webkit-flex: 1 0 40%;
	-ms-flex: 1 0 40%;
	flex: 1 0 40%;
	width: 40%;
}
.sessions h5 {
    width: 100%;
	margin-top: 0;
	font-size: 1.1875em;
	color: #222;
}
.session {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-moz-box-wrap: wrap;
	-webkit-box-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flexbox-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 0 1.5em;
}
.session:last-child {
	margin-bottom: 0;
}
.session-title a {
    font-style: normal;
}
.session-title {
    width: 100%;
	margin: 0 0 .25em;
}
.speaker-names {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    margin: 0 1.5em 0 0;
	color: #6D6E71;
    font-size: .875em;
    font-weight: normal;
}
.location {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0;
	color: #6D6E71;
    font-size: .875em;
}
.session svg {
    margin-right: .5em;
}
@media screen and (max-width: 900px) {
	.schedule {
		margin-top: 0;
		padding-top: 4em;
	}
	.day-header {
		font-size: 1.2em;
	}
	.day:after {
		left: 5.25em;
	}
	.start-end-time {
		width: 12em;
	}
}
@media screen and (max-width: 675px) {
	.schedule {
		padding-top: 7.75em;
	}
	.day-header {
		width: 100%;
		height: 2.8em;
		padding-top: .75em;
		border-right: none;
		border-bottom: 2px solid #FFF;
	}
	.day-header:nth-of-type(1) {
		top: 0;
		left: 0;
		border-top-right-radius: .7rem;
	}
	.day-header:nth-of-type(2) {
		top: 2.8em;
		left: 0;
		border-radius: 0;
	}
	.day-open .day-arrow {
		display: none;
	}
	.day-open + .day {
		padding: 2em;
	}
	.day:after {
		display: none;
	}
	.time-slot {
		-moz-box-wrap: wrap;
		-webkit-box-wrap: wrap;
		-webkit-flex-wrap: wrap;
		-ms-flexbox-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.start-end-time {
		width: 110%;
		margin: 0 -5% 1em;
		color: #222;
		border-top: 1px solid #999;
		border-bottom: 1px solid #999;
		font-size: 1.1em;
	}
	.start-end-time:after {
		display: none
	}
	.speaker-names, .location {
		width: 100%;
	}
	.speaker-names {
		-webkit-box-align: flex-start;
		-webkit-align-items: flex-start;
		-moz-box-align: flex-start;
		-ms-flex-align: flex-start;
		align-items: flex-start;
		margin: .5em 1.5em .25em 0;
		color: #6D6E71;
		font-size: .875em;
		font-weight: normal;
		text-align: left;
	}
	.location {
		margin: 0;
		color: #6D6E71;
			font-size: .875em;
	}
	.speaker-names svg {
		margin-left: 1em;
	}
	.location svg {
		margin: 0 .75em 0 1em;
	}
}