* {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Roboto", sans-serif;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:root {
  --text-primary: #222222;
}

.three-in-a-row-products-header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.three-in-a-row-products-header__view-all {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  cursor: pointer;
}

.three-in-a-row-products-wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-top: 12px;
  padding-bottom: 20px;
}

.three-in-a-row-product-card:nth-last-child(-n+3) {
  margin-bottom: 0 !important;
}
.three-in-a-row-product-card:nth-child(3n) {
  margin-right: 0 !important;
}