.productsBox .flex  {
  align-items: flex-start;
  gap: 20px;
}
.productsBox__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.productsBox__img {
  width: 250px;
  height: auto;
}
.productsBox__list__heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.productsBox__list__body {
  padding-left: 1em;
  text-indent: -1em;
}
.productsBox__list__body.noIndent {
  padding-left: 0;
  text-indent: 0;
}
.productsBox__link {
  margin-top: 20px;
  text-align: right;
}
.productsBox__link a {
  text-decoration: underline;
  position: relative;
  padding-right: 20px;
}
.productsBox__link a:hover {
  text-decoration: none;
}
.productsBox__link a::after {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  background-image: url(/assets/images/ic-blank-red.png);
  background-size: 15px 15px;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

@media(max-width: 768px) {
  .productsBox .flex {
    flex-direction: column;
  }
  .productsBox__img {
    width: 100%;
  }
}

.dib {
  display: inline-block;
}
.colorFocus {
  color: #e60012;
}

@media(max-width: 768px) {
  .mb_fz16 {
    font-size: 16px !important;
  }
  .mb_pb0 {
    padding-bottom: 0 !important;
  }
}
