#ctrl_bar #tools{
	display: flex;
	flex-direction: column;
	gap: var(--sd-gap);
	flex: 0 0 auto;
}
#ctrl_bar #tools .tool-row{
	display: flex;
	gap: var(--sd-gap);
	align-items: stretch;
}
@media (max-width: 1100px) and (min-width: 911px){
	:root{ --sd-bar-h: 128px; }
}
#ctrl_bar #searchBox,
#ctrl_bar #filters{
	padding: 5px;
	width: auto;
	height: auto;
	min-width: 150px;
	margin: 0;
	flex: 1 1 auto;
	background: #1abc9c;
}
#ctrl_bar #searchBox label,
#ctrl_bar #filters label{
	display: block;
	margin: 0 0 2px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--sd-midnight);
}
#ctrl_bar #searchBox form,
#ctrl_bar #filters form{
	float: none;
	display: block;
	margin: 0;
}
#ctrl_bar #searchTerms,
#ctrl_bar #numOfRecords{
	box-sizing: border-box;
	width: 100%;
	padding: 4px 7px;
	border: 0;
	background: #fff;
	color: var(--sd-midnight);
	font: inherit;
}
#ctrl_bar #searchTerms:focus,
#ctrl_bar #numOfRecords:focus{
	outline: 2px solid var(--sd-midnight);
	outline-offset: 1px;
}
#ctrl_bar #searchBoxBtn,
#ctrl_bar #filtersBtn{
	margin: 0;
	padding: 0;
	width: 30px;
	height: auto;
	flex: 0 0 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--sd-midnight);
	font-size: 15px;
	font-weight: 700;
	background: #1abc9c;
	transition: background 120ms ease;
}
#ctrl_bar #searchBoxBtn::after,
#ctrl_bar #filtersBtn::after{
	content: "\2192";
}
#ctrl_bar #searchBoxBtn:hover,
#ctrl_bar #filtersBtn:hover{ background: #48c9b0; }
#board{
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
}
#board::after{ display: none; }
#left_col{ flex: 0 0 auto; min-width: 0; }
#right_col{ flex: 0 0 auto; margin-left: 5px; }
#left_col #myCanvas{ float: none; display: block; }
#left_col #legend{ float: none; clear: none; box-sizing: border-box; }
#legend .lg-note{
	margin: 0 0 8px 0;
	padding: 4px 0 4px 10px;
	border-left: 3px solid var(--sd-amethyst);
	color: #ecf0f1;
}
#legend .lg-note em{ color: #fff; font-style: normal; font-weight: 600; }
#right_col #sma{ float: none; display: block; margin-top: calc(var(--sd-bar-h) + 8px); }
#right_col #infos{ float: none; clear: none; }

#cookies, #selection, #titles, #results{
	width: 330px;
	word-wrap: break-word;
	float: left;
	clear: left;
}
#isniColumn{
	box-sizing: border-box;
	width: 350px;
	float: left;
	clear: left;
}
#isniColumn .isni-box.open{
	margin-bottom: 10px;
}
#sma{
	margin-bottom: 0;
}
#cookies{
	margin: 0 0 10px 0;
}
#infos{
	float: left;
	min-width: 200px;
	max-width: 420px;
}
#myCanvas{
	margin: 0 5px 0 0;
}
#results{
	margin: 1px 0;
	background: white;
	padding: 0 10px;
	box-sizing: content-box;
	max-height: 300px;
	overflow-y: auto;
	overscroll-behavior: contain;
}
#results p{
	padding: 0;
	margin: 0;
	display: block;
	cursor: pointer;
}
#results p:hover{
	text-decoration: underline;
}
#results p.no-index{
	color: var(--sd-asbestos);
	font-style: italic;
	cursor: default;
}
#results p.no-index:hover{
	text-decoration: none;
}
#selection{
	margin: 0 0 1px 0;
}
#titles{
	height: auto;
}
#titles li{
	list-style: none;
	padding: 2px 6px;
}
#titles li.t-a{ background: #9b59b6; }
#titles li.t-b{ background: #8145a0; }
#selection .ed-fest,
#selection .ed-both,
#selection .ed-loose{
	border-bottom: 1px dotted currentColor;
	cursor: help;
}
#selection .ed-comp{ cursor: help; }
#selection .s-hd{
	margin: -5px -10px 0;
}
#selection.is-folded{
	padding-bottom: 0;
}
#selection .s-toggle{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 5px 10px;
	border: 0;
	background: none;
	color: inherit;
	font: inherit;
	text-align: left;
	cursor: pointer;
}
#selection .s-toggle:hover,
#selection .s-toggle:focus{
	background: rgba(255, 255, 255, .28);
	outline: none;
}
#selection .s-caret{
	flex: 0 0 auto;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid currentColor;
	transition: transform 120ms ease;
}
#selection.is-folded .s-caret{
	transform: rotate(-90deg);
}
#selection .s-bd{
	margin-top: 4px;
}
#selection.is-folded .s-bd{
	display: none;
}
