.hidden {
  display: none !important;
}
* {
  box-sizing: border-box;
}
html {
  background-color: #F8F9FA;
  font-size: 16px;
  font-family: sans-serif;
  color: #333;
  overflow-y: scroll;
}
body {
  margin: 0;
}
p {
  margin: 0;
  line-height: 1.5;
}
p + p {
  margin-top: 1rem;
}
textarea {
  font-family: monospace;
}
.form {
  margin: 0;
}
.form-error {
  color: #c00;
  margin-bottom: 1rem;
}
.form-field {
  position: relative;
}
.form-field + .form-field {
  margin-top: 1rem;
}
.form-field-action {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}
.form-control {
  margin-top: 1rem;
}
.input,
.button {
  display: block;
  width: 100%;
  font-size: 1.5rem;
}
.button + .button {
  margin-top: 0.5rem;
}
.shoulder {
  position: fixed;
  top: 0;
  right: 0;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.main {
  margin-top: 3.5rem;
  padding: 1rem;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5rem;
  padding: 0 3.5rem 0 1rem;
  overflow: hidden;
  background-color: #495057;
  color: #fff;
  line-height: 3.5rem;
  font-size: 1.5rem;
  font-weight: normal;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
}
.header .svg-inline--fa {
  margin-right: 0.5rem;
}
.header > a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
}
.modal-content {
  width: 100%;
  padding: 1rem;
}
.modal-text {
  margin-bottom: 1rem;
  text-align: center;
  color: #fff;
}
.modal-options {
  margin: 0;
  padding: 0;
  list-style: none;
}
.modal-option {
  margin: 0 0 0.5rem 0;
  padding: 0;
}
.modal-option > a {
  display: block;
  width: 100%;
  padding: 0.5rem;
  background-color: #ccc;
  font-size: 1rem;
  border-radius: 0.25rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
}
.modal-close {
  color: #fff;
}
.menu-open {
  color: #fff;
}
.status {
  background-color: #657;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  color: #fff;
}
.status.success {
  background-color: #1E88E5;
}
.status.error {
  background-color: #E53935;
}
.entry-add {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 4rem;
  height: 4rem;
}
.entry-add > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #1E88E5;
  border-radius: 50% 50%;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
  text-align: center;
  text-decoration: none;
  font-size: 2rem;
  color: #fff;
}
.entry-items {
  margin: 0;
  padding: 0;
  list-style: none;
}
.entry-item {
  margin: 0 0 0.5rem 0;
  padding: 0;
}
.entry-item > a {
  display: block;
  width: 100%;
  padding: 0.5rem;
  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
  font-size: 1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  color: inherit;
}
