footer {
   background: gray;
}

footer a {
   color: white;
}
a {
   color: inherit;
}
body{
   background: gray;
  display: flex;
  flex-direction: column;
  height: 100vh; /* Avoid the IE 10-11 `min-height` bug. */
}
.page-header,
.page-footer {
  flex-shrink: 0; /* Prevent Chrome, Opera, and Safari from letting these items shrink to smaller than their content's default minimum size. */
}
.content {
   margin-top: 1rem;
   margin-bottom: 1rem;
  flex: 1 0 auto; /* Prevent Chrome, Opera, and Safari from letting these items shrink to smaller than their content's default minimum size. */
}

.list {
   margin: 0 auto;
}

.listItem-count {
   display: inline-block;
   text-decoration: inherit;
   margin-bottom: 0rem;
}

.listItem-name, .listName, .listDate {
   display: inline-block;
   text-decoration: inherit;
   margin-bottom: 0rem;
}

.checked {
   color: gray;
   text-decoration-style: double;
   text-decoration: line-through;

}
.list-name {
   display: inline;
}
.list-owner {
   display: inline;
   font-size: 12px;
}
.list-clearButton {
   float: right;
   margin: 0rem;
   margin-right: 10px;
}

.hidden {
   display: none;
}

.float-right {
   float: right;
}

.lh-0 {
   line-height: 0;
}

.indent {
   margin-left: 1rem;
}

.radio-buttons {
   display: inline-block;
}
.container {
  display: inline;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 50%;
}

.container:hover input ~ .checkmark {
   border-width: medium;
   border-style: solid;
   border-color: #555;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark {
  border-width: .4rem;
  border-style: solid;
  border-color: black;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
  top: 8px;
  left: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
