@font-face {
  font-family: "GarageGothicBold";
  src: url("/DigitUp/LaCaseraES/assets/fonts/GarageGothic-Bold.woff2") format("woff2"), url("/DigitUp/LaCaseraES/assets/fonts/GarageGothic-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSansLight";
  src: url("/DigitUp/LaCaseraES/assets/fonts/OpenSans-Light.woff2") format("woff2"), url("/DigitUp/LaCaseraES/assets/fonts/OpenSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* Define the responsive grid mixin */
/* Center content with optional starting column */
/* ============================================
   Button Mixin
   Supports: variants, sizes, optional icon
=============================================== */
/* SIZE MIXIN (NO COLORS, NO VARIANT) */
/* VARIANT MIXIN (COLORS ONLY) */
/* OPTIONAL: BASE MIXIN */
.productLanding .layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 500px;
}
.productLanding .left {
  display: flex;
  flex-direction: column;
  background: #33578e;
}
.productLanding .categoryItem {
  padding: 2rem;
  font-size: 1.2rem;
  text-align: left;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-weight: 700;
}
.productLanding .active {
  background: #002d72;
}
.productLanding .right {
  background: #eef3f9;
  padding: 1rem;
}
@media (min-width: 1023.9px) {
  .productLanding .right {
    padding: 2rem;
  }
}
.productLanding .productList {
  list-style: none;
  padding: 0;
  margin-bottom: 3rem;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .productLanding .productList {
    margin-bottom: 1rem;
  }
}
.productLanding .productList li {
  margin-bottom: 1.25rem;
}
.productLanding .productList a {
  font-size: 24px;
  font-weight: 700;
  text-decoration: underline;
  font-family: "GarageGothicBold", Helvetica, Arial, Lucida, sans-serif;
  color: #002d72;
}
.productLanding .productList a:hover {
  text-decoration: none;
  color: #c8102e;
}
.productLanding .mobileSelect {
  display: none;
  margin-bottom: 2rem;
}
.productLanding .mobileSelect select {
  width: 100%;
  padding: 1rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .productLanding .layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .productLanding .left {
    display: none;
  }
  .productLanding .mobileSelect {
    display: block;
  }
}
