#divObjectGroupList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--content-padding);
  margin-top: var(--content-padding);
  width: 930px;
}
#divObjectGroupList .object-group {
  width: 100%;
  grid-template-rows: 100px 300px 100px;
  border-radius: 5px;
  overflow: hidden;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border: solid 1px #e2e1e1;
  box-shadow: 0px 0px 10px 0px rgba(219, 219, 219, 0.6784313725);
}
#divObjectGroupList .object-group .object-group-header {
  background-color: var(--primary-color-700);
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 20px;
  font-weight: 500;
  height: 100px;
  vertical-align: middle;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#divObjectGroupList .object-group .object-group-header p {
  color: #dae6ef;
  font-size: 16px;
  margin-top: 5px;
  align-self: flex-end;
  width: 100%;
}
#divObjectGroupList .object-group .object-group-image {
  height: 200px;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  background-color: whitesmoke;
}
#divObjectGroupList .object-group .object-group-bottom {
  display: grid;
  gap: 20px;
  grid-template-columns: auto fit-content(40px);
  grid-template-rows: auto 0px 60px;
  background-color: whitesmoke;
  padding: 30px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  flex-grow: 1;
}
#divObjectGroupList .object-group .object-group-memo {
  display: flex;
  align-items: center;
}
#divObjectGroupList .object-group .object-group-price {
  border-left: solid 1px #e4e4e4;
  padding-left: 10px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
#divObjectGroupList .object-group .object-group-price p {
  color: #4FA63B;
  font-size: 22px;
  font-weight: 500;
  margin: 0px;
}
#divObjectGroupList .object-group .object-group-price p span {
  color: #4FA63B;
}
#divObjectGroupList .object-group .object-group-price p small {
  display: block;
  font-size: 12px;
  text-align: right;
}
#divObjectGroupList .object-group .object-group-price .old-price {
  display: block;
}
#divObjectGroupList .object-group .object-group-spinner-label {
  color: #868686;
}

.object-group-spinner {
  border-radius: 5px;
  background-color: #e4b231;
  grid-column: 1/3;
  color: white;
  font-size: 18px;
  font-weight: bold;
  max-width: 100%;
  padding: 0px 20px;
}
.object-group-spinner input {
  color: white;
  background-color: transparent;
  flex-grow: 1;
  font-size: 18px;
  font-weight: bold;
  border: none;
}
.object-group-spinner label {
  display: none;
}
.object-group-spinner button {
  margin: 0;
  width: 100px;
  font-size: 18px;
  color: white;
  width: 80px;
}
.object-group-spinner button:hover {
  background: transparent;
}
.object-group-spinner .spinner-plus {
  margin: 0;
}

.object-group-spinner.disabled {
  background-color: #e8c876;
}

@media only screen and (max-width: 1400px) {
  #divObjectGroupList {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 800px) {
  #divObjectGroupList {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=step-objectGroup.css.map */