/* Button */

._button_1e3hg_3 {
  border-color: transparent;
  color: white;
  background-color: #ff7a59;

  padding: 0.5rem 0;
  border: 1px solid;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  width: 60px;

  transition-property: background-color, color, opacity;
  transition-duration: 0.1s;
  transition-timing-function: linear;
}

._button_1e3hg_3:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

._button_1e3hg_3:hover:enabled {
  background-color: #ffcec2;
}

._button_1e3hg_3:active:enabled {
  background-color: #d44325;
}

._logo_1e3hg_37 {
  margin: auto;
  height: auto;
  width: 40vw;

  animation-name: _spin_1e3hg_1;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/* ToDo List */

._todoListContainer_1e3hg_50 {
  width: 25vw;
  min-width: 400px;
}

._todoList_1e3hg_50,
._todoContainer_1e3hg_56 {
  list-style: none;
}

._todoList_1e3hg_50 {
  margin: 0;
  padding: 0;
}

._todoContainer_1e3hg_56 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

._todo_1e3hg_50,
._notComplete_1e3hg_73 {
  margin: 0 10px 0 0;
  height: 3rem;
  line-height: 3rem;
  padding: 0 10px;
  display: flex;
  cursor: pointer;
  background: #eaf0f6;
  border: solid #b6c7d6 1px;
  box-shadow: 0px 1px 5px rgba(33, 51, 67, 0.12);
  border-radius: 3px;
  flex: 1;
}

._todo_1e3hg_50 input {
  margin-right: 10px;
}

._todo_1e3hg_50 ._todoDateAdded_1e3hg_91 {
  margin-left: auto;
  color: gray;
}

._todoContainer_1e3hg_56:hover > ._todoRemove_1e3hg_96,
._todoRemove_1e3hg_96:focus
{
  opacity: 100%;
}

._todoRemove_1e3hg_96 {
  /* Remove default button element styles */
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;

  transition: 0.1s opacity linear, 0.1s color linear;
  font-size: 2em;
  color: grey;
  opacity: 0%;
  cursor: pointer;
  top: 13%;
  position: relative;
  width: 60px;
  text-align: center;
}

._todo_1e3hg_50._complete_1e3hg_121 {
  opacity: var(--todo-complete-opacity);
  background-color: #dbe4ed;
  border-color: #b6c7d6;
}

._toDoForm_1e3hg_127 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

._todoInput_1e3hg_133 {
  padding: 8px 8px;
  border: 1px solid #b6c7d6;
  border-radius: 3px;
  outline: none;
  line-height: 1.5;
  flex: 1;
  margin-right: 10px;
}

._todoInput_1e3hg_133:focus {
  border-color: #0fbfbf;
}
