.shop-cash {
  position: relative;
}
.shop-cash .cash_status {
  display: flex;
  justify-content: space-between;
  padding: 0;
  list-style: none;
  margin-bottom: 15px;
  overflow: hidden;
  overflow-x: scroll;
  background: #F5F0EB;
}
@media screen and (min-width: 640px) {
  .shop-cash .cash_status {
    overflow-x: hidden;
  }
}
.shop-cash .cash_status li {
  position: relative;
  width: 25px;
  height: 25px;
  color: #000000;
  text-align: center;
  cursor: not-allowed;
  font-size: 0.7em;
  position: static;
  width: auto;
  height: auto;
  background: #F5F0EB;
  padding: 10px 20px;
  font-size: 0.9em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: 100%;
}
.shop-cash .cash_status li.lnk,
.shop-cash .cash_status li.slct {
  font-weight: 900;
  cursor: pointer;
}
.shop-cash .cash_status li.lnk {
  background: #0f4f0f;
  color: #FFFFFF;
}
.shop-cash .cash_status li.slct {
  color: #FFFFFF;
  background: #BB0000;
}
