.pointer {
	cursor: pointer;
}

.prewrap {
	white-space: pre-wrap;
}

.title {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}

.is-v-centered {
	vertical-align: middle !important;
}

.is-h-centered {
	text-align: center !important;
}

html, body {
	font-size: 10pt;
	height: 100vh;
	overflow: hidden;
}

.layout {
	height: 100vh;
	width: 100vw;
	display: grid;
	grid-template-rows: min-content auto;
}


@media print {
	html, body {
		height: auto;
		overflow: auto;
	}

	.layout {
		height: auto;
	}

	.navbar {
		display: none;
	}
}

.viewport {
	height: 100%;
	overflow: auto;
	margin: 0;
	padding: 0;
}

.column {
	padding: 10px;
}

.section {
	font-size: 12pt;
}
.collapse {
	display: none;
}

.collapse + label {
	cursor: pointer;
}

.collapse + label::before {
	content: "[+] ";
	font-family: monospace;
}

.collapse:checked + label::before {
	content: "[-] ";
}

.collapse:not(:checked) ~ .collapsible {
	display: none;
}

.is-centered {
	vertical-align: middle;
	text-align: center;
}

.tag_group {
	display: flex;
	gap: .75rem;
	flex-wrap: wrap;
}

.modal-card.is-fullwidth {
	width: calc(100vw - 50px);
}

.menu-list .link {
	border-radius:2px;
	color:#4a4a4a;
	display:block;
	padding:.5em .75em;
	cursor: pointer;
}
.menu-list .link:hover {
	background-color:#f5fafa;
	color:#363636;
	text-decoration: none;
}
.menu-list .link.is-active {
	background-color:#3273dc;
	color:#fff
}

.clear {
	clear: both;
}

hr.bold {
	background-color: black;
}

.badge {
	display: inline-block;
	padding-top: 7px;
}

.badge span{
	color: white;
	display: inline-block;
	background: blueviolet;
	border-radius: 50%;
	font-size: 7pt;
	width: 1.5em;
	text-align: center;
	line-height: 1.5em;
	position: relative;
	left: -10px;
	top: -8px;
}

.title {
	margin-top: 10px !important;
	margin-bottom: 10px !important;
}

.control-text {
	min-height: 2em;
}

.comment {
	white-space: pre-wrap;
}


.progressbar {
	display: flex;
	align-items: center;
}

.flex-column {
	display: flex;
	flex-direction: column;
}

.link {
	color: #3273dc;
	cursor: pointer;
	text-decoration: none;
}

.link:hover {
	color: #363636;
	text-decoration: underline;
}

.card-footer-item.link:hover {
	text-decoration: none;
}

.hidden {
	display: none;
}

.markdown-help {
	display: none;
}

.textarea:focus + .markdown-help {
	display: inline;
}

.flex-grow {
	flex-grow: 1;
}

.flex-column {
	display: flex;
	flex-direction: column;
}

.container {
	padding-left: 32px;
	padding-right: 32px;
}

.field-label.is-narrow {
	flex-grow: 0;
	min-width: max-content;
}

td[data-field="Identify"] {
	color: white;
	font-weight: bold;
	text-align: center !important;
	background-color: #47a6dc !important;
}

td[data-field="Protect"] {
	color: white;
	font-weight: bold;
	text-align: center !important;
	background-color: #845295 !important;
}

td[data-field="Detect"] {
	color: white;
	font-weight: bold;
	text-align: center !important;
	background-color: #f99e1b !important;
}

td[data-field="Respond"] {
	color: white;
	font-weight: bold;
	text-align: center !important;
	background-color: #ec3945 !important;
}

td[data-field="Recover"] {
	color: white;
	font-weight: bold;
	text-align: center !important;
	background-color: #39b54a !important;
}


td[data-field="High"] {
	color: red;
}

td[data-field="Medium"] {
	color: orange;
}

td[data-field="Low"] {
	color: green;
}