html {
	box-sizing: border-box;
	width: 100%;
}

body {
	margin: 0;
	padding: 0;
}

.page-topbar {
	display: grid;
	grid-template-columns: 3fr 1fr;
	margin-bottom: 2em;
	align-items: center;
}

.page-topbar h1 {
	margin-bottom: 0;
}

.page-topbar .toolbox {
	display: flex;
	justify-content: right;
}

.list th, .list td {
	padding: 0.75em;
}

.list thead th {
	text-align: left;
	border-bottom: 2px solid #ddd;
}

.list tbody td {
	border-bottom: 1px solid #ddd;
}

.list tbody tr:hover td {
	background-color: #ffffc0;
}

.generic-btn {
	display: flex;
	align-items: center;
	border: 1px solid #ccc;
	background-color: #f8f8f8;
	color: #555;
	padding: 0.5em 2em;
	border-radius: 0.5em;
	cursor: pointer;
}

.page-title-box {
	position: relative;
}

.page-title-box i {
	font-size: 1.75rem;
	position: absolute;
	top: 0;
	left: -50px;
	color: #ccc;
}

.form-input label {
	padding: 0.25em 0;
}

.status-container {
	display: flex;
	align-items: center;
}

.active-box, .inactive-box {
	height: 1rem;
	width: 1rem;
	display: inline-block;
	margin-right: 0.5em;
}

.active-box {
	background-color: #52aa47;
}

.inactive-box {
	background-color: #ddd;
}

.info-item, .info-item-disabled {
	display: inline-block;
	margin-right: 0.5em;
	width: 1.75em;
}

.info-items {
	display: flex;
	align-items: center;
}

.info-item-disabled {
	color: #ddd;
}

.page-context-bar {
	margin-bottom: 0.5em;
}

.risk-level-box {
	width: 30px;
	height: 25px;
}

.risk-level-bar {
	width: 100%;
	height: 5px;
}

.risk-level-bar-red {
	background-color: #C10000;
}

.risk-level-bar-blue {
	background-color: #008FC1;
}

.risk-level-bar-yellow {
	background-color: #EA9F00;
}

.risk-level-bar-gray {
	background-color: #F2F2F2;
}

.linked-workflow-item-info-link {
	cursor: pointer;
}

.linked-workflow-item-info-details {
	display: none;
	position: absolute;
	top: 66px;
	left: 0;
	width: 350px;
	box-shadow: 0 0 12px 4px rgba(0, 0, 0, .15);
	padding: 1em;
	background-color: #fff;
}

.linked-workflow-item-info-details-tab {
	display: none;
	position: absolute;
	top: 37px;
	left: 0;
	width: 350px;
	box-shadow: 0 0 12px 4px rgba(0, 0, 0, .15);
	padding: 1em;
	background-color: #fff;
	z-index: 999;
}

.tab.active .linked-workflow-item-info-link {
	color: #fff !important;
}

a.close-linked-workflow-items-info {
	color: #333 !important;
}

.info-box {
	padding: 0.25em 1em;
	background-color: #ffffc0;
	margin-bottom: 1em;
}