/*#e73e0c*/@font-face {
	font-family: 'Fira';
	src: url('../fonts/firasans-book-webfont.woff2') format('woff2'),
		url('../fonts/firasans-book-webfont.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Fira';
	src: url('../fonts/firasans-bookitalic-webfont.woff2') format('woff2'),
		url('../fonts/firasans-bookitalic-webfont.woff') format('woff');
	font-weight: 400;
	font-style: italic;
}

@font-face {
	font-family: 'Fira';
	src: url('../fonts/firasans-bold-webfont.woff2') format('woff2'),
		url('../fonts/firasans-bold-webfont.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Fira';
	src: url('../fonts/firasans-bolditalic-webfont.woff2') format('woff2'),
		url('../fonts/firasans-bolditalic-webfont.woff') format('woff');
	font-weight: 700;
	font-style: italic;
}

@font-face {
	font-family: 'Fira';
	src: url('../fonts/firasans-semibold-webfont.woff2') format('woff2'),
		url('../fonts/firasans-semibold-webfont.woff') format('woff');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Fira';
	src: url('../fonts/firasans-semibolditalic-webfont.woff2') format('woff2'),
		url('../fonts/firasans-semibolditalic-webfont.woff') format('woff');
	font-weight: 500;
	font-style: italic;
}

/* ------------------------------------------------------------------ General */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  overflow-x: hidden;
  height: 100%;
}

html {
  font: 125%/1.5 Fira, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
}
body.panda::before {
  position: fixed;
  content: '';
  width: calc(100% + 24px);
  height: 100%;
  background: url(../images/panda.svg) 0 center / 24px 24px;
  animation: move 5000ms linear infinite;
  opacity: 0.1;
  top: 0;
  left: -24px;
  z-index: -1;
}

@keyframes move {
	0% {
		transform: translateX(24px);
	}
	
	100% {
		transform: translateX(0);
	}
}

.wrapper {
  max-width: 50rem;
  width: 94%;
  margin-right: auto;
  margin-left: auto;
}

/* ------------------------------------------------------------------- Header */

.header {
  color: #fff;
  padding: 1rem 2rem;
  background-color: #e73e0c;
}

.header__link {
  color: #fff;
  text-decoration: none;
}

.header__logo {
  width: 200px;
  height: 57px;
  display: block;
}

/* ------------------------------------------------------------------ Content */

.content {
  margin-bottom: auto;
}

.title {
  font-weight: 500;
  font-size: 2em;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.heading {
  font-weight: 500;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.body {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.body > * + * {
  margin-top: 1.5rem;
}

.body a[href],
.link {
	color: #e73e0c;
}

.info {
	font-size: 0.9em;
	max-width: 36em;
	margin-top: 3rem;
	margin-bottom: 3rem;
}

/* ---------------------------------------------------------------- Home Page */

.option {
  display: block;
  text-decoration: none;
  color: #e73e0c;
  padding: 1.5rem 3rem;
  background-color: #eee;
  border-radius: 1rem;
}
.option:focus,
.option:hover {
  background-color: #ddd;
}
.option:active {
  background-color: #ccc;
}
.option + .option {
  margin-top: 1.5rem;
}

.option__title {
  font-weight: 500;
  font-size: 1.5rem;
}

/* --------------------------------------------------------------------- Form */

.success,
.error {
  padding: 0.5rem 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0.3em;
}

.success {
  background-color: #adf593;
  font-size: .8em;
}

.error {
  background-color: #fcc4c5;
}

.form {
  margin-right: auto;
  margin-left: auto;
}
.form + .form {
  margin-top: 5rem;
}

.field {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.textfield {
  display: block;
  font-size: 0.9em;
  max-width: 22rem;
  width: 100%;
  height: 1.75rem;
  font-family: inherit;
  padding: 0.15em 0.5em;
  border: 1px solid #ccc;
  border-radius: 0.3em;
  outline: none;
}

.textfield:focus {
  border-color: #e73e0c;
  box-shadow: 0 0 0 1px #e73e0c;
}

.hint {
  font-size: 0.8em;
  max-width: fit-content;
  padding: 0.125rem 0.5rem;
  background-color: #fe7;
  border-radius: 0.3em;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.password {
  font-family: Menlo, Consolas, 'Andale Mono WT', 'Andale Mono', 'Lucida Console', 'Lucida Sans Typewriter', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Liberation Mono', 'Nimbus Mono L', Monaco, 'Courier New', Courier, monospace;
}

.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 0.9em;
  font-family: inherit;
  color: #fff;
  padding: 0.375em 1em;
  background-color: #e73e0c;
  border: none;
  border-radius: 0.3em;
}

/* --------------------------------------------------------------------- List */

.list_wrap {
  width: 100%;
  overflow: auto;
  margin-bottom: 1rem;
}
.list {
  background-color: #fff;
  border-radius: 0.3em;
  list-style-type: none;
  border: 1px solid #ccc;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: .8em;
}
.listitem {
  max-width: fit-content;
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
}
.list th {
  font-weight: 500;
  text-align: left;
}
.list th,
.list td {
  padding: 0.125rem 1rem;
}
.list tr th:first-child,
.list td:first-child {
	position: sticky;
	left: 0px;
	background: #fff;
}
.list tr:nth-child(even),
.list tr:nth-child(even) td:first-child {
	background: #efefef;
}

/* ------------------------------------------------------------------- Footer */

.footer {
  color: #fff;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e73e0c;
  margin-top: 3rem;
}

.footer .wrapper {
  display: flex;
}

.footer .navigation {
  margin-left: auto;
}

.footer .navigation-list {
  display: flex;
}

.footer .navigation-item {
  display: block;
}
.footer .navigation-item + .navigation-item {
  margin-left: 1rem;
}

.footer .navigation-link {
  color: #fff;
  text-decoration: none;
}
