.flex_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}

.flex_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-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: #232929;
}

::-webkit-scrollbar {
  width: 0.7rem;
}

/* Track */
::-webkit-scrollbar-track {
  background: #83aab5;
  border-radius: 0.5rem;
  -webkit-box-shadow: inset 0 0 0.2rem #202124;
          box-shadow: inset 0 0 0.2rem #202124;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #232929;
  border-radius: 0.5rem;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #202124;
}

button {
  border-radius: 0.5rem;
  border: none;
  margin: 0.75rem;
  font-weight: bold;
  padding: 1rem;
  color: #d3edf8;
  background-color: #1f627c;
  -webkit-box-shadow: 0.3rem 0.3rem 0.5rem 0rem #454750;
          box-shadow: 0.3rem 0.3rem 0.5rem 0rem #454750;
}

button:focus {
  outline: none;
}

button:hover {
  color: #232929;
  background-color: #b0c7ce;
}

.main {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #4b5559;
}

.clickable {
  cursor: pointer;
}

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

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

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

.label {
  font-weight: bold;
  -ms-grid-column-align: stretch;
      justify-self: stretch;
  width: 10rem;
  color: #232929;
  padding: 0.5rem;
  white-space: nowrap;
}

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

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

table {
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 0.01rem solid #b0c7ce;
  text-align: left;
  padding: 0.2rem;
  background-color: #c2dee9;
  color: #1f627c;
}

th {
  background-color: #c2dee9;
  color: #1f627c;
}
