body {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	margin: 0;
}

button {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 13px;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.04);
	border-radius: 2px;
	padding: 6px 22px;
	background: #4285F4;
	border: 1px solid #3B7AE2;
	color: #FFF;
	cursor: pointer;
}

.hidden {
	display: none !important;
}

#title {
	font-size: 20px;
	background: #F5F5F5;
	border-bottom: 1px solid #e5e5e5;
	height: 64px;
	padding: 18px 0 0 30px;
	box-sizing: border-box;
	margin-bottom: 30px;
}

#title > * {
	vertical-align: middle;
}

#title > img {
	width: 116px;
	margin-right: 10px;
}

#title > span {
	color: #7A7E82;
}

footer {
	width: 600px;
	margin: 30px auto;
	text-align: center;
	display: none;
}

span.inlineData {
	font-style: italic;
	color: #777;
}

#check-list {
	margin: 60px auto;
	width: 700px;
}

.check-view {
	border-bottom: 1px solid #BBB;
	padding: 15px 0 15px 10px;
	transition: height 1s, min-height 1s;
	min-height: 30px;
}

.check-view div.description {
	margin-left: 40px;
	padding-top: 7px;
	font-weight: bold;
}

.check-view .status,
#count-container .status {
	width: 30px;
	height: 30px;
	text-align: center;
}

div.status {
	float: left;
}

[status] {
	background: center no-repeat;
}

/* loading */
[status="0"] {
	background-image: url('/img/loader.gif');
}

/* resolved */
[status="1"] {
	background-image: url('/img/resolve.png');
}

/* rejected */
[status="2"] {
	background-image: url('/img/reject.png');
}

#check-list .elements-list [status="2"],
#check-list .org-unit-row [status="4"] {
	cursor: pointer;
}

/* hidden */
#check-list .check-view.hidden {
	overflow: hidden;
	padding: 0;
	margin: 0;
	height: 0;
	min-height: 0;
	border: none;
}

/* unknown */
[status="4"]:after {
	content: "?";
	font-weight: bolder;
	color: orange;
	font-size: 22px;
}

/* warning */
[status="5"]:after {
	content: "!";
	font-weight: bolder;
	color: orange;
	font-size: 22px;
}

.check-view .content {
	display: none;
	text-align: center;
	font-weight: normal;
	margin-top: 10px;
	margin-left: -40px;
}

.check-view .content .message {
	margin-bottom: 10px;
}

.check-view .content button {
	display: none;
}

#install-container {
	padding: 6px 22px;
	display: block;
}

.elements-list {
	font-size: 0.8em;
	display: none;
	border-spacing: 10px 2px;
	width: 100%;
	margin: 15px 0 0 -2px;
	padding: 0;
	border: 1px solid #BBB;
}

.elements-list > table {
	font-weight: normal;
	border-spacing: 10px 2px;
	width: 100%;
}

.elements-list td.retry {
	text-align: center;
}

.elements-list td.retry button {
	background-image: url("/img/reload.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 66%;
	padding: 0;
	width: 25px;
	height: 25px;
}

.elements-list [status="0"] ~ .retry button {
	display: none;
}

.elements-list .status {
	text-align: center;
}

.elements-list button.restore {
	margin-left: 5px;
}

.elements-list td.user-not-found {
	border: 1px solid red;
	padding: 5px;
}

#enabledForOrgUnits table > * > tr > *:first-child {
	width: 70%;
}

.org-unit-message {
	font-weight: normal;
	padding-top: 5px;
}

.org-unit-message.error {
	color: red;
}

.org-unit-message .status {
	height: 15px;
	width: 15px;
	background-size: contain;
	margin-right: 10px;
}

.error-element-list > td {
	border: 1px solid red;
	padding: 10px;
	position: relative;
}

.error-element-list > td .arrow {
	width: 0;
	height: 0;
	border: 8px solid transparent;
	position: absolute;
	top: -17px;
	border-bottom-color: red;
}

.error-element-list > td .arrow:after {
	width: 0;
	height: 0;
	border: 8px solid transparent;
	content: "";
	border-bottom-color: white;
	display: block;
	position: relative;
	top: -7px;
	left: -8px;
}

.credentials {
	margin: 10px;
}

.credentials th {
	text-align: right;
}

#count-container {
	width: 100px;
	margin: auto;
}

#count-container div {
	height: 30px;
	vertical-align: middle;
	line-height: 27px;
}

#count-container div.status {
	margin-right: 5px;
}

#check-org-units-manual .input-container {
	width: 250px;
	display: inline-block;
}

#check-org-units-manual input[type="email"] {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	border-width: 0 0 1px 0;
	padding: 6px 0;
	outline: none;
	border-bottom-color: #bab9ba;
	width: 100%;
	margin: 0;
}

#check-org-units-manual input + .focus-border {
	transition: transform .3s cubic-bezier(.2, 0, .03, 1);
	transform-origin: center center;
	transform: scale(0);
	background: #4059a9;
	bottom: 1px;
	height: 2px;
	position: relative;
}

#check-org-units-manual input:focus + .focus-border {
	transform: scale(1);
}

/* User profile info */

#userInfo {
	float: right;
	cursor: pointer;
	margin-top: -3px;
	margin-right: 15px;
}

#userInfo .thumb {
	border-radius: 50%;
	width: 32px;
	height: 32px;
	vertical-align: middle;
}

#userInfo .email {
	font-size: 12px;
	max-width: 250px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	vertical-align: middle;
	margin-right: 10px;
	display: inline-block;
	color: #808080;
}
