/*!
 * Client Name Local Styles
 * Copyright 2008-2017 Punchmark
 */

#schedule {
	margin-top: 0px;
	opacity: 1;
	transform: translate(0,0);
	transition: all 0.5s ease-in-out;
}
#schedule.filter {
	opacity: 0;
	transform: translate(0,100px);
	transition: all 0.5s ease-in-out;
}
#schedule section {
	background: transparent !important;
}
#schedule .intro {
	display: flex;
	justify-content: center;
	align-items: center;
}
#schedule section .section-time .circle {
	width: 110px;
	height: 110px;
	margin: 0 auto;
	line-height: 112px;
	text-align: center;
	background: #3667BD;
	color: white;
	font-size: 2rem;
	border-radius: 50%;
	font-weight: 100;
	position: relative;
	z-index: 2;
}
#schedule section.active .section-time .circle {
	background: #FC4763;
}
#schedule .section-title {
	font-size: 2rem;
	letter-spacing: 1px;
	font-weight: 100;
	color: #3767bd;
	position: relative;
	margin: 20px 0;
	text-align: left;
	padding-left: 20px;
	font-weight: 500;
}
#schedule section.active .section-title {
	color: #FC4763;
}
#schedule .section-title:before {
	content: "";
	width: 200%;
	position: absolute;
	left: -150%;
	top: -120px;
	transform: translate(0,0);
	display: block;
	height: 1px;
	background: rgba(0,0,0,0.2);
	z-index: 1;
}
#schedule .breakdown {
	position: relative;
}
#schedule .breakdown:after {
	content: "";
	display: block;
	width: 1px;
	background: rgba(0,0,0,0.2);
	position: absolute;
	top: 25px;
	left: 55px;
	bottom: 100px;
	z-index: 1;
}
#schedule .segment-wrap.active {
	z-index: 10;
}
#schedule .segment-wrap {
	position: relative;
	z-index: 9;
}
#schedule .segment-wrap .segment,
#schedule .segment-wrap .segment article {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	z-index: 9;
}
#schedule .segment {
	flex-wrap: wrap;
	position: relative;
	padding: 20px 0;
}
#schedule .segment:hover {
	cursor: pointer;
}
#schedule .segment:hover article .segment-image .speaker-image {
	/*
	width: 110px;
	height: 110px;
	*/
}

#schedule .segment:hover article .segment-title,
#schedule .segment:hover article .segment-speaker {
	color: #0D1E30;
	transition: all 0.3s ease-in-out;
	text-align: left;
}
#schedule .segment-wrap:before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 105px;
	right: 0;
	background: rgba(0,0,0,0.2);
	height: 1px;
	max-width: 0;
	transition: all 0.3s ease-in-out;
}
#schedule .segment article .segment-image {
	border: 5px solid #3667BD;
	background: rgb(255,255,255);
	background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);	
	width: 110px;
	height: 110px;
	min-width: 110px;
	min-height: 110px;
	max-width: 110px;
	max-height: 110px;
	display: block;
	border-radius: 50%;
	margin-right: 20px;
	position: relative;
	transition: all 0.3s ease-in-out;
}
#schedule .segment article .segment-image[data-images="1"]{
	background: white;
}
#schedule .segment article .segment-image .speaker-image {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 2;
	transition: all 0.3s ease-in-out;
}
#schedule .segment article .segment-label {
	width: 200px;
	width: 100%;
	text-align: left;
}
#schedule .segment article .segment-title {
	color: #3667BD;
	transition: all 0.3s ease-in-out;
}
#schedule .segment:hover article .segment-title {
	color: #FC4763;
}	
#schedule .segment article .segment-speaker {
	font-size: 1rem;
	color: grey;
	transition: all 0.3s ease-in-out;
}
#schedule .segment-video {
	max-height: 0;
	height: 0;
	overflow: hidden;
	min-width: 100%;
	transition: all 0.5s ease-in-out;
}
#schedule .segment-video .videoWrap {
	position: relative;
	background: white;
	border: 0px solid #FC4763;
	border-radius: 10px;
	box-shadow: 0 0 0 5px #FC4763;
	padding: 10px 10px 10px 10px;
}
#schedule .segment-video video {
	min-width: 100%;
	height: auto;
	object-fit: cover;
	box-sizing: border-box;
	background: white;
	border-radius: 0px;
	position: relative;
	z-index: 2;
	margin-bottom: 0;
}
#schedule .segment-video .controls {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) scale(0.9);
	z-index: 10;
	opacity: 0;
	transition: all 0.2s ease-in-out;
}
#schedule .segment-video:hover .controls {
	opacity: 1;
	transform: translate(-50%,-50%) scale(1);
	transition: all 0.2s ease-in-out;
}
#schedule .segment-video .controls i {
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 2rem;
	border-radius: 50%;
	background: #FC4763;
	color: white;
	vertical-align: top;
	text-align: center;
	margin: 0 5px;
}
#schedule .segment-video .controls i:hover {
	cursor: pointer;
}

#schedule .segment-wrap.active .segment-video {
	max-height: 300px;
	height: 100%;
	transition: all 0.5s ease-in-out;
	overflow: visible;
}
#schedule .segment-wrap.active article .segment-image {
	border: 5px solid #FC4763;
	transition: all 0.3s ease-in-out;
}
#schedule .segment-wrap.active article .segment-image .speaker-image {
	width: 90px;
	height: 90px;
	transition: all 0.3s ease-in-out;
}


#schedule .segment-wrap article .segment-image.segment-image-multiple {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	border: 0px solid #3667BD;
	transition: all 0.3s ease-in-out;
}
#schedule .segment-wrap article .segment-image.segment-image-multiple .speaker-image {
	width: 55px;
	height: 55px;
	min-width: 55px;
	min-height: 55px;
	max-width: 55px;
	max-height: 55px;
	position: static;
	top: auto;
	left: auto;
	transform: none;
	border: 4px solid #3667BD;
	transition: all 0.3s ease-in-out;
}

 



#schedule .segment-wrap article .segment-image.segment-image-multiple[data-images="2"] .speaker-image {
	/*margin: 0 55px;*/
}
#schedule .segment-wrap article .segment-image.segment-image-multiple[data-images="2"] .speaker-image:nth-child(1){
	transform: translateX(2px);
}
#schedule .segment-wrap article .segment-image.segment-image-multiple[data-images="2"] .speaker-image:nth-child(2){
	transform: translateX(-2px);
}


#schedule .segment-wrap article .segment-image.segment-image-multiple[data-images="3"] .speaker-image:nth-child(1) {
	transform: translate(2px,10px);
}
#schedule .segment-wrap article .segment-image.segment-image-multiple[data-images="3"] .speaker-image:nth-child(2) {
	transform: translate(-2px,10px);
}
#schedule .segment-wrap article .segment-image.segment-image-multiple[data-images="3"] .speaker-image:nth-child(3) {
	transform: translateY(-15px);
}


#schedule .segment-wrap article .segment-image.segment-image-multiple[data-images="4"] .speaker-image:nth-child(1) {
	margin: 0 55px;
	transform: translateY(-1px);
}
#schedule .segment-wrap article .segment-image.segment-image-multiple[data-images="4"] .speaker-image:nth-child(2) {
	transform: translate(2px,-30px);
}
#schedule .segment-wrap article .segment-image.segment-image-multiple[data-images="4"] .speaker-image:nth-child(3) {
	transform: translate(-2px,-30px);
}
#schedule .segment-wrap article .segment-image.segment-image-multiple[data-images="4"] .speaker-image:nth-child(4) {
	transform: translateY(-61px);
}


#schedule .segment-wrap.active article .segment-image.segment-image-multiple {
	border: 0px solid #FC4763;
	transition: all 0.3s ease-in-out;
}
#schedule .segment-wrap.active article .segment-image.segment-image-multiple .speaker-image {	
	border: 4px solid #FC4763;
	transition: all 0.3s ease-in-out;
}





#schedule .segment-wrap.active article .segment-title {
	color: #FC4763;
	transition: all 0.3s ease-in-out;
}
#schedule .segment-wrap.active:hover article .segment-speaker {
	color: grey;
}
#schedule [data-animation="slideIn"] .section-title  {
	opacity: 0;
	transform: translate(0,50px);
}
#schedule [data-animation="slideIn"].in .section-title {
	opacity: 1;
	transform: translate(0,0);
	transition-delay: 0.3s;
	transition: all 1s ease-in-out;
}
#schedule [data-animation="slideIn"] .section-title:before  {
	width: 0;
}
#schedule [data-animation="slideIn"].in .section-title:before {
	width: 100%;
	transition: all 1s ease-in-out;
}
#schedule [data-animation="slideIn"] .section-time .circle {
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.3s ease-in-out;
}
#schedule [data-animation="slideIn"].in .section-time .circle {
	opacity: 1;
	transform: scale(1);
	transition: all 0.3s ease-in-out;
}
#schedule [data-animation="slideIn"] .breakdown:after {
	min-height: 0;
	max-height: 0;
}
#schedule [data-animation="slideIn"].in .breakdown:after {
	min-height: calc(100% + 200px);
	max-height: calc(100% + 200px);
	transition-delay: 4s;
	transition: all 4s ease-in-out;
}
#schedule [data-animation="slideIn"].in.lastBlock .breakdown:after {
	min-height: calc(100% - 20px);
	max-height: calc(100% - 20px);
	padding-bottom: 0;
}
#schedule [data-animation="slideIn"] .segment-wrap {
	opacity: 0;
	transform: translate(0,50px);
}
#schedule [data-animation="slideIn"].in .segment-wrap {
	opacity: 1;
	transform: translate(0,0);
	transition: all 1s ease-in-out;
}
#schedule [data-animation="slideIn"] .segment article .segment-image {
	opacity: 0;
	transform: scale(0.8);
}
#schedule [data-animation="slideIn"].in .segment article .segment-image {
	opacity: 1;
	transform: scale(1);
	transition: all 0.8s ease-in-out;
}

#schedule [data-animation="slideIn"].in .segment-wrap:nth-child(2) {
	transition-delay: 1s;
}
#schedule [data-animation="slideIn"].in .segment-wrap:nth-child(3) {
	transition-delay: 1.5s;
}
#schedule [data-animation="slideIn"].in .segment-wrap:nth-child(4) {
	transition-delay: 2s;
}
#schedule [data-animation="slideIn"].in .segment-wrap:nth-child(5) {
	transition-delay: 2.5s;
}
#schedule [data-animation="slideIn"].in .segment-wrap:nth-child(6) {
	transition-delay: 3s;
}

#schedule [data-animation="slideIn"].in .segment-wrap:nth-child(2) article .segment-label {
	transition-delay: 1s;
}
#schedule [data-animation="slideIn"].in .segment-wrap:nth-child(3) article .segment-label {
	transition-delay: 1.5s;
}
#schedule [data-animation="slideIn"].in .segment-wrap:nth-child(4) article .segment-label {
	transition-delay: 2s;
}
#schedule [data-animation="slideIn"].in .segment-wrap:nth-child(5) article .segment-label {
	transition-delay: 2.5s;
}
#schedule [data-animation="slideIn"].in .segment-wrap:nth-child(6) article .segment-label {
	transition-delay: 3s;
}
#schedule [data-animation="slideIn"] .segment article .segment-label {
	opacity: 0;
	transform: translate(50px,0);
	transition: all 1s ease-in-out;
}
#schedule [data-animation="slideIn"].in .segment article .segment-label {
	opacity: 1;
	transform: translate(0,0);
	transition: all 1s ease-in-out;
}

#schedule section[data-day="1"]:first-child::before {
	content: "THE COUCH CONFERENCE - DAY 1";
	font-size: 1.45rem;
	color: #0D1E30;
	max-width: 100%;
	width: 100%;
	height: auto;
	text-align: center;
	font-family: "effra", sans-serif;
	font-weight: 400;
	letter-spacing: 0.2rem;
	border-top: 1px solid rgba(0,0,0,0.2);
	padding-top: 3rem;
}

#schedule section[data-day="1"].lastBlock + section[data-day="2"]::before {
	content: "THE COUCH CONFERENCE - DAY 2";
	font-size: 1.45rem;
	color: #0D1E30;
	max-width: 100%;
	width: 100%;
	height: auto;
	text-align: center;
	font-family: "effra", sans-serif;
	font-weight: 400;
	letter-spacing: 0.2rem;
	border-top: 1px solid rgba(0,0,0,0.2);
	padding-top: 3rem;
}

@media(min-width: 768px) {
	#schedule [data-animation="slideIn"] .section-title  {
		transform: translate(20px,0);
	}
	#schedule [data-animation="slideIn"].in .section-title {
		transform: translate(0,0);
	}
	#schedule section {
		padding: 0 0 200px 0;
	}
	#schedule .intro {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#schedule .intro .section-time {
		margin-left: 5px;
	}
	#schedule .section-title {
		text-align: left;
	}
	#schedule section .section-time .circle {
		margin: auto;
		width: 200px;
		height: 200px;
		line-height: 200px;
	}	
	#schedule .section-title:before {
		width: 100%;
		left: -100%;
		top: 50%;
		transform: translate(30px,-50%);
	}
	#schedule .segment-wrap.active:before {
		max-width: 30%;
		transition: all 1s ease-in-out;
	}
	#schedule .breakdown:after {
		top: 0;
		left: 105px;
		bottom: 0;
	}
	#schedule .segment {
		padding: 20px 0 20px 50px;
	}
	#schedule .segment-video {
		min-width: auto;
		width: 60%;
		overflow: visible;
		position: relative;
		opacity: 0;
		transform: translate(85%, -160px) scale(0.8);
		transition: all 0.2s ease-in-out;
	}
	#schedule .segment-wrap.active .segment-video {
		max-height: 0;
		opacity: 1;
		z-index: 10;
		transform: translate(65%, -160px) scale(1);
		transition: all 0.5s ease-in-out;
		box-shadow: 0 0 100px rgba(0,0,0,0.2);
	}
	#schedule section.full .segment-wrap .segment-video {
		max-height: 0;
		transform: translate(0, 0) scale(0.8);
		width: 100%;
		transition: all 0.5s ease-in-out;
	}
	#schedule section.full .segment-wrap.active .segment-video {
		max-height: 800px;
		position: relative;
		width: 100%;
		transform: translate(0, 0) scale(1);
		transition: all 0.5s ease-in-out;
	}
	#schedule section.full .segment-wrap:before {
		width: 0;
	}
	#schedule section.full .breakdown:after {
		max-height: 90%;
	}
	#schedule .segment-video video {
		padding: 0px;
		margin-bottom: 0;
	}
	#schedule .segment-video video:focus,
	#schedule .segment-video video:active {
		outline: none;
	}
	#schedule .section-title {
		padding-left: 50px;
		font-size: 2.5rem;
	}
}