:root {
  --gold: #baa073;
  --viewport: 750;
}

.priceComponent {
  padding: 0 70px 38px;
  background-color: #fff;
  border-radius: 12px;
  margin-top: 26px;
}
@media screen and (max-width: 767px) {
    .priceComponent {
        padding: calc(100vw / var(--viewport) * 40) calc(100vw / var(--viewport) * 35) calc(100vw / var(--viewport) * 40);
        margin-top: calc(100vw / var(--viewport) * 28);
    }
}

.priceComponent h2 {
    padding-top: 30px;
    /* padding-bottom: 30px; */
    text-align: center;
    font-size: 5.6vw;
    margin-bottom: calc(100vw / var(--viewport) * 38);
}
@media screen and (min-width:768px) {
    .priceComponent h2 {
        font-size: 34px;
        padding-top: 60px;
        margin-bottom: 46.8px;
    }
}

.priceContent__Table {
  margin-top: 30px;
}

.priceContent__Table table {
  width: 100%;
  border-collapse: collapse;
}

.priceContent__Table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

.priceContent__Table th {
  background-color: #333;
  color: white;
  font-size: 20px;
  font-weight: 600;
  padding: 20px;
  text-align: left;
}

.priceContent__Table .name {
  /* background-color: #ddd; */
  padding: 20px;
  text-align: center;
  width: 10%;
}

.priceContent__Table .price {
  text-align: right;
  font-family: 'din-2014';
  font-weight: 400;
  width: 20%;
}