* {
  box-sizing: border-box;
  font-family: sans-serif;

  /* prevent selection */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

h1 {
  margin: 0;
  display: inline-block;
}

hr {
  display: none;
}

/* Remove margins and padding from the list */
ul {
  margin: 0;
  padding: 0;
}

/* Style the list items */
li {
  cursor: pointer;
  position: relative;
  background: #eee;
  transition: 0.2s;
  list-style-type: none;
}

/* Set all odd list items to a different color (zebra-stripes) */
li:nth-child(odd) {
  background: #f9f9f9;
}

/* Darker background-color on hover */
li:hover {
  background: #ddd;
}

/* When clicked on, add a background color and strike out text */
li.checked {
  background: #888;
  color: #fff;
  text-decoration: line-through;
}

/* Style the action button */
.action {
  position: absolute;
  left: 0;
  top: 0;
}

.action:hover {
  zoom: 110%;
}

/* Style the close button */
.close {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.close:hover {
  background-color: #f44336;
  color: white;
}

.removeStoreBtn {
  cursor: pointer;
  float: right;
}

.removeStoreBtn:hover {
 zoom: 110%;
}

.store {
  position: relative;
  break-inside: avoid;
  overflow: hidden;
}

@media (pointer:coarse) {
  * {
    font-size: 6vw;
  }
  h1 {
    font-size: 9vw;
  }

  li {
    padding: 0 12vw 0 12vw;
    border-top: 3vw solid transparent;
    border-bottom: 3vw solid transparent;
  }

  .store {
    border-top: 3vw solid transparent;
    border-bottom: 3vw solid transparent;
  }

  li.checked::before {
    border-width: 0 0.67vw 0.67vw 0;
    left: 4vw;
    width: 2vw;
    height: 50%;
  }

  .close {
    width: 8vw;
    padding-left: 2vw;
  }

  input {
    height: 10vw;
    padding: 2vw;
  }

  .addBtn {
    height: 10vw;
    padding: 1vw;
  }
}

/* For desktop: */
@media (pointer:fine) {
  #oLists {
    column-width: 300px;
  }
  * {
    font-size: 10pt;
  }
  h1 {
    font-size: 15pt;
  }

  li {
    padding: 0 30px 0 30px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
  }

  .store {
    border-top: 6pt solid transparent;
    border-bottom: 6pt solid transparent;
  }

  li.checked::before {
    border-width: 0 1px 1px 0;
    left: 10px;
    height: 10px;
    width: 5px;
  }

  .close {
    width: 20px;
    padding-left: 5px;
  }

  input {
    height: 26px;
    padding: 5px;
  }

  .addBtn {
    height: 26px;
    padding: 5px;
  }
}
