.flex_row, .heading {
  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");
}
:root {
  --color_1: #E1410D;
  --color_2: #464646;
  --color_3: #a9b3b8;
  --color_4: #525252;
  --color_5: #ff5b36c6;
  --color_text_light: #cdcdcd;
  --color_text_dark: #6d6d6d;
  --color_background: #979797;
  --color_background_light: #959595;
  --color_background_list: #818181;
  --color_background_dark: #434343;
  --color_placeholder: #1d1d1d;
  --color_error: #aa2d2d;
  --color_accent: var(--color_1);
  --color_primary: var(--color_1);
  --colorShadow:#999999;
  --colorShadowDark:#646464;
  --shadow1: .5rem .5rem 0.5rem 0rem var(--colorShadow);
  --shadow2: .5rem .5rem 1rem 0rem var(--colorShadowDark);
  --sizeSD: 1rem;
  --sizeMD: 1.2rem;
  --sizeLD: 3rem;
  --sizeFSD: 1rem;
  --sizeSM: 1.2rem;
  --sizeMM: 2rem;
  --sizeLM: 3rem;
  --sizesizeBorderM: 0.25rem;
  --padding: 1rem;
  --padding-l: 2rem;
  --border-radius: 1em;
  --border: 2px solid rgba(0, 0, 0, 0.2);
  --color_menu_background: var(--color_background_dark);
  --color_menu_btn: var(--color_1);
}

* {
  font-size: inherit;
  box-sizing: border-box;
  user-select: text;
  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: var(--color_text_light);
}

.button, button {
  border-radius: 0.5rem;
  border: none;
  font-weight: bold;
  padding: 1rem;
  color: var(--color_text_light);
  background-color: var(--color_text_dark);
  box-shadow: 0.3rem 0.3rem 0.5rem 0rem var(--colorShadow);
}
.button:focus, button:focus {
  outline: none;
}
.button:hover, button:hover {
  color: var(--color_text_dark);
  background-color: var(--color_text_light);
}

.heading {
  font-weight: bold;
  font-size: var(--sizeMD);
  padding: 1rem;
  width: 100%;
  white-space: pre-wrap;
  color: var(--color_text_light);
  background-color: var(--color_background);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  text-shadow: 0.2rem 0.2rem 0.4rem var(--color_background_dark);
}
@media only screen and (orientation: portrait) {
  .heading {
    padding: 0.5rem;
    font-size: var(--sizeMM);
    text-align: center;
    border-radius: 0rem;
  }
}

.main {
  width: 100%;
  height: 100dvh;
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
  background-color: var(--color_background_dark);
}

.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 0.5s ease;
}

.list-enter-from,
.list-leave-to {
  opacity: 0;
  transform: translateX(30px);
}

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

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

.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_grey_light);
  text-align: left;
  background-color: var(--color_background);
}

th {
  background-color: var(--color_background);
  color: var(--color_secondary);
}

::-webkit-input-placeholder { /* WebKit, Edge */
  color: var(--color_placeholder);
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: var(--color_placeholder);
  opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: var(--color_placeholder);
  opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--color_placeholder);
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--color_placeholder);
}

::placeholder { /* Standard */
  color: var(--color_placeholder);
}
