@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: local("Material Icons"), local("MaterialIcons-Regular"), url(../materialize/font/MaterialIcons-Regular.woff2) format("woff2"), url(../materialize/font/MaterialIcons-Regular.woff2) format("woff"), url(../materialize/font/MaterialIcons-Regular.woff2) format("truetype");
}
:root {
  --dunkelgrau: #f2f2f2;
  --dunkelgrau_wenig_heller: #d6d6d6;
  --dunkelgrau_heller: #fcfcfc;
  --mittelgrau_heller: #b0b0b0;
  --hell: #333333;
  --overlay_dark: #fcfcfc;
  --red_dark: rgba(161, 0, 27, 0.3);
  --error: #8c4a4a;
  --success: #8cd1a4;
  --warning: #b89221;
  --blue: #8de0f2;
  --mittelgrau: #5e5e5e;
  --timerborder: var(--dunkelgrau_heller);
  --switch_red: var(--dunkelgrau);
  --switch_green: #6bd18f;
  --switch_grey: var(--mittelgrau_heller);
  --dropdown_bg: var(--dunkelgrau_heller);
  --gradient: linear-gradient(90deg, rgba(237, 237, 237, 0.05), rgba(45, 223, 255, 0.1), rgba(237, 237, 237, 0.05));
}

[data-theme=light] {
  --dunkelgrau: #f2f2f2;
  --dunkelgrau_wenig_heller: #d6d6d6;
  --dunkelgrau_heller: #fcfcfc;
  --mittelgrau_heller: #b0b0b0;
  --hell: #333333;
  --overlay_dark: #fcfcfc;
  --red_dark: rgba(161, 0, 27, 0.3);
  --error: #8c4a4a;
  --success: #8cd1a4;
  --warning: #f0c02f;
  --blue: #8de0f2;
  --mittelgrau: #5e5e5e;
  --timerborder: var(--dunkelgrau_heller);
  --switch_red: var(--dunkelgrau);
  --switch_green: #6bd18f;
  --switch_grey: var(--mittelgrau_heller);
  --dropdown_bg: var(--dunkelgrau_heller);
}

[data-theme=dark] {
  --dunkelgrau: rgb(36, 36, 36);
  --dunkelgrau_wenig_heller: rgb(43, 43, 43);
  --dunkelgrau_heller: rgb(51, 51, 51);
  --mittelgrau: rgb(77, 77, 77);
  --mittelgrau_heller: rgb(100, 100, 100);
  --hell: rgb(198, 198, 198);
  --overlay_dark: rgba(51, 51, 51, 0.9);
  --red_dark: rgba(161, 0, 27, 0.3);
  --error: #8c4a4a;
  --success: #277f56;
  --blue: #234c7a;
  --timerborder: var(--dunkelgrau_wenig_heller);
  --switch_red: #8c4a4a;
  --switch_green: #1b4c47;
  --switch_grey: var(--dunkelgrau);
  --dropdown_bg: var(--mittelgrau);
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  vertical-align: sub;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}

@-webkit-keyframes bg-animation {
  0% {
    background-position: left;
  }
  50% {
    background-position: right;
  }
  100% {
    background-position: left;
  }
}

@keyframes bg-animation {
  0% {
    background-position: left;
  }
  50% {
    background-position: right;
  }
  100% {
    background-position: left;
  }
}
@-webkit-keyframes grad1-animation {
  0% {
    background-position: right;
  }
  100% {
    background-position: left;
  }
}
@keyframes grad1-animation {
  0% {
    background-position: right;
  }
  100% {
    background-position: left;
  }
}
.logo {
  max-height: 40px;
  margin-top: 1rem;
}

.dropdown-content li {
  color: var(--hell);
}

input[type=range] {
  border: unset;
}

.select-wrapper .caret {
  fill: var(--mittelgrau);
}

.news {
  /* animation: bg-animation 25s infinite; */
  background-size: 400%;
  background-image: var(--gradient);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  padding: 10px;
  transition: box-shadow 0.2s ease-in-out;
}

.news:hover {
  box-shadow: 0 0 10px 6px rgba(255, 0, 255, 0.178);
  /* 0 0 14px 9px #0ff; */
}

i.news {
  opacity: 0.85;
}

.grad1 {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(137, 255, 253, 0.7), rgba(0, 0, 0, 0));
  -webkit-animation: grad1-animation 1.5s;
          animation: grad1-animation 1.5s;
  background-size: 400%;
  color: var(--hell);
  /* text-shadow: 2px 2px 4px #000000; */
}

label {
  font-size: 0.8rem;
  color: var(--hell);
}

.icons24 {
  font-size: 24px;
}

.sidenav-close {
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}

.sidenav-close:hover {
  opacity: 0.8;
}

.red_dark {
  background-color: var(--red_dark) !important;
}

.material-tooltip {
  background-color: #ffc107;
  color: var(--dunkelgrau);
}

a {
  color: var(--hell);
}

footer a,
footer {
  color: var(--mittelgrau);
}

.timer_name {
  word-break: break-all;
}

.timer-options {
  font-size: initial;
  vertical-align: sub;
  color: var(--mittelgrau);
  cursor: pointer;
}

.timer-options:hover {
  color: var(--mittelgrau_heller);
}

.day-options {
  font-size: initial;
  vertical-align: sub;
  color: var(--mittelgrau_heller);
  cursor: pointer;
}

.day-options:hover {
  color: var(--mittelgrau);
}

#add_category:hover {
  color: var(--mittelgrau_heller);
  cursor: pointer;
}

.delete_category {
  color: #b71c1c;
}

.delete_tag {
  color: #b71c1c;
}

.delete_category, .edit-categories-color, .edit-categories, .delete_tag, .edit-tags-color, .edit-tags {
  font-size: 1.2em;
  cursor: pointer;
}
.delete_category:hover, .edit-categories-color:hover, .edit-categories:hover, .delete_tag:hover, .edit-tags-color:hover, .edit-tags:hover {
  opacity: 0.8;
}

.switch label .lever {
  margin-left: 0;
  margin-right: 2px;
  background-color: var(--switch_grey);
}

.switch > label {
  margin-right: 10px;
}

body {
  background-color: var(--dunkelgrau);
  color: var(--hell);
}

.card,
.modal,
.modal .modal-footer {
  background-color: var(--dunkelgrau_heller);
}

.card {
  /* max-width: 500px; */
  margin: auto;
  margin-top: 10px;
  transition: background-image 0.2s;
  -webkit-animation: grad1-animation 1s;
          animation: grad1-animation 1s;
  background-size: 1000%;
  background-image: linear-gradient(270deg, rgba(237, 237, 237, 0) 0%, rgba(45, 223, 255, 0.3) 35%, rgba(237, 237, 237, 0) 70%, rgba(237, 237, 237, 0) 100%);
}

.card-warp {
  padding: 4px 0 !important;
}

.modal-content .collection,
.modal-content .collection-item {
  background-color: var(--dunkelgrau);
}

ul.timers.collection,
ul.timers .collection-item {
  /* background-color: var(--dunkelgrau_wenig_heller); */
  border: 1px solid var(--timerborder);
  transition: background-image 0.2s;
  cursor: default;
  -webkit-animation: grad1-animation 1s;
          animation: grad1-animation 1s;
  background-size: 1000%;
  background-image: linear-gradient(270deg, rgba(237, 237, 237, 0) 0%, rgba(45, 223, 255, 0.3) 35%, rgba(237, 237, 237, 0) 70%, rgba(237, 237, 237, 0) 100%);
}

.collection,
.collection .collection-item {
  border: 1px solid var(--timerborder);
  border-bottom: 1px solid var(--timerborder);
}

/* ul.timers .collection-item:hover {

  box-shadow:

      inset 0 0 3px 1px rgba(160, 160, 160, 0.1); 

} */
.switch label input[type=checkbox]:checked + .lever::after {
  background-color: var(--switch_green);
}

.switch label .lever::after {
  background-color: var(--switch_red);
}

.switch label input[type=checkbox]:checked + .lever {
  background-color: var(--success);
}

.input-field input,
.input-field span.helper-text {
  color: var(--hell);
}

div.input-field.filter {
  margin-top: 0;
  margin-bottom: 0;
}

/* .input-field.filter:after {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  content: "\e5cf";
  position: absolute;
  font-size: 1.75em;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
} */
.input-field.filter {
  position: relative;
}

#filter-expand {
  cursor: pointer;
  position: absolute;
  font-size: 1.75em;
  top: 50%;
  right: 0;
  transform: rotate3d(1, 0, 0, 0deg) translateY(-50%) scale(1, 1);
  opacity: 0.5;
  transition: transform 0.3s;
}

#filter-expand:hover {
  opacity: 1;
}

/* #filter-options {
  min-height: 100px;
} */
.buttons-filter-options {
  cursor: pointer;
  opacity: 0.5;
  margin: 1px 1px;
  padding: 0.5em 0.5em;
  transition: opacity 0.2s ease-in-out;
  font-size: 0.85rem;
  line-height: 1;
  height: initial;
}

#filter-options .input-field > #filter-text-text-input + label {
  left: 0;
}

#filter-text {
  width: calc(100% - 30px);
}

.buttons-filter-options:hover {
  opacity: 0.8;
}

a.buttons-filter-options {
  cursor: pointer;
  opacity: 0.5;
  margin: 1px 1px;
  padding: 0;
  transition: opacity 0.2s ease-in-out;
  font-size: 0.85rem;
  line-height: 1;
  height: initial;
}

a.buttons-filter-options:hover {
  opacity: 0.8;
}

.gesamtzeit_tag_kategorie {
  padding: 8px 1em;
  border-radius: 2px;
  text-align: center;
}

.tagkategoriezeit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  -moz-column-gap: 1em;
       column-gap: 1em;
  row-gap: 1em;
}

.w-100 {
  width: 100%;
}

.timer_bearbeiten,
.day_bearbeiten,
.feld_bearbeiten {
  color: var(--hell) !important;
}

.modal:not(.datepicker-modal) {
  max-width: 475px;
}

.modal {
  width: unset;
}

#modal1,
#modal_day_options {
  min-height: 500px;
}

.datepicker-date-display {
  background-color: var(--mittelgrau);
}

.select-dropdown {
  color: var(--hell);
}

.dropdown-content {
  background-color: var(--dropdown_bg);
}

.background {
  background-color: var(--dunkelgrau_heller);
  background-image: url("../images/office.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
}

header .divider {
  background-color: var(--dunkelgrau);
}

.sidenav {
  background-color: var(--dunkelgrau_heller);
  color: var(--hell);
}

.sidenav li > a,
.sidenav li > a > i.material-icons {
  color: var(--hell);
  transition: background-color 0.2s ease-in-out;
}

.sidenav li > a:hover {
  background-color: var(--dunkelgrau);
}

.sidenav .subheader {
  color: var(--mittelgrau_heller);
}

.sidenav .user-view {
  padding: 32px;
}

.sidenav form,
#area-logged-in {
  background-color: var(--overlay_dark);
  padding: 15px;
}

.sidenav-trigger > i {
  padding: 10px;
  /* margin: 16px; */
  background-color: var(--dunkelgrau_heller);
  color: var(--hell);
  border-radius: 0 0 2px 2px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease-in-out;
}

.sidenav-trigger > i:hover {
  background-color: var(--dunkelgrau);
}

.sidenav-close > i {
  padding: 10px;
  background-color: var(--dunkelgrau_heller);
  color: var(--hell);
  border-radius: 0 0 2px 2px;
  top: -5px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.sidenav li > a > i.material-icons {
  margin: 0;
}

/* SIDENAV FIXED */
/* header,
main,
footer {
  padding-left: 300px;
} */
.sidenav-display {
  display: none;
}

@media only screen and (max-width: 992px) {
  header,
main,
footer {
    padding-left: 0;
  }
  .sidenav-display {
    display: inline-block;
  }
}
/* SIDENAV FIXED ENDE */
.buttons {
  opacity: 0.5;
  margin: 5px 5px;
  transition: opacity 0.2s ease-in-out;
}

.buttons:hover {
  opacity: 0.8;
}

.textlink:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: inherit;
          text-decoration-color: inherit;
}

.textlink {
  transition: -webkit-text-decoration 0.2s ease-in-out;
  transition: text-decoration 0.2s ease-in-out;
  transition: text-decoration 0.2s ease-in-out, -webkit-text-decoration 0.2s ease-in-out;
}

.gesamtzeit {
  text-align: center;
  font-size: 1.5em;
  margin: 5px 0;
}

.switchcol {
  min-width: 47px;
}

.timer_zeit {
  display: block;
  min-width: 52px;
}

.dropdown-content li {
  background-color: var(--dunkelgrau_heller);
}

.dropdown_area_text > p {
  font-size: 16px;
  display: block;
  line-height: 22px;
  padding: 14px 8px;
}

.dropdown_area_text :hover {
  background-color: var(--dunkelgrau_heller);
  cursor: default;
}

.dropdown-content li:hover,
.dropdown-content li.active {
  background-color: var(--dunkelgrau);
}

.toast {
  background-color: var(--dunkelgrau);
  color: var(--hell);
}

.toast-success {
  background-color: var(--success);
}

.toast-error {
  background-color: var(--error);
}

.toast-warning {
  background-color: var(--warning);
}

.menurow {
  margin-bottom: 0;
  margin-top: 10px;
}

.menurow .col {
  padding: 0;
}

.modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5em;
  text-transform: uppercase;
  margin-top: 2em;
}

.modal-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5em;
  text-transform: uppercase;
  margin-top: 1em;
}

.modal-content h3:first-child {
  margin-top: 0;
}

.big-modal {
  width: 100%;
  height: 100%;
}

.settings-description {
  font-style: italic;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

table.striped > tbody > tr:nth-child(2n+1) {
  background-color: rgba(3, 3, 3, 0.05);
}

td {
  border: 1px solid var(--dunkelgrau);
}

td.table-zwischenheading {
  font-size: 1.25em;
  font-weight: bold;
}

td.table-sum {
  font-size: 1.1em;
  font-weight: bold;
}

.categories-list {
  padding: 0.5em;
  border-radius: 0.5em;
}

.tags-list {
  padding: 0.5em;
  border-radius: 0.5em;
}

table tr td:nth-child(2) {
  white-space: nowrap;
}

.catp {
  padding: 5px;
  border-radius: 3px;
  margin: 5px;
}

.tagp {
  padding: 5px;
  border-radius: 3px;
  margin: 5px;
}

#fileuploadbutton {
  height: 36px;
  line-height: 36px;
}

/* a.not-yet-functional {
  cursor: url('../images/construction.webp'), auto;
} */
.not-yet-functional:after {
  content: "";
  background-image: url("../images/construction.webp");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  margin-left: 0.5em;
}

.mr-1 {
  margin-right: 1em;
}

.ml-1 {
  margin-left: 1em;
}

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

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.material-tooltip {
  z-index: 1004;
}

.modal {
  z-index: 1003;
}

#modal_day_analytics {
  z-index: 1005;
}

#filter-results {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100vh;
  background-color: var(--dunkelgrau);
  padding: 0;
  margin: 0;
  z-index: 1000;
}
#filter-results table td {
  padding: 0.25em;
}

#close-filter-results {
  position: fixed;
  right: 1rem;
  top: 1rem;
  font-size: 3rem;
  color: var(--hell);
  cursor: pointer;
}

#close-filter-results:hover {
  opacity: 0.6;
}

#print-filter-results {
  position: fixed;
  right: 1rem;
  top: 5rem;
  font-size: 3rem;
  color: var(--hell);
  cursor: pointer;
}

#print-filter-results:hover {
  opacity: 0.6;
}

/* Sortable */
/* .sortable-ghost {
  background-color: var(--mittelgrau_heller) !important;
} */
.sortable-chosen {
  background-color: var(--blue) !important;
}

.sortable-chosen-day .card {
  background-color: var(--blue) !important;
}

/* .sortable-drag {

} */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Scrollbar Style */
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--dunkelgrau_heller);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--dunkelgrau_wenig_heller);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--dunkelgrau_heller);
}

@media print {
  [data-theme=dark],
[data-theme=light] {
    --dunkelgrau: #fff;
    --dunkelgrau_wenig_heller: #d6d6d6;
    --dunkelgrau_heller: #fcfcfc;
    --mittelgrau_heller: #b0b0b0;
    --hell: #333333;
    --overlay_dark: #fcfcfc;
    --red_dark: rgba(161, 0, 27, 0.3);
    --error: #8c4a4a;
    --success: #8cd1a4;
    --warning: #f0c02f;
    --blue: #8de0f2;
    --mittelgrau: #5e5e5e;
    --timerborder: var(--dunkelgrau_heller);
    --switch_red: var(--dunkelgrau);
    --switch_green: #6bd18f;
    --switch_grey: var(--mittelgrau_heller);
    --dropdown_bg: var(--dunkelgrau_heller);
  }
  .no-print,
.no-print * {
    display: none !important;
  }
  #filter-results table * {
    border: none;
    font-size: 10px;
  }
  #filter-results table tr.subtotal {
    font-weight: bold;
  }
  #filter-results table tr td {
    padding: 0.15em;
  }
  #filter-results table tr td.table-zwischenheading {
    font-size: 1.1em;
    font-weight: bold;
    padding-top: 0.25em;
  }
  #filter-results table tr td:nth-child(2) {
    white-space: nowrap;
  }
}
/*# sourceMappingURL=style.css.map */