.section-related-products {
  background-color: #0E0E0E;
  font-family: inherit;
  font-size: 18px;
  padding: 1em 0;
}
.section-related-products .row {
  display: flex;
  flex-flow: row wrap;
}
.section-related-products [class^=col] {
  float: none;
}
.section-related-products .loading-area {
  display: none;
}
.section-related-products.loading .loading-area {
  display: block;
}
.section-related-products.loading .related-product-list {
  visibility: hidden;
}
.section-related-products h3 {
  text-align: center;
  font-size: 2em;
  margin: 1em auto 2em;
  padding: 0 1em;
}
.section-related-products .related-products {
  max-width: 1280px;
  margin: 0 auto;
}

.product-image img {
  max-width: 100%;
}

.related-products {
  position: relative;
}
.related-products .loading-area {
  position: absolute;
  width: 100%;
  text-align: center;
}
.related-products .loading-area img {
  width: 65px;
}
.related-products .product-box-outer {
  margin-bottom: 30px;
}
.related-products .product-box-outer .product-box {
  height: 100%;
}

.product-box {
  background-color: #202020;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5em 3em;
  border-radius: 10px;
  max-width: 450px;
  margin: 0 auto;
  transition: all 150ms ease-out;
  cursor: pointer;
}
.product-box:hover {
  background-color: #292929;
}
.product-box:hover .product-image::after {
  background: #424242;
}
.product-box a.product-link {
  color: inherit !important;
  text-decoration: none;
}
.product-box .product-image::after {
  content: "";
  display: block;
  height: 1px;
  background: #333;
  margin: 1em 0;
}
.product-box .product-content {
  text-align: center;
}
.product-box .product-name {
  margin-bottom: 0.5em;
}

@media screen and (max-width: 1280px) {
  .section-related-products h3 {
    margin-bottom: 1.2em;
  }
}
