body {
  background-color: #F2F3F4;
}

button span {
  pointer-events: none;
}

.title-wrapper {
  text-align: center;
}

.form-wrapper {
  text-align: center;
  margin-top: 5em;
  margin-bottom: 3em;
}

.todo-input {
  width: 80%;
  border: 1px solid #ccc;
  border-top: none;
  border-left: none;
  border-right: none;
  box-sizing: border-box;
  font-size: x-large;
  margin-bottom: 2em;
  background-color: #F2F3F4;
}

.add-group-modal-input {
  width: 80%;
  border: 1px solid #ccc;
  border-top: none;
  border-left: none;
  border-right: none;
  box-sizing: border-box;
  font-size: x-large;
  margin-bottom: 1em;
  background-color: #F2F3F4;
}

.todo-input:focus {
  outline: none;
  border-bottom: 2px solid orange;
}

.input-btn {
  font-family: "Open Sans", sans-serif;
  font-weight: 100;
  border: none;
  border-radius: 50%;
  padding: 20px;
  margin: 4px 2px;
  box-shadow: none;
  color: #F2F3F4;
  background: linear-gradient(to right, #ff6a00, #ee0979);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-size: xx-large;
  background-size: 400% 400%;
  animation: ButtonBg 10s ease infinite;
  width: 2.5em;
}

.input-btn:disabled {
  color: #F2F3F4;
  background: #555;
}

.input-btn:active {
  transform: scale(0.98);
  box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
}

.list-group-wrapper {
  display: flex;
  justify-content: center;
}

.list-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.todo-group-btn,
.add-todo-group-btn {

  font-family: "Open Sans", sans-serif;
  letter-spacing: 2px;
  font-weight: 100;
  border: 1px solid #945cbc;
  border-bottom: none;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: #945cbc;
  background-color: #F2F3F4;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-size: medium;
  margin: 1px;
}

.todo-group-btn:active,
.add-todo-group-btn:active,
.modal-group-btn:active {
  transform: scale(0.98);
  box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
  color: #F2F3F4;
  background: #945cbc;
}

.todo-group-btn.selected {
  font-family: "Open Sans", sans-serif;
  letter-spacing: 2px;
  font-weight: 100;
  border: none;
  color: #F2F3F4;
  background: #945cbc;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-size: medium;
}

.modal-group-btn {
  font-family: "Open Sans", sans-serif;
  letter-spacing: 2px;
  font-weight: 100;
  border: 1px solid #945cbc;
  border-radius: 5px;
  color: #F2F3F4;
  background-color: #945cbc;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-size: medium;
  margin: 1px;
}

.modal-group-btn:active {
  transform: scale(0.98);
  box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
  color: #945cbc;
  background: #F2F3F4;
}

.modal-group-btn:disabled {
  color: #F2F3F4;
  background: #555;
}

ul {
  list-style-type: inside;
  margin-left: 0;
  padding-left: 0;
  width: 85%;
}

.todos-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 5em;
}

.list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: large;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 2px;
  margin-top: 1em;
}

.list-item-completed {
  text-decoration: line-through;
  transform: scale(0.98);
}

.todo-item-title {
  width: 70%;
  padding-left: 1rem;
  padding-right: 1rem;
}

.todo-item-checkbox {
  width: 30px;
  height: 30px;
  background-color: #F2F3F4;
  border-radius: 5px;
  border: 2px solid #555;
}

.todo-item-delete,
.clear-btn,
.delete-group {
  font-family: "Open Sans", sans-serif;
  letter-spacing: 2px;
  font-weight: 100;
  border: none;
  color: #e90a0a;
  background-color: #F2F3F4;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-size: medium;
  margin: 1px;
}

.todo-item-delete:active,
.clear-btn:active,
.delete-group:active,
.todo-item-delete:hover,
.clear-btn:hover,
.delete-group:hover {
  transform: scale(0.98);
  box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
  color: #F2F3F4;
  background-color: #e90a0a;
}

.footer-bar-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 1em;
}

.filter-option-all,
.filter-option-active,
.filter-option-completed,
.total-count,
.clear-btn {
  display: inline-block;
}

.filter-option-all,
.filter-option-active,
.filter-option-completed {
  font-family: "Open Sans", sans-serif;
  letter-spacing: 2px;
  font-weight: 100;
  border: none;
  color: #945cbc;
  background-color: #F2F3F4;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-size: medium;
  margin: 1px;
}

.filter-option-selected {
  font-family: "Open Sans", sans-serif;
  letter-spacing: 2px;
  font-weight: 100;
  border: none;
  color: #F2F3F4;
  background: #945cbc;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-size: medium;
}

.filter-option-all:active,
.filter-option-active:active,
.filter-option-completed:active,
.filter-option-all:hover,
.filter-option-active:hover,
.filter-option-completed:hover {
  transform: scale(0.98);
  box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
  color: #F2F3F4;
  background: #945cbc;
}

.footer-bar-left-wrapper,
.footer-bar-right-wrapper {
  display: inline-block;
}

.add-group-modal {
  display: none;
  position: fixed;
  padding-top: 15em;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.add-group-modal-content {
  background-color: #F2F3F4;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close-modal {
  color: #c0c0c0;
  float: right;
  font-size: 28px;
  font-weight: bold;
  border: none;
  background-color: #F2F3F4;
}

.close-modal:hover,
.close-modal:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}