@charset "utf-8";

main {
	background: var(--black);
}

h2 {
	color: var(--white);
}
h2:before {
	background: var(--white);	
}
.notice {
	color: var(--white);
}

/* 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;
	text-decoration: none;
}
.tab-menu-container li.selected a:hover {
	color: #fff;
	background-color: #555;
}

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

/* program-list */
.program-list {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	color: #222;
	font-size: 14px;
}
@media only screen and (max-width: 768px) {
	.program-list {
		width: 100%;
	}
}
.program-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) {
	.program-list .time-group .time {
		top: 50px;
		padding: 8px 0;
		font-size: 16px;
	}
}
.program-list .time-group .flex-wrap {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin: 0;
}
@media only screen and (max-width: 768px) {
	.program-list .time-group .flex-wrap {
		flex-direction: column;
		gap: 0;
	}
}
.program-list .time-group > .time + .flex-wrap {
	padding: 30px 0;
}
.program-list .time-group > .time + .flex-wrap .cell {
	margin: 0;
}
.program-list .time-group .flex-wrap .cell {
	margin-bottom: 20px;
	width: 100% !important;
	position: relative;
}
.program-list .cell {
	position: relative;
	background-color: #fff;
	padding: 2%;
	margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
	.program-list .time-group .flex-wrap .cell {
		margin: 0 0 20px 0;
		padding: 20px 10px;
	}
}
.program-list .time-group .flex-wrap .cell .flex-container {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 20px;
}
.program-list .time-group .flex-wrap .cell .code {
	margin-right: 20px;
}
.program-list .time-group .flex-wrap .cell .date {
	font-size: 18px;
	margin-right: 20px;
}
.program-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;
}
.program-list .time-group .flex-wrap .cell .flex-container .status {
	padding: 4px 0;
	width: 140px;
	text-align: center;
}
@media only screen and (max-width: 768px) {
	.program-list .time-group .flex-wrap .cell .flex-container .status {
		width: 100px;
	}
}
.program-list .time-group .flex-wrap .cell .flex-container .status.streaming {
	color: #f00;
	border: 2px solid #f00;
}
.program-list .time-group .flex-wrap .cell .flex-container .status.finished {
	background-color: #666;
	border: 2px solid #666;
	color: #fff;
}
.program-list .time-group .flex-wrap .cell div.title {
	margin: 30px 0;
	text-align: center;
}
.program-list .time-group .flex-wrap .cell div.title .main-title {
	display: block;
	font-size: 24px;
	margin: 10px 0;
}
@media only screen and (max-width: 768px) {
	.program-list .time-group .flex-wrap .cell div.title .main-title {
		font-size: 20px;
	}
}
.program-list .time-group .flex-wrap .cell div.title .main-title a {
	color: #222;
	text-decoration: underline;
}
.program-list .time-group .flex-wrap .cell div.title .main-title a:hover {
	text-decoration: none;
}
.program-list .time-group .flex-wrap .cell div.title .sub-title {
	display: block;
	font-size: 20px;
	margin: 10px 0;
}
@media only screen and (max-width: 768px) {
	.program-list .time-group .flex-wrap .cell div.title .sub-title {
		font-size: 16px;
	}
}
.program-list .time-group .flex-wrap .cell table.timetable {
	width: 100%;
}
.program-list .time-group .flex-wrap .cell .speaker {
	font-size: 16px;
	width: 100%;
	margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
	.program-list .time-group .flex-wrap .cell .speaker {
    	width: 100%;
    }
}
.program-list .time-group .flex-wrap .cell .flex-box.speaker {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 10px;
}
.program-list .time-group .flex-wrap .cell .flex-box.speaker .photo {
	width: 115px;
	height: auto;
}
@media only screen and (max-width: 768px) {
	.program-list .time-group .flex-wrap .cell .flex-box.speaker .position {
		width: 70%;
		padding-right: 4px;
		font-size: 13px;
	}
	.program-list .time-group .flex-wrap .cell .flex-box.speaker .photo {
		width: 30%;
	}
}
.program-list .time-group .flex-wrap .cell .flex-box.speaker .photo img {
	max-width: 100%;
}
.program-list .time-group .flex-wrap .cell .overview {
	margin: 20px 0 10px;
	font-size: 16px;
	line-height: 1.5;
}

/* tags */
.program-list .time-group .flex-wrap .cell  .session-tags {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	box-sizing: border-box;
	gap: 10px;
	position: absolute;
	top: 20px;
	right: 20px;
}
@media only screen and (max-width: 768px) {
	.program-list .time-group .flex-wrap .cell .session-tags {
		position: static;
		justify-content: flex-end;
		width: 100%;
		margin: 16px 0 0 0;
		padding: 0;
	}
}
.program-list .time-group .flex-wrap .cell .session-tags span {
	background-color: #005073;
	color: #fff;
	border-radius: 4px;
	padding: 6px 14px;
}

.program-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) {
	.program-list .time-group .flex-wrap .cell .control-container {
		flex-direction: column;
		justify-content: flex-start;
	}
}
.program-list .time-group .flex-wrap .cell .control-container .control {
	display: flex;
}
@media only screen and (max-width: 768px) {
	.program-list .time-group .flex-wrap .cell .control-container .control {
		justify-content: space-between;
		width: 100%;
	}
}
.program-list .time-group .flex-wrap .cell .session-type {
	display: flex;
	justify-content: flex-end;
}
@media only screen and (max-width: 768px) {
	.program-list .time-group .flex-wrap .cell .session-type {
		width: 100%;
		margin: 20px 24px 0 0;
	}
}
.program-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;
	}
}
.program-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;
}
.program .code input {
	display: none;
}
form .program .code input {
	vertical-align: -1px;
	margin-right: 4px;
}
form .program .code input[disabled] {
	display: none;
}
form .program .code input {
		opacity: 0;
		position: absolute;
		top: 0;
		left: 0;
}
form .program .code input[type="checkbox"] + label {
	display: block;
	background-image:	url(../images/registration/checkbox_off.svg),
						url(../images/registration/check_on.svg);

	background-size: 18px, 0;
	background-position: 0 6px, 0 2px;
	background-repeat: no-repeat, no-repeat;
	margin: 0;
	padding: 5px 0 0 24px;
	min-height: 25px;
}
form .program .code input[type="radio"] + label {
	display: block;
	background-image:	url(../images/registration/check_off.svg),
						url(../images/registration/check_on.svg);

	background-size: 18px, 0;
	background-position: 0 4px, 0 2px;
	background-repeat: no-repeat, no-repeat;
	margin: 0;
	padding-left: 24px;
	min-height: 25px;
}
form .program .code input[type="checkbox"]:checked + label,
form .program .code input[type="radio"]:checked + label {
	background-image: url(../images/registration/check_on.svg);
	background-size: 30px;
	background-position: -6px 50%;
}
form .program .code input[disabled] + label {
	opacity: 0.5;
	cursor: auto;
}

form .program .code.disabled input[disabled] + label {
	background-image: url(../images/registration/disabled.svg);
	background-size: 32px;
	background-position: -9px;
}

.program tr td .code .session-code {
	border: 2px solid #282828;
	padding: 0 6px;
	line-height: 1.6;
	font-size: 13px;
	display: inline-block;
	background-color: #fff;
}

/* interpretation */
.interpretation {
	width: 70px;
	margin: 20px 0 0 0;
	background-color: #585858;
	display: flex;
	justify-content: center;
	text-align: center;
	color: #fff;
	font-size: 13px;
	padding: 4px 10px;
	border-radius: 2px;
	line-height: 1.5;
	border-radius: 2px;
}
.interpretation img {
	margin-right: 8px;
	width: 16px;
}

