body {
	overscroll-behavior-y: auto;
}

table.strike-able {
    border-collapse: collapse;
}

table.strike-able tr td {
    position: relative;
    padding: 3px 2px;
}

table.strike-able tr th {
    position: relative;
    padding: 3px 2px;
}

table.strike-able tr.strikeout td.strike-able:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    border-bottom: 2px solid #808080;
    width: 100%;
}

.strikeout {
    text-decoration: line-through;
}

.btn-round {
    border-radius: .5rem;
}

.item {
    font-size: .8em;
}

.item-btn {
    font-size: .7em;
}

.pull {
  position: fixed;
  top: -50px;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: top 0.7s ease-in-out;
}
.pull.visible {
  top: 0;
}


