@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

* {
	box-sizing: border-box;
	font-family: "Open Sans", sans-serif;
	user-select: none;
}

body {
	min-width: 1066px;
	min-height: 600px;
}

html,body {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;

	background-color: #2c3e50;
}

#main {
	position: absolute;
	left: 0;
	right: 400px;
	top: 100px;
	bottom: 0;
	padding: 20px;

	z-index: 0;
	background-color: #2c3e50;
}

#main.regie {
	right: 250px;
}

#timeline {
	position: fixed;
	right: 0;
	top: 100px;
	bottom: 0;
	width: 400px;

	color: #ecf0f1;
	font-size: 22px;
	font-weight: 600;

	z-index: 1;
	background-color: #34495e;
	overflow: hidden;
}

#timeline.regie {
	width: 250px;
}

#timeline.regie #timPresDescription,#timeline.regie #timPresSubject {
	display: none;
}

#timeCursor {
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	height: 4px;
	margin-top: -2px;

	z-index: 2;
	background-color: #3498db;
}

.timelineBlock {
	position: absolute;
	right: 0;
	left: 0;
	padding: 20px;

	border: 1px solid #ecf0f1;
	border-left: none;
	border-right: none;
	z-index: 3;

	overflow: hidden;
}

#timelineObservation {
	top: 0%;
	height: 33.33%;
}

#timelinePresentation {
	top: 33.33%;
	height: 33.33%;
	overflow: hidden;
}

#timelineQuestions {
	top: 66.67%;
	height: 33.33%;
}

#timObsCountry,#timPresCountry {
	font-weight: 100;
	font-size: 20px;
}

#timPresSubject,#timPresDescription {
	font-weight: 100;
	font-size: 16px;
	opacity: 0.75;
}

.button	{
	display: inline-block;
	width: 135px;
	height: 95px;
	padding: 15px;
	margin: 0 2px;

	font-size: 22px;
	font-weight: 700;
	color: #2c3e50;
	text-align: center;

	background-color: #3498db;
	border-radius: 5px;
	opacity: 1;
	overflow: hidden;
}

#buttonMessage {
	width: 95px;
	padding: 10px;

	font-size: 38px;
	text-align: center;
}

.button.large {
	width: 165px;
}

.button[data-type="orange"] {
	background-color: #e67e22;
}

.button[data-type="grey"] {
	background-color: #bdc3c7;
}

.button[data-type="green"] {
	background-color: #2ecc71;
}

.button[data-type="red"] {
	background-color: #e74c3c;
}

.button:hover {
	opacity: .5;
}

#alert {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;

	padding: 15%;

	color: #2c3e50;
	font-weight: 700;
	font-size: 50px;
	text-align: center;

	z-index: 20;
	background-color: #ecf0f1;
	display: none;
}

#alert.red {
	background-color: #e74c3c;
}

#alert.green {
	background-color: #2ecc71;
}

#alert.orange {
	background-color: #e67e22;
}

#alert.blue {
	background-color: #3498db;
}

#localClock {
	position: fixed;
	top: 0;
	left: 0;
	width: 200px;
	height: 100px;
	padding: 0;
	margin: 0;

	color: #ecf0f1;
	font-size: 40px;
	font-weight: 200;
	line-height: 68px;
	text-align: center;

	z-index: 10;
	background-color: #34495e;
	border-top: none;
	border-left: none;
	border-bottom-right-radius: 20px;
}

#distantClock {
	position: fixed;
	top: 0;
	right: 0;
	width: 200px;
	height: 100px;
	padding: 0;
	margin: 0;

	color: #ecf0f1;
	font-size: 40px;
	font-weight: 200;
	line-height: 68px;
	text-align: center;

	z-index: 10;
	background-color: #34495e;
	border-top: none;
	border-right: none;
	border-bottom-left-radius: 20px;
}

.clockHeader {
	width: 100%;
	position: relative;
	display: block;
	margin: 0;
	padding: 5px;
	height: 32px;

	line-height: 32px;
	font-size: 24px;
}

.clockSecondsMask {
	position: absolute;
	right: 0;
	bottom: 0;
	height: 55px;
	width: 77px;

	background-color: #34495e;
	z-index: 11;
	opacity: .75;
	border-bottom-right-radius: 20px;
}

#alertList {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 20px 220px;
	height: 100px;
	overflow: hidden;

	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	color: #ecf0f1;

	z-index: 5;
	background-color: #34495e;
}

.alertListItem {
	padding: 7px 12px;

	line-height: 20px;
	font-size: 28px;
	font-weight: 700px;
}

.alertListItem.orange {
	color: #e67e22;
}

.alertListItem.red {
	color: #e74c3c;
}

.alertListItem.green {
	color: #2ecc71;
}

.alertListItem.blue {
	color: #3498db;
}

.separator {
	padding: 0 0 10px 0;
	font-size: 24px;
	color: #ecf0f1;
	line-height: 24px;
}