
.sio-container {
  display: none;
  overflow-y: auto;
}

.sio-container--ready {
  display: block;
  padding: 1rem;
  border: 3px solid #ddd;
  border-radius: 6px;
  position: relative;
  margin-bottom: 3rem;
  overflow: inherit;
}

.sio-container--ready::before, .sio-container--ready::after {
  content: "" !important;
  position: absolute;
  display: block;
  width: 25px;
  left: 50%;
  margin-left: -12.5px;
  height: 25px;
  font-size: 25px;
  color: #f00;
  background-color: #fff;
  font-weight: bold;
  line-height: 20px;
}

.sio-container--ready::before {
  top: -13px;
}

.sio-container--ready::after {
  bottom: -15px;
}

.sio__title {
  text-align: center;
  color: #777;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0;
}

.sio__title span {
  font-size: 1.2rem;
  margin-top: -5px;
  display: block;
  color: #a9a9a9;
}

.sio-box {
  margin-bottom: 20px;
}

.sio-box:last-child {
  margin-bottom: 0;
}

.sio-box__title {
  margin: 0.5rem auto;
  font-weight: bold;
}


.sio-item {
  position: relative;
  border: solid 1px #ddd;
  background-color: #fff;
  border-radius: 4px;
  padding: 0.9rem;
  margin-bottom: 10px;
  cursor: pointer;
}

.sio-item:last-child {
  margin-bottom: 0;
}

.sio-item--has-item {
  border-color: #e6002d;
}

.sio-item--has-item::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 5px;
  height: 100%;
  background-color: #e6002d;
  top: 0;
  left: 0;
}

.sio-item--has-item .sio-item__price {
  color: #f00;
}

.sio-item__photo {
  position: absolute;
  top: 5px;
  left: 5px;
}

.sio-item__photo:empty {
  display: none;
}

.sio-item__photo img {
  width: 70px;
  height: 70px;
}

.sio-item__name {
  word-break: break-all;
  word-wrap: break-word;
  text-align: initial;
  font-size: 1rem;
  margin-bottom: 0;
  overflow: hidden;
  height: 3.2rem;
  padding-left: 73px;
}

.sio-item__price {
  margin-bottom: 0;
  text-align: justify;
  color: #ddd;
  font-size: 1.4rem;
  padding-left: 73px;
  margin-top: 0.5rem;
  height: 25px;
}

.sio-item__price span {
  font-size: 2rem;
  margin-right: 0.2rem;
}

.sio-item .sio-item-multiple {
  position: absolute;
  bottom: 5px;
  right: 5px;
  display: none;
  cursor: not-allowed;
  opacity: 0.1;
  border: solid 1px #ddd;
  border-radius: 3px;
}

.sio-item.sio-item--is-multiple .sio-item-multiple {
  display: inline-flex;
  transition: opacity 0.2s;
  line-height: 1.8rem;
}

.sio-item.sio-item--is-multiple .sio-item-multiple__decrease, .sio-item.sio-item--is-multiple .sio-item-multiple__increase, .sio-item.sio-item--is-multiple .sio-item-multiple__counter {
  padding: 7px 10px;
}

.sio-item.sio-item--is-multiple .sio-item-multiple__counter {
  border-left: solid 1px #eee;
  border-right: solid 1px #eee;
  background-color: #f5f5f5;
}

.sio-item--has-item .sio-item-multiple {
  opacity: 1;
  cursor: pointer;
  background-color: #fff;
}

.sio-item--is-full .sio-item-multiple__increase {
  opacity: 0.1;
  cursor: not-allowed;
}

@media screen and (min-width: 768px) {
  .sio-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .sio-item {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .sio-item__photo {
    top: 1px;
  }
  .sio-container--ready::before {
    bottom: -11px;
  }
  .sio-container--ready::after {
    bottom: -17px;
  }
}
