@media only screen and (max-device-width: 480px) {
	body { margin: 2em 5% !important; background: #bdbdc7 !important; }
	p:nth-of-type(-n+2) { margin-right: inherit !important; }
}
/*
input {input -webkit-appearance: none;}

@font-face {
	font-family: QuicksandW;
	font-weight: 400;
	src: url('quicksand-regular-webfont.woff2') format('woff2'), url('quicksand-regular-webfont.woff') format('woff');
}


@font-face {
	font-family: QuicksandW;
	font-weight: 500;
	src: url('quicksand-medium-webfont.woff2') format('woff2'), url('quicksand-medium-webfont.woff') format('woff');
}

@font-face {
	font-family: QuicksandW;
	font-weight: 300;
	src: url('quicksand-light-webfont.woff2') format('woff2'), url('quicksand-light-webfont.woff') format('woff');
}
*/

html {
	font-family: -apple-system, BlinkMacSystemFont,
	"Segoe UI", "Roboto", "Oxygen",
	"Ubuntu", "Cantarell", "Fira Sans",
	"Droid Sans", "Helvetica Neue", sans-serif;

	text-size-adjust: 180%;
	-webkit-text-size-adjust: 180%;
	-moz-text-size-adjust: 180%;
	-ms-text-size-adjust: 180%
}

body {
	font-size: 1.5em;
	font-weight: 400;
	color: #3f424f;
	margin: 3.5em 6em;
}

p:nth-of-type(-n+2) {
	margin-right: 12em;
}

h1 {
	margin-bottom: .5em;
}

h1, h2 {
	color: #333543;
	text-transform: uppercase;
	font-size: 3em;
	font-weight: 500
}

h2 {
	font-size: 1.75em;
	margin: 1.5em 0 .5em;
}

p, dd, dt {
	line-height: 145%;
}

dl {
	border-top: 1px solid #ddd;
	margin: 0 0 2.5em;
}

dt {
	margin: .5em 0 0
}

dd {
	border-bottom: 1px solid #ddd;
	color: #777;
	font-size: .75em;
	height: 1.65em;
	margin: 0;
	padding-bottom: .5em;
}


a {
	color: #bf5d4c;
	text-decoration: none;
}

#fn {
	font-size: .75em;
}


form {font-size: 20px}

textarea, input, select, button {
box-shadow: 0 0 5px rgba(255,255,255,0.25);
-moz-box-shadow: 0 0 5px rgba(255,255,255,0.25);
-webkit-box-shadow: 0 0 5px rgba(255,255,255,0.25);
font-size: 20px;
color: "#0d1721";
padding: 16px;
border-radius: 2px;
display: block;
border: none;
background: rgba(255,255,255,0.5)
}

button {
margin-top: 32px;
border-radius: 32px;
padding: 10px 20px 14px
}

input[type="radio"], input[type="checkbox"] {
	float: left;
	margin: .4em .5em 0 0;
}

label {
	display: block
}



td:nth-child(1) { 
	padding-right: 1em;
	text-align: right; 
	width: 8em;
}

table {
	border-collapse: collapse;
}

td {
	padding-bottom: .3em;
}

.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.admin-page {
	max-width: 46em;
}

.login-form {
	max-width: 20em;
}

.admin-heading {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 2em;
}

.admin-heading p {
	margin-right: 0;
}

.logout-form,
.species-controls {
	font-size: inherit;
}

.logout-form button,
.species-controls button {
	margin-top: 0;
}

.text-button {
	display: inline;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
	background: none;
	color: #bf5d4c;
	cursor: pointer;
}

.message {
	padding: .65em .8em;
	border-left: .2em solid #bf5d4c;
	background: #f5efed;
}

.message.error {
	color: #7d3025;
}

.admin-list {
	border-top: 1px solid #d8d9dd;
}

.species-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25em;
	padding: .65em 0;
	border-bottom: 1px solid #d8d9dd;
}

.species-details {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.species-name {
	line-height: 1.3;
}

.species-status {
	font-size: .72em;
	color: #777b88;
}

.species-controls {
	display: flex;
	align-items: center;
	gap: 1em;
	flex-shrink: 0;
}

.seen-button,
.save-button {
	display: inline-block;
	padding: .45em .9em .55em;
	border: 1px solid #d0d1d5;
	border-radius: 2em;
	background: #f1f1f3;
	color: #3f424f;
	cursor: pointer;
}

.common-control {
	display: inline-flex;
	align-items: center;
	gap: .45em;
	cursor: pointer;
	white-space: nowrap;
}

.common-control input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.toggle {
	position: relative;
	display: inline-block;
	width: 2em;
	height: 1.1em;
	border-radius: 1em;
	background: #aaaeb8;
	transition: background .15s ease;
}

.toggle::after {
	content: "";
	position: absolute;
	top: .15em;
	left: .15em;
	width: .8em;
	height: .8em;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0,0,0,.25);
	transition: transform .15s ease;
}

.common-control input:checked + .toggle {
	background: #bf5d4c;
}

.common-control input:checked + .toggle::after {
	transform: translateX(.9em);
}

.common-control input:focus-visible + .toggle {
	outline: 3px solid rgba(191,93,76,.35);
	outline-offset: 2px;
}

@media only screen and (max-width: 700px) {
	.admin-page {
		margin-left: 5%;
		margin-right: 5%;
	}

	.admin-heading,
	.species-row {
		align-items: flex-start;
		flex-direction: column;
	}

	.species-controls {
		width: 100%;
		justify-content: space-between;
	}
}
