@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@500&display=swap");
* {
  margin: 0;
  box-sizing: border-box;
  outline: none;
  font-family: 'Ubuntu', sans-serif;
  cursor: context-menu; }

*:empty:before {
  content: attr(data-placeholder); }

body {
  opacity: 0;
  transition: 0.25s;
  box-sizing: border-box;
  font-size: 1em;
  animation: showUp 0.25s;
  animation-fill-mode: forwards;
  animation-delay: 1.5s; }

@keyframes showUp {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

input {
  border: 0px;
  background-color: transparent; }

textarea {
  border: 0px;
  height: 22px;
  background-color: transparent;
  resize: none;
  margin-left: 26px;
  word-wrap: break-word;
  cursor: pointer;
  user-select: none; }

input[type=checkbox] {
  cursor: pointer;
  transition: 0.25s;
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px; }

input[type=checkbox] + label:before {
  content: '';
  transition: .1s;
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 20px;
  background-size: cover; }

input[type=checkbox]:checked + * + textarea[readonly] {
  opacity: .5;
  cursor: context-menu; }

span {
  display: inline-block; }

div[data-title="close window"] {
  position: absolute;
  cursor: pointer;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: -8px;
  right: -8px; }

.null {
  z-index: 5;
  display: none;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  opacity: 1; }

.tolight {
  background-color: #f5f5f5;
  display: block;
  animation: toLightTheme 2s forwards; }

@keyframes toLightTheme {
  0% {
    background-color: #f5f5f5;
    opacity: 0; }
  25% {
    background-color: #f5f5f5;
    opacity: 1; }
  75% {
    opacity: 1;
    background-color: #212121; }
  100% {
    opacity: 0;
    background-color: #212121; } }

.todark {
  background-color: #212121;
  display: block;
  animation: toDarkTheme 2s forwards;
  opacity: 0; }

@keyframes toDarkTheme {
  0% {
    background-color: #212121;
    opacity: 0; }
  25% {
    background-color: #212121;
    opacity: 1; }
  75% {
    opacity: 1;
    background-color: #f5f5f5; }
  100% {
    opacity: 0;
    background-color: #f5f5f5; } }

.eraseBlock {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center; }

.topBar {
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  padding: 0 5px;
  position: fixed;
  width: 100%;
  top: 0px;
  background: white;
  transition: 0.25s; }
  .topBar_categories {
    position: relative;
    z-index: 2; }
    .topBar_categories:hover .topBar_categories_parent {
      display: block; }
    .topBar_categories_parent {
      display: none;
      position: absolute;
      top: 33px;
      left: -100px;
      width: 300px;
      height: auto;
      border-radius: calc(8px);
      padding: 0 5px; }
      .topBar_categories_parent_child {
        width: 100%;
        height: 42px;
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        position: relative;
        margin: 5px 0; }
        .topBar_categories_parent_child > div:nth-child(1) {
          width: 40px;
          height: 40px;
          border-radius: 50px;
          background-size: 20px;
          background-repeat: no-repeat;
          background-position: center; }
        .topBar_categories_parent_child:hover .topBar_categories_parent_child_remove {
          opacity: 1; }
        .topBar_categories_parent_child_label, .topBar_categories_parent_child_remove, .topBar_categories_parent_child_add, .topBar_categories_parent_child _color {
          cursor: pointer; }
        .topBar_categories_parent_child_chose + * {
          font-weight: bold; }
        .topBar_categories_parent_child_label {
          width: calc(100% - 42px * 2);
          white-space: nowrap;
          padding: 10px;
          overflow: hidden;
          user-select: none; }
        .topBar_categories_parent_child_remove {
          width: 40px;
          height: 40px;
          border-radius: 50px;
          background-size: 20px;
          background-repeat: no-repeat;
          background-position: center;
          opacity: 0; }
        .topBar_categories_parent_child_color {
          display: flex;
          align-items: center;
          position: absolute;
          top: 42px;
          height: 52px;
          z-index: 2;
          overflow-x: scroll;
          overflow-y: hidden;
          white-space: nowrap;
          width: 100%;
          position: absolute;
          padding: 5px; }
          .topBar_categories_parent_child_color > div {
            min-width: 32px;
            min-height: 32px;
            border-radius: 50%;
            margin: 0 2.5px; }
  .topBar .helpElement {
    display: none;
    position: absolute;
    width: 300px;
    height: 300px;
    top: 35px;
    right: 265px;
    animation: showUp 1s;
    animation-fill-mode: forwards;
    opacity: 0;
    z-index: 1; }

@keyframes showUp {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
    .topBar .helpElement div {
      width: 100%;
      height: 100%;
      background-size: 280px;
      background-repeat: no-repeat;
      background-position: top right; }
    .topBar .helpElement span {
      position: absolute;
      bottom: 0px; }

.topBar > div {
  margin: 5px 0;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer; }

.taskWrapper {
  z-index: 1;
  margin-top: 50px; }

.pinnedTasks {
  position: relative;
  transition: calc(0.25s * 2);
  padding: calc(5px * 2); }

.tasks {
  position: relative;
  transition: calc(0.25s * 3);
  padding: calc(5px * 2);
  top: -20px; }

.task {
  position: absolute;
  cursor: pointer;
  transition-property: transform, opacity, box-shadow, background-color, filter;
  transition-duration: 0.25s;
  padding: calc(5px * 2);
  padding-bottom: 40px;
  border-radius: 8px;
  min-height: 100px;
  width: 250px;
  opacity: 0;
  animation: showUpTask 0.25s;
  animation-fill-mode: forwards;
  animation-delay: 0.25s; }

@keyframes showUpTask {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
  .task_title {
    cursor: grab;
    display: flex;
    align-items: center;
    height: 2rem;
    font-size: 1.5em;
    white-space: nowrap;
    font-weight: 800;
    max-height: 2rem;
    margin: 0 2.25rem calc(1rem * .25) calc(1rem * .25);
    overflow: hidden;
    user-select: none; }
    .task_title_marquee {
      padding-left: 100%;
      animation: marquee 10s;
      animation-timing-function: linear;
      animation-iteration-count: infinite; }

@keyframes marquee {
  0% {
    transform: translate(0, 0); }
  95% {
    transform: translate(-101%, 0); }
  100% {
    transform: translate(-101%, 0); } }
    .task_title span {
      cursor: inherit; }
  .task_task {
    cursor: pointer;
    max-height: 240px;
    user-select: none;
    overflow-x: hidden; }
    .task_task div {
      position: relative;
      padding: 2px 0; }
    .task_task input[type=checkbox]:checked + * + textarea[readonly] + * {
      opacity: .5; }
    .task_task textarea {
      width: calc(100% - 30px); }
    .task_task .textareaAfter {
      display: inline-block;
      height: 22px; }
    .task_task .byListAddLine, .task_task .byListRemoveLine {
      display: none; }
  .task .overButtons {
    z-index: 2;
    display: none;
    position: absolute;
    width: calc(100% - 20px);
    height: 36px;
    padding: 4px 0;
    bottom: 4px;
    justify-content: space-between; }
  .task .overButtons > div {
    cursor: pointer;
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 16px;
    width: 32px;
    height: 32px; }
  .task .overButtons > div:nth-child(2) {
    position: relative; }
    .task .overButtons > div:nth-child(2):hover .gettingColor {
      position: absolute;
      display: grid;
      left: -34px; }
  .task:hover .taskDivCheckBox {
    opacity: 1; }
  .task:hover .taskDivPin {
    opacity: 1; }
  .task .taskDivCheckBox {
    opacity: 0;
    position: absolute;
    top: -9px;
    left: -9px; }
    .task .taskDivCheckBox input {
      cursor: pointer;
      transition: 0.25s;
      opacity: 0;
      position: absolute;
      top: 0;
      left: 0;
      width: 22px;
      height: 22px; }
    .task .taskDivCheckBox input[type=checkbox] + label:before {
      content: '';
      transition: .1s;
      display: block;
      background-color: rgba(255, 255, 255, 0.25);
      width: 22px;
      height: 22px;
      border-radius: 11px;
      background-size: cover; }
    .task .taskDivCheckBox input[type=checkbox]:checked + label:before {
      background-size: cover; }
  .task .taskDivPin {
    transition: 0.25s;
    opacity: 1;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 16px; }
    .task .taskDivPin input {
      cursor: pointer;
      transition: .1s;
      transition: 0.25s;
      opacity: 0;
      position: absolute;
      width: 36px;
      height: 36px;
      background-repeat: no-repeat;
      background-position: center; }
    .task .taskDivPin input[type=checkbox] + label:before {
      transition: .1s;
      content: '';
      display: block;
      width: 32px;
      height: 32px;
      background-repeat: no-repeat;
      background-position: center;
      background-size: 24px; }
    .task .taskDivPin input[type=checkbox]:checked + label:before {
      background-repeat: no-repeat;
      background-position: center;
      background-size: 24px; }

.doneTask {
  opacity: .25 !important;
  cursor: context-menu; }
  .doneTask .taskDivCheckBox {
    opacity: 1; }

.wrapper {
  overflow: auto;
  z-index: 1;
  display: none;
  position: fixed;
  z-index: 6;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  transition: 0.25s;
  top: 0px; }
  .wrapper > * {
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    display: none;
    transition: 0.25s;
    opacity: 0;
    background: white;
    border-radius: 8px;
    animation: popUpTask 0.25s forwards; }

@keyframes popUpTask {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
  .wrapper_description {
    text-align: center;
    position: relative;
    user-select: none;
    width: 100%;
    min-width: 530px;
    height: 2rem;
    font-size: 1.5em;
    margin-bottom: 1.5rem; }
  .wrapper_intr {
    flex-direction: column;
    user-select: none;
    width: 95vw;
    max-width: 950px;
    padding: 20px;
    overflow: auto; }
  .wrapper_info {
    height: fit-content;
    text-align: center;
    font-size: 1.25em; }
    .wrapper_info_table {
      display: flex;
      min-width: 530px;
      flex-direction: column;
      width: 100%; }
      .wrapper_info_table span {
        padding: .25rem 1rem;
        min-width: 1.25rem;
        min-height: 1.25rem;
        border-radius: 8px;
        font-size: 1em;
        font-weight: 400; }
      .wrapper_info_table_cap {
        display: flex;
        justify-content: center;
        align-items: center; }
      .wrapper_info_table_cap > div {
        padding: 5px; }
      .wrapper_info_table_cap > div:first-child {
        width: 45%; }
      .wrapper_info_table_cap > div:last-child {
        width: 55%; }
  .wrapper_trash {
    height: 66vh; }
    .wrapper_trash div[data-title="empty trash"] {
      position: absolute;
      cursor: pointer;
      background-size: 20px;
      background-repeat: no-repeat;
      background-position: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      top: -8px;
      right: 32px; }
    .wrapper_trash_tasks {
      position: relative;
      min-width: 530px; }
      .wrapper_trash_tasks_task {
        overflow: hidden;
        transition: 0.25s;
        position: absolute;
        display: flex;
        align-items: center;
        max-height: 42px;
        width: 100%;
        cursor: pointer;
        transition-duration: 0.25s;
        padding: 5px;
        border-radius: 8px; }
        .wrapper_trash_tasks_task > div {
          max-height: 32px;
          white-space: nowrap; }
        .wrapper_trash_tasks_task_task {
          width: calc(100% - 3 * 32px - 10px);
          font-size: 1.25em;
          margin: 0 10px;
          white-space: nowrap;
          overflow: hidden;
          user-select: none;
          cursor: pointer;
          overflow-x: auto; }
        .wrapper_trash_tasks_task:hover .wrapper_trash_tasks_task_getBack, .wrapper_trash_tasks_task:hover .wrapper_trash_tasks_task_removeItem {
          opacity: 1; }
          .wrapper_trash_tasks_task:hover .wrapper_trash_tasks_task_getBack span, .wrapper_trash_tasks_task:hover .wrapper_trash_tasks_task_removeItem span {
            animation-duration: 25s; }
        .wrapper_trash_tasks_task_getBack, .wrapper_trash_tasks_task_removeItem, .wrapper_trash_tasks_task_pin {
          min-width: 2rem;
          height: 2rem;
          opacity: 0;
          top: 5px;
          cursor: pointer;
          background-size: 16px;
          background-repeat: no-repeat;
          background-position: center;
          border-radius: 20px; }
        .wrapper_trash_tasks_task_pin {
          opacity: 1; }
  .wrapper_task {
    width: 650px;
    overflow-x: auto;
    height: fit-content;
    min-height: 500px;
    margin: 0px 5px;
    padding: 20px 20px 50px; }
    .wrapper_task_title {
      background: transparent;
      transition: 0.25s;
      padding-left: calc(5px * 2);
      font-weight: 800;
      font-size: 1.5em;
      width: 100%;
      min-width: 355px;
      margin-bottom: calc(5px * 2);
      user-select: none; }
    .wrapper_task_title[type="text"] {
      margin-left: 0px;
      width: 100%; }
    .wrapper_task_task {
      cursor: pointer;
      padding-left: 5px;
      user-select: none;
      font-size: 1.1em;
      max-height: 70vh;
      overflow-y: auto;
      min-width: 355px; }
      .wrapper_task_task > div {
        padding: 2px;
        position: relative; }
        .wrapper_task_task > div:hover .byListAddLine, .wrapper_task_task > div:hover .byListRemoveLine {
          display: inline-block; }
      .wrapper_task_task textarea {
        width: calc(100% - 26px * 3 - 10px);
        overflow: hidden; }
      .wrapper_task_task .byListAddLine, .wrapper_task_task .byListRemoveLine {
        display: none;
        position: absolute;
        width: 26px;
        height: 26px;
        border-radius: 13px;
        right: 32px;
        cursor: pointer;
        background-size: 20px;
        background-repeat: no-repeat;
        background-position: center; }
      .wrapper_task_task .byListRemoveLine {
        right: 6px; }
    .wrapper_task_menu {
      position: absolute;
      margin: 5px 0;
      bottom: 0px;
      display: flex;
      justify-content: space-between;
      width: calc(100% - 40px); }
      .wrapper_task_menu_options {
        display: flex;
        justify-content: space-between; }
      .wrapper_task_menu_options > div {
        cursor: pointer;
        background-size: 20px;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 20px;
        min-width: 40px;
        height: 40px; }
      .wrapper_task_menu_options > div[data-title="to chose category"] {
        position: relative; }
      .wrapper_task_menu_options > div[data-title="apply color"] {
        position: relative; }
        .wrapper_task_menu_options > div[data-title="apply color"]:hover .gettingColor {
          position: absolute;
          display: grid;
          left: -30px; }
      .wrapper_task_menu .categories {
        position: relative; }
        .wrapper_task_menu .categories:hover .categories_parent {
          display: block; }
        .wrapper_task_menu .categories_parent {
          display: none;
          position: absolute;
          bottom: 35px;
          left: -55px;
          width: 150px;
          height: auto;
          border-radius: calc(8px);
          width: auto;
          min-width: 150px;
          max-width: 250px; }
          .wrapper_task_menu .categories_parent_child {
            width: 100%;
            height: 30px;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            position: relative;
            padding: 5px;
            margin: 5px;
            width: auto; }
            .wrapper_task_menu .categories_parent_child > div:nth-child(1) {
              width: 24px;
              height: 24px;
              border-radius: 50px;
              background-size: 20px;
              background-repeat: no-repeat;
              background-position: center; }
            .wrapper_task_menu .categories_parent_child_label, .wrapper_task_menu .categories_parent_child_remove {
              cursor: pointer; }
            .wrapper_task_menu .categories_parent_child_chose + * {
              font-weight: bold; }
            .wrapper_task_menu .categories_parent_child_label {
              width: calc(100% - 24px);
              white-space: nowrap;
              padding: 0 5px;
              overflow: hidden; }
      .wrapper_task_menu .getColorWrapper {
        position: relative; }
        .wrapper_task_menu .getColorWrapper:hover .gettingColor {
          display: grid;
          left: -29px; }
      .wrapper_task_menu_date {
        user-select: none;
        padding: 12px; }
      .wrapper_task_menu_date:before {
        content: '';
        position: absolute;
        top: 0;
        margin-left: -40px;
        background-size: 20px;
        background-repeat: no-repeat;
        background-position: center;
        width: 40px;
        height: 40px; }

.gettingColor {
  width: 100px;
  height: 100px;
  top: -95px;
  display: none;
  grid-gap: 5px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  position: absolute;
  z-index: 7;
  border-radius: 8px;
  padding: 5px; }
  .gettingColor div {
    border-radius: 50%;
    cursor: pointer; }

.popUpNotify {
  text-align: center;
  cursor: context-menu;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
  z-index: 6;
  opacity: 0;
  width: auto;
  padding: .5rem 1rem;
  font-size: 1em;
  bottom: 50px;
  margin: 0 auto;
  position: fixed;
  left: 50%;
  transform: translate(-50%, 0);
  animation: showUpMessage 3s; }

@keyframes showUpMessage {
  0% {
    opacity: 0; }
  10% {
    opacity: 1; }
  90% {
    opacity: 1; }
  100 {
    opacity: 0; } }

.dragStartHideTask {
  display: none; }

@media (max-width: 620px) {
  body {
    font-size: .75em; }
  .popUpNotify {
    font-size: .9em;
    width: auto; }
  .wrapper_task_menu_options {
    width: 100%; }
  .wrapper_task_menu_date {
    display: none; }
  .topBar .helpElement {
    width: 125px;
    height: 125px;
    right: 270px; }
  .topBar .helpElement div {
    background-size: 100px; } }

::-webkit-scrollbar {
  cursor: pointer;
  width: 8px;
  height: 8px;
  border-radius: 3px 0px 0px 3px; }

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 3px; }

::-webkit-scrollbar-thumb {
  border-radius: 3px; }
