html {
	width: 100%;
	height: 100%;
	background-color: #000;
    background-image: url(/static/img/bg.jpg);
    background-size: cover;
}   
body {
	margin: 0;
	font-family: 'Open Sans', 'Roboto',
		'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
		'Helvetica Neue', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	min-height: 100vh;
	display: flex;
    flex-direction: column;
}

* {
	box-sizing: border-box;
	font-family: 'Open Sans', 'Roboto',
	'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
	'Helvetica Neue', sans-serif;
}

a {
	color: #ea602b;
    text-decoration: none;
    font-weight: bold;
	transition: all 0.2s ease;
}

a:hover {
	color: #c94a19;
}

code {
	font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
		monospace;
}

ul {
	margin: 0;
    padding-left: 21px;
}

p {
	color: white;
	font-size: 16px;
}

.App-logo {
	height: auto;
	width: 100%;
	max-width: 400px;
	pointer-events: none;
}

.display-image {
	height: auto;
	width: 100%;
	max-width: 100px;
	pointer-events: none;

	aspect-ratio: 1;
    object-position: center;
    object-fit: cover;
}

.App-header {
	margin: 40px 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: calc(10px + 2vmin);
	color: white;
}

.App-header > a {
	max-width: 80%;
}

.App-link {
	color: #61dafb;
}

.App-search {
	width: 80%;
	margin-top: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

@media only screen and (max-width: 733px) {
	.App-search {
		width: 100%;
	}
	
}

.App-main {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	height: 100%;
	min-height: 100%;
	width: 100%;
	background-color: #fff;
}

.table-container {
	width: 100%;
	background-color: #fff;
	overflow-x: auto;
	margin: 0 auto;
	width: 90%;
}

.result-container {
	display: flex;
	margin: 0 77px;
	flex-direction: column;
	width: 100%;
	background-color: #fff;
	margin-bottom: 70px;
}

.delete-img-btn {
	display: inline-block;
	background-color: #007aff;
	color: white;
	font-size: 16px;
	font-family: 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 600;
	padding: 10px 20px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.delete-img-btn:hover {
	background-color: #005bbf;
}

.delete-img-btn:active {
	background-color: #004799;
}

.delete-img-btn:focus {
	outline: none;
}

h3 {
	color: black;
	text-align: center;
	margin: 30px 0;
}

h3 span {
	color: #ea602b;
    font-weight: 800;
}

/* Table.module.css */

.table {
	/* border-collapse: collapse; */
	margin: 0 auto;
	border: 1px solid #ddd;
	border-radius: 10px;
	border-spacing: 0;
	font-family: Arial, sans-serif;
	width: 80%;
	max-width: 800px;
}

.table th,
.table td {
	border-right: 1px solid #bdbdbd;
  border-bottom: 1px solid #bdbdbd;
	padding: 10px;
  /* max-width: 200px; */
  word-wrap: break-word;
}

.table td:first-of-type {
	text-align: center;
}

.table th {
	padding-top: 12px;
	padding-bottom: 12px;
	background-color: #ea602b;
	font-weight: 600;
	color: white;
	font-size: 12px;
}

.table tr:nth-child(even) {
	background-color: #eee;
}

.table tbody tr {
	transition: all 0.2s ease;
	font-size: 12px;
}

.table tbody tr:hover {
	background-color: #ddd;
	cursor: pointer;
}
 
/* top-left border-radius */
table tr:first-child th:first-child {
  border-top-left-radius: 6px;
  width: 100px;
}

/* top-right border-radius */
table tr:first-child th:last-child {
  border-top-right-radius: 6px;
}

/* bottom-left border-radius */
table tr:last-child td:first-child {
  border-bottom-left-radius: 6px;
}

/* bottom-right border-radius */
table tr:last-child td:last-child {
  border-bottom-right-radius: 6px;
}

.search {
	width: 80%;
	max-width: 800px;
}
.searchInput {
	min-height: 35px;
	width: 100%;
	font-size: 1rem;
	border: 5px solid transparent;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	outline: none;
	transition: border-color 0.3s;
    padding: 5px 15px;
}

.searchInput:focus {
	border-color: #ddd;
}

.delete-img-btn {
    background-color: #ea602b;
    border: none;
    color: white;
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s;
    font-size: 12px;
    font-weight: 500;
}

.delete-img-btn:hover {
  background-color: lightslategray;
}

.delete-img-btn:active {
	background-color: lightgrey;
}

.delete-img-btn:focus {
	outline: none;
}

#footer {
	background-color: rgba(0,0,0,0.5);
	color: #fff;
	position: fixed;
	bottom: 0;
	width: 100%;
}

#footer p {
    text-align: center;
    padding: 0px 0px;
    margin: 15px 0;
    font-size: 12px;
}


.select-btn-container {
	display: flex;
	width: 100%;
  	justify-content: flex-end;
	flex-wrap: wrap;
}
.select-btn-container-filter {
	display: flex;
	width: 100%;
  	justify-content: center;
	flex-wrap: wrap;
}
.select-btn-container-filter p {
	margin: 10px;
    font-size: 12px;
}

.select-all-container {
	width: 100%;
    text-align: center;
    font-size: 16px;
	padding-bottom: 16px;
    border-bottom: 1px solid #383838;
    margin-bottom: 18px;
	font-weight: 700;
}
.search-all-result-btn {
	font-size: 16px;
    color: #6fa180;
    cursor: pointer;
	background: transparent;
	border: none;
	transition: all 0.2s ease;
	font-weight: 700;
}
.search-all-result-btn.orange {
    color: #ea602b;
}

.search-all-result-btn.orange:hover {
	color: #c94a19;
}

.search-all-result-btn:hover {
    color: #406e50;
}

select,
button {
    font-size: 12px;
	padding: 5px 12px;
    background-color: #202020;
    color: #fff;
    border: none;
    border-radius: 4px;
    margin-right: 10px;
	margin: 5px;
    cursor: pointer;
}

select[name="search_target"]{
	margin: 0;
	font-size: 14px;
    font-weight: bold;
}

.filter-submit-btn {
	transition: all 0.2s ease;
	margin-right: 0px;
	background-color: #ea602b;
}
.search-submit-btn {
	font-size: 14px;
	font-weight: 600;
	padding: 5px 15px;
    background-color: #ea602b;
    color: #fff;
    border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
    margin-right: 10px;
    margin: 0px;
    cursor: pointer;
	transition: all 0.2s ease;
}

select[name="per_page"]:focus,
select[name="search_scope"]:focus,
button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

button:hover {
    background-color: #c94a19;
}

.pagination {
	margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.total_pages {
	margin-bottom: 10px;
}

.unrecognised {
	align-self: center;
	font-size: 12px;
	margin: 5px 0;
	margin-left: 10px;
}
.search-input-container {
	font-size: 16px;
    color: #fff;
    margin: 5px 0px 5px 5px;
    cursor: pointer;
    display: flex;
    align-items: stretch;
}

#unrecognised { 
	margin-right: 10px;
    width: 12px;
    height: 12px;
    margin-left: 10px;
}
input[type="checkbox"]:checked ~ #unrecognised {
	background-color: #007bff;
	color: #fff;
}

.unrecognised-container {
	font-size: 12px;
	padding: 5px 8px;
    background-color: #202020;
    color: #fff;
    border: none;
    border-radius: 4px;
    margin-right: 10px;
    margin: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;

}

/* single page */
.single-app-header {
	padding: 10px 0;
	background-color: #000;
    background-image: url(/static/img/bg.jpg);
    background-size: cover;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: calc(10px + 2vmin);
    color: white;
}

.single-app-header > a {
	max-width: 85%;
    margin: 30px;
}

.single-container {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}
.single-data-container {
	width: 100%;
    height: 100%;
	margin: 10px 0px 200px 0px;
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
    flex-direction: column;
}
@media screen and (min-width: 789px) { 
	.single-data-container {
		flex-wrap: nowrap;
		justify-content: space-between;
		flex-direction: row;
	}
}

.single-image {
	margin-right: 30px;
	max-width: 50vw;
	min-width: 30vw;
}

@media only screen and (max-width: 733px) {
	.single-image {
		max-width: none;
	}
}

.single-metadata {
	width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.single-metadata__block {
	width: 100%;
    max-width: 100%;
}
.single-metadata__header{
	margin: 10px 20px;
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.single-metadata__header > a {
	font-size: 16px;
    margin-right: 15px;
}

.single-metadata__content {
	width: 100%;
	padding: 10px 20px;
	color: black;
	font-size: 14px;
}

.single-metadata__content form {
	font-size: 12px;
}

.single-metadata__content input {
    font-size: 12px;
    padding: 6px 12px;
    background-color: #202020;
    color: #fff;
    border: none;
    border-radius: 4px;
    margin-right: 10px;
    margin: 5px;
}

.single-metadata__content tr > td{
    padding: 7px 2px;
	border: 0;
	vertical-align: top;
	word-break: break-word;
}

.single-metadata__content tr > td.table-cell-center {
	vertical-align: middle;
}

.single-metadata__content tr > td:first-of-type{
	font-weight: bold;
	width: 130px;
}

.single-metadata__content div > a {
	padding: 5px 10px;
	color: black;
	font-weight: bold;
	font-size: 12px;
	background-color: #ddd;
	border-radius: 10px;
	margin-right: 7px;
	margin-bottom: 7px;
	display: inline-block;
	transition: all 0.2s ease;
}
.single-metadata__content div > a:hover {
	background-color: #ea602b;
	color: white;
}

.single-metadata__tagline {
	margin: 10px 20px;
	font-size: 12px;
}

.flash_success {
    margin: 20px;
    font-size: 12px;
    width: fit-content;
    padding: 5px 10px;
    color: white;
    background-color: #ea602b;
    border-radius: 5px;
    font-weight: bold;
}

.single-image__img {
	height: auto;
	width: 100%;
	margin: 11px 20px;
}

.single-image__img.audio {
	height: revert;
}

.backButton {
	font-size: 12px;
    padding: 30px 0 0 30px;
    background-color: transparent;
    color: #000;
    border: none;
    border-radius: 4px;
    margin-right: 10px;
    margin: 5px;
    cursor: pointer;
    text-align: left;
}

.backButton:hover {
	background-color: transparent;
	border: 0;
	font-weight: 600;
}

.status-effect {
	font-size: 20px;
	display: block;
    text-align: center;
}

.status-effect.True {
	color: green;
}

.status-effect.False {
	color: #ad0101;
}

.progress-bar {
	width: 100%;
	height: 15px;
	border: 1px solid #ddd;
	border-radius: 15px;
	position: relative;
}

.progress-bar--inner {
	height: 15px;
	position: absolute;
	border-radius: 15px;
	z-index: 1;
}

.progress-bar--text {
	color: white;
	z-index: 2;
	font-weight: 800;
	font-size: 12px;
	position: absolute;
	left: 10px;
    top: -2px;
}

.details-flex {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.details-flex > p {
	white-space: nowrap;
	min-width: 150px;
    margin: 0;
}

.login_container {
    width: 100vw;
    height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px;
}

.login_form {
	background-color: rgba(0,0,0,0.6);
	border-radius: 10px;
	border: 1px solid #3c3c3c;
	width: calc(100%);
	max-width: 450px;
	margin-top: 45px;
	padding: 30px;
}

.login_form h1 {
	text-align: center;
	font-weight: bold;
	color: white;
	font-size: 22px;
	padding-top: 0;
    margin-top: 2px;
}

.login_form input[type="text"],
.login_form input[type="password"] {
	width: 100%;
	border-radius: 5px;
	padding: 10px 15px;
	border: 0;
	outline: none;
	color: black;
}

.login_form input[type="submit"]{
	width: 100%;
	background-color: #ea602b;
	color: white;
	transition: all 0.2s ease;
	border: 0;
	outline: none;
	border-radius: 5px;
	padding: 10px 15px;
}

.login_form input[type="submit"]:hover {
	background-color: #c94a19;
}

.logout_link {
	color: white;
	position: absolute;
	right: 20px;
	top: 15px;
	font-size: 14px;
}

.login_error {
	font-size: 12px;
    text-align: center;
    background-color: red;
    border-radius: 10px;
    padding: 5px;
    font-weight: bold;
    margin-bottom: 15px;
}

.people-grid-container {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	grid-gap: 5px;
	width: 80%;
    max-width: 800px;
	margin: 0 auto;
}

.people-grid-container > a {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.people-grid-container > a > img {
	aspect-ratio: 1;
	object-fit: cover;
	object-position: center;
	max-width: none;
	border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

@media only screen and (max-width: 733px) {
	.people-grid-container {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.person-details {
	background-color: #ea602b;
	transition: all 0.2s ease;
    color: white;
    padding: 5px 0 9px;
    margin: 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.person-details p {
	color: white;
	font-weight: 600;
	text-align: center;
	width: 100%;
	font-size: 12px;
	margin: 0;
	padding: 0 10px;
    overflow-wrap: break-word;
}


.people-grid-container > a:hover .person-details{
	background-color: #c94a19;
}

.person-details p.person-counts {
	font-weight: 400;
	font-size: 9px;
}

.table-labels {
	font-size: 9px;
}

.table-people-view span {
	border-bottom: 1px solid #a3a3a3;
    display: block;
    margin-bottom: 2px;
    padding-bottom: 2px;
    text-align: center;
    font-size: 10px;
}