/*
PRICE TABLE PAGE
*/
.type-page h2 {
  margin-bottom: 25px;
}
.grid-stcm {
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(50px, 1fr));
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  width: 100%;
  display: grid;
}
.price-group-stcm {
  margin-bottom: 60px;
}
.price-group-stcm:last-child {
  margin-bottom: 0px;
}
.price-group-stcm .price-item-stcm {
  padding: 6px 10px;
  gap: 20px;
  justify-content: space-between;
  display: flex;
  align-items: center;
}
.price-group-stcm .price-item-stcm:nth-child(2n + 1) {
  background-color: #f2f2f2;
}
.price-group-stcm .price-item-stcm span {
  font-size: 15px;
}
.price-group-stcm .price-item-stcm span:first-child {
  min-width: 70px;
  max-width: 440px;
}
.price-group-stcm .price-item-stcm span:nth-child(2) {
  font-weight: 500;
  white-space: nowrap;
  text-align: right;
  width: fit-content;
}
#content p.note-stcm {
  font-size: 16px;
  margin-bottom: 35px;
}
.note-stcm .special {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: flex;
}
@media (max-width: 767px) {
  .grid-stcm {
    grid-template-columns: repeat(1, minmax(50px, 1fr));
  }
}
