.wf3227059--button {
  background-color: #1379c8;
  color: #fff;
  padding: 6px 16px 5px;
  box-sizing: border-box;
  display: inline-block;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: background-color ease 0.25s;
  overflow: hidden;
  font-family: var(--font-primary);
  text-align: center;
  font-weight: 400;
}

.wf3227059--button:hover {
  background-color: #1272bc;
  transition: background-color ease 0.25s;
  color: #fff;
}

.wf3227059--button:focus {
  background-color: #1272bc;
  transition: background-color ease 0.25s;
  color: #fff;
}

.savingsspotlight--copy {
  margin-bottom: 3em;
}

.ss--product-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 1px solid #e4e3e3;
  padding-bottom: 0.2em;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  font-size: 20px;
  color: #595454;
  width: auto;
  margin-bottom: 0.5em;
}

.ss--product-allproducts {
  display: inline-block;
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  text-transform: initial;
  color: #1379c8;
  margin-top: 4px;
}

.ss--product-allproducts:hover {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  font-size: 16px;
  text-transform: initial;
  text-decoration: underline;
  color: #1379c8;
}

.ss--product__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 auto 3em;
}

.ss--product__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  padding: 32px 8px;
  box-shadow: 0 7px 5px -5px rgba(0, 0, 0, 0.08);
  transition: box-shadow ease 0.25s, transform ease 0.25s;
}

.ss--product__card:hover,
.ss--product__card:focus {
  transform: translate(0, -0.125em);
  box-shadow: 0 0.25em 12px -4px rgba(0, 0, 0, 0.15);
  transition: box-shadow ease 0.25s, transform ease 0.25s;
}

.ss--product__section {
  text-align: center;
}

.ss--product__img {
  height: 150px;
  width: 150px;
  object-fit: contain;
}

.ss--product__logo {
  width: 100%;
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  margin-top: 16px;
}

.ss--product__categoryname {
  font-size: 16px;
  color: #1379c8;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  margin-top: 8px;
}

.ss--product__price {
  display: block;
  color: #4e575f;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  font-style: italic;
  font-size: 16px;
  text-align: center;
  margin-top: 4px;
}

@media screen and (min-width: 480px) {
  .ss--product-title {
    margin-bottom: 1em;
  }

  .ss--product__grid {
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  }
}

@media screen and (min-width: 768px) {
  .ss--product-title {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .ss--product-allproducts {
    margin-top: 0;
  }
  .ss--colcard__three {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .ss--product__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -8px 32px;
  }
  .ss--product__card {
    width: 100%;
    min-width: 175px;
    margin: 0 0 16px;
  }
  .ss--product__card:last-child {
    margin: 0;
  }
  .ss--product__section {
    width: 100%;
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 480px),
  (-ms-high-contrast: active) and (min-width: 480px) {
  .ss--product__card {
    margin: 0 8px 16px;
    width: calc(50% - 16px);
  }
  .ss--product__card:last-child {
    margin: 0 8px 16px;
  }
  .ss--product__card:first-child:nth-last-child(2) .ss--product__card,
  .ss--product__card:first-child:nth-last-child(2)
    ~ .ss--product__card
    .ss--product__card {
    width: calc(50% - 16px);
  }
  .ss--product__card:first-child:nth-last-child(3) .ss--product__card,
  .ss--product__card:first-child:nth-last-child(3)
    ~ .ss--product__card
    .ss--product__card {
    width: calc(33.33% - 16px);
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 768px),
  (-ms-high-contrast: active) and (min-width: 768px) {
  .ss--product__card {
    width: calc(33.33% - 16px);
  }
}

@media screen and (-ms-high-contrast: none) and (min-width: 1024px),
  (-ms-high-contrast: active) and (min-width: 1024px) {
  .ss--product__card {
    width: calc(20% - 16px);
  }
}