@import url('jquery-ui.min.css');
@import url('bootstrap-icons.css');
@import url('datetimepicker.min.css');
@import url('fonts.css');
@import url('form.css');

:root {
  --bs-primary: #19d;
  --bs-secondary: #333;
}

html, body {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  background-color: #f0f0f0;
  color: var(--bs-secondary);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  color: var(--bs-primary);
  font-weight: 200;
  margin-bottom: 30px;
}
h2, h3, h4, h5, h6 {
  color: var(--bs-secondary);
}

p {
  margin: 15px 0;
}

a {
  color: var(--bs-primary);
  text-decoration: none;
  transition: all .25s;
}
a:hover {
  color: var(--bs-secondary);
  text-decoration: none;
}

small {
  display: block;
  font-size: 65%;
  font-weight: 300;
}

b,
strong,
.fw-bold {
  font-weight: 600;
}

hr {
  margin: 45px 0;
}

/* BUTTONS */
.btn {
  border-radius: 15px;
  border: none;
  transition: all .25s;
}
.btn:focus {
  box-shadow: none;
}

.btn-accord:hover {
  cursor: pointer;
}

.btn-sm {
  font-size: 14px;
  border-radius: 12.5px;
}

.btn-transparent {
  border: 1px solid var(--bs-secondary);
  padding: 5px 10px;
}
.btn-transparent:hover,
.btn-transparent:focus,
.btn-transparent.active {
  border-color: var(--bs-primary);
}
.btn-transparent:disabled {
  border: 1px solid var(--bs-secondary);
  padding: 5px 10px;
  opacity: 0.5;
}

.btn-primary {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
  background-color: #222222;
  color: var(--bs-white);
}
.btn-primary:disabled {
  background-color: var(--bs-primary);
  color: var(--bs-white);
  opacity: 0.5;
}

.btn-secondary {
  background-color: var(--bs-secondary);
  color: var(--bs-white);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.active {
  background-color: #222222;
  color: var(--bs-white);
}
.btn-secondary:disabled {
  background-color: var(--bs-secondary);
  color: var(--bs-white);
  opacity: 0.5;
}

/* BACKGROUND */
.bg-primary {
  background-color: var(--bs-primary) !important;
}

/* HEADER */
.header {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: var(--bs-white);
  box-shadow: 0 0 15px 0 rgba(33,33,33,0.25);
}
.header .nav a {
  text-align: center;
  text-transform: uppercase;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--bs-secondary);
  line-height: 1.25;
}
.header .nav a:hover,
.header .nav a:focus,
.header .nav a.active {
  color: var(--bs-primary);
}
.header .nav a i {
  display: block;
  font-size: 28px;
}
.header .header-logo {
  width: 100%;
  max-width: 320px;
}

/* MAIN */
.main {
  display: block;
  position: relative;
  padding: 60px 0;
}

/* FOOTER */
.footer {
  display: block;
  position: relative;
  padding: 30px 0;
  text-align: start;
  font-size: 14px;
  color: #999;
}

/* LIST */
.list-item {
  display: block;
  position: relative;
  padding: 10px 15px;
  background-color: var(--bs-white);
  margin-bottom: 10px;
  border-radius: 15px;
}
.list-id {
  display: inline-block;
  vertical-align: top;
  margin-right: 15px;
}
.list-id .badge {
  width: 60px;
}
.list-title {
  display: inline-block;
  vertical-align: top;
  font-weight: 600;
  width: calc(100% - 75px);
}
.list-title small {
  font-size: 13px;
  font-weight: 300;
}
.list-time {
  font-weight: 600;
  line-height: 1.25;
}
.list-content {
  padding: 15px 0 0 0;
  position: relative;
  display: none;
}
.list-content::before {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #ccc;
}
.list-content .list-item {
  border-bottom: 1px solid #ccc;
  padding: 10px 0 10px 10px;
  background-color: transparent;
  margin-bottom: 0;
  border-radius: 0;
}
.list-footer {
 padding: 10px 0 0 0; 
}

.list-item.disabled .badge,
.list-item.disabled .list-title {
  opacity: 0.25;
}

.list-item.disabled-all {
  position: relative;
}
.list-item.disabled-all::after {
  content: 'Wird erfasst...';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

/* LOGIN */
.login {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 320px;
}

/* TIMETRACK */
.timetrack {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 40px 0 0 0;
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 2000;
  box-shadow: 5px 5px 15px 0 rgba(0,0,0,0.25);
  background-color: var(--bs-primary);
  color: var(--bs-white);
  min-width: 420px;
  min-height: 240px;
  text-align: center;
  display: none;
}
.timetrack #timetrack-before {
  display: block;
}
.timetrack #timetrack-after {
  display: none;
}
.timetrack .timetrack-title {
  line-height: 1.2;
  font-size: 18px;
}
.timetrack .timetrack-time {
  margin: 5px 0;
  font-size: 48px;
  font-family: 'Verdana';
}

.timetrack .timetrack-control {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-height: 40px;
  background-color: #107bb1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 0 15px;
}
.timetrack .timetrack-control-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
}
.timetrack .timetrack-control-title .timetrack-time {
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  line-height: 1;
  font-weight: 300;
  padding: 5px 10px;
  background-color: var(--bs-primary);
  border-radius: 5px;
}
.timetrack .timetrack-control-items {
  display: flex;
  align-items: center;
}
.timetrack .timetrack-control-item {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-left: 15px;
  cursor: pointer;
}

.timetrack.timetrack-fullscreen {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 1500;
}
.timetrack.timetrack-fullscreen .timetrack-time {
  font-size: 90px;
}
.timetrack.timetrack-fullscreen .timetrack-title {
  font-size: 32px;
}
.timetrack.timetrack-minimize {
  min-width: 360px;
  position: fixed !important;
  bottom: 0 !important;
  right: 30px !important; 
  min-height: auto;
}
.timetrack.timetrack-minimize .timetrcker-content {
  display: none;
}

/* TOAST */
.toast {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1800;
}

/* MODAL */
.modal-content {
  border-radius: 15px;
}
.modal-header {
  border-radius: 15px 15px 0 0;
  border: none;
  padding: 30px 30px 15px 30px;
}
.modal-body {
  border-radius: 0 0 15px 15px;
  padding: 15px 30px 30px 30px;
}

/* PROGRESS */
.progress {
  height: 15px;
  border-radius: 15px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 12px;
  text-align: center;
  color: var(--white);
  background-color: var(--bs-secondary);
  font-weight: 600;
}
.progress-bar {
  transition: all .5s !important;
}









