html, body {
  height: 100%;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
}

body {
  background-color: #000;
}

* {
  box-sizing: border-box;
}

.root {
  flex-direction: column;
  height: 100%;
  display: flex;
}

.timespin {
  flex-direction: row;
  display: flex;
}

@keyframes blink {
  0% {
    opacity: .2;
  }

  49% {
    opacity: .2;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.base {
  width: 100%;
  height: 100%;
  padding: 10px;
}

.base .timepanel {
  flex-flow: column wrap;
  gap: 10px;
  width: 100%;
  max-width: 1600px;
  margin: auto;
  padding: 5px;
  display: flex;
}

.base .timepanel .timer {
  white-space: nowrap;
  text-align: center;
  border: 1px solid #ffffff52;
  border-radius: 9px;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  margin: auto;
  padding: 0 5px;
  display: flex;
  overflow: auto;
}

.base .timepanel .timer:not(.add) {
  background-color: #fff;
  padding: 0 5px;
}

.base .timepanel .timer:not(.add) .name, .base .timepanel .timer:not(.add) .times {
  color: #000;
}

.base .timepanel .timer.add {
  background-color: #506500;
  max-width: 1200px;
  line-height: 3;
}

.base .timepanel .timer.add .name, .base .timepanel .timer.add .times {
  color: #fff;
}

.base .timepanel .timer .button {
  color: #00000026;
  display: flex;
}

.base .timepanel .timer .button > * {
  margin: auto;
}

.base .timepanel .timer .button:not(.nohover):hover {
  cursor: pointer;
  background-color: #0003;
}

.base .timepanel .timer .button:not(.nohover) {
  padding: 0 5px;
}

.base .timepanel .timer .button.blink {
  animation-name: blink;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.base .timepanel .timer .button.green {
  color: #0f0;
}

.base .timepanel .timer .button.cool {
  color: #000;
}

.base .timepanel .timer .button.blue {
  color: #0400ff;
}

.base .timepanel .timer .button.danger {
  color: red;
}

.base .timepanel .timer .name, .base .timepanel .timer .duration, .base .timepanel .timer .started, .base .timepanel .timer .totaltime {
  margin-top: auto;
  margin-bottom: auto;
}

.base .timepanel .timer .name {
  color: #000;
  text-align: left;
  flex: auto;
  margin-top: auto;
  margin-bottom: auto;
}

.base .timepanel .timer .duration {
  font-size: 1em;
  line-height: 3;
}

.base .timepanel .timer .started {
  font-size: 1em;
}

.base .timepanel .timer .totaltime {
  font-size: 1.3em;
  font-weight: 900;
}

.editable {
  white-space: nowrap;
  min-width: 20px;
  min-height: 16px;
  display: block;
}

.editable.displaying {
  -webkit-user-select: none;
  user-select: none;
  cursor: text;
}

.editable.editing {
  cursor: text;
  border: 1px solid #000;
}

.login {
  color: #fff;
  min-width: 600px;
  min-height: 400px;
  margin: auto;
}

.login .text {
  text-align: center;
  font-size: 2em;
}

.login .input {
  margin-top: 2em;
}

.login .input input {
  border: none;
  border-radius: 8px;
  width: 70%;
  margin: auto;
  padding: 5px 10px;
  font-size: 2em;
  display: block;
}

.login .actions {
  margin-top: 2em;
}

.login .actions button {
  cursor: pointer;
  width: 50%;
  margin: auto;
  padding: 5px 10px;
  font-size: 2em;
  display: block;
}

/*# sourceMappingURL=index.css.map */
