html {
	font: 15px/1.4 Segoe UI, Helvetica Neue, Helvetica, Lucida Grande, Arial, Ubuntu, Cantarell, Fira Sans, sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	text-rendering: optimizeLegibility;
}

body {
	height: 100vh;
}

::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 2px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar {
	width: 12px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
	border-radius: 2px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: rgba(52, 211, 211, 0.212);
}

.container {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.container nav {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.container nav ul {
	display: flex;
	justify-content: space-between;
	list-style-type: none;
	padding: .8rem 1rem;
}

.container nav ul li {
	display: flex;
	align-items: center;
	position: relative;
	flex-wrap: wrap;
}

.container nav ul li > div:first-child
{
	width: 100%;
	display: flex;
	position: relative;
}

.container nav ul li > * {
	margin: 0 4px;
}

.container section {
	display: grid;
	grid-template-columns: 20% 1fr;
	height: 100%;
	overflow: auto;
}

.container section aside:first-child {
	max-height: 100%;
  overflow-y: auto;
	border-right: 1px solid rgb(0, 0, 0, .1);
}

.container section aside:first-child .btn {
	padding: .8rem 1rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	cursor: pointer;
}

.container section aside:last-child iframe {
	display: block;
	height: 100%;
	width: 100%;
	background: #fdfdfd;
}

.container footer {
	margin-top: auto;
	padding: .8rem 1rem;
	text-align: center;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

h3 {
	text-align: center;
	padding: 0 10px;
}

#searchResults:empty
{
	display: none;
}

#searchResults
{
  position: absolute;
  top: 34px;
  background: darkcyan;
  width: calc(100% - 8px);
  max-height: 300px;
  overflow-y: auto;
  padding: 4px;
  padding-top: 16px;
}

#searchResults > div
{
	display: flex;
	flex-direction: column;
	background: rgba(0,0,0, 0.2);
	border-bottom: .2px solid #a19e9e;
	cursor: pointer;
	margin: 2px 2px;
}

#searchResults > div > span:first-child:not(:empty)
{
  text-transform: capitalize;
  font-weight: 600;
  text-decoration-line: underline;
}