.clear {
  position: absolute;
  z-index: 10;
  width: 20px;
  left: 0;
  top: 0;
  bottom: 0;

  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  color: #ccc;
  font-family: cursive;
  font-size: 12px;

  &:hover {
    color: red;
    font-weight: bold;
    font-size: 14px;
  }
}

.checked {
  color: rgb(11, 130, 53);

  &:hover {
    color: red;
    font-weight: bold;
    font-size: 14px;
  }
}
