:root {
  --white: #EAF3F4;
  --orange: #F39200;
  --blue: #00475F;
  --red: #ce2949;
  --lightblue: #42a9cb;
  --green: #1C8837;
  --border-radius-low: 0.2em;
  --border-radius-high: 15px;
  --padding-low: 0.2em;
  --padding-medium: 0.4em;
  --margin-low: 0.2em;
  --margin-medium: 0.4em;
}

html {
  background-color: var(--white);
  height: 100%;
}

body {
  margin: 0;
}

* {
  font-family: "poppins", sans-serif;
}

button {
  border: thin solid var(--white);
  border-radius: var(--border-radius-low);
  cursor: pointer;
  user-select: none;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  padding: 0.3em 0.5em;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: border 0.2s, background-color 0.2s;
}
button:first-letter {
  text-transform: capitalize;
}
button > img + p {
  margin-left: 0.5em;
  white-space: nowrap;
}
button > img {
  height: 1.2em;
}
button:not([disabled]):hover {
  border: thin solid var(--green);
}
button.red {
  border: thin solid var(--red);
}
button.red:not([disabled]):hover {
  background-color: var(--red);
  border: thin solid black;
  color: white;
}
button.red:not([disabled]):hover > img {
  filter: invert(1);
}
button.blue {
  border: thin solid var(--blue);
}
button.blue:not([disabled]):hover {
  background-color: var(--blue);
  border: thin solid black;
  color: white;
}
button.blue:not([disabled]):hover > img {
  filter: invert(1);
}
button.transparent {
  background-color: transparent;
  border: thin solid transparent;
  box-shadow: none;
  color: white;
}
button.transparent > img {
  filter: invert(1);
}
button.transparent:not([disabled]):hover {
  border: thin solid white;
  background-color: rgba(211, 211, 211, 0.5);
}
button[hidden] {
  display: none;
}
button[disabled] {
  color: inherit;
  filter: opacity(0.5);
  cursor: initial;
}

#map {
  border-radius: var(--border-radius-low);
}

description {
  color: grey;
  font-style: italic;
  font-size: 0.9em;
}

input, select {
  max-height: 2em;
}

select {
  cursor: pointer;
}

input:not(input[type=range]), select, textarea {
  padding: 0.3em 0.5em;
  border: thin solid var(--blue);
  border-radius: var(--border-radius-low);
  background-color: white;
  resize: none;
  margin: 0.5em 0;
}
input:not(input[type=range]):focus-visible, select:focus-visible, textarea:focus-visible {
  outline: var(--blue) solid thin;
}
input:not(input[type=range])[type=file], select[type=file], textarea[type=file] {
  display: none;
}
input:not(input[type=range])[disabled], select[disabled], textarea[disabled] {
  filter: opacity(0.5);
}

label {
  font-weight: bold;
  color: var(--green);
  text-transform: uppercase;
  font-size: 0.8em;
  height: 1em;
  display: inline-block;
  margin: var(--margin-medium) 0;
  position: relative;
}
label::after {
  margin-left: var(--margin-low);
  height: 1px;
  background-color: var(--green);
  width: -moz-available;
  width: -webkit-fill-available;
  top: 50%;
  flex: 1;
  position: absolute;
}

ul, ol, menu, form {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

a {
  color: var(--blue);
  text-decoration: none;
}
a:visited {
  color: var(--blue);
}

h1, h2, h3, h4, h5, h6 {
  color: white;
  margin: var(--margin-medium);
  font-family: "finalsix", sans-serif;
}

img {
  max-width: 100vw;
}

/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--blue) white;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: white;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-radius: var(--border-radius-low);
}

aside > ul {
  scrollbar-color: white transparent;
}
aside > ul::-webkit-scrollbar-thumb {
  background-color: white;
}
aside > ul::-webkit-scrollbar-track {
  background: transparent;
}

body {
  display: flex;
  overflow: hidden;
  max-height: 100vh;
  height: 100%;
}
body.focusMode {
  background-color: rgba(0, 71, 95, 0.8);
}
body.focusMode > aside {
  transition: all 1.5s;
  overflow: hidden;
  transform: translateX(-150%);
  flex-basis: 0;
  padding: 0;
  margin: 0;
  max-width: 0;
}
body.focusMode > section {
  margin: var(--margin-medium);
}
body.focusMode > section > header {
  transition: all 1.5s;
  overflow: hidden;
  max-height: 0;
  transform: translateY(-150%);
  padding: 0;
  margin: 0;
}
body.focusMode > section > main {
  transition: all 1s;
  padding: 0;
}
body.focusMode > section > main > menu {
  margin-top: 0;
}
body.quitFocusMode > aside {
  transition: all 1s;
}
body.quitFocusMode > section > header {
  transition: all 1s;
}
body > aside {
  flex-basis: 15%;
  max-width: 50%;
  background-color: var(--blue);
  border-radius: var(--border-radius-low);
  padding: var(--padding-medium);
  display: flex;
  flex-direction: column;
  margin: var(--padding-medium);
}
body > aside > img {
  background-color: var(--white);
  width: 100%;
  border-radius: var(--border-radius-low);
}
body > aside > p {
  color: white;
  text-align: center;
  margin-top: var(--margin-medium);
  font-size: 0.8em;
}
body > aside > ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: var(--padding-medium) 0;
}
body > aside > ul li {
  cursor: pointer;
  margin: 1em 0;
}
body > aside > ul li > h4, body > aside > ul li > h5 {
  transition: color 0.4s, transform 0.4s;
  text-transform: uppercase;
  font-size: 0.9em;
}
body > aside > ul li > h5 {
  font-size: 0.8em;
  margin-left: 1.5em;
  font-weight: 300;
}
body > aside > ul li[active] > h4, body > aside > ul li[active] > h5 {
  color: var(--orange);
}
body > aside > ul li:not([active]):hover > h4, body > aside > ul li:not([active]):hover > h5 {
  color: var(--orange);
  transform: translateX(0.2em);
}
body > section {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: var(--padding-medium) var(--padding-medium) var(--padding-medium) 0;
}
body > section > header {
  display: flex;
  background: linear-gradient(90deg, var(--blue) 35%, var(--green) 100%);
  align-items: center;
  max-height: 15%;
  border-radius: var(--border-radius-low);
  padding: var(--padding-low);
}
body > section > header > h1 {
  font-size: 1em;
  flex: 1;
}
body > section > header > button {
  margin-right: var(--margin-medium);
}
body > section > main {
  margin: var(--margin-low);
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 5vw;
  overflow: auto;
}
body > section > main > menu {
  display: flex;
  margin: 1em 0;
  align-items: center;
}
body > section > main > menu > ul {
  display: flex;
  flex-wrap: wrap;
}
body > section > main > menu > ul > li {
  margin: 0.5em;
}
body > section > main > menu > ul > li[hidden] {
  display: none !important;
  margin: 0;
}
body > section > main > menu > ul:first-of-type > li {
  margin-left: 0;
}
body > section > main > menu > ul:last-of-type:not(body > section > main > menu > ul:first-child) {
  flex-direction: row-reverse;
  flex: 1;
}
body > section > main > menu > ul:last-of-type:not(body > section > main > menu > ul:first-child) > li {
  margin-right: 0;
  align-items: center;
  display: flex;
}
body > section > main > filters > ul {
  display: flex;
  margin-bottom: 0.5em;
  flex-wrap: wrap;
}
body > section > main > filters > ul > li {
  margin-right: 1em;
  display: flex;
}
body > section > main > section {
  flex: 1;
}
body > section > main > section#list_view {
  display: flex;
  flex-direction: column;
  overflow: auto;
}
body > section > main > section#list_view > ul {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-right: 0.5em;
  overflow: auto;
}
body > section > main > section#list_view > ul > li {
  border-radius: var(--border-radius-low);
  background-color: white;
  display: flex;
  margin: var(--margin-medium) 0;
  padding: var(--padding-low) var(--padding-medium);
  min-height: 2em;
  align-items: center;
  border: thin solid white;
  transition: border 0.2s;
  cursor: pointer;
}
body > section > main > section#list_view > ul > li.header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  padding: 0 0.5em 0.5em 0;
  border: thin solid transparent;
  margin: 0;
  cursor: initial;
  z-index: 1;
}
body > section > main > section#list_view > ul > li.header > p {
  font-size: 0.9em;
  font-weight: bold;
  color: grey;
}
body > section > main > section#list_view > ul > li:not(body > section > main > section#list_view > ul > li.header):hover {
  border: thin solid var(--green);
}
body > section > main > section#list_view > ul > li > p {
  display: flex;
  flex: 1;
}
body > section > main > section#list_view > ul > li > p:first-child {
  flex-basis: 20%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
body > section > main > section#list_view > div.footer {
  display: none;
  padding-top: var(--padding-medium);
}
body > section > main > section#list_view > div.footer select {
  margin: 0 var(--margin-low);
}
body > section > main > section#list_view > div.footer > div {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
body > section > main > section#list_view > div.footer > div > button:last-of-type {
  transform: rotate(180deg);
}
body > section > main > section#map_view {
  display: none;
}
body > section > main > section#map_view > p {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
body > section > main > addForm, body > section > main > detailsForm {
  flex: 1;
  display: flex;
  flex-direction: column;
}
body > section > main > addForm .switch, body > section > main > detailsForm .switch {
  margin: 0.5em 0;
}

div.tooltip {
  display: flex;
  flex: 1;
  position: relative;
}
div.tooltip > *[disabled] ~ img {
  filter: opacity(0.5);
}
div.tooltip > img {
  height: 1em;
  width: 1em;
  margin: 0 var(--margin-low);
}

.switch {
  display: flex;
  align-items: center;
}
.switch > div {
  margin-right: 0.5em;
  display: inline-block;
  position: relative;
  width: 2.4em;
  height: 1.3em;
  cursor: pointer;
  overflow: hidden;
}
.switch > div input {
  position: absolute;
  top: -30px;
  width: 0;
  height: 0;
}
.switch > div input + label {
  font-size: initial;
  height: initial;
  margin: initial;
  position: absolute;
  top: 0;
  cursor: pointer;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--blue);
  border-radius: 15px;
}
.switch > div input + label:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0.15em;
  width: 1em;
  height: 1em;
  background: white;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: left 0.5s;
  background: url("/static/img/icons/cross.webp");
  background-color: white;
  background-size: contain;
}
.switch > div input + label:after {
  all: initial;
}
.switch > div input:checked + label {
  background: var(--green);
}
.switch > div input:checked + label:before {
  left: 1.25em;
  background: white url("/static/img/icons/check.webp");
  background-size: cover;
}
.switch > p {
  flex: 1;
  font-size: 0.9em;
  width: max-content;
}
.switch[disabled] {
  filter: opacity(0.5);
}
.switch[disabled] > div {
  cursor: initial;
}
.switch[disabled] > div > label {
  cursor: initial;
}

.select {
  display: flex;
  position: relative;
  margin: 0.5em 0;
  z-index: 1001;
}
.select > button:first-of-type {
  flex: 1;
  box-shadow: inherit;
  border: thin solid var(--blue);
  min-width: 7.5em;
}
.select > button:first-of-type > p {
  flex: 1;
  text-align: left;
}
.select > button:first-of-type > img {
  height: 1em;
  width: 1em;
  margin-left: 1em;
}
.select > button:last-of-type {
  border: thin solid transparent;
  background-color: transparent;
  box-shadow: inherit;
  display: none;
}
.select > button:last-of-type > img {
  height: 0.8em;
  transition: transform 0.5s;
}
.select > button:last-of-type > img:hover {
  transform: rotate(-120deg);
}
.select > ul {
  border: thin solid var(--green);
  border-radius: var(--border-radius-low);
  position: absolute;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  margin-top: 0.2em;
  display: none;
  max-height: 10em;
  overflow: auto;
  z-index: 1;
  top: 100%;
  width: 100%;
}
.select > ul > input {
  width: 100%;
  border-radius: var(--border-radius-low) var(--border-radius-low) 0 0;
  border: none;
  border-bottom: thin solid lightgrey;
  position: sticky;
  top: 0;
  margin: 0;
}
.select > ul > li {
  display: flex;
  align-items: center;
  padding: 0.2em;
  cursor: pointer;
  background-color: white;
  font-size: 0.9em;
}
.select > ul > li:hover {
  background-color: lightgrey;
}
.select[disabled] {
  opacity: 0.5;
}
.select[disabled] > button {
  cursor: initial;
}

div.loading, div.empty {
  display: flex;
  align-self: center;
  height: 100%;
  align-items: center;
  user-select: none;
  justify-content: center;
  overflow: hidden;
}
div.loading[hidden], div.empty[hidden] {
  display: none;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
div.loading > img, div.empty > img {
  height: 1em;
  margin-right: 0.5em;
  animation: rotate 2.5s linear infinite;
}

#waveform {
  border-radius: 8px;
  background-color: #e9e9e9;
  overflow: hidden;
  padding: 0.5rem;
}

/*# sourceMappingURL=shared.css.map */
