html {
  background: #eee;
  font-family:
    -apple-system,
    system-ui,
    BlinkMacSystemFont,
    "Segoe UI",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Lato",
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  font-size: 14px;
}
body {
  max-width: 1024px;
  margin: 1rem auto;
  background: white;
  padding: 1rem;
}
.delete-button {
  height: 1rem;
  padding: 0;
  line-height: 0;
  padding: 0.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.form-message {
  --color: black;
  border: 1px solid var(--color);
  border-radius: 5px;
  padding: 10px;
}
.form-message--error {
  --color: #ff4136;
}
.form-message--success {
  --color: #2ecc40;
}
.form__error {
  color: #ff4136;
}
.form-input__wrapper--checkbox {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.form-input__wrapper--checkbox > input[type=checkbox] {
  width: 15px;
  height: 15px;
}
.form-input__wrapper--checkbox > input[type=checkbox] + label {
  padding-left: 10px;
}
.form-input__wrapper--multiple-files--photos ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 10px;
  margin-bottom: 20px;
}
.form-input__wrapper--multiple-files--photos ul li {
  background-color: white;
  box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.2196078431);
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 20px;
  grid-template-rows: 20px auto min-content;
  grid-row-gap: 10px;
}
.form-input__wrapper--multiple-files--photos ul li a {
  grid-row: 1/3;
  grid-column: 1/3;
}
.form-input__wrapper--multiple-files--photos ul li a picture,
.form-input__wrapper--multiple-files--photos ul li a img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}
.form-input__wrapper--multiple-files--photos ul li .filename {
  grid-row: 3/4;
  grid-column: 1/3;
}
.form-input__wrapper--multiple-files--photos ul li form {
  grid-row: 1/2;
  grid-column: 2/3;
  position: relative;
  z-index: 2;
}
.file-list-item {
  display: flex;
  flex-flow: row;
}
.file-list-item form {
  padding-left: 20px;
}
nav ul {
  display: flex;
  flex-flow: row wrap;
  padding-left: 0;
  margin-left: -0.5rem;
}
nav ul li {
  list-style: none;
  display: block;
  margin: 0 0.5rem;
  border: 1px solid black;
}
nav ul li.active {
  background-color: #5294a1;
  color: white;
}
nav ul li span,
nav ul li a {
  padding: 0.5rem 1rem;
  display: block;
  text-decoration: none;
}
nav ul li a {
  color: black;
}
nav ul li span {
  cursor: default;
}
.input__error {
  color: red;
}
label {
  display: block;
}
table,
td,
th {
  border-collapse: collapse;
}
.list-pagination {
  display: grid;
  grid-template-columns: 1fr min-content 1fr;
  grid-column-gap: 1rem;
  margin-bottom: 0.5rem;
}
.list-pagination__left {
  text-align: right;
}
thead th {
  background-color: #ddd;
  border-style: solid;
  border-width: 1px 0 1px 0;
  border-color: #777;
  padding: 9px 7px;
  font-size: 14px;
}
tr:hover {
  background-color: #ccc;
}
td {
  padding: 2px 8px;
}
table,
td,
th {
  border-collapse: collapse;
}
.list-pagination {
  display: grid;
  grid-template-columns: 1fr min-content 1fr;
  grid-column-gap: 1rem;
  margin-bottom: 0.5rem;
}
.list-pagination__left {
  text-align: right;
}
thead th {
  background-color: #ddd;
  border-style: solid;
  border-width: 1px 0 1px 0;
  border-color: #777;
  padding: 9px 7px;
  font-size: 14px;
}
tr:hover {
  background-color: #ccc;
}
td {
  padding: 2px 8px;
}
/*# sourceMappingURL=style.css.map */
