.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%;
}

* {
  margin: 0;
  padding: 0;
  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;
}

body, html {
  font-family: Ubuntu-Regular, sans-serif;
  font-size: 14px;
}

div {
  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;
}

button {
  font-family: arial;
  font-size: 1rem;
  color: #ffffff;
  font-weight: bold;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0.2rem 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0.2rem 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.3);
  background-color: #555555;
  border: #007db8 solid 0.2rem;
  margin: 0.2rem;
}

.main {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #555555;
  padding: 0.2rem;
}

button:focus {
  outline: none;
}

button:hover {
  background-color: #3187b9;
  color: #ffffff;
  -webkit-box-shadow: 0.3rem 0.3rem 0.2rem 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0.3rem 0.3rem 0.2rem 0 rgba(0, 0, 0, 0.3);
}

.clickable {
  cursor: pointer;
}

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

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

.text {
  border-color: #007db8;
  background-color: #cfcfcf;
  vertical-align: middle;
  padding-left: 1rem;
  height: 2rem;
  text-overflow: ellipsis;
}

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

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

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

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

td, th {
  text-align: left;
  padding: 0.2rem;
  background-color: #cfcfcf;
  color: #141414;
}

th {
  background-color: #555555;
  color: #ffffff;
}
