/* breakpoints */
/* colors */
/* mixins */
.valsum-error {
  width: 100%;
  clear: both;
  margin: 20px 0 0 0;
  padding: 8px 10px;
  background: #FFFFFF;
  color: #CC0000;
  font-size: 0.9rem;
  font-weight: 400;
}
.valsum-error ul {
  list-style: none;
  font-size: 0;
}
.valsum-error span,
.valsum-error li {
  list-style: none;
  color: #CC0000;
  padding: 1px 0;
  font-size: 0.9rem;
}
.flex-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}
.custom-checkbox {
  opacity: 0;
  position: absolute;
  z-index: 1000;
}
.custom-checkbox:checked + label:before {
  opacity: 1;
}
.custom-checkbox + label {
  display: inline-block;
  padding-left: 32px;
  cursor: pointer;
}
.custom-checkbox + label:before {
  content: '';
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  background: #424241;
  top: 6px;
  left: 6px;
  opacity: 0;
}
.custom-checkbox + label:after {
  content: '';
  width: 22px;
  height: 22px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #c5c5c5;
  cursor: pointer;
}
.custom-radio {
  position: relative;
}
.custom-radio input[type='radio'] {
  opacity: 0;
  position: absolute;
  z-index: 1000;
}
.custom-radio input[type='radio']:checked + label:before {
  opacity: 1;
}
.custom-radio label:before {
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background: #424241;
  top: 18px;
  left: 6px;
  opacity: 0;
}
.custom-radio label:after {
  content: '';
  width: 22px;
  height: 22px;
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  border: 1px solid #c5c5c5;
  border-radius: 50%;
  cursor: pointer;
}
.shop-cash .cash_status {
  padding: 5px;
  margin: 20px 0 10px 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  background: #FFF6DE;
}
.shop-cash .cash_status li {
  position: relative;
  flex: 1;
  padding: 40px 8px 0 8px;
  text-align: center;
  font-weight: 500;
  font-size: 0;
  height: 0;
  color: #000000;
  cursor: pointer;
}
@media screen and (min-width: 920px) {
  .shop-cash .cash_status li {
    height: auto;
    font-size: 0.84rem;
  }
}
.shop-cash .cash_status li:before {
  content: '';
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 5px;
  left: calc(50% - 15px);
  width: 30px;
  height: 30px;
  font-size: 0.8rem;
  background: #FFFFFF;
  color: #000000;
}
.shop-cash .cash_status li.lnk:before,
.shop-cash .cash_status li.slct:before {
  background: #E28600;
  color: #FFFFFF;
}
.shop-cash .cash_status li:nth-child(1):before {
  content: '1';
}
.shop-cash .cash_status li:nth-child(2):before {
  content: '2';
}
.shop-cash .cash_status li:nth-child(3):before {
  content: '3';
}
.shop-cash .cash_status li:nth-child(4):before {
  content: '4';
}
