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

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

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

:root {
  --sizeBorder: 0.25rem;
  --color_1: #c16a14;
  --color_2: #262626;
  --color_3: #373737;
  --color_4: #b1b1b1;
  --color_5: #d3d3d3;
  --color_text_light: #d4d4d4;
  --color_text_dark: #373737;
  --colorShadow:#3d3d3d;
  --shadow: .5rem .5rem 0.5rem 0rem var(--colorShadow);
}

@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;
}

h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  padding: 0;
  color: var(--color_text_light);
}

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: var(--color_text_light);
}
div::-webkit-scrollbar {
  width: 0.5rem;
  background-color: #8f8f8f;
}
div::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #545454;
}

button {
  border-radius: 0.5rem;
  border: none;
  font-weight: bold;
  padding: 1rem;
  color: var(--color_text_light);
  background-color: var(--color_1);
  cursor: pointer;
}
button:focus {
  outline: none;
}
button:hover {
  color: var(--color_2);
  background-color: var(--color_text_light);
}

.main {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: var(--color_2);
}

.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 {
  opacity: 0;
  transform: translateX(30px);
}

.text {
  background-color: var(--color_2);
  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: var(--color_2);
  padding: 0.5rem;
  white-space: nowrap;
}

.input {
  width: 100%;
  font-size: 1.1rem;
  margin: 0.1rem;
  padding: 0.5rem;
  background-color: var(--color_2);
}

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

table {
  width: 100%;
}

td, th {
  border: 0.01rem solid var(--color-4);
  text-align: left;
  background-color: var(--color_2);
}

th {
  background-color: var(--color_2);
  color: var(--color_2);
}

@media only screen and (orientation: portrait) {
  .mobile {
    display: flex !important;
  }
}
@media only screen and (orientation: landscape) and (min-width: 600px) {
  .mobile {
    display: none !important;
  }
}

@media only screen and (orientation: portrait) {
  .desktop {
    display: none !important;
  }
}
@media only screen and (orientation: landscape) and (min-width: 600px) {
  .desktop {
    display: flex !important;
  }
}