* {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, Geneva, Verdana, sans-serif;
}

* .choresColor {
  background-color: #cd93d0;
}
* .choresColor:checked {
  background-color: #cd93d0 !important;
}
* .mindfulColor {
  background-color: #edd39d;
}
* .mindfulColor:checked {
  background-color: #edd39d !important;
}
* .learningColor {
  background-color: #8ecae6;
}
* .learningColor:checked {
  background-color: #8ecae6 !important;
}
* .exerciseColor {
  background-color: #afffb1;
}
* .exerciseColor:checked {
  background-color: #afffb1 !important;
}
* .essentialsColor {
  background-color: #d2d2d2;
}
* .essentialsColor:checked {
  background-color: #d2d2d2 !important;
}

section {
  flex-grow: 1;
  width: 45%;
  min-width: 22.5rem;
}

body {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding-inline: 15%;
  padding-block: 5%;
  display: flex;
  flex-direction: column;
}

main {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

input[type=checkbox] {
  min-width: 1.5rem;
  min-height: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
  margin-right: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #000;
  border-radius: 2rem;
  background-color: white;
}
input[type=checkbox]:checked {
  background-color: #000;
  border: 1px solid #000;
}

li {
  padding: 12px 16px;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e6e6e6;
  transition: all ease-in-out 0.1s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
li div {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.expand-downwards:hover {
  padding-bottom: 2rem;
  cursor: grab;
}

#task-list li {
  position: relative;
}
#task-list li:hover .appendTask {
  cursor: pointer;
  opacity: 100%;
}

.child-task {
  padding-left: 2rem;
  border-left: 1px solid #e6e6e6;
  margin-left: 1rem;
}

.child-list {
  padding-left: 2rem;
  border-left: 1px solid #e6e6e6;
  margin-left: 1rem;
}

.due {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  color: #6f6f6f;
  padding: 0.125rem 0.5rem;
  border-radius: 5rem;
  text-align: center;
  text-wrap: nowrap;
}

.dot {
  min-width: 0.5rem;
  min-height: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  aspect-ratio: 1/1;
  margin-right: 5%;
}

li:last-child {
  border-bottom: 0px solid #000;
}

label {
  margin-left: 8px;
}

.checked {
  text-decoration: line-through;
  color: #aaa;
}

.appendTask {
  background-color: white;
  padding: 0.125rem;
  border-radius: 100rem;
  border: 1px solid black;
  aspect-ratio: 1/1;
  height: auto;
  width: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  line-height: 0.325rem;
  opacity: 0%;
  transition: all 0.05s ease-in-out;
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
}

.button-standard {
  background-color: #f0f0f0;
  border: none;
  padding-inline: 2.5%;
  border-radius: 100rem;
  font-size: 16px;
  cursor: pointer;
}
.button-standard:hover {
  background-color: rgb(227.25, 227.25, 227.25);
}

#new-task-field {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
#new-task-field #new-task-input {
  flex-grow: 1;
  font-size: 16px;
  background-color: #f0f0f0;
  border: none;
  padding: 0.5rem;
  padding-inline: 2.5%;
  border-radius: 0.5rem;
}

.jiggly {
  animation: ios-wiggle 0.75s infinite ease-in-out;
}

.delete-icon {
  margin-left: 8px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.125s ease;
}
.delete-icon:hover {
  opacity: 1;
}

@keyframes ios-wiggle {
  0% {
    transform: rotate(-2deg) scale(0.98);
  }
  10% {
    transform: rotate(1.5deg) scale(1.02);
  }
  20% {
    transform: rotate(-1.5deg) scale(1.01);
  }
  30% {
    transform: rotate(2deg) scale(0.99);
  }
  40% {
    transform: rotate(-1deg) scale(1.01);
  }
  50% {
    transform: rotate(1.8deg) scale(1.02);
  }
  60% {
    transform: rotate(-2deg) scale(0.98);
  }
  70% {
    transform: rotate(1.2deg) scale(1.01);
  }
  80% {
    transform: rotate(-1.8deg) scale(1);
  }
  90% {
    transform: rotate(2deg) scale(1.02);
  }
  100% {
    transform: rotate(-2deg) scale(0.98);
  }
}
@media screen and (max-width: 768px) {
  body {
    padding-inline: 5%;
  }
  main {
    flex-direction: column;
    align-items: center;
  }
  section {
    width: 100%;
    min-width: unset;
  }
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #0e0e0e;
  }
  * {
    color: white;
  }
  input, button {
    background-color: #2f2f2f !important;
  }
  input[type=checkbox] {
    border: 1px solid #e0e0e0;
    background-color: #0e0e0e;
  }
  input[type=checkbox]:checked {
    background-color: #e0e0e0;
    border: 1px solid #000;
  }
  * .choresColor, * .mindfulColor, * .learningColor, * .exerciseColor, * .essentialsColor {
    filter: saturate(2) brightness(0.5) contrast(1.25);
  }
}/*# sourceMappingURL=style2.css.map */