.spacer {
	flex: 1;
}

.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.5;
	cursor: pointer;
	transition: opacity 250ms;
}

.btn:hover {
	opacity: 1;
}

.close.btn {
	padding: 4px;
}

#search-prev > i {
	transform: scaleY(-1);
}

#popup-container.searchable-help > .popup {
	font-family: 'Open Sans', Roboto, 'Segoe UI', Tahoma, Geneva, Verdana, Arial, sans-serif;
	font-size: 12pt;
	background-color: white;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#popup-container.searchable-help .container {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	height: 100%;
}

#popup-container.searchable-help .search-bar {
	color: white;
	background-color: #21292e;
	display: flex;
	align-items: stretch;
	gap: 8px;
	padding: 10px;
	box-shadow: 0 4px 6px #263238;
	z-index: 10;
}

#popup-container.searchable-help .search-bar input[type='text'] {
	border: 1px solid black;
	outline: none;
	padding: 6px 12px;
}

#popup-container.searchable-help .search-bar .search-count {
	display: flex;
	align-items: center;
	min-width: 50px;
}

/* == CONTENT == */

#popup-container.searchable-help .content {
	color: #333;
	padding: 1em;
	line-height: 1.1;
	flex: 1;
	overflow: hidden auto;
}

#popup-container.searchable-help .content h1 {
	margin-top: 0;
}

#popup-container.searchable-help .content h1,
#popup-container.searchable-help .content h2 {
	text-transform: uppercase;
}

#popup-container.searchable-help .content h1 {
	font-size: 1.5em;
}

#popup-container.searchable-help .content h2,
#popup-container.searchable-help .content h3 {
	margin-top: 1.2em;
	margin-bottom: 0.5em;
	font-size: 1.2em;
}

#popup-container.searchable-help .content p {
	margin: 0.1em;
}

#popup-container.searchable-help .highlight {
	display: inline-block;
	background-color: rgb(255, 244, 8, 0.8);
	color: #0b2836;
	white-space: pre;
	font-family: unset;
}

#popup-container.searchable-help .highlight.focus {
	display: inline-block;
	animation: animation1 0.25s ease;
	background-color: rgb(250, 155, 0, 0.8);
}

@keyframes animation1 {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}

@media (width < 460px) {
	#popup-container.searchable-help .search-bar {
		padding: 0;
		gap: 0;
	}

	#popup-container.searchable-help .search-bar .spacer {
		flex: 0;
	}

	#popup-container.searchable-help .search-bar input[type='text'] {
		flex: 1;
		min-width: 50px;
		max-width: 100%;
		padding: 6px 4px;
	}

	#popup-container.searchable-help .search-bar .search-count {
		margin-left: 8px;
	}
}
