@charset "UTF-8";

/* Stylesheet for IMI-Website, ed. 2023
 * Adopting the general design of the new Europa site
 * by Sascha Leib for GROW.E.4
 * File name: local/faqs.css
 */

#app-wrapper details {
}
#app-wrapper details summary {
	font-size: 1.25em;
	padding: 0 0 .25em 1.5em;
	margin: 0;
	text-indent: -1em;
	cursor: pointer;
	color: #4755A0 ;
	font-weight: bold;
}
#app-wrapper details summary h4 {
	font-size: inherit;
	line-height: inherit;
	margin: 0; padding: 0;
	display: inline;
	font-weight: bold;
}
#app-wrapper details summary:hover {
	text-decoration: none;
}
#app-wrapper details summary:focus {
	outline: #A8CF4C solid 3px;
	border-radius: .25em;	
}
#app-wrapper details summary:hover h4 {
	text-decoration: underline;
}
#app-wrapper details .target {
	margin: .5rem 0 0 1.5rem;
	max-width: 80ch;
}
#app-wrapper details picture {
	display: block;
	border: #ccc solid 1px;
	min-height: 2em;
	font-style: italic;
	text-align: center;
}
#app-wrapper ul,
#app-wrapper ol {
	padding-left: 2.5rem;
	max-width: 80ch;
}
#app-wrapper h3 {
	margin: 1rem 0 .5rem .5rem;
}
#app-wrapper img.inline-icon {
	display: inline-block;
	height:1em;
	width:auto;
	border: #ccc solid 1px;
	padding: 1px;
	border-radius: 4px;
	vertical-align: top;
}
#app-wrapper mark {
	background-color: #C4E870;
}
/* Filter Headers */
#filter-header {
	display: block;
	background-color: #fff;
	border: #9BAFF6 1px solid;
	border-radius: 2px;
	box-shadow: 0 0 1px rgba(38, 50, 75, .06), 2px 2px 2px rgba(38, 50, 75, .05), 4px 4px 6px rgba(38, 50, 75, .05), 0 1px 0 #e0e5f5 inset;
	padding: .75rem;
}
#filter-header dl {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-column-gap: .5em;
	padding-bottom: .5em;
}
#filter-header label {
	font-weight: normal;
	width: 100%;
	display: block;
	line-height: 2em;
}
#filter-header input,
#filter-header select {
	width: 100%;
	font-size: 1rem;
	line-height: 1.25;
	padding: .25rem;
	margin: 0;
}
#filter-header #filter-tools {
	grid-row: 2;
	grid-column: 1 / span 3;
	text-align: right;
	padding: .25em .5em .25em 0;
}
#filter-header select .placeholder {
	color: #666;
}

/* inline styling */
#app-wrapper h5 { font-size: 1rem; }
#app-wrapper code { font-size: 1.25em; }

#filter-busy {
	line-height: 4px;
	margin: 0 0 0 12px;
}

/* <tt> is used for the passwords section */
main tt {
	font-family: "Courier New", Courier, Consolas, Monaco, monospace, monospace;
	font-size: 1.15em;
}

/* just above mobile size: */
@media (max-width: 550px) {
	#filter-header dl {
		display: block;
	}
	#app-wrapper ul, #app-wrapper ol {
		padding-left: 0;
	}
}

/* print only: */
@media print {

	#app-wrapper > section:first-of-type {
		page-break-before: avoid;
	}
	#app-wrapper #app-content {
		page-break-before: always;
	}

	#filter-header {
		background-color: transparent;
		border: transparent 0 none;
		box-shadow: none;
	}
	#filter-header dl {
		display: block;
	}
	#filter-header dl dt {
		font-size: large;
		display: block;
	}
	#filter-header dl dd {
		display: grid;
		grid-template-columns: 8em auto;
		margin-top: 1em;
	}
	#filter-header input[type="text"],
	#filter-header select	{
		border: transparent 0;
		padding: 0;
		background-color: transparent;
		box-shadow: none;
	}
	#filter-header input[type="text"]::-webkit-input-placeholder,
	#filter-header input[type="text"]::placeholder {
		color: transparent;
	}
	input, #filter-header select {
		-webkit-appearance: none;
		-moz-appearance: none;
		text-indent: 1px;
		text-overflow: '';
		font-weight: normal;
	}
}