#catalog {
  max-width: 1000px;
  margin: 0 auto;
}

#cart {
  clear: both;
  display: flex;
}

#cart #cart-items {
  width: 100%;
}

#cart #cart-items .cart-item {
  border: 1px solid #D3D3D3;
  float: left;
  height: auto;
  margin: 0 20px 20px 0;
  padding: 6px;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cart #cart-items .cart-item img {
  max-height: 150px;
  margin: 10px 0;
}

#pg-product-page {
  display: flex;
}

#pg-product-page iframe {
  border: 0;
  overflow: auto;
  width: 100%;
  height: 90%;
  min-height: 1000px;
}


.product-name {
  font-weight: 600;
  color: #666666;
  font-size: 20px;
  margin-bottom: 6px;
}

.cart-price {
  color: #666666;
  font-style: italic;
  font-size: 18px;
  line-height: 24px;
}

.starting-from {
  padding-right: 3px;
  font-style: italic;

  /* Font smoothing for italicized text */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.product-name a {
  font-weight: 600;
  color: #666666;
  text-decoration: none;
}

.product-name a:hover {
  text-decoration: underline;
}

.cart-details-item {
  color: #666666;
  clear: both;
  line-height: 20px;
  font-size: 16px;
}

.cart-details-item .name {
  display: inline-block;
  vertical-align: top;
  font-weight: bold;
  margin-right: 6px;
}

.cart-details-item .value {
  display: inline-block;
  vertical-align: top;
}

.cart-details-item .value-inner {
  padding-left: 12px;
}
