@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes slide {
  from {
    opacity: 0;
    transform: translateX(0%);
  }
  2%, 98% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(-60%);
  }
}
body {
  margin: 0px;
  overflow: hidden;
  padding: 0px;
}
body input, body h1, body a, body p {
  color: #5a5a5a;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  margin: 0px;
  padding: 0px;
}

#app {
  background-color: #1e1e1e;
  height: 100vh;
  overflow: hidden;
  width: 100vw;
}
#app #selected-todo-category {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0px;
  pointer-events: none;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 2;
}
#app #selected-todo-category.visible #selected-todo-category-icon {
  animation: fadeIn 250ms ease-in;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0px);
}
#app #selected-todo-category #selected-todo-category-icon {
  align-items: center;
  background: linear-gradient(-45deg, #0a0a0a, #141414);
  border: none;
  border-radius: 200px;
  box-shadow: 0px 0px 10px 4px rgba(20, 20, 20, 0.5);
  cursor: pointer;
  display: flex;
  height: 100px;
  justify-content: center;
  opacity: 0;
  outline: none;
  position: relative;
  transform: translateY(10px);
  transition: opacity 250ms, transform 250ms;
  width: 100px;
  z-index: 2;
}
#app #selected-todo-category #selected-todo-category-icon i {
  color: white;
}
#app #selected-todo-category .selected-todo-category-transition-items {
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0px;
  width: 100%;
}
#app #selected-todo-category .selected-todo-category-transition-items .moveable-todo-item {
  pointer-events: all;
  position: absolute;
  transition: left 500ms, top 500ms;
}
#app #todo-list {
  display: flex;
  height: 100%;
  overflow: hidden;
  transition: opacity 500ms;
  width: 100%;
}
#app #todo-list.active {
  opacity: 0.5;
}
#app #todo-list #todo-list-track {
  animation: slide linear infinite;
  display: flex;
  height: 100%;
}
#app #todo-list #todo-list-track .todo-item-column {
  height: 100%;
  position: relative;
}
#app #todo-list #todo-list-track .todo-item-column .todo-item {
  left: 50%;
  transform: translateX(-50%);
}
#app #todo-list #todo-list-track .todo-item-column .todo-item.current {
  opacity: 0;
  pointer-events: none;
}
#app #todo-list #todo-list-track .todo-item-column .todo-item.previous {
  transition: opacity 0ms;
  transition-delay: 500ms;
}
#app .todo-item {
  background-color: #141414;
  border: none;
  border-radius: 200px;
  box-shadow: 0px 0px 10px 4px rgba(20, 20, 20, 0.5);
  cursor: pointer;
  height: 100px;
  outline: none;
  padding: 0px;
  position: absolute;
  transition: transform 250ms;
  width: 100px;
}
#app .todo-item:hover .todo-item-category-icon {
  backdrop-filter: blur(3px);
}
#app .todo-item:hover .todo-item-category-icon:after {
  border-color: rgba(255, 255, 255, 0.5);
}
#app .todo-item:hover .todo-item-category-icon i {
  transform: scale(1.1);
}
#app .todo-item:hover .todo-item-tooltip {
  opacity: 1;
  top: 65%;
}
#app .todo-item .todo-item-image {
  background-position: center;
  background-size: cover;
  border-radius: inherit;
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0px;
  width: 100%;
}
#app .todo-item .todo-item-category-icon {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: inherit;
  display: flex;
  height: 90%;
  justify-content: center;
  left: 0px;
  margin: 5%;
  position: absolute;
  top: 0px;
  transition: backdrop-filter 250ms;
  width: 90%;
}
#app .todo-item .todo-item-category-icon:after {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  content: "";
  height: calc(90% - 2px);
  left: 5%;
  position: absolute;
  top: 5%;
  transition: border-color 250ms;
  width: calc(90% - 2px);
}
#app .todo-item .todo-item-category-icon i {
  backface-visibility: hidden;
  color: white;
  transition: transform 250ms;
}
#app .todo-item .todo-item-tooltip {
  background-color: #141414;
  border-radius: 6px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  left: 50%;
  max-width: 140px;
  min-width: 90px;
  opacity: 0;
  padding: 8px 12px;
  pointer-events: none;
  position: absolute;
  top: 70%;
  transform: translateX(-50%);
  transition: opacity 250ms, top 250ms;
  z-index: 2;
}
#app .todo-item .todo-item-tooltip:after {
  background-color: #141414;
  border-radius: 2px;
  content: "";
  height: 10px;
  left: 50%;
  position: absolute;
  top: -5px;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
}
#app .todo-item .todo-item-tooltip p {
  color: white;
}

#youtube-link {
  align-items: center;
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  bottom: 10px;
  cursor: pointer;
  display: inline-flex;
  gap: 5px;
  left: 10px;
  padding: 10px 20px;
  position: absolute;
  text-decoration: none;
  z-index: 1;
}
#youtube-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
#youtube-link i, #youtube-link span {
  height: 20px;
  line-height: 20px;
}
#youtube-link i {
  color: #ef5350;
}
#youtube-link span {
  color: white;
  font-family: "Roboto Mono", monospace;
}