@charset "utf-8";

/* live tab-menu */
.tab-menu-wrapper {
	margin: 20px 0 0 0;
	padding: 0 0 20px 0;
	overflow-x: auto;
}
.tab-menu-wrapper-inner {
	text-align: center;
}
.tab-menu-container {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	overflow: visible;
}
.tab-menu-container li {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 200px;
}
.tab-menu-container li a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0 10px;
	padding: 8px 24px;
	border-radius: 4px;
	box-sizing: border-box;
	transition: all 300ms ease;
	color: #555;
	background-color: #fff;
	border: 2px solid #fff;
	white-space: nowrap;
}
.tab-menu-container li.selected a {
	color: #fff;
	background-color: #555;
	border: 2px solid #555;
}
.tab-menu-container li a:hover {
	border: 2px solid #555;
}
.tab-menu-container li.selected a:hover {
	color: #fff;
	background-color: #555;
}

/* program-container */ 
.program-container .show {
	display: block;
}
.program-container .hide {
	display: none;
}

/* live-list */
.live-list {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	color: #222;
	font-size: 14px;
}
@media only screen and (max-width: 768px) {
	.live-list {
		width: 100%;
	}
}
.live-list .time-group > .time {
	text-align: center;
	margin: 0;
	padding: 20px 0;
	background-color: #444;
	color: #fff;
	opacity: 0.9;
	font-size: 20px;
	position: sticky;
	top: 68px;
	z-index: 2;
}
@media only screen and (max-width: 768px) {
	.live-list .time-group .time {
		top: 50px;
		padding: 8px 0;
		font-size: 16px;
	}
}
.live-list .time-group .flex-wrap {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin: 0;
}
@media only screen and (max-width: 768px) {
	.live-list .time-group .flex-wrap {
		flex-direction: column;
		gap: 0;
	}
}
.live-list .time-group > .time + .flex-wrap {
	padding: 30px 0;
}
.live-list .time-group > .time + .flex-wrap .cell {
	margin: 0;
}
.live-list .time-group .flex-wrap .cell {
	margin-bottom: 20px;
	width: 100% !important;
}
.live-list .cell {
	position: relative;
	background-color: #fff;
	padding: 2%;
	margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
	.live-list .time-group .flex-wrap .cell {
		margin: 0 0 20px 0;
		padding: 20px 10px;
	}
}
.live-list .time-group .flex-wrap .cell .flex-container {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 20px;
}
.live-list .time-group .flex-wrap .cell .code {
	margin-right: 20px;
}
.live-list .time-group .flex-wrap .cell .date {
	font-size: 18px;
	margin-right: 20px;
}
.live-list .time-group .flex-wrap .cell .session-code {
	display: inline-block;
	text-align: center;
	min-width: 40px;
	padding: 4px 10px;
	background-color: #777;
	color: #fff;
	font-size: 14px;
}
.live-list .time-group .flex-wrap .cell .flex-container .status {
	padding: 4px 0;
	width: 140px;
	text-align: center;
}
@media only screen and (max-width: 768px) {
	.live-list .time-group .flex-wrap .cell .flex-container .status {
		width: 100px;
	}
}
.live-list .time-group .flex-wrap .cell .flex-container .status.streaming {
	color: #f00;
	border: 2px solid #f00;
}
.live-list .time-group .flex-wrap .cell .flex-container .status.finished {
	background-color: #666;
	border: 2px solid #666;
	color: #fff;
}
.live-list .time-group .flex-wrap .cell div.title {
	margin: 30px 0;
	text-align: center;
}
.live-list .time-group .flex-wrap .cell div.title .main-title {
	display: block;
	font-size: 24px;
	margin: 10px 0;
}
.live-list .time-group .flex-wrap .cell div.title .main-title a {
	color: #222;
	text-decoration: underline;
}
.live-list .time-group .flex-wrap .cell div.title .main-title a:hover {
	text-decoration: none;
}
.live-list .time-group .flex-wrap .cell div.title .sub-title {
	display: block;
	font-size: 20px;
	margin: 10px 0;
}
.live-list .time-group .flex-wrap .cell table.timetable {
	width: 100%;
}
.live-list .time-group .flex-wrap .cell .speaker {
	font-size: 16px;
	width: 100%;
	margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
	.live-list .time-group .flex-wrap .cell .speaker {
    	width: 100%;
    }
}
.live-list .time-group .flex-wrap .cell .flex-box.speaker {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 10px;
}
.live-list .time-group .flex-wrap .cell .flex-box.speaker .photo {
	width: 115px;
	height: auto;
}
@media only screen and (max-width: 768px) {
	.live-list .time-group .flex-wrap .cell .flex-box.speaker .position {
		width: 70%;
		padding-right: 4px;
	}
	.live-list .time-group .flex-wrap .cell .flex-box.speaker .photo {
		width: 30%;
	}
}
.live-list .time-group .flex-wrap .cell .flex-box.speaker .photo img {
	max-width: 100%;
}
.live-list .time-group .flex-wrap .cell .overview {
	margin: 20px 0 10px;
	font-size: 16px;
	line-height: 1.5;
}
.live-list .time-group .flex-wrap .cell .control-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
}
@media only screen and (max-width: 768px) {
	.live-list .time-group .flex-wrap .cell .control-container {
		flex-direction: column;
		justify-content: flex-start;
	}
}
.live-list .time-group .flex-wrap .cell .control-container .control {
	display: flex;
}
@media only screen and (max-width: 768px) {
	.live-list .time-group .flex-wrap .cell .control-container .control {
		justify-content: space-between;
		width: 100%;
	}
}
.live-list .time-group .flex-wrap .cell .session-type {
	display: flex;
	justify-content: flex-end;
}
@media only screen and (max-width: 768px) {
	.live-list .time-group .flex-wrap .cell .session-type {
		width: 100%;
		margin: 20px 24px 0 0;
	}
}
.live-list .time-group .flex-wrap .cell .session-type span {
	margin-left: 20px;
}
.box-shadow {
	box-shadow: 0px 3px 2px 0px rgba(100,100,100,0.1);
}

/* timetable */
dl.timetable {
	padding-left: 20px;
}
@media only screen and (max-width: 768px) {
	dl.timetable {
		padding-left: 0;
	}
}
dl.timetable dt {
	margin: 20px 0 10px 0;
	padding: 0;
}
dl.timetable dt.qa {
	margin-bottom: 30px;
}
dl.timetable dt .title {
	display: inline-block;
	vertical-align: top;
	margin: -10px 0 0 0;
}
@media only screen and (max-width: 768px) {
	dl.timetable dt .title {
		margin: 0;
	}
}
dl.timetable dt .main-title {
	font-size: 20px;
	font-weight: bold;
	margin-left: 20px;
}
@media only screen and (max-width: 768px) {
	dl.timetable dt .main-title {
		display: block;
		margin-left: 10px;
	}
}
dl.timetable dt .sub-title {
	display: block;
	margin-left: 20px;
	font-size: 18px;
}
@media only screen and (max-width: 768px) {
	dl.timetable dt .sub-title {
		margin-left: 10px;
		margin-bottom: 10px;
	}
}
.live-list .time-group .flex-wrap .cell dl.timetable dd .title {
	margin: 12px 0 8px 0;
	text-align: left;
}
dl.timetable dd {
	margin-bottom: 30px;
	padding: 0 20px 0 140px;
}
@media only screen and (max-width: 768px) {
	dl.timetable dd {
		margin-bottom: 30px;
		padding: 0 10px;
	}
}
dl.timetable dd .title .sub-title {
	font-size: 16px;
	display: block;
}
