@charset "UTF-8";
/*****************************************/
/* GLOBAL STYLINGS (COLORS, FONTS etc.) */
/*****************************************/
body {
  font-size: 1em;
  font-family: 'Open Sans', sans-serif;
  color: #4b4b4b; }

h1,
h2,
h3 {
  font-weight: 700; }

h1 {
  font-size: 1.3em;
  margin-bottom: 2em; }

h2 {
  font-size: 1.2em;
  margin-bottom: 2em; }

h3 {
  font-size: 1.1em;
  margin-bottom: 1.5em; }

a {
  text-decoration: none;
  color: #b90305;
  transition: color 0.4s; }
  a:hover {
    color: #8d0102;
    transition: color 0.4s;
    text-decoration: none; }

/*****************************************/
/* HELPER */
.display-flex {
  display: flex; }

.bold {
  font-weight: 700 !important; }

.no-margin {
  margin: 0 !important; }

.width-100-percent {
  width: 100%; }

.justify-center {
  justify-content: center; }

.flex-wrapper {
  display: flex;
  align-content: center;
  justify-content: space-between; }

.button-wrapper {
  display: flex;
  align-items: center; }

/*****************************************/
/*****************************************/
/*****************************************/
/* LAYOUT */
.container {
  max-width: 1280px; }

.content {
  padding: 0em 0 2em 0; }
  .content .content-headline {
    text-align: center;
    margin-bottom: 2em; }

section {
  margin-bottom: 5em; }

section:last-child {
  margin-bottom: 0; }

/*****************************************/
/* HEAD */
.head {
  background-color: #d5d4d3;
  margin-bottom: 2em; }
  .head .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 3.6em; }
    .head .container .logged-in-user {
      font-size: 0.9em; }
      .head .container .logged-in-user button.logout {
        margin-left: 1.25em; }
      .head .container .logged-in-user button.profile {
        margin-left: 0.5em; }

/*****************************************/
/* BUTTONS */
.button,
button {
  background-color: #b90305;
  color: #ffffff;
  min-width: 10em;
  border-radius: 5px;
  padding: 0.5em;
  -webkit-appearance: none;
  border: none;
  transition: background-color 0.4s;
  cursor: pointer; }
  .button:hover,
  button:hover {
    background-color: #8d0102;
    transition: background-color 0.4s; }

.button.abort,
button.abort {
  background-color: #4b4b4b; }
  .button.abort:hover,
  button.abort:hover {
    background-color: #272727; }

.button.cancel,
button.cancel {
  background-color: #232323; }
  .button.cancel:hover,
  button.cancel:hover {
    background-color: #1a1a1a; }

a.button {
  text-decoration: none;
  color: #ffffff;
  display: inline-block;
  text-align: center; }

.button-padding {
  padding: 0.5em 2.5em; }

/*****************************************/
/* NAVIGATION */
.navigation {
  padding: 0;
  margin: 3em 0em 5em 0em;
  width: 100%;
  /* NAV-ITEMS */ }
  .navigation .nav-item {
    list-style-type: none;
    width: 20%;
    display: flex;
    border-right: 1px solid #ffffff; }
    .navigation .nav-item a {
      width: 100%;
      font-size: 0.95em;
      text-align: center;
      text-decoration: none;
      background-color: #b90305;
      color: #ffffff;
      padding: 0.75em 0.5em;
      -webkit-appearance: none;
      transition: background-color 0.4s;
      cursor: pointer; }
      .navigation .nav-item a:hover {
        background-color: #8d0102;
        transition: background-color 0.4s; }

/*****************************************/
/* FORMS */
.input-wrapper {
  align-items: center;
  margin-bottom: 1em;
  height: 2.5em;
  /* TIME-INPUT-GROUP */ }
  .input-wrapper .timepicker-wrapper {
    top: 0;
    position: relative;
    align-items: center; }
    .input-wrapper .timepicker-wrapper .time-input-group {
      display: flex; }
      .input-wrapper .timepicker-wrapper .time-input-group input {
        margin-right: 0.25em; }

/* LABELS */
label {
  margin-bottom: 0;
  font-size: 0.95em;
  font-weight: bold; }

/* INPUTS */
input,
textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #d5d4d3;
  padding: 0.5em; }

/* SELECTS */
select {
  border-radius: 5px;
  height: 2.5em;
  background-color: #ffffff;
  border: 1px solid #d5d4d3; }

/* SELECTS TWO */
.select2 .select2-container--default,
.select2 .select2-selection--single {
  background-color: #fff;
  border: 1px solid #d5d4d3 !important;
  border-radius: 5px;
  height: 2.5em; }
  .select2 .select2-container--default .select2-selection__rendered,
  .select2 .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
    color: #000000; }
  .select2 .select2-container--default .select2-selection__arrow,
  .select2 .select2-selection--single .select2-selection__arrow {
    height: 36px; }
    .select2 .select2-container--default .select2-selection__arrow b,
    .select2 .select2-selection--single .select2-selection__arrow b {
      border-color: #000000 transparent transparent transparent !important; }

/* TEXTAREA */
textarea {
  min-height: 10em;
  max-height: 20em;
  background-color: #ffffff;
  border: 1px solid #d5d4d3;
  border-radius: 5px; }

/*****************************************/
/* VALIDATION */
input.error {
  border: 1px solid #d44748;
  background-color: #f6e8e8; }

input.input-validation-error {
  border: 1px solid #d44748;
  background-color: #f6e8e8; }

.error-message {
  display: flex;
  background-color: #f6e8e8;
  padding: 0.7em;
  border: 1px solid #d44748;
  border-radius: 5px;
  color: #d44748;
  margin-bottom: 0.5em;
  font-size: 0.9em; }
  .error-message .error-icon {
    width: 1.25em;
    height: 1.5em;
    margin-right: 0.5em;
    fill: #d44748; }

.success-message {
  margin-bottom: 2em !important; }

.field-validation-error,
.validation-summary-errors {
  display: flex;
  background-color: #f6e8e8;
  padding: 0.7em;
  border: 1px solid #d44748;
  border-radius: 5px;
  color: #d44748;
  margin-bottom: 0.5em;
  font-size: 0.9em; }
  .field-validation-error .error-icon,
  .validation-summary-errors .error-icon {
    width: 1.25em;
    height: 1.5em;
    margin-right: 0.5em;
    fill: #d44748; }

.validation-summary-errors ul {
  margin-bottom: 0; }

/* ERROR-MESSAGE FOR TIMEPICKER */
.error-timepicker-wrapper {
  width: 82%; }
  .error-timepicker-wrapper .error-time-input-group {
    width: 100%; }
    .error-timepicker-wrapper .error-time-input-group .field-validation-error {
      margin: 0 !important;
      padding: 0.25em 0.15em; }

/*****************************************/
/* TABLES */
table {
  width: 100%;
  font-size: 0.9em;
  /* THEAD */
  /* TBODY */ }
  table thead {
    background-color: #4b4b4b;
    color: #ffffff;
    border-bottom: 1px solid #ffffff; }
    table thead tr th {
      font-weight: normal !important;
      padding: 0.75em 0.5em;
      border-bottom: 1px solid #ffffff;
      border-right: 1px solid #ffffff;
      border-collapse: collapse; }
      table thead tr th.fixed-size {
        max-width: 8em;
        min-width: 8em;
        width: 8em; }
  table tbody tr:nth-child(odd) {
    background-color: #d5d4d3; }
  table tbody tr:nth-child(even) {
    background-color: #e4e4e4; }
  table tbody tr td {
    font-weight: normal !important;
    padding: 0.75em 0.5em;
    border-bottom: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    border-collapse: collapse; }
    table tbody tr td.action-bar button {
      background-color: transparent;
      min-width: auto;
      padding: 0; }
    table tbody tr td.fixed-size {
      max-width: 8em;
      min-width: 8em;
      width: 8em; }

/*****************************************/
/* PAGINATION */
.pagination-wrapper {
  display: flex;
  margin-top: 1em; }
  .pagination-wrapper nav {
    width: 100%; }
    .pagination-wrapper nav ul.pagination.control {
      justify-content: flex-end;
      align-items: center; }
      .pagination-wrapper nav ul.pagination.control li.page-item.prev {
        margin-left: 1em; }
        .pagination-wrapper nav ul.pagination.control li.page-item.prev .page-link {
          border-top-left-radius: 5px;
          border-bottom-left-radius: 5px; }
      .pagination-wrapper nav ul.pagination.control li.page-item.next .page-link {
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px; }
      .pagination-wrapper nav ul.pagination.control li.page-item .page-link {
        background-color: #b90305;
        color: #ffffff;
        -webkit-appearance: none;
        transition: background-color 0.4s;
        padding: 0.55em 1.1em;
        border: 1px solid #ffffff; }
        .pagination-wrapper nav ul.pagination.control li.page-item .page-link:hover {
          background-color: #8d0102;
          transition: background-color 0.4s; }
      .pagination-wrapper nav ul.pagination.control li.page-item.active .page-link {
        background-color: #8d0102;
        transition: background-color 0.4s;
        border: 1px solid #ffffff; }

/*****************************************/
/* AVAILABLE ACTIONS */
.available-actions {
  border-top: 1px solid #d5d4d3;
  padding-top: 1em;
  font-size: 0.9em; }
  .available-actions span.bold {
    margin-right: 2em; }
  .available-actions .action-description {
    margin-right: 2em; }

/*****************************************/
/* ACTIONS */
.edit-icon,
.delete-icon,
.lock-icon,
.lock-open-icon,
.password-icon,
.export-icon,
.download-icon {
  width: 1.5em;
  fill: #4b4b4b; }
  .edit-icon.disabled,
  .delete-icon.disabled,
  .lock-icon.disabled,
  .lock-open-icon.disabled,
  .password-icon.disabled,
  .export-icon.disabled,
  .download-icon.disabled {
    fill: #bababa; }

/*****************************************/
/* FOOTER */
.footer {
  text-align: center;
  margin-top: 2.5em;
  margin-bottom: 2.5em; }
  .footer .imprint {
    margin-bottom: 1.5em; }
  .footer .logo {
    width: 9em; }
  .footer .version {
    margin-top: 2.5em;
    font-size: 0.8em;
    color: #d5d4d3; }

section.imprint-section {
  margin-bottom: 2.5em; }
  section.imprint-section h2 {
    margin-bottom: 1em; }

/*****************************************/
/*****************************************/
button,
input {
  overflow: hidden; }

/*****************************************/
/*****************************************/
/*************************/
/*************************/
/*************************/
/* TABLET */
@media (max-width: 890px) {
  body {
    font-size: 0.8em; } }

/*****************************************/
/* MESSAGES */
.success-message {
  display: flex;
  background-color: #e8f6e9;
  padding: 0.7em;
  border: 1px solid #29b31d;
  border-radius: 5px;
  color: #29b31d;
  margin-bottom: 0.5em;
  font-size: 0.9em; }
  .success-message .error-icon {
    width: 1.25em;
    height: 1.5em;
    margin-right: 0.5em;
    fill: #29b31d; }

/*****************************************/
/* NO FORMATS, JUST FOR CLASSIFICATION */
.datumauswahl,
.uhrzeitauswahl,
.select-mit-suche,
.select-ohne-suche,
.enter-abfangen,
.enter-ziel {
  /* Kommentar notwendig f�r den scss-Compiler */ }
