html {
  font-family: Roboto, sans-serif;
  height: 100%;
  width: 100%; }
  html body {
    height: 100%;
    margin: 0;
    width: 100%; }
    html body .main-container {
      align-items: center;
      display: flex;
      justify-content: center;
      height: 100%;
      width: 100%; }
      html body .main-container #login-container {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
        display: flex;
        flex-direction: row;
        height: 350px;
        width: 700px; }
        html body .main-container #login-container .login-box {
          box-sizing: border-box;
          width: 350px;
          height: 350px;
          padding: 20px; }
          html body .main-container #login-container .login-box#logo-box {
            align-items: flex-end;
            background-color: #333;
            display: flex;
            justify-content: flex-end; }
            html body .main-container #login-container .login-box#logo-box .icon {
              width: 50%; }
          html body .main-container #login-container .login-box#form-box h1 {
            color: #333; }
          html body .main-container #login-container .login-box#form-box input {
            border-bottom-color: rgba(51, 51, 51, 0.6);
            border-left: 0;
            border-right: 0;
            border-top: 0;
            height: 30px;
            margin-bottom: 15px;
            outline: none;
            padding: 5px;
            width: 100%; }
          html body .main-container #login-container .login-box#form-box button {
            background-color: #333;
            border: none;
            color: white;
            cursor: pointer;
            font-weight: bold;
            height: 30px;
            width: 100%; }
          html body .main-container #login-container .login-box p.error {
            color: red;
            font-size: 0.9rem; }

html body .main-container #login-container .login-box#logo-box {
  background-color: #00a0e5; }
@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(360deg); }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg); } }

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

.filter {
  display: flex; }
  .filter input.search {
    flex-grow: 1;
    margin: 10px 10px 10px 0;
    border: none;
    padding: 6px;
    border-bottom: 2px solid #333;
    -webkit-transition: border-bottom-color 100ms;
    -moz-transition: border-bottom-color 100ms;
    -ms-transition: border-bottom-color 100ms;
    -o-transition: border-bottom-color 100ms;
    transition: border-bottom-color 100ms; }
    .filter input.search:last-child {
      margin-right: 0; }

a.table-row {
  color: #222222;
  text-decoration: none;
  -webkit-transition: background-color 100ms;
  -moz-transition: background-color 100ms;
  -ms-transition: background-color 100ms;
  -o-transition: background-color 100ms;
  transition: background-color 100ms; }
  a.table-row:hover, a.table-row:active, a.table-row:focus {
    background-color: #f6f9cb;
    outline: none; }

.table-row {
  display: flex;
  flex-direction: row;
  flex-grow: 0;
  flex-wrap: nowrap;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-top: none;
  border-collapse: collapse;
  padding: 12px 16px;
  font-size: 0.9rem;
  background-color: #f4f4f4;
  -webkit-transition: background-color 100ms;
  -moz-transition: background-color 100ms;
  -ms-transition: background-color 100ms;
  -o-transition: background-color 100ms;
  transition: background-color 100ms; }
  .table-row.disabled {
    color: #a1a1a1;
    cursor: default; }
  .table-row.new {
    background-color: #dbf9de; }
  .table-row.header {
    background-color: #333;
    color: white;
    font-weight: bold;
    padding: 16px 16px; }

.table-column {
  padding-right: 10px;
  flex-shrink: 1;
  overflow: hidden;
  width: 120px; }
  .table-column:last-child {
    padding-right: 0; }
  .table-column.grow-1 {
    flex-grow: 1; }
  .table-column.grow-2 {
    flex-grow: 2; }
  .table-column.grow-3 {
    flex-grow: 3; }
  .table-column.size-1 {
    width: 60px; }
  .table-column.size-2 {
    width: 90px; }
  .table-column.size-3 {
    width: 120px; }
  .table-column.size-4 {
    width: 180px; }
  .table-column.size-5 {
    width: 240px; }
  .table-column.right {
    padding-right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start; }
  .table-column button {
    margin: 0;
    align-self: flex-start; }

div.mask-wrapper {
  display: flex;
  width: 100%; }
  div.mask-wrapper > .form-group {
    width: 100%; }
  @media (max-width: 768px) {
    div.mask-wrapper {
      flex-direction: column; } }
  div.mask-wrapper div.mask-left {
    flex-grow: 1;
    width: 100%; }
  div.mask-wrapper div.mask-right {
    flex-grow: 1;
    width: 100%; }
  div.mask-wrapper div.mask-inner-wrapper {
    display: flex; }
    div.mask-wrapper div.mask-inner-wrapper div.mask-inner-left {
      flex-grow: 1; }
    div.mask-wrapper div.mask-inner-wrapper div.mask-inner-right {
      flex-grow: 1; }

form {
  margin: 0; }

h3 {
  margin-top: 32px;
  margin-bottom: 8px; }
  h3:first-child {
    margin-top: 0; }

.action {
  margin: 0 0 64px; }
  .action > button {
    width: 100%;
    margin-top: 20px; }
  .action:last-of-type {
    margin-bottom: 0; }

.form-group {
  display: flex;
  flex-direction: column;
  margin: 10px 0; }
  .form-group:last-of-type {
    margin-bottom: 0; }
  .form-group label {
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 2px; }
  .form-group input, .form-group textarea {
    font-family: Roboto, sans-serif;
    border: 2px solid #ccc;
    background-color: #fafafa;
    padding: 10px;
    resize: none; }
    .form-group input:hover, .form-group input:active, .form-group input:focus, .form-group textarea:hover, .form-group textarea:active, .form-group textarea:focus {
      outline: none; }

@media (min-width: 769px) {
  input[name=fahrzeug],
  input[name=nr],
  .choices,
  .pictures {
    margin-right: 10px; } }

form[data-touched="true"] button {
  background-color: #b40000;
  border-color: #b40000; }

button, a.button {
  max-width: 100%;
  margin-bottom: 10px;
  align-self: flex-end;
  border: 2px solid #333;
  background-color: #333;
  color: white;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 100ms, border-color 100ms; }
  button:focus, button:active, a.button:focus, a.button:active {
    outline: none; }
  button.important, a.button.important {
    border-color: #385a98;
    background-color: #385a98;
    color: white; }
  button i.material-icons, a.button i.material-icons {
    margin-right: 8px;
    font-size: 1rem; }
  button.just-icon i.material-icons, a.button.just-icon i.material-icons {
    margin-right: 0; }
  button[name=back], a.button[name=back] {
    width: 100%;
    padding: 16px; }

.dialog-wrapper, #loading-screen-wrapper {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#loading-screen-wrapper {
  z-index: 99999; }
  #loading-screen-wrapper.open {
    display: block; }
  #loading-screen-wrapper .loading-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    width: 128px;
    height: 128px;
    top: calc(50% - 64px);
    left: calc(50% - 64px);
    background-color: white;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 16px; }
    #loading-screen-wrapper .loading-screen .animation {
      flex-grow: 1; }
      #loading-screen-wrapper .loading-screen .animation i {
        font-size: 64px;
        -webkit-animation: rotating 1200ms linear infinite;
        -moz-animation: rotating 1200ms linear infinite;
        -ms-animation: rotating 1200ms linear infinite;
        -o-animation: rotating 1200ms linear infinite;
        animation: rotating 1200ms linear infinite; }
    #loading-screen-wrapper .loading-screen .text {
      flex-grow: 0; }

.dialog-wrapper {
  padding: 114px 64px 64px; }
  .dialog-wrapper.open {
    display: block; }
  .dialog-wrapper .dialog-wrapper-inner {
    margin-left: auto;
    margin-right: auto; }
    .dialog-wrapper .dialog-wrapper-inner .dialog {
      background-color: white;
      width: 100%;
      min-height: 100px;
      max-height: 100%;
      overflow-y: auto;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      padding: 32px; }
      .dialog-wrapper .dialog-wrapper-inner .dialog h3:first-child {
        margin-top: 0; }
      .dialog-wrapper .dialog-wrapper-inner .dialog .actions {
        margin: 48px 0 0;
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: stretch;
        min-height: 40px; }
        .dialog-wrapper .dialog-wrapper-inner .dialog .actions button {
          margin: 0 0 0 8px; }

.change-weight {
  border: 1px solid #ccc;
  background: #f4f4f4;
  width: 100%;
  padding: 12px 16px; }

.dialog-wrapper {
  overflow-y: auto;
  transition: padding 150ms; }

.check-box {
  display: flex;
  align-items: center;
  height: 40px;
  margin: 10px 10px 10px 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer; }
  .check-box:first-child {
    margin-left: 0; }
  .check-box:last-child {
    margin-right: 0; }
  .check-box > i.material-icons {
    display: none;
    width: 24px;
    margin-right: 4px;
    -webkit-transition: color 100ms;
    -moz-transition: color 100ms;
    -ms-transition: color 100ms;
    -o-transition: color 100ms;
    transition: color 100ms; }
  .check-box:not(.checked):not(.indeterminate) > i.material-icons.empty {
    display: block; }
  .check-box.checked > i.material-icons.checked {
    display: block; }
  .check-box.indeterminate > i.material-icons.indeterminate {
    display: block; }
  .check-box:focus, .check-box:active {
    outline: none; }
    .check-box:focus i.material-icons, .check-box:active i.material-icons {
      color: #385a98; }

html {
  font-family: Roboto, sans-serif;
  height: 100%;
  width: 100%; }
  html body {
    background-color: white;
    height: 100%;
    margin: 0;
    width: 100%; }
    html body .back-arrow {
      cursor: pointer;
      margin-right: 30px; }
    html body header {
      align-items: center;
      background-color: #333;
      box-sizing: border-box;
      color: white;
      display: flex;
      height: 50px;
      padding: 10px 20px;
      width: 100%;
      justify-content: space-between; }
      html body header a.title {
        color: white;
        text-decoration: none; }
      html body header a.logout {
        color: white; }
      html body header a:hover, html body header a:active, html body header a:focus {
        outline: none; }
    html body main {
      padding: 20px; }
      html body main hr {
        border: none;
        height: 1px;
        background-color: #333; }
    html body #notification {
      display: none;
      flex-direction: column;
      align-items: stretch;
      z-index: 9999999;
      position: fixed;
      right: 0;
      bottom: 0;
      margin: 20px;
      min-width: 200px;
      background-color: #dbf9de;
      color: #333;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
      border-top: 3px solid #74a774; }
      html body #notification.show {
        display: flex; }
      html body #notification.error {
        background-color: #f9d8db;
        border-top-color: #d16e6e; }
        html body #notification.error #notification-progress {
          background-color: #d16e6e; }
      html body #notification #notification-text {
        padding: 10px 24px; }
      html body #notification #notification-progress {
        height: 6px;
        width: 100%;
        align-self: flex-start;
        background-color: #74a774; }
    html body a {
      text-decoration: none; }
      html body a:active {
        text-decoration: none;
        outline: none; }
    html body div.nowrap {
      white-space: nowrap; }
    html body .pointer {
      cursor: pointer; }
    html body .margin-left-auto {
      margin-left: auto; }

.text-right {
  text-align: right; }
