html, body {
	height: 100%;
	background-color: white !important;
	overflow: hidden;
	box-sizing: border-box;
	margin: 0;
}
* {
	box-sizing: border-box;
	margin: 0;
}
#app-startup-loading-indicator {
	box-sizing: border-box;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.42857143;
	color: #343a3b;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#app-startup-loading-indicator #app-loading-title {
	text-align: center;
	font-size: 95px;
	margin-bottom: 25px;
	font-weight: bold;
}
#app-startup-loading-indicator #app-loading-title img {
	vertical-align: unset;
}
#app-startup-loading-indicator #app-loading-sub-title {
	text-align: center;
	color: #7C7D7B;
	margin-bottom: 10px;
}
#app-startup-loading-indicator #app-progress-container {
	opacity: 0;
	width: 400px;
	height: 10px;
	border: 2px solid rgb(0, 167, 235);
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	transition: opacity 400ms ease-out;
	-o-transition: opacity 400ms ease-out;
	-ms-transition: opacity 400ms ease-out;
	-moz-transition: opacity 400ms ease-out;
	-webkit-transition: opacity 400ms ease-out;
}
#app-startup-loading-indicator #app-progress-bar {
	width: 400px;
	height: 100%;
	background: rgb(0, 167, 235);
	width: 0px;
	transition: width 200ms ease-in-out;
	-o-transition: width 200ms ease-in-out;
	-ms-transition: width 200ms ease-in-out;
	-moz-transition: width 200ms ease-in-out;
	-webkit-transition: width 200ms ease-in-out;
}
#unsupported-help {
	display: none;
	width: 600px;
	text-align: left;
	font-size: 18px;
}
#unsupported-help .greeting {
	color: #aaa;
}

#browser-selection {
	display: flex;
}

a.browser {
	display: block;
	flex: 1 1 auto;
	color: #343a3b;
	text-decoration: none;
	min-width: 33%;
	padding: 25px;
	margin: 10px;
	border-radius: 5px;
	background: rgb(245, 245, 248);
	border: 1px solid rgb(236, 236, 239);
	margin-top: 0;
	padding-top: @standard-padding;
	cursor: pointer;
	transition: background 100ms ease-in-out, border 100ms ease-in-out;
}
a.browser:first-child {
	margin-left: 0px;
}
a.browser-last-child {
	margin-right: 0px;
}
a.browser:hover {
	background: rgb(215, 225, 248);
	border: 1px solid rgb(206, 216, 239);
	transition: background 100ms ease-in-out, border 100ms ease-in-out;
}
a.browser img {
	width: 100%;
	height: auto;
	transition: transform 100ms ease-in-out;
}
a.browser:hover img {
	transform: scale(1.07);
	transition: transform 100ms ease-in-out;
}
a.browser span.download {
	display: block;
	font-size: 13px;
	font-weight: bold;
	text-align: center;
}
#unsupported-help p {
	margin: @standard-padding 0px;
	color: rgb(95, 95, 100);
}
