.bodyContent {
  background: #f5f5f5;
  position: relative;
  font-family: magistral, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2em;
  letter-spacing: 1px;
  color: #000;
}

@media screen and (min-width: 640px) {
  .bodyContent {
    font-size: 1.5em;
  }
}

.mhl img {
  width: 100%;
  object-fit: cover;
}

.text-wrapper {
  padding: 1em;
}

@media screen and (min-width: 640px) {
  .text-wrapper {
    padding: 2em;
  }
  .storepage_2 .text-wrapper {
    padding: 2em 1em;
  }
}

.intro, .sxfi-live {
  background-color: #fff;
  position: relative;
  top: 0;
  text-align: center;
}

.sxfi-live {
  top: 0;
}

.sxfi-live h2 {
  font-size: 2em;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0;
  margin-top: 0;
}

.sxfi-live .sxfi-logo {
  display: inline-block;
  align-self: center;
  max-width: 100%;
}

.sxfi-live-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.sxfi-live-title>div:last-child>img {
  display: block;
  float: right;
  margin-left: 0;
}

@media screen and (min-width:500px) {
  .sxfi-live-title {
    flex-direction: row;
  }
  .sxfi-live-title>div:last-child>img {
    margin-left: 32px;
  }
}

@media screen and (min-width:990px) {
  .intro, .sxfi-live {
    border-left: 10px solid #d91f26;
  }
  .sxfi-live {
    border-left: 10px solid #17b7d4;
  }
  .intro {
    top: -60px;
  }
  .sxfi-live-title {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    justify-content: space-between;
    padding: 0 0 0 1.5em;
  }
  .sxfi-live-title>div {
    flex-basis: 33.333%;
  }
  .sxfi-live-title>div:last-child>img {
    margin-left: 0;
  }
  .sxfi-live h2 {
    font-size: 3em;
  }
}

.promo-header,
.video-header {
  text-align: center;
  margin: 2rem auto;
}

.promo-header h2,
.video-header h2 {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 0;
}

.promo-header h2+p {
  margin-top: 0;
}

.promo-code {
  color: #17b7d4;
  font-weight: 600;
}

.promo-products .product-name {
  font-weight: 500;
  font-size: 18px;
}

.promo-products .desc {
  font-size: 14px;
}

.promo-products row {
  display: flex;
}

.promo-products .col-md-3 {
  display: flex;
}

.promo-products {
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 1210px;
  margin: 0 auto;
  padding: 2rem 1rem;
  flex-wrap: wrap;
  /* border: 1px solid red; */
}

.product-cell {
  --gutter: 20px;
  --num-columns: 1;
  position: relative;
  margin-bottom: var(--gutter);
  background-color: #fff;
  padding: 1.5em 1em;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 3px 6px 10px 1px #ccc;
  flex-basis: calc((100% - (var(--gutter) * var(--num-columns))) / var(--num-columns));
  flex-shrink: 0;
}

@media screen and (min-width: 600px) and (max-width: 767px) {
  .product-cell {
    --num-columns: 2;
    margin-left: var(--gutter);
  }
  .product-cell:nth-child(2n + 1) {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .product-cell {
    --num-columns: 3;
    margin-left: var(--gutter);
  }
  .product-cell:nth-child(3n + 1) {
    margin-left: 0;
  }
}

/* @media screen and (min-width: 1200px) {
  .product-cell {
    --num-columns: 4;
    margin-left: var(--gutter);
  }
  .product-cell:nth-child(4n + 1) {
    margin-left: 0;
  }
} */

.product-cell a:hover {
  border-color: transparent;
}

.product-cell img {
  /* outline: 1px solid green; */
}

.promo-products .learn-more-button-wrapper {
  width: 100%;
}

.promo-products .learn-more-button {
  color: #fff;
  background: #17b7d4;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
}

.swirly img {
  width: 100%;
  margin-top: 2rem;
  object-fit: cover;
}

.small {
  font-size: 0.8em;
}

.video-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 40px auto;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-wrapper:after {
  padding-top: 56.25%;
  display: block;
  content: "";
}