.flex_row {
  display: flex;
  flex-flow: row nowrap;
}

.flex_col {
  display: flex;
  flex-flow: column nowrap;
}

.fill {
  width: 100%;
  height: 100%;
}

@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  src: local("Ubuntu"), url(assets/fonts/Ubuntu/Ubuntu-Regular.ttf) format("ttf");
}
* {
  font-size: inherit;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "Ubuntu", sans-serif;
  -webkit-font-smoothing: antialiased;
  border: 0;
}

body, html {
  margin: 0;
  padding: 0;
  font-size: 1vw;
  scroll-behavior: smooth;
}
@media only screen and (orientation: landscape) and (min-width: 1280px) {
  body, html {
    font-size: 12.8px;
  }
}
@media only screen and (orientation: portrait) {
  body, html {
    font-size: 3.33333vw;
  }
}

div {
  color: #eaf3f6;
}

button {
  border-radius: 0.5rem;
  border: none;
  margin: 0.75rem;
  font-weight: bold;
  padding: 1rem;
  color: #eaf3f6;
  background-color: #16322e;
  box-shadow: 0.3rem 0.3rem 0.5rem 0rem #0f679e;
}
button:focus {
  outline: none;
}
button:hover {
  color: #16322e;
  background-color: #eaf3f6;
}

.main {
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  background-color: #0aa0fd;
  background-image: linear-gradient(0deg, #0f679e, #0aa0fd);
}

.clickable {
  cursor: pointer;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 0.2s ease;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.list-move,
.list-enter-active,
.list-leave-active {
  transition: all 1s ease;
}

.list-enter-from,
.list-leave-to {
  transform: translateX(100);
}

.text {
  background-color: #2e2d2b;
  vertical-align: middle;
  padding-left: 1rem;
  height: 2rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  border: none;
}

.label {
  font-weight: bold;
  justify-self: stretch;
  width: 10rem;
  color: #16322e;
  padding: 0.5rem;
  white-space: nowrap;
}

.input {
  width: 100%;
  font-size: 1.1rem;
  margin: 0.1rem;
  padding: 0.5rem;
  background-color: #2e2d2b;
}

.icon {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 1.2rem;
}

table {
  width: 100%;
}

td, th {
  border: 0.01rem solid #5a6468;
  text-align: left;
  background-color: #2e2d2b;
}

th {
  background-color: #2e2d2b;
  color: #0f679e;
}