* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.has-pad-tb-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.has-pad-tb-8 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.has-pad-tb-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.has-pad-tb-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.has-pad-tb-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.has-pad-tb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.has-pad-tb-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.has-pad-t-40 {
  padding-top: 40px;
}

.has-pad-b-40 {
  padding-bottom: 40px;
}

.has-pad-t-50 {
  padding-top: 50px;
}

.has-pad-b-50 {
  padding-bottom: 50px;
}

.has-pad-t-60 {
  padding-top: 60px;
}

.has-pad-b-60 {
  padding-bottom: 60px;
}

.d-flex {
  display: flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

@font-face {
  font-family: "hackney";
  src: url("/vendor/fonts/hackney/hackney.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #333;
}
@media screen and (max-width: 374px) {
  body {
    font-size: 14px;
  }
}

h1, h2, h3 {
  color: #D40029;
  font-family: "Roboto", sans-serif;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.125rem;
}

input,
select {
  font-size: 16px;
}

.title {
  color: #D40029;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 3.5rem;
}
@media (max-width: 400px) {
  .title {
    font-size: 2.8rem;
  }
}

.title-white {
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 3.5rem;
}
@media (max-width: 400px) {
  .title-white {
    font-size: 2.8rem;
  }
}

.title-hackney {
  font-family: hackney;
  font-size: 4rem;
  font-weight: 400;
}

header .branding-container {
  display: grid;
  grid-template-areas: "menu logo" "legend legend" "store store" "links links" "banner banner";
  grid-template-columns: 1fr 1fr;
  padding-top: 10px;
  -webkit-box-shadow: 0px 0px 3px 3px #ddd;
  box-shadow: 0px 0px 3px 3px #ddd;
}
@media (min-width: 1024px) {
  header .branding-container {
    grid-template-areas: "store logo links" "store legend banner" "menu menu menu";
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
@media (min-width: 1216px) {
  header .branding-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
header .branding-container .main-menu {
  grid-column-start: menu;
  grid-column-end: menu;
  grid-row-start: menu;
  grid-row-end: menu;
}
@media (min-width: 1024px) {
  header .branding-container .main-menu {
    background: #D40029;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
header .branding-container .main-menu .navbar {
  background: transparent;
}
header .branding-container .main-menu .navbar .navbar-brand .navbar-burger {
  margin-left: 0;
  top: -10px;
}
header .branding-container .main-menu .navbar .navbar-brand .navbar-burger span {
  height: 3px;
  left: calc(50% - 13px);
  width: 26px;
}
header .branding-container .main-menu .navbar .navbar-brand .navbar-burger span:nth-child(1) {
  top: calc(50% - 8px);
}
header .branding-container .main-menu .navbar .navbar-brand .navbar-burger span:nth-child(3) {
  top: calc(50% + 6px);
}
header .branding-container .main-menu .navbar .navbar-brand .navbar-burger.is-active span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}
header .branding-container .main-menu .navbar .navbar-brand .navbar-burger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
  -ms-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg);
}
header .branding-container .main-menu .navbar .navbar-brand .navbar-burger:hover {
  background: #ffffff;
}
header .branding-container .main-menu .navbar #siteMenu {
  display: block;
  top: 90px;
  left: -250%;
  position: absolute;
  width: 100vw;
  background: #ffffff;
  padding-top: 20px;
  min-height: calc(100vh - 3.25rem);
  -webkit-transition: left 300ms ease-in-out;
  -o-transition: left 300ms ease-in-out;
  transition: left 300ms ease-in-out;
  -webkit-box-shadow: 0px -4px 3px #ddd;
  box-shadow: 0px -4px 3px #ddd;
}
header .branding-container .main-menu .navbar #siteMenu a.navbar-item,
header .branding-container .main-menu .navbar #siteMenu a.navbar-link {
  color: #333;
  text-transform: uppercase;
}
header .branding-container .main-menu .navbar #siteMenu a.navbar-item.is-active,
header .branding-container .main-menu .navbar #siteMenu a.navbar-link.is-active {
  background: #D40029;
  color: #fff200;
}
header .branding-container .main-menu .navbar #siteMenu a.navbar-item:hover, header .branding-container .main-menu .navbar #siteMenu a.navbar-item:focus, header .branding-container .main-menu .navbar #siteMenu a.navbar-item:focus-within,
header .branding-container .main-menu .navbar #siteMenu a.navbar-link:hover,
header .branding-container .main-menu .navbar #siteMenu a.navbar-link:focus,
header .branding-container .main-menu .navbar #siteMenu a.navbar-link:focus-within {
  background-color: #D40029;
  color: #ffffff;
}
header .branding-container .main-menu .navbar #siteMenu.is-active {
  left: 0;
  height: calc(100vh - 3.25rem);
  overflow-y: scroll;
}
header .branding-container .main-menu .navbar #siteMenu.is-active .navbar-start {
  padding-bottom: 100px;
}
header .branding-container .main-menu .navbar #siteMenu .navbar-link:not(.is-arrowless)::after {
  border-color: #D40029;
}
@media (min-width: 1024px) {
  header .branding-container .main-menu .navbar {
    background: #D40029;
    width: 100%;
  }
  header .branding-container .main-menu .navbar .navbar-brand {
    display: none;
  }
  header .branding-container .main-menu .navbar #siteMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    top: 0;
    left: 0;
    position: relative;
    background: transparent;
    padding-top: 0;
    min-height: 100%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  header .branding-container .main-menu .navbar #siteMenu .navbar-start {
    width: 100%;
  }
  header .branding-container .main-menu .navbar #siteMenu a.navbar-item,
  header .branding-container .main-menu .navbar #siteMenu a.navbar-link {
    color: #ffffff;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  header .branding-container .main-menu .navbar #siteMenu a.navbar-item.is-active,
  header .branding-container .main-menu .navbar #siteMenu a.navbar-link.is-active {
    color: #fff200;
  }
  header .branding-container .main-menu .navbar #siteMenu a.navbar-item:hover,
  header .branding-container .main-menu .navbar #siteMenu a.navbar-link:hover {
    background-color: #D40029;
    color: #000000;
  }
  header .branding-container .main-menu .navbar #siteMenu .navbar-link:not(.is-arrowless)::after {
    border-color: #ffffff;
  }
  header .branding-container .main-menu .navbar #siteMenu .navbar-dropdown {
    background-color: #D40029;
  }
  header .branding-container .main-menu .navbar #siteMenu .navbar-dropdown .navbar-item {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
  header .branding-container .main-menu .navbar #siteMenu .navbar-item.has-dropdown:hover .navbar-link {
    background-color: #D40029;
  }
}
@media (min-width: 1200px) {
  header .branding-container .main-menu .navbar #siteMenu a.navbar-item,
  header .branding-container .main-menu .navbar #siteMenu a.navbar-link {
    font-size: 1rem;
  }
}
header .branding-container .logo-section {
  grid-column-start: logo;
  grid-column-end: logo;
  grid-row-start: logo;
  grid-row-end: logo;
  margin-left: -60px;
  z-index: 31;
}
header .branding-container .logo-section img {
  max-width: 120px;
}
@media (min-width: 768px) {
  header .branding-container .logo-section {
    margin-left: -90px;
  }
  header .branding-container .logo-section img {
    max-width: 180px;
  }
}
@media (min-width: 1024px) {
  header .branding-container .logo-section {
    margin-left: 0;
    text-align: center;
  }
}
header .branding-container .logo-legend {
  grid-column-start: legend;
  grid-column-end: legend;
  grid-row-start: legend;
  grid-row-end: legend;
  text-align: center;
  padding: 10px;
}
header .branding-container .logo-legend h1 {
  line-height: 1;
  font-weight: bold;
  font-size: 1.4rem;
}
@media (min-width: 992px) {
  header .branding-container .logo-legend h1 {
    font-size: 1rem;
  }
}
@media (min-width: 1408px) {
  header .branding-container .logo-legend h1 {
    font-size: 1.4rem;
  }
}
header .branding-container .store-selector {
  grid-column-start: store;
  grid-column-end: store;
  grid-row-start: store;
  grid-row-end: store;
  background: #D40029;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
}
header .branding-container .store-selector #weekly-Circulars {
  width: 100%;
}
header .branding-container .store-selector #weekly-Circulars.front .change-store-btn {
  display: none;
}
header .branding-container .store-selector #weekly-Circulars.front .store-specials {
  display: block;
}
header .branding-container .store-selector .store-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}
@media (min-width: 1024px) {
  header .branding-container .store-selector .store-info {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 350px;
    gap: 20px;
  }
}
header .branding-container .store-selector .store-info #loc-marker {
  font-size: 2rem;
}
@media (min-width: 1024px) {
  header .branding-container .store-selector .store-info #loc-marker {
    font-size: 1.5rem;
    margin-right: 0px;
  }
}
header .branding-container .store-selector .store-info .loc-info .store-ad #myLocation {
  font-weight: bold;
}
@media screen and (min-width: 375px) and (max-width: 575px) {
  header .branding-container .store-selector .store-info .loc-info .store-ad #myLocation {
    letter-spacing: -1px;
  }
}
header .branding-container .store-selector .store-info .loc-info .store-address {
  letter-spacing: -1px;
}
@media screen and (max-width: 374px) {
  header .branding-container .store-selector .store-info .loc-info .store-address {
    display: none;
  }
}
@media (min-width: 576px) {
  header .branding-container .store-selector .store-info .loc-info .store-address {
    letter-spacing: normal;
  }
}
@media (min-width: 1024px) {
  header .branding-container .store-selector .store-info .loc-info {
    font-size: 0.75rem;
  }
}
@media (min-width: 1216px) {
  header .branding-container .store-selector .store-info .loc-info {
    font-size: 0.875rem;
  }
}
header .branding-container .store-selector .store-info .change-store {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
header .branding-container .store-selector .store-info .change-store a {
  color: #ffffff;
  font-weight: bold;
  border-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 1024px) {
  header .branding-container .store-selector .store-info .change-store a {
    color: #333;
    font-size: 0.75rem;
  }
  header .branding-container .store-selector .store-info .change-store a.button {
    color: #ffffff;
  }
}
@media (min-width: 1216px) {
  header .branding-container .store-selector .store-info .change-store a {
    font-size: 0.875rem;
  }
}
header .branding-container .store-selector .store-info .change-store a:hover {
  color: #D40029;
  text-decoration: underline;
}
header .branding-container .store-selector .store-info .change-store a .header-icon {
  font-size: 2rem;
}
@media (min-width: 1024px) {
  header .branding-container .store-selector .store-info .change-store a .header-icon {
    font-size: 1.5rem;
    color: #D40029;
  }
}
header .branding-container .store-selector .store-info .change-store .store-directions span {
  display: none;
}
@media (min-width: 768px) {
  header .branding-container .store-selector .store-info .change-store .store-directions span {
    display: block;
  }
}
header .branding-container .store-selector .store-info .change-store .store-phone span {
  display: none;
}
@media (min-width: 768px) {
  header .branding-container .store-selector .store-info .change-store .store-phone span {
    display: block;
  }
}
header .branding-container .store-selector .store-info .change-store .store-specials {
  display: none;
}
header .branding-container .store-selector .store-info .change-store .store-specials span {
  display: none;
}
@media (min-width: 768px) {
  header .branding-container .store-selector .store-info .change-store .store-specials span {
    display: block;
  }
}
@media (min-width: 1024px) {
  header .branding-container .store-selector .store-info .change-store {
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  header .branding-container .store-selector {
    background: transparent;
    color: #333;
  }
  header .branding-container .store-selector .store-info .loc-marker {
    color: #D40029;
  }
}
header .branding-container .header-links {
  grid-column-start: links;
  grid-column-end: links;
  grid-row-start: links;
  grid-row-end: banner;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 0;
  gap: 15px;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  header .branding-container .header-links {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    flex-flow: column;
    align-items: flex-end;
    padding-right: 10px;
  }
}
header .branding-container .header-links .subscribe-link-btn {
  display: none;
}
header .branding-container .header-links .order-online-btn a,
header .branding-container .header-links .subscribe-link-btn a,
header .branding-container .header-links .home-link-btn a,
header .branding-container .header-links .go-back-btn a {
  width: 152px;
}
header .branding-container .circular-block {
  grid-column-start: banner;
  grid-column-end: banner;
  grid-row-start: banner;
  grid-row-end: banner;
}
header .branding-container .circular-block a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  height: 80px;
  overflow: hidden;
  text-decoration: none;
}
header .branding-container .circular-block a img {
  position: relative;
  top: 45px;
  width: 100%;
  max-width: 134px;
  -webkit-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  transform: rotate(-5deg);
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
}
header .branding-container .circular-block a h3 {
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
header .branding-container .circular-block a h3 .black-text {
  color: #333;
}
@media (min-width: 1024px) {
  header .branding-container .circular-block a {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-right: 5px;
  }
}
header .branding-container .circular-block .header-circular-thumb {
  max-height: 80px;
}
header .branding-container .circular-block .header-circular-thumb img {
  position: relative;
  top: 10px;
  width: 100%;
  max-width: 134px;
  -webkit-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  transform: rotate(-5deg);
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
}
header .branding-container .circular-block .header-links-container .header-links-description {
  text-align: center;
}
header .branding-container .circular-block .header-links-container .header-links-description h3 {
  text-transform: uppercase;
  font-weight: bold;
}
header .branding-container .circular-block .header-links-container .header-links-description h3 .black-text {
  color: #333;
}

/** Front-page sliders styles **/
#front-sliders {
  width: 100%;
  height: 100%;
}
#front-sliders .swiper-slide {
  height: auto;
  text-align: center;
  font-size: 0px;
  color: #fff;
}
#front-sliders .swiper-slide .web-only {
  display: none;
}
@media (min-width: 768px) {
  #front-sliders .swiper-slide .mobile-only {
    display: none;
  }
  #front-sliders .swiper-slide .web-only {
    display: inline;
  }
}
#front-sliders .swiper-slide img {
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
#front-sliders .sliders-pagination {
  display: none;
}
@media (min-width: 768px) {
  #front-sliders .sliders-pagination {
    display: block;
  }
}
#front-sliders .sliders-pagination .swiper-pagination-bullet-active {
  background: #D40029;
}
#front-sliders .swiper-button-next.disabled,
#front-sliders .swiper-button-prev.disabled,
#front-sliders .swiper-pagination.disabled {
  display: none;
}
#front-sliders .swiper-button-prev,
#front-sliders .swiper-button-next {
  --swiper-navigation-color: #D40029;
}
#front-sliders .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: transparent;
  opacity: 0.8;
  font-size: 0;
  border: 2px solid #333;
  margin: 0 6px;
}
#front-sliders .swiper-pagination-bullet-active {
  background: #D40029;
  color: #fff;
  opacity: 1;
}

.departments-block {
  background: url(/img/backgrounds/wood-white-bg.jpg) center center repeat;
  background-size: contain;
  background-color: #d9d9d9;
  text-align: center;
}
.departments-block .container .title {
  color: #D40029;
}
.departments-block .departmentsSwiper {
  margin: 30px auto;
}
.departments-block .departmentsSwiper .swiper-wrapper {
  margin-bottom: 40px;
}
.departments-block .departmentsSwiper .swiper-wrapper .swiper-slide a {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.departments-block .departmentsSwiper .swiper-wrapper .swiper-slide a span {
  color: #D40029;
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: bold;
}
.departments-block .departmentsSwiper .swiper-wrapper .swiper-slide a:hover {
  opacity: 0.8;
}
.departments-block .departmentsSwiper .swiper-wrapper .swiper-slide a img {
  width: 100%;
  max-width: 265px;
}
.departments-block .swiper-button-prev,
.departments-block .swiper-button-next {
  --swiper-navigation-color: #fff;
  background: #D40029;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  top: calc(50% - 44px);
  display: none;
}
.departments-block .swiper-button-prev::after,
.departments-block .swiper-button-next::after {
  font-size: 24px;
}
@media (min-width: 768px) {
  .departments-block .swiper-button-prev,
  .departments-block .swiper-button-next {
    display: flex;
  }
}
.departments-block .swiper-button-prev:after {
  margin-right: 4px;
}
.departments-block .swiper-button-next::after {
  margin-left: 4px;
}
.departments-block .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
}
.departments-block .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #D40029;
}

.site-footer {
  background-color: #424242;
  padding: 20px 0;
  color: #ffffff;
}
.site-footer #loadingStuff {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  color: #FFF;
  width: 100vw;
  top: 0;
  height: 100vh;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  z-index: 100;
}
.site-footer .footerTitle {
  color: #ffffff;
  font-weight: bold;
}
.site-footer .footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.site-footer .footer-info .footerLogo img {
  max-width: 120px;
}
.site-footer .footer-info .footerSocial {
  grid-column-start: social;
  grid-column-end: social;
  grid-row-start: social;
  grid-row-end: social;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.site-footer .footer-info .footerSocial a {
  color: #ffffff;
  font-size: 1.25rem;
}
.site-footer .footer-info .footerSocial a:hover {
  color: #D40029;
}
.site-footer .footer-info .footerQuickLinksMenu {
  text-align: center;
}
.site-footer .footer-info .footerQuickLinksMenu .footerTitle {
  margin-bottom: 20px;
}
.site-footer .footer-info .footerQuickLinksMenu .column {
  display: flex;
  flex-direction: column;
}
.site-footer .footer-info .footerQuickLinksMenu .column a {
  color: #ffffff;
}
.site-footer .footer-info .footerQuickLinksMenu .column a:hover {
  color: #D40029;
}
.site-footer .footer-info .footerQuickLinksMenu .column a.footerOrderOnlineBtn {
  display: none;
}
@media (min-width: 768px) {
  .site-footer .footer-info .footerQuickLinksMenu .column {
    flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .site-footer .footer-info .footerQuickLinksMenu .column {
    gap: 60px;
  }
}
.site-footer .footer-info .footerResourcesMenu {
  grid-column-start: resources;
  grid-column-end: resources;
  grid-row-start: resources;
  grid-row-end: resources;
  text-align: left;
}
.site-footer .footer-info .footerResourcesMenu .footerTitle {
  margin-bottom: 20px;
}
.site-footer .footer-info .footerResourcesMenu .column {
  display: flex;
  flex-direction: column;
}
.site-footer .footer-info .footerResourcesMenu .column a {
  color: #ffffff;
}
.site-footer .footer-info .footerResourcesMenu .column a:hover {
  color: #D40029;
}
.site-footer .footer-info .footerResourcesMenu .column a.footerOrderOnlineBtn {
  display: none;
}
@media (min-width: 768px) {
  .site-footer .footer-info .footerResourcesMenu {
    text-align: left;
  }
}
.site-footer .footer-info .footerStoreIcons {
  grid-column-start: store-icon;
  grid-column-end: store-icon;
  grid-row-start: store-icon;
  grid-row-end: store-icon;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.site-footer .footer-info .footerStoreIcons img {
  max-width: 80px;
}
.site-footer .footer-info .footerNewsletter {
  grid-column-start: newsletter;
  grid-column-end: newsletter;
  grid-row-start: newsletter;
  grid-row-end: newsletter;
}
.site-footer .footer-copyright {
  font-size: 0.8rem;
}
.site-footer .footer-copyright a {
  color: #ffffff;
}
.site-footer .footer-copyright a:hover {
  color: #D40029;
}
.site-footer .b2t {
  margin: 40px auto;
}
.site-footer .b2t .scrollToTopBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  cursor: pointer;
  position: fixed;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #D40029;
  right: 0px;
  bottom: 0px;
  font-size: 1.5rem;
  width: 100%;
  height: 50px;
  z-index: 8;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -o-transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
  padding: 0.5em 1em;
  border-radius: 0;
}
.site-footer .b2t .scrollToTopBtn .fa {
  color: #fff;
}
.site-footer .b2t .scrollToTopBtn.showScrollBtn {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.site-footer .b2t .scrollToTopBtn .sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.site-footer .b2t .scrollToTopBtn:hover {
  background-color: #D40029;
  opacity: 0.8;
  color: #ffffff;
}
@media (min-width: 768px) {
  .site-footer .b2t {
    margin: 0 auto;
  }
  .site-footer .b2t .scrollToTopBtn {
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }
}
.site-footer .privacy-banner {
  position: fixed;
  bottom: 50px;
  z-index: 100;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media (min-width: 768px) {
  .site-footer .privacy-banner {
    bottom: 20px;
    width: 60%;
  }
}
@media (min-width: 992px) {
  .site-footer .privacy-banner {
    bottom: 20px;
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .site-footer .privacy-banner {
    width: 60%;
  }
}
@media only screen and (min-width: 1500px) {
  .site-footer .privacy-banner {
    width: 50%;
  }
}

.button {
  border-radius: 0;
  text-transform: uppercase;
}
@media screen and (max-width: 374px) {
  .button {
    font-size: 14px;
  }
}
.button.is-primary {
  background-color: #D40029;
  border-color: #D40029;
  font-weight: bold;
  transition: all 300ms ease-in-out;
  text-transform: capitalize;
}
.button.is-primary:hover {
  background-color: transparent;
  border-color: #D40029;
  color: #D40029;
}
.button.is-secundary {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
  font-weight: bold;
  transition: background-color 300ms ease-in-out;
  text-transform: capitalize;
}
.button.is-secundary:hover {
  background-color: transparent;
  color: #000000;
}

.has-text-red {
  color: #D40029;
  font-size: 100%;
}

.yellow-divider {
  background-color: #fff200;
  width: 100%;
  max-width: 100px;
  height: 10px;
  margin-bottom: 1.5rem;
}

.gray-divider {
  background-color: #999;
  width: 100%;
  max-width: 100px;
  height: 10px;
  margin-bottom: 1.5rem;
}

.gray-large-divider {
  background-color: #999;
  width: 100%;
  height: 10px;
  margin: 1.5rem 0;
}

.loading-spinner {
  display: block;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.loading-spinner div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #D40029;
  -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loading-spinner div:nth-child(1) {
  left: 8px;
  -webkit-animation: lds-ellipsis1 0.6s infinite;
  animation: lds-ellipsis1 0.6s infinite;
}
.loading-spinner div:nth-child(2) {
  left: 8px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
  animation: lds-ellipsis2 0.6s infinite;
}
.loading-spinner div:nth-child(3) {
  left: 32px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
  animation: lds-ellipsis2 0.6s infinite;
}
.loading-spinner div:nth-child(4) {
  left: 56px;
  -webkit-animation: lds-ellipsis3 0.6s infinite;
  animation: lds-ellipsis3 0.6s infinite;
}
.loading-spinner.hide-spinner {
  display: none;
  opacity: 0;
}

@-webkit-keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@-webkit-keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(24px, 0);
    transform: translate(24px, 0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(24px, 0);
    transform: translate(24px, 0);
  }
}
.web-only {
  display: none !important;
}
@media (min-width: 768px) {
  .web-only {
    display: block !important;
  }
}

@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .block-with-linear-shape .overlay {
    width: 50%;
    height: 350px;
    background-color: #630007;
    opacity: 0.7;
    position: absolute;
    -webkit-clip-path: polygon(60% 0%, 0% 100%, 100% 100%);
    clip-path: polygon(60% 0%, 0% 100%, 100% 100%);
  }
}
.block-with-linear-shape .block-container {
  background-color: #D40029;
  -webkit-clip-path: polygon(55% 0%, 70% 70%, 100% 70%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(55% 0%, 70% 70%, 100% 70%, 100% 100%, 0 100%, 0 0);
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding: 10px;
}
@media (min-width: 474px) and (max-width: 667px) {
  .block-with-linear-shape .block-container {
    -webkit-clip-path: polygon(62% 0%, 70% 55%, 100% 55%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(62% 0%, 70% 55%, 100% 55%, 100% 100%, 0 100%, 0 0);
  }
}
@media (min-width: 668px) and (max-width: 767px) {
  .block-with-linear-shape .block-container {
    -webkit-clip-path: polygon(70% 0%, 80% 35%, 100% 35%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(70% 0%, 80% 35%, 100% 35%, 100% 100%, 0 100%, 0 0);
  }
}
@media (min-width: 768px) {
  .block-with-linear-shape .block-container {
    webkit-clip-path: polygon(0 0, 50% 0, 30% 100%, 0% 100%);
    clip-path: polygon(0 0, 50% 0, 30% 100%, 0% 100%);
    height: 350px;
    align-items: flex-start;
    justify-content: space-evenly;
    flex-direction: column;
    padding: 40px;
  }
}

.block-with-circular-shape .block-container::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgb(245, 0, 47);
  background: radial-gradient(circle, rgb(245, 0, 47) 22.87%, rgb(153, 0, 29) 89.66%);
  -webkit-clip-path: circle(74.1% at 75% 100%);
  clip-path: circle(74.1% at 75% 100%);
}
@media (min-width: 768px) {
  .block-with-circular-shape .block-container::before {
    -webkit-clip-path: circle(55% at 100% 35%);
    clip-path: circle(55% at 100% 35%);
  }
}

.gray-bg {
  background: url(/img/backgrounds/wood-white-bg.jpg) center center no-repeat;
  background-color: #d9d9d9;
  background-repeat: repeat;
}

.is-dark, .navbar.is-dark {
  background-color: #000000;
  color: #ffffff;
  font-size: 100%;
}

.modal-card, .modal-content, .swal2-popup {
  margin: 0 auto;
  position: absolute;
  top: 10%;
}

@media (min-width: 768px) {
  .modal-card,
  .modal-content {
    width: 640px;
  }
}
/* Shopping List scrolling. Fix for IE */
.modal-card-body {
  max-height: 75vh;
}

.modal-card-head {
  background: #D40029;
  color: white;
  border-bottom: 0;
  padding: 10px 15px;
}
.modal-card-head .modal-card-title {
  font-size: 1rem;
}
.modal-card-head .delete {
  width: 30px;
  height: 30px;
  max-height: 30px;
  max-width: 30px;
  min-height: 30px;
  min-width: 30px;
}

.front-cfad-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .front-cfad-container {
    gap: 20px;
  }
}
.front-cfad-container .cfad-logo img {
  max-width: 100px;
}
.front-cfad-container .legend h1 {
  line-height: 1;
  font-weight: bold;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .front-cfad-container .legend h1 {
    font-size: 2rem;
  }
}

.store-banner {
  background: url(/img/backgrounds/store-banner-bg.jpg) center center no-repeat;
  background-color: #1b0d03;
  background-size: cover;
  height: 400px;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .store-banner {
    height: 350px;
    background-position-y: 35%;
  }
}
.store-banner .block-container .titles .block-title,
.store-banner .block-container .titles .block-subtitle {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
}
@media (max-width: 400px) {
  .store-banner .block-container .titles .block-title {
    font-size: 1.9rem;
  }
}
@media (min-width: 768px) {
  .store-banner .block-container .titles {
    max-width: 30%;
  }
}

.ace-rewards-block {
  background-color: #d9d9d9;
  padding: 20px 10px 0 10px;
}
@media (max-width: 400px) {
  .ace-rewards-block {
    padding: 20px 10px 20px 10px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .ace-rewards-block {
    padding: 10px 40px 0 40px;
  }
}
.ace-rewards-block .block-container .info-container {
  position: relative;
}
.ace-rewards-block .block-container .info-container h1 {
  font-weight: bold;
  letter-spacing: -1px;
  line-height: 1;
  font-family: "Roboto", sans-serif;
}
@media (min-width: 1216px) {
  .ace-rewards-block .block-container .info-container h1 {
    font-size: 2.5rem;
    letter-spacing: 1px;
    max-width: 80%;
  }
}
.ace-rewards-block .block-container .info-container .rewards-info {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}
@media (max-width: 400px) {
  .ace-rewards-block .block-container .info-container .rewards-info {
    justify-content: center;
    flex-direction: column;
  }
}
.ace-rewards-block .block-container .info-container .rewards-info .rewards-list li {
  font-weight: bold;
}
.ace-rewards-block .block-container .info-container .rewards-info .ace-rewards {
  position: relative;
  display: flex;
  justify-content: end;
}
@media (max-width: 400px) {
  .ace-rewards-block .block-container .info-container .rewards-info .ace-rewards {
    justify-content: center;
    margin: 10px 0;
  }
}
.ace-rewards-block .block-container .info-container .rewards-info .ace-rewards img {
  transform: rotate(4deg);
  max-width: 133px;
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 4px;
}
@media (min-width: 1216px) {
  .ace-rewards-block .block-container .info-container {
    width: 40%;
    padding-left: 6%;
  }
}
@media (min-width: 1408px) {
  .ace-rewards-block .block-container .info-container {
    padding-left: 10%;
  }
}
.ace-rewards-block .block-container .phone-container {
  position: relative;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 400px) {
  .ace-rewards-block .block-container .phone-container {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .ace-rewards-block .block-container .phone-container {
    width: 50%;
    justify-content: flex-end;
    align-items: center;
  }
}
@media (min-width: 1216px) {
  .ace-rewards-block .block-container .phone-container {
    width: 60%;
    justify-content: space-evenly;
  }
}
.ace-rewards-block .block-container .phone-container .phone {
  display: flex;
}
@media (max-width: 400px) {
  .ace-rewards-block .block-container .phone-container .phone {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .ace-rewards-block .block-container .phone-container .phone {
    display: none;
  }
}
.ace-rewards-block .block-container .phone-container .phone img {
  max-width: 180px;
}
.ace-rewards-block .block-container .phone-container .app-info h1, .ace-rewards-block .block-container .phone-container .app-info h2 {
  color: #ffffff;
  font-weight: bold;
  letter-spacing: -1px;
  line-height: 1;
  font-family: "Roboto", sans-serif;
}
@media (min-width: 1216px) {
  .ace-rewards-block .block-container .phone-container .app-info h1, .ace-rewards-block .block-container .phone-container .app-info h2 {
    letter-spacing: 1px;
  }
}
@media (min-width: 1216px) {
  .ace-rewards-block .block-container .phone-container .app-info h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1216px) {
  .ace-rewards-block .block-container .phone-container .app-info h2 {
    font-size: 2rem;
  }
}
.ace-rewards-block .block-container .phone-container .app-info p {
  color: #ffffff;
  font-weight: bold;
}
.ace-rewards-block .block-container .phone-container .app-info p.yellow-text {
  color: #fff200;
}
@media (min-width: 1024px) {
  .ace-rewards-block .block-container .phone-container .app-info p.yellow-text {
    margin-bottom: 10px;
  }
}
@media (max-width: 400px) {
  .ace-rewards-block .block-container .phone-container .app-info .app-list {
    margin-left: 10%;
  }
}
@media (min-width: 768px) {
  .ace-rewards-block .block-container .phone-container .app-info .app-list {
    margin-left: 10%;
  }
}
@media (min-width: 1216px) {
  .ace-rewards-block .block-container .phone-container .app-info .app-list {
    margin-left: 22%;
  }
}
.ace-rewards-block .block-container .phone-container .app-info .app-list li {
  color: #ffffff;
  font-weight: bold;
}
@media (min-width: 768px) {
  .ace-rewards-block .block-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.app-stores {
  display: flex;
  justify-content: space-evenly;
}
.app-stores img {
  max-width: 180px;
}
@media (max-width: 400px) {
  .app-stores img {
    max-width: 150px;
  }
}
@media (min-width: 768px) {
  .app-stores {
    display: flex !important;
    gap: 20px;
  }
  .app-stores.extra-block {
    display: none !important;
  }
}

.store-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .store-blocks {
    flex-direction: row;
  }
}
.store-blocks .store-info-banner {
  background-color: #221e1f;
  position: relative;
  z-index: 0;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  flex: 1;
}
.store-blocks .store-info-banner:before {
  content: "";
  background: url(/img/backgrounds/wood-bg.jpg) center center no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.2;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.store-blocks .store-info-banner .block-container {
  padding: 50px 20px;
  text-align: center;
}
.store-blocks .store-info-banner .block-container .titles .block-title {
  color: #ffffff;
  font-family: hackney;
  font-size: 4rem;
  line-height: 0.8;
}
.store-blocks .store-info-banner .block-container .titles .block-subtitle {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
}
@media (min-width: 1408px) {
  .store-blocks .store-info-banner .block-container .titles .block-subtitle {
    padding: 0 70px;
  }
}
@media (min-width: 1216px) {
  .store-blocks .store-info-banner .block-container {
    padding: 50px 80px;
  }
}
@media (min-width: 768px) {
  .store-blocks .store-info-banner {
    height: 364px;
  }
}
.store-blocks .dorothys-info-banner {
  background: rgb(233, 233, 233);
  background: linear-gradient(180deg, rgb(233, 233, 233) 0%, rgb(255, 255, 255) 100%);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
  width: 100%;
  flex: 1;
}
.store-blocks .dorothys-info-banner .block-container {
  position: relative;
  overflow: hidden;
  height: 337px;
  z-index: 1;
}
@media (min-width: 768px) {
  .store-blocks .dorothys-info-banner .block-container {
    height: 364px;
  }
}
.store-blocks .dorothys-info-banner .block-container .photo-container {
  position: relative;
  z-index: -1;
  top: -6%;
  left: -35%;
}
.store-blocks .dorothys-info-banner .block-container .photo-container img {
  border-radius: 50%;
  border: 10px solid #43b5c3;
  transform: rotate(-2deg);
}
@media (max-width: 374px) {
  .store-blocks .dorothys-info-banner .block-container .photo-container {
    top: 0;
  }
  .store-blocks .dorothys-info-banner .block-container .photo-container img {
    -moz-transform: scale(1.2) rotate(-2deg);
    -ms-transform: scale(1.2) rotate(-2deg);
    -o-transform: scale(1.2) rotate(-2deg);
    -webkit-transform: scale(1.2) rotate(-2deg);
    transform: scale(1.2) rotate(-2deg);
  }
}
@media (min-width: 768px) {
  .store-blocks .dorothys-info-banner .block-container .photo-container {
    top: -15%;
  }
  .store-blocks .dorothys-info-banner .block-container .photo-container img {
    -moz-transform: scale(1.2) rotate(-2deg);
    -ms-transform: scale(1.2) rotate(-2deg);
    -o-transform: scale(1.2) rotate(-2deg);
    -webkit-transform: scale(1.2) rotate(-2deg);
    transform: scale(1.2) rotate(-2deg);
  }
}
@media (min-width: 1216px) {
  .store-blocks .dorothys-info-banner .block-container .photo-container {
    top: -20%;
  }
}
@media (min-width: 1408px) {
  .store-blocks .dorothys-info-banner .block-container .photo-container {
    top: -40%;
  }
  .store-blocks .dorothys-info-banner .block-container .photo-container img {
    -moz-transform: scale(1) rotate(-2deg);
    -ms-transform: scale(1) rotate(-2deg);
    -o-transform: scale(1) rotate(-2deg);
    -webkit-transform: scale(1) rotate(-2deg);
    transform: scale(1) rotate(-2deg);
  }
}
.store-blocks .dorothys-info-banner .block-container .titles {
  background-color: #e9e9e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 300px;
  width: 300px;
  position: absolute;
  right: -20px;
  top: -30px;
  padding-top: 30px;
}
@media (max-width: 374px) {
  .store-blocks .dorothys-info-banner .block-container .titles {
    width: 250px;
    height: 250px;
  }
}
@media (min-width: 1408px) {
  .store-blocks .dorothys-info-banner .block-container .titles {
    width: 320px;
    height: 320px;
    right: -10px;
  }
}
.store-blocks .dorothys-info-banner .block-container .titles .block-title {
  border-top: 2px dotted #2e201a;
  border-bottom: 2px dotted #2e201a;
  color: #2e201a;
  text-align: center;
  line-height: 1;
  padding: 10px;
  margin: 20px auto;
}
@media (max-width: 374px) {
  .store-blocks .dorothys-info-banner .block-container .titles .block-title {
    font-size: 1.5rem;
    padding: 10px 0;
  }
}
.store-blocks .dorothys-info-banner .block-container .titles .gift-icon {
  max-width: 32px;
}
.store-blocks .dorothys-info-banner .block-container .logo-container {
  position: absolute;
  bottom: 0;
  right: 10px;
}
.store-blocks .dorothys-info-banner .block-container .logo-container img {
  max-width: 130px;
}
@media (max-width: 374px) {
  .store-blocks .dorothys-info-banner .block-container .logo-container img {
    max-width: 100px;
  }
}
@media (min-width: 1408px) {
  .store-blocks .dorothys-info-banner .block-container .logo-container img {
    max-width: 180px;
  }
}

.gray-bg .block-info .titles h1, .gray-bg .block-info .titles h3 {
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .gray-bg .block-info .titles {
    max-width: 35%;
  }
}
@media (min-width: 1408px) {
  .gray-bg .block-info .titles {
    max-width: 40%;
  }
}
.gray-bg .photo-container {
  position: relative;
}
.gray-bg .photo-container img {
  vertical-align: middle;
}
@media (max-width: 767px) {
  .gray-bg .block-container {
    clip-path: none;
  }
}
.gray-bg .hometown-info .about-header {
  background: url(/img/PPHH-Images/PointPlace_Entrance_Mobile.jpg) no-repeat;
  background-color: #1b0d03;
  background-size: cover;
  height: 400px;
  display: flex;
  align-items: flex-end;
  background-position-x: 90%;
  background-position-y: center;
}
@media (min-width: 768px) {
  .gray-bg .hometown-info .about-header {
    background: url(/img/PPHH-Images/PointPlace_Entrance.jpg) no-repeat;
    height: 350px;
    background-position-x: 90%;
    background-position-y: center;
  }
}
.gray-bg .sylvania-info .about-header {
  background: url(/img/SHH-Images/Sylvania_Entrance_Mobile.jpg) no-repeat;
  background-color: #1b0d03;
  background-size: cover;
  height: 400px;
  display: flex;
  align-items: flex-end;
  background-position-x: 0;
  background-position-y: center;
}
@media (min-width: 768px) {
  .gray-bg .sylvania-info .about-header {
    background: url(/img/SHH-Images/Sylvania_Entrance.jpg) no-repeat;
    height: 350px;
    background-position-x: -25%;
  }
}
@media (min-width: 992px) {
  .gray-bg .sylvania-info .about-header {
    background-position-x: -60%;
  }
}
@media (min-width: 1216px) {
  .gray-bg .sylvania-info .about-header {
    background-position-x: -170%;
  }
}
@media (min-width: 1408px) {
  .gray-bg .sylvania-info .about-header {
    background-position-x: -6000%;
  }
}
.gray-bg .store-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.store-brands .store-brands-logos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px 60px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .store-brands .store-brands-logos {
    gap: 30px 100px;
  }
}

.store-about-banner {
  background-color: #D40029;
}
.store-about-banner .store-info {
  color: #ffffff;
}
.store-about-banner .store-info .block-title {
  color: #ffffff;
  font-weight: bold;
}
.store-about-banner .store-img img {
  vertical-align: middle;
}
@media (min-width: 768px) {
  .store-about-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .store-about-banner .container .store-img {
    width: 50%;
  }
  .store-about-banner .container .store-info {
    margin-left: 20px;
    width: 50%;
  }
}
@media (min-width: 1216px) {
  .store-about-banner .container .store-img {
    height: 400px;
    overflow-y: hidden;
    position: relative;
  }
  .store-about-banner .container .store-img img {
    transform: translateY(-18%);
  }
  .store-about-banner .container .store-info {
    margin-left: 50px;
  }
}
@media (min-width: 1408px) {
  .store-about-banner .container .store-img img {
    transform: translateY(-25%);
  }
}

.block-info .swiper {
  width: 100%;
  height: 100%;
}
.block-info .swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.block-info .swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-info .swiper.hometownSwiper2, .block-info .swiper.sylvaniaSwiper2, .block-info .swiper.photoSwiper2 {
  height: 80%;
  width: 100%;
  max-width: 940px;
}
.block-info .swiper.hometownSwiper, .block-info .swiper.sylvaniaSwiper, .block-info .swiper.photoSwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0 50px 0;
}
.block-info .swiper.hometownSwiper .swiper-slide, .block-info .swiper.sylvaniaSwiper .swiper-slide, .block-info .swiper.photoSwiper .swiper-slide {
  width: 20%;
  height: 100%;
  max-height: 65px;
  opacity: 0.5;
  overflow: hidden;
}
@media (min-width: 768px) {
  .block-info .swiper.hometownSwiper .swiper-slide, .block-info .swiper.sylvaniaSwiper .swiper-slide, .block-info .swiper.photoSwiper .swiper-slide {
    max-height: 120px;
  }
}
.block-info .swiper.hometownSwiper .swiper-slide-thumb-active, .block-info .swiper.sylvaniaSwiper .swiper-slide-thumb-active, .block-info .swiper.photoSwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.departments-page .departments-block {
  padding-bottom: 1px;
}
.departments-page .departments-block .button {
  display: none;
}
.departments-page .departments .department-header {
  position: relative;
  display: flex;
  overflow: hidden;
}
.departments-page .departments .department-header .dept-hero {
  position: relative;
  z-index: -1;
}
.departments-page .departments .department-header .dept-title-wrapper {
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  position: absolute;
  left: 0px;
  bottom: 10px;
  text-align: left;
  padding: 10px 30px 10px 10px;
}
@media (max-width: 374px) {
  .departments-page .departments .department-header .dept-title-wrapper {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media (min-width: 768px) {
  .departments-page .departments .department-header .dept-title-wrapper {
    padding-right: 40px;
    padding-left: 15px;
  }
}
.departments-page .departments .department-header .dept-title-wrapper:before {
  content: "";
  border-top: 44px solid #D40029;
  border-right: 25px solid transparent;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  filter: drop-shadow(0px 0px 14px #000);
}
@media (max-width: 374px) {
  .departments-page .departments .department-header .dept-title-wrapper:before {
    border-top-width: 34px;
  }
}
@media (min-width: 768px) {
  .departments-page .departments .department-header .dept-title-wrapper:before {
    border-top-width: 71px;
  }
}
@media (min-width: 1216px) {
  .departments-page .departments .department-header .dept-title-wrapper:before {
    border-top-width: 74px;
  }
}
.departments-page .departments .department-header .dept-title-wrapper .dept-title {
  color: #fff;
  font-weight: 400;
  letter-spacing: -1px;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
  font-family: hackney;
}
@media (max-width: 374px) {
  .departments-page .departments .department-header .dept-title-wrapper .dept-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .departments-page .departments .department-header .dept-title-wrapper .dept-title {
    font-size: 3.2rem;
  }
}
@media (min-width: 1216px) {
  .departments-page .departments .department-header .dept-title-wrapper .dept-title {
    font-size: 4rem;
  }
}
.departments-page .departments .department-header .dept-title-wrapper .dept-icon {
  display: none;
}
.departments-page .departments .department-body .pphh-only {
  text-transform: uppercase;
  font-weight: bold;
  font-style: italic;
}
.departments-page .departments .department-body p {
  margin-bottom: 1rem;
}
.departments-page .departments .department-body p .red-text {
  color: #D40029;
  text-transform: uppercase;
  font-weight: bold;
}
.departments-page .departments .department-body a {
  color: #D40029;
  text-decoration: underline;
}
.departments-page .departments .department-body .red-text {
  color: #D40029;
  font-weight: bold;
}
.departments-page .departments .department-brands {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: center;
}
.departments-page .departments .department-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.departments-page .departments .department-photos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.departments-page .departments .department-photos img {
  max-width: calc(50% - 10px);
}
@media (min-width: 768px) {
  .departments-page .departments .department-photos img {
    max-width: calc(33.3333333333% - 15px);
  }
}

.locations-page header .branding-container .store-selector #weekly-Circulars .no-store,
.specials-page header .branding-container .store-selector #weekly-Circulars .no-store {
  justify-content: center;
}
@media (min-width: 1024px) {
  .locations-page header .branding-container .store-selector #weekly-Circulars .no-store,
  .specials-page header .branding-container .store-selector #weekly-Circulars .no-store {
    justify-content: left;
    margin-left: 10px;
  }
}

.search-zip .search-by-zip {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
}
.search-zip .search-by-zip .zip-descrip {
  text-align: center;
}
.search-zip .search-by-zip .zip-descrip #zipCodeDescrip {
  color: #333;
}
.search-zip .search-by-zip .zip-input {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.search-zip .search-by-zip .zip-input #zipInput,
.search-zip .search-by-zip .zip-input #bh-sl-address {
  width: 60%;
  height: 40px;
  margin: 10px 0;
  padding: 0 10px;
}
@media screen and (max-width: 374px) {
  .search-zip .search-by-zip .zip-input #zipInput,
  .search-zip .search-by-zip .zip-input #bh-sl-address {
    height: 35px;
  }
}
.search-zip .search-by-zip .zip-input #bh-sl-maxdistance {
  height: 40px;
  padding: 0 10px;
  appearance: menulist-button;
  -webkit-appearance: menulist-button;
  -moz-appearance: menulist-button;
}
@media screen and (max-width: 374px) {
  .search-zip .search-by-zip .zip-input #bh-sl-maxdistance {
    height: 35px;
  }
}
.search-zip .search-by-zip .zip-input #bh-sl-submit {
  width: 80%;
}
@media (min-width: 768px) {
  .search-zip .search-by-zip {
    align-items: center;
    justify-content: flex-start;
  }
  .search-zip .search-by-zip .zip-input {
    flex-wrap: nowrap;
    width: 600px;
  }
  .search-zip .search-by-zip .zip-input #zipInput,
  .search-zip .search-by-zip .zip-input #bh-sl-address {
    width: 100%;
    margin: 0 10px;
  }
  .search-zip .search-by-zip .zip-input #bh-sl-maxdistance {
    margin-right: 10px;
  }
}
@media (min-width: 1024px) {
  .search-zip .search-by-zip {
    align-items: start;
  }
  .search-zip .search-by-zip .zip-descrip {
    flex: 60%;
  }
}
@media (min-width: 1024px) {
  .search-zip .search-by-zip .zip-wrapper {
    flex-flow: row;
    display: flex;
  }
  .search-zip .search-by-zip .zip-descrip {
    flex: none;
    margin-bottom: 0;
    line-height: 40px;
  }
}
.search-zip .use-my-location {
  margin-top: 10px;
  color: #333;
  text-align: center;
}
.search-zip .use-my-location a {
  color: #333;
}
.search-zip .use-my-location a:hover {
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .search-zip .use-my-location {
    text-align: left;
    margin-left: 13px;
  }
}

#locationList .circular-location,
#locationsList .circular-location {
  cursor: pointer;
  padding: 40px 5px;
  border-bottom: 1px solid #333;
}
#locationList .circular-location.has-shadow-border,
#locationsList .circular-location.has-shadow-border {
  border: 1px solid #D40029 !important;
  -webkit-box-shadow: 0 0 5px rgba(155, 10, 35, 0.5);
  box-shadow: 0 0 5px rgba(155, 10, 35, 0.5);
}
#locationList .circular-location:last-child,
#locationsList .circular-location:last-child {
  border-bottom: none;
}
#locationList .circular-location .our-stores,
#locationsList .circular-location .our-stores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "store-title store-cta" "store-info store-cta" "specials-link specials-link";
  grid-template-columns: 1.3fr 0.7fr;
  grid-column-gap: 20px;
}
@media (min-width: 1024px) {
  #locationList .circular-location .our-stores,
  #locationsList .circular-location .our-stores {
    grid-template-areas: "store-title store-cta" "store-info     store-cta" "store-info     specials-link" "store-info     specials-link";
    grid-template-columns: 1fr 1fr;
  }
}
#locationList .circular-location .our-stores .circular-store,
#locationsList .circular-location .our-stores .circular-store {
  grid-column-start: store-title;
  grid-column-end: store-title;
  text-align: left;
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  #locationList .circular-location .our-stores .circular-store,
  #locationsList .circular-location .our-stores .circular-store {
    margin-bottom: 20px;
  }
}
#locationList .circular-location .our-stores .storeLocation,
#locationsList .circular-location .our-stores .storeLocation {
  margin-bottom: 10px;
}
#locationList .circular-location .our-stores .storeHours,
#locationsList .circular-location .our-stores .storeHours {
  margin-bottom: 10px;
}
#locationList .circular-location .our-stores .locationPhone,
#locationsList .circular-location .our-stores .locationPhone {
  margin-bottom: 10px;
}
#locationList .circular-location .our-stores .locationPhone a,
#locationsList .circular-location .our-stores .locationPhone a {
  color: #D40029;
}
@media (min-width: 768px) {
  #locationList .circular-location .our-stores .locationPhone a,
  #locationsList .circular-location .our-stores .locationPhone a {
    font-size: 1.2rem;
  }
}
#locationList .circular-location .our-stores .storeInfo a,
#locationsList .circular-location .our-stores .storeInfo a {
  color: #D40029;
}
#locationList .circular-location .our-stores .storeInfo a:hover,
#locationsList .circular-location .our-stores .storeInfo a:hover {
  text-decoration: underline;
}
#locationList .circular-location .our-stores .store-info-wrapper,
#locationsList .circular-location .our-stores .store-info-wrapper {
  grid-column-start: store-info;
  grid-column-end: store-info;
  grid-row-start: store-info;
  grid-row-end: store-info;
}
#locationList .circular-location .our-stores .store-info-wrapper .storeLocation,
#locationList .circular-location .our-stores .store-info-wrapper .storeHours,
#locationList .circular-location .our-stores .store-info-wrapper .locationPhone,
#locationList .circular-location .our-stores .store-info-wrapper .storeInfo .locationDistance,
#locationsList .circular-location .our-stores .store-info-wrapper .storeLocation,
#locationsList .circular-location .our-stores .store-info-wrapper .storeHours,
#locationsList .circular-location .our-stores .store-info-wrapper .locationPhone,
#locationsList .circular-location .our-stores .store-info-wrapper .storeInfo .locationDistance {
  text-align: left;
}
#locationList .circular-location .our-stores .store-info-icons,
#locationsList .circular-location .our-stores .store-info-icons {
  grid-column-start: store-cta;
  grid-column-end: store-cta;
  grid-row-start: store-cta;
  grid-row-end: store-cta;
}
#locationList .circular-location .our-stores .store-info-icons .store-icon,
#locationsList .circular-location .our-stores .store-info-icons .store-icon {
  margin: 10px 0;
}
#locationList .circular-location .our-stores .store-info-icons .store-icon a,
#locationsList .circular-location .our-stores .store-info-icons .store-icon a {
  display: flex;
  flex-flow: column;
  color: #D40029;
  align-items: center;
}
#locationList .circular-location .our-stores .store-info-icons .store-icon a img,
#locationsList .circular-location .our-stores .store-info-icons .store-icon a img {
  width: 32px;
  height: 32px;
}
#locationList .circular-location .our-stores .store-info-icons .store-icon a:hover,
#locationsList .circular-location .our-stores .store-info-icons .store-icon a:hover {
  opacity: 0.8;
}
@media (min-width: 1024px) {
  #locationList .circular-location .our-stores .store-info-icons,
  #locationsList .circular-location .our-stores .store-info-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
}
#locationList .circular-location .our-stores .store-circular-links,
#locationsList .circular-location .our-stores .store-circular-links {
  grid-column-start: specials-link;
  grid-column-end: specials-link;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 20px auto;
  gap: 8px;
}
#locationList .circular-location .our-stores .store-circular-links .circular-link,
#locationsList .circular-location .our-stores .store-circular-links .circular-link {
  width: 50%;
}
#locationList .circular-location .our-stores .store-circular-links .circular-link .button.is-primary,
#locationsList .circular-location .our-stores .store-circular-links .circular-link .button.is-primary {
  width: 100%;
  background-color: #fff;
  border: 1px solid #D40029;
  color: #D40029;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
  font-weight: 400;
  padding: 24px;
}
#locationList .circular-location .our-stores .store-circular-links .circular-link .button.is-primary:hover,
#locationsList .circular-location .our-stores .store-circular-links .circular-link .button.is-primary:hover {
  background-color: #D40029;
  border: 1px solid #D40029;
  color: #fff;
}
#locationList .circular-location .our-stores .store-circular-links .circular-link-view-only,
#locationsList .circular-location .our-stores .store-circular-links .circular-link-view-only {
  width: 50%;
}
#locationList .circular-location .our-stores .store-circular-links .circular-link-view-only .button.is-primary,
#locationsList .circular-location .our-stores .store-circular-links .circular-link-view-only .button.is-primary {
  width: 100%;
  padding: 24px;
}
@media (min-width: 1024px) {
  #locationList .circular-location .our-stores .store-circular-links,
  #locationsList .circular-location .our-stores .store-circular-links {
    grid-column-start: specials-link;
    grid-column-end: specials-link;
    grid-row-start: specials-link;
    grid-row-end: specials-link;
    flex-flow: column;
    margin: 0px auto;
    justify-content: flex-start;
  }
  #locationList .circular-location .our-stores .store-circular-links .button,
  #locationsList .circular-location .our-stores .store-circular-links .button {
    width: 100%;
  }
  #locationList .circular-location .our-stores .store-circular-links .circular-link,
  #locationsList .circular-location .our-stores .store-circular-links .circular-link {
    width: 100%;
    margin: 20px 0;
  }
  #locationList .circular-location .our-stores .store-circular-links .circular-link-view-only,
  #locationsList .circular-location .our-stores .store-circular-links .circular-link-view-only {
    width: 100%;
    margin-bottom: 20px;
  }
}
#locationList .circular-location .our-stores .locationDistance span,
#locationsList .circular-location .our-stores .locationDistance span {
  font-weight: 700;
}

#infoContent {
  text-align: center;
}
#infoContent .infoLocal {
  font-weight: bold;
}
#infoContent .infoPhone a:focus-visible {
  outline-color: transparent;
}

#storeLocations {
  overflow-y: scroll;
  max-height: 640px;
}

#googleMapsArea {
  height: 640px;
  width: 100%;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-device-pixel-ratio: 2) and (device-aspect-ratio: 40/71) and (orientation: portrait) {
  #weeklyCirculars .button.is-primary {
    font-size: 0.8rem;
  }
}

.section-content {
  display: none;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}
.section-content .block .ad-items {
  border-bottom: 1px solid #dbdbdb;
}
.section-content .block .subtitle {
  font-size: 0.9rem;
}
.section-content .block .subtitle .product-price {
  color: #c41230;
  font-size: 1.5rem;
  font-weight: bolder;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .section-content .block .subtitle .product-price {
    font-size: 2rem !important;
  }
}
.section-content .block .button.is-small {
  font-size: 1rem;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-device-pixel-ratio: 2) and (device-aspect-ratio: 40/71) and (orientation: portrait) {
  .section-content .block .button.is-small {
    font-size: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .section-content .block {
    display: inline-block;
    width: 100%;
  }
  .section-content .block .ad-items {
    width: 50%;
    height: 170px;
    float: left;
    border-bottom: 1px solid #dbdbdb;
  }
  .section-content .block .ad-items .subtitle {
    font-size: 0.9rem;
  }
  .section-content .block .ad-items .subtitle .product-price {
    color: #c41230;
    font-weight: bolder;
  }
  .section-content .block .ad-items .button.is-small {
    font-size: 1rem;
  }
}

#content .input {
  width: 31%;
}

@media (min-width: 1024px) {
  .media-content {
    min-height: 150px;
  }
}

/* Go from zero to full opacity */
@-webkit-keyframes fadeEffect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Shopping List scrolling. Fix for IE */
/*  NEW CODE */
#saleItems #saleItemsForm.has-sticky {
  padding-top: 125px;
  background-color: #000;
}
@media (min-width: 768px) {
  #saleItems #saleItemsForm.has-sticky {
    padding-top: 141px;
    background-color: #fff;
  }
}
#saleItems .grid {
  background-color: #000;
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 50px auto;
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-auto-rows: calc((100vw - 10px) / 3);
  grid-auto-flow: dense;
  grid-gap: 5px;
  overflow: hidden;
  padding: 5px;
}
@media (min-width: 576px) {
  #saleItems .grid {
    grid-template-columns: repeat(4, auto);
    grid-auto-rows: calc((100vw - 15px) / 4);
  }
}
@media (min-width: 768px) {
  #saleItems .grid {
    grid-template-columns: repeat(6, auto);
    grid-auto-rows: calc((100vw - 25px) / 6);
  }
}
@media (min-width: 1200px) {
  #saleItems .grid {
    grid-template-columns: repeat(9, minmax(auto, 1fr));
    grid-auto-rows: calc((100vw - 40px) / 9);
  }
}
@media (min-width: 1408px) {
  #saleItems .grid {
    grid-template-columns: repeat(9, minmax(auto, 1fr));
    grid-auto-rows: 151.1111111111px;
  }
}
#saleItems .grid .section-content {
  background-color: #000;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
  place-items: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#saleItems .grid .section-content .product-nav {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "badge     add";
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 10px;
  position: absolute;
  z-index: 2;
  top: 5px;
}
@media (min-width: 768px) {
  #saleItems .grid .section-content .product-nav {
    top: 6px;
  }
}
#saleItems .grid .section-content .product-nav .item-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  left: 5px;
  grid-column-start: badge;
  grid-column-end: badge;
  max-width: 60px;
}
@media (min-width: 768px) {
  #saleItems .grid .section-content .product-nav .item-badge {
    left: 6px;
  }
}
#saleItems .grid .section-content .product-nav .item-badge img {
  vertical-align: middle;
}
#saleItems .grid .section-content .product-nav .add {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  right: 5px;
  grid-column-start: add;
  grid-column-end: add;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  #saleItems .grid .section-content .product-nav .add {
    right: 6px;
  }
}
#saleItems .grid .section-content .product-nav .add .ace-icon {
  color: #D40029;
  cursor: pointer;
  width: 26px;
  height: 26px;
}
@media (min-width: 768px) {
  #saleItems .grid .section-content .product-nav .add .ace-icon {
    width: 32px;
    height: 32px;
  }
}
#saleItems .grid .section-content .product-nav .add .ace-icon .fa-check-circle,
#saleItems .grid .section-content .product-nav .add .ace-icon .fa-circle-check {
  color: #2c2c2c;
}
#saleItems .grid .section-content .product-nav .add input {
  display: none;
}
#saleItems .grid .section-content .is-sized .in-house-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#saleItems .grid .section-content .is-sized .video-cover {
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#saleItems .grid .section-content .is-sized .video-cover iframe {
  background: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#saleItems .grid .section-content .is-sized .video-cover img {
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#saleItems .grid .section-content .is-sized img {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
}
#saleItems .grid .section-content.grid11 {
  grid-column-end: span 1;
  grid-row-end: span 1;
}
#saleItems .grid .section-content.grid11 .ace-rewards {
  width: 40px;
  margin-bottom: 55px;
}
@media (min-width: 768px) {
  #saleItems .grid .section-content.grid11 .ace-rewards {
    margin-bottom: 65px;
    width: 50px;
  }
}
#saleItems .grid .section-content.grid11 .ace-icon {
  width: 26px !important;
  height: 26px !important;
}
#saleItems .grid .section-content.grid11 .item-badge {
  width: 50%;
}
@media (min-width: 768px) {
  #saleItems .grid .section-content.grid11 .item-badge {
    width: 35px;
  }
}
#saleItems .grid .section-content.grid11 .bottomright {
  height: 30px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  #saleItems .grid .section-content.grid11 .bottomright {
    height: 40px;
  }
}
#saleItems .grid .section-content.grid11 .bottomright .sale-item {
  font-size: 0.5rem;
  height: 12px;
}
#saleItems .grid .section-content.grid11 .bottomright .sale-item::before {
  height: 12px;
  left: -12px;
}
@media (min-width: 768px) {
  #saleItems .grid .section-content.grid11 .bottomright .sale-item::before {
    left: -10px;
  }
}
#saleItems .grid .section-content.grid11 .bottomright .product-price.mt-10 {
  margin-top: 9px;
}
@media (min-width: 768px) {
  #saleItems .grid .section-content.grid11 .bottomright .product-price.mt-10 {
    margin-top: 10px;
  }
}
#saleItems .grid .section-content.grid11.full .is-sized img {
  height: 100%;
  width: 100%;
}
#saleItems .grid .section-content.grid12 {
  grid-column-end: span 1;
  grid-row-end: span 2;
}
#saleItems .grid .section-content.grid12.full .is-sized img {
  height: 100%;
  width: 100%;
}
#saleItems .grid .section-content.grid21 {
  grid-column-end: span 2;
  grid-row-end: span 1;
}
#saleItems .grid .section-content.grid21 .bottomright {
  height: 30px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  #saleItems .grid .section-content.grid21 .bottomright {
    height: 40px;
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  #saleItems .grid .section-content.grid21 .bottomright {
    font-size: 1.7rem;
  }
}
#saleItems .grid .section-content.grid21.full .is-sized img {
  height: 100%;
  width: 100%;
}
#saleItems .grid .section-content.grid22 {
  grid-column-end: span 2;
  grid-row-end: span 2;
}
#saleItems .grid .section-content.grid22 .ace-rewards {
  width: 60px;
  margin-bottom: 90px;
}
@media (min-width: 768px) {
  #saleItems .grid .section-content.grid22 .ace-rewards {
    margin-bottom: 110px;
    width: 70px;
  }
}
#saleItems .grid .section-content.grid22.full .is-sized img {
  height: 100%;
  width: 100%;
}
#saleItems .grid .section-content.grid31 {
  grid-column-end: span 3;
  grid-row-end: span 1;
}
#saleItems .grid .section-content.grid31 .bottomright {
  height: 40px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  #saleItems .grid .section-content.grid31 .bottomright {
    height: 50px;
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  #saleItems .grid .section-content.grid31 .bottomright {
    font-size: 1.7rem;
  }
}
#saleItems .grid .section-content.grid31 .bottomright .sale-item::before {
  left: -11px;
}
@media (min-width: 768px) {
  #saleItems .grid .section-content.grid31 .bottomright .sale-item::before {
    left: -9px;
  }
}
#saleItems .grid .section-content.grid31.full .is-sized img {
  height: 100%;
  width: 100%;
}
#saleItems .grid .section-content.grid32 {
  grid-column-end: span 3;
  grid-row-end: span 2;
}
#saleItems .grid .section-content.grid32 .ace-rewards {
  width: 60px;
  margin-bottom: 90px;
}
@media (min-width: 768px) {
  #saleItems .grid .section-content.grid32 .ace-rewards {
    margin-bottom: 110px;
    width: 70px;
  }
}
#saleItems .grid .section-content.grid32 .is-sized img {
  height: 90%;
  width: auto;
}
#saleItems .grid .section-content.grid32.full .is-sized img {
  height: 100%;
  width: 100%;
}
#saleItems .grid .section-content.grid33 {
  grid-column-end: span 3;
  grid-row-end: span 3;
}
#saleItems .grid .section-content.grid33 .ace-rewards {
  width: 70px;
  margin-bottom: 90px;
}
@media (min-width: 768px) {
  #saleItems .grid .section-content.grid33 .ace-rewards {
    margin-bottom: 110px;
    width: 80px;
  }
}
#saleItems .grid .section-content.grid33 .bottomright .sale-item::before {
  left: -7.5px;
}
#saleItems .grid .section-content.grid33.full .is-sized img {
  height: 100%;
  width: 100%;
}
#saleItems .grid .show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#saleItems .grid .show article figure {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
#saleItems .grid .show article figure #product-nav {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#saleItems .grid .show article figure .is-sized {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0%;
  overflow: hidden;
}
#saleItems .grid .show article .bottomright {
  height: 60px;
  position: absolute;
  z-index: 1;
  background-color: #D40029;
  margin-bottom: 29px;
  padding: 0 8px;
  color: #fff;
  bottom: 0px;
  right: 0px;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  display: grid;
  justify-content: center;
  align-items: center;
}
#saleItems .grid .show article .bottomright .sale-item {
  text-transform: uppercase;
  font-size: 0.7rem;
  background: #000;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 17px;
  letter-spacing: 2px;
}
#saleItems .grid .show article .bottomright .product-price.mt-10 {
  margin-top: 13px;
}
@media (min-width: 992px) {
  #saleItems .grid .show article .bottomright {
    font-size: 2rem;
  }
}
#saleItems .grid .show article .ace-rewards {
  position: absolute;
  bottom: 0px;
  margin-bottom: 60px;
  right: 5px;
  width: 50px;
}
@media (min-width: 768px) {
  #saleItems .grid .show article .ace-rewards {
    width: 60px;
    margin-bottom: 70px;
  }
}
#saleItems .grid .show article .product-title {
  width: 100%;
  height: 30px;
  position: absolute;
  bottom: -1px;
  background-color: #dddddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}
#saleItems .grid .show article .product-title a {
  width: 100%;
  display: block;
  text-align: left;
}
#saleItems .grid .show article .product-title a .title {
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  margin-bottom: 0;
  font-size: 12pt;
  font-weight: bold;
}
#saleItems .grid .show article .product-title[data-selectstate=true] {
  background-color: #2c2c2c;
}
#saleItems .grid .show article .product-title[data-selectstate=true] a .title {
  color: #dddddd;
}

.multipleAds .ad-container {
  border-bottom: 1px solid #D40029;
}
.multipleAds .ad-container:last-child {
  border-bottom: none;
}

.ace-rewards {
  display: none !important;
}

/* Header Styles */
#digital-ad-header {
  background: #D40029;
  display: none;
}

.header-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "menu-wrap  shopping-list" "valid-dates  valid-dates";
  grid-template-rows: repeat(2, auto);
  font-size: 1rem;
  padding: 10px 0;
}
@media (min-width: 768px) {
  .header-container {
    grid-template-columns: 1fr 200px;
  }
}
.header-container .menu-wrap {
  grid-column-start: menu-wrap;
  grid-column-end: menu-wrap;
  grid-row-start: menu-wrap;
  grid-row-end: menu-wrap;
  background: #D40029;
  height: 60px;
}
@media (min-width: 768px) {
  .header-container .menu-wrap {
    height: 70px;
    overflow-x: auto;
    overflow-y: hidden;
    border-right: 2px solid rgba(0, 0, 0, 0.15);
    scrollbar-width: thin;
    scrollbar-color: #000000 #D40029;
  }
  .header-container .menu-wrap::-webkit-scrollbar {
    width: 1px;
    height: 6px;
  }
  .header-container .menu-wrap::-webkit-scrollbar-track {
    background: #D40029;
  }
  .header-container .menu-wrap::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius: 50px;
  }
}
.header-container .menu-wrap .toggler {
  display: none;
}
.header-container .menu-wrap .mobile-menu {
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
@media (min-width: 768px) {
  .header-container .menu-wrap .mobile-menu {
    margin: 10px 5px;
  }
  .header-container .menu-wrap .mobile-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
  }
  .header-container .menu-wrap .mobile-menu ul li {
    width: 100%;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header-container .menu-wrap .mobile-menu ul li:has(> a.Header), .header-container .menu-wrap .mobile-menu ul li:has(> a.Footer) {
    display: none;
  }
  .header-container .menu-wrap .mobile-menu ul li a {
    width: 100%;
    height: 100%;
    background: #D40029;
    font-size: 1rem;
    font-weight: normal;
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
  }
  .header-container .menu-wrap .mobile-menu ul li a.active-category {
    background: #000000;
    border: 1px solid #000000;
  }
}
.header-container .shopping-list {
  grid-column-start: shopping-list;
  grid-column-end: shopping-list;
  grid-row-start: shopping-list;
  grid-row-end: shopping-list;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #D40029;
  height: 60px;
  padding-right: 5px;
}
.header-container .shopping-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-container .shopping-list a span {
  color: #fff;
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: normal;
}
.header-container .shopping-list a:hover {
  background: #D40029;
}
.header-container .shopping-list a img {
  margin-left: 5px;
}
@media screen and (max-width: 350px) {
  .header-container .shopping-list a span {
    font-size: 0.6rem;
  }
}
@media (min-width: 768px) {
  .header-container .shopping-list a {
    background: #D40029;
    padding: 10px;
    width: 200px;
    border-radius: 5px;
    font-size: 1rem;
  }
  .header-container .shopping-list a span {
    font-weight: normal;
  }
  .header-container .shopping-list a img {
    margin-left: 10px;
  }
}
@media (min-width: 768px) {
  .header-container .shopping-list {
    background: none;
    padding-right: 0;
  }
}
.header-container .valid-dates {
  grid-column-start: valid-dates;
  grid-column-end: valid-dates;
  font-size: 1em;
}

.valid-dates-container .saleDates #validDates,
.valid-dates-container .saleDates #validDatesNew {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
}
.valid-dates-container .saleDates #validDates span,
.valid-dates-container .saleDates #validDatesNew span {
  font-size: 1.2rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .valid-dates-container .saleDates #validDates,
  .valid-dates-container .saleDates #validDatesNew {
    font-size: 1.5rem;
  }
  .valid-dates-container .saleDates #validDates span,
  .valid-dates-container .saleDates #validDatesNew span {
    font-size: 1.5rem;
  }
}
.valid-dates-container .saleDates #validDates .cirularNote,
.valid-dates-container .saleDates #validDatesNew .cirularNote {
  position: relative;
  z-index: 2;
  font-size: 0.7rem;
  font-style: italic;
}
@media (min-width: 768px) {
  .valid-dates-container .saleDates #validDates .cirularNote,
  .valid-dates-container .saleDates #validDatesNew .cirularNote {
    font-size: 0.8rem;
  }
}
@media (min-width: 992px) {
  .valid-dates-container .saleDates #validDates .cirularNote,
  .valid-dates-container .saleDates #validDatesNew .cirularNote {
    font-size: 1rem;
  }
}

.circular-page header .branding-container {
  box-shadow: none;
}
.circular-page header .branding-container .circular-block {
  display: none;
}
@media (min-width: 1024px) {
  .circular-page header .branding-container .circular-block {
    display: block;
  }
}
.circular-page .no-ad-msg {
  margin: 100px auto 220px auto;
}

/* Responsvie menu */
@media screen and (max-width: 350px) {
  .header-container .menu-wrap .hamburger::after {
    content: "" !important;
  }
}
.header-container .menu-wrap .toggler + label {
  display: none;
}
@media (max-width: 320px) {
  .header-container .menu-wrap .toggler:checked ~ .mobile-menu ul {
    height: 200vh;
  }
}
@media screen and (min-width: 321px) and (max-width: 420px) {
  .header-container .menu-wrap .toggler:checked ~ .mobile-menu ul {
    height: 140vh;
  }
}

@media screen and (max-width: 767px) {
  .header-container .menu-wrap {
    /* Hamburger Line */
    /* Hamburger Lines - Top & Bottom */
    /* Moves Line Down */
    /* Toggler Animation */
    /* Turns Lines Into X */
    /* Rotate On Hover When Checked */
  }
  .header-container .menu-wrap .toggler {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 14;
    cursor: pointer;
    width: 60px;
    height: 60px;
    opacity: 0;
  }
  .header-container .menu-wrap .toggler + label {
    color: #fff;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin: 10px;
    max-width: 150px;
    border-radius: 5px;
  }
  .header-container .menu-wrap .hamburger {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 13;
    width: 60px;
    height: 60px;
    padding: 1rem;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
  }
  .header-container .menu-wrap .hamburger > div {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
    height: 2px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header-container .menu-wrap .hamburger > div::before,
  .header-container .menu-wrap .hamburger > div::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 2px;
    background: inherit;
  }
  .header-container .menu-wrap .hamburger > div::after {
    top: 10px;
  }
  .header-container .menu-wrap .toggler:checked + label + .hamburger {
    opacity: 1;
  }
  .header-container .menu-wrap .toggler:checked + label,
  .header-container .menu-wrap .toggler:checked + label + .hamburger:after,
  .header-container .menu-wrap .toggler:checked + label + .hamburger > span {
    display: none;
  }
  .header-container .menu-wrap .toggler:checked + label + .hamburger > div {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    background: #fff;
  }
  .header-container .menu-wrap .toggler:checked + label + .hamburger > div:before,
  .header-container .menu-wrap .toggler:checked + label + .hamburger > div:after {
    top: 0;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    background: #fff;
  }
  .header-container .menu-wrap .toggler:checked:hover + label + .hamburger > div {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  .header-container .menu-wrap .mobile-menu ul {
    list-style: none;
    position: absolute;
    width: 100%;
    height: 110%;
    top: 0px;
    left: -100vw;
    text-align: center;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    z-index: 1;
    margin-top: 50px;
  }
  .header-container .menu-wrap .mobile-menu ul li {
    display: block;
    margin: 0px auto;
    padding: 10px 0;
    line-height: 20px;
    width: 90%;
  }
  .header-container .menu-wrap .mobile-menu ul li:has(> a.Header), .header-container .menu-wrap .mobile-menu ul li:has(> a.Footer) {
    display: none;
  }
  .header-container .menu-wrap .mobile-menu ul li:last-child {
    border-bottom: none;
  }
  .header-container .menu-wrap .mobile-menu ul li a {
    width: 100%;
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
    background: none;
    box-shadow: none;
    border: none;
  }
  .header-container .menu-wrap .mobile-menu ul li a:first-child {
    margin-top: 0;
  }
  .header-container .menu-wrap .mobile-menu ul li a.active-category {
    color: #D40029;
  }
  .header-container .menu-wrap .toggler:checked ~ .mobile-menu {
    visibility: visible;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 700px;
    height: 100vh;
    background: #2c2c2c;
    z-index: 12;
    overflow-y: scroll;
  }
  .header-container .menu-wrap .toggler:checked ~ .mobile-menu > ul {
    left: 0;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}
.sticky {
  position: fixed;
  overflow: hidden;
  top: 0;
  width: 100%;
  z-index: 9;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .sticky #departments {
    position: fixed;
  }
}
.sticky #departments ul {
  height: 100%;
}

#itemDetailModal .modal-card-body #productItemDetails .product-nav {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "badge     add";
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 10px;
  z-index: 2;
  margin-bottom: 10px;
  position: absolute;
}
#itemDetailModal .modal-card-body #productItemDetails .product-nav .item-badge {
  position: relative;
  grid-column-start: badge;
  grid-column-end: badge;
  max-width: 100px;
}
#itemDetailModal .modal-card-body #productItemDetails .product-nav .item-badge img {
  vertical-align: middle;
  object-fit: contain;
}
#itemDetailModal .modal-card-body #productItemDetails .product-nav .add {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  grid-column-start: add;
  grid-column-end: add;
  width: 100%;
  height: 100%;
}
#itemDetailModal .modal-card-body #productItemDetails .product-nav .add .ace-icon {
  color: #D40029;
  cursor: pointer;
  width: 32px;
  height: 32px;
}
@media (min-width: 768px) {
  #itemDetailModal .modal-card-body #productItemDetails .product-nav .add .ace-icon {
    width: 40px;
    height: 40px;
  }
}
#itemDetailModal .modal-card-body #productItemDetails .product-nav .add .ace-icon .fa-check-circle,
#itemDetailModal .modal-card-body #productItemDetails .product-nav .add .ace-icon .fa-circle-check {
  color: #2c2c2c;
}
#itemDetailModal .modal-card-body #productItemDetails .product-nav .add .add-container {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0px 0px 0px 1px #D40029 inset;
  box-shadow: 0px 0px 0px 1px #D40029 inset;
  border-radius: 50px;
}
#itemDetailModal .modal-card-body #productItemDetails .product-nav .add .add-container .add-text,
#itemDetailModal .modal-card-body #productItemDetails .product-nav .add .add-container .added-text {
  margin-left: 10px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #D40029;
}
@media (min-width: 768px) {
  #itemDetailModal .modal-card-body #productItemDetails .product-nav .add .add-container .add-text,
  #itemDetailModal .modal-card-body #productItemDetails .product-nav .add .add-container .added-text {
    font-size: 1.1em;
  }
}
#itemDetailModal .modal-card-body #productItemDetails .product-nav .add .add-container input {
  display: none;
}
#itemDetailModal .modal-card-body #productItemDetails .item-graphics-container {
  position: relative;
  margin-bottom: 20px;
}
#itemDetailModal .modal-card-body #productItemDetails .item-graphics-container .item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#itemDetailModal .modal-card-body #productItemDetails .item-graphics-container .item-img img {
  width: 100%;
  max-width: 400px;
}
#itemDetailModal .modal-card-body #productItemDetails .item-graphics-container .ace-rewards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  bottom: 5px;
}
#itemDetailModal .modal-card-body #productItemDetails .item-container {
  margin: 10px 0;
}
@media (min-width: 768px) {
  #itemDetailModal .modal-card-body #productItemDetails .item-container {
    display: grid;
  }
}
#itemDetailModal .modal-card-body #productItemDetails .item-container .item-details .item-headers {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  margin-bottom: 20px;
  gap: 10px;
}
#itemDetailModal .modal-card-body #productItemDetails .item-container .item-details .item-headers .item-title-container .item-title {
  font-family: "Roboto", sans-serif;
  font-size: 1.3em;
  margin-bottom: 0;
}
#itemDetailModal .modal-card-body #productItemDetails .item-container .item-details .item-headers .item-price {
  display: flex;
  align-items: flex-end;
}
#itemDetailModal .modal-card-body #productItemDetails .item-container .item-details .item-headers .item-price .product-price {
  color: #c41230;
  font-size: 2.5em;
  font-family: "Roboto", sans-serif;
  line-height: 1.125;
}
@media (min-width: 768px) {
  #itemDetailModal .modal-card-body #productItemDetails .item-container .item-details .item-headers .item-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  #itemDetailModal .modal-card-body #productItemDetails .item-container .item-details .item-headers .item-price .product-price {
    font-size: 3em;
  }
}
#itemDetailModal .modal-card-body #productItemDetails .item-container .item-details .product-description {
  display: block;
  margin-bottom: 0.6666em;
  font-size: 0.875rem !important;
}
#itemDetailModal .modal-card-body #productItemDetails .item-container .item-details .product-description ul {
  margin-left: 1em;
  margin-top: 0;
}
#itemDetailModal .modal-card-body #productItemDetails .item-container .item-details .product-description ul li {
  font-size: 0.875rem;
}
#itemDetailModal .modal-card-body #productItemDetails .item-container .item-details .product-subtitle {
  display: block;
  margin: 10px auto;
  font-size: 0.875rem !important;
}
#itemDetailModal .modal-card-body #productItemDetails .item-container .buy-online-links .product-subtitle-container {
  display: flex;
  flex-wrap: wrap;
  margin: 10px auto;
  padding: 10px 0;
  font-size: 0.875rem !important;
  border-top: 2px solid #D40029;
  border-bottom: 2px solid #D40029;
}
#itemDetailModal .modal-card-body #productItemDetails .item-container .buy-online-links .product-subtitle-container .buy-online-description {
  font-weight: bold;
  margin-bottom: 0;
  text-transform: uppercase;
}
#itemDetailModal .modal-card-body #productItemDetails .item-container .buy-online-links .product-subtitle-container .product-subtitle {
  color: #D40029;
  font-size: 0.875rem !important;
}
#itemDetailModal .modal-card-body #productItemDetails .item-container .buy-online-links .product-subtitle-container .product-subtitle a {
  color: #D40029;
}
#itemDetailModal .modal-card-body #productItemDetails .item-container .buy-online-links .product-subtitle-container .product-subtitle a:hover {
  text-decoration: underline;
}
#itemDetailModal .modal-card-body #productItemDetails .item-container .buy-online-links .product-subtitle-container .product-subtitle:not(:last-child):after {
  content: ", ";
  white-space: pre;
}
#itemDetailModal .modal-card-body #productItemDetails .in-store-btn p {
  background: #333;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
  border-radius: 5px;
  padding: 8px;
}
#itemDetailModal .modal-card-body #productItemDetails .in-store-btn.online p {
  padding: 0px;
}
#itemDetailModal .modal-card-body #productItemDetails .in-store-btn.online p a {
  border-radius: 5px;
  display: block;
  background: #D40029;
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 8px;
  transition: all 200ms ease-in;
  border: 1px solid #D40029;
}
#itemDetailModal .modal-card-body #productItemDetails .in-store-btn.online p a:hover {
  background: #fff;
  border: 1px solid #D40029;
  color: #D40029;
}
#itemDetailModal .modal-card-body #productItemDetails .in-store-btn.online p a .fa-cart-shopping {
  margin-right: 10px;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online h3,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only h3 {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 0;
  text-transform: uppercase;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .buy-online-description,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .buy-online-description {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 10px auto 20px auto;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background-color: #f3f3f4;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container {
  width: 100%;
  display: grid;
  grid-template-areas: "itemName itemName itemCTA" "itemPrices itemPrices itemCTA";
  grid-template-columns: 1fr 1fr 125px;
  background: #fff;
  margin: 10px 10px 0 10px;
  padding: 10px;
  border-radius: 5px;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container:last-child,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container:last-child,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container:last-child,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container:last-child {
  margin-bottom: 10px;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container .item-name,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container .item-name,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container .item-name,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container .item-name {
  grid-column-start: itemName;
  grid-column-end: itemName;
  grid-row-start: itemName;
  grid-row-end: itemName;
  display: flex;
  align-items: flex-end;
  margin-right: 20px;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container .prices-wrapper,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container .prices-wrapper,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container .prices-wrapper,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container .prices-wrapper {
  grid-column-start: itemPrices;
  grid-column-end: itemPrices;
  grid-row-start: itemPrices;
  grid-row-end: itemPrices;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container .prices-wrapper .item-regular-price,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container .prices-wrapper .item-regular-price,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container .prices-wrapper .item-regular-price,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container .prices-wrapper .item-regular-price {
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: line-through;
  color: #c4c4c4;
  margin-right: 10px;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container .prices-wrapper .item-promo-price,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container .prices-wrapper .item-promo-price,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container .prices-wrapper .item-promo-price,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container .prices-wrapper .item-promo-price {
  font-size: 1.2rem;
  font-weight: bold;
  margin-right: 10px;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container .btn-wrapper,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container .btn-wrapper,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container .btn-wrapper,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container .btn-wrapper {
  grid-column-start: itemCTA;
  grid-column-end: itemCTA;
  grid-row-start: itemCTA;
  grid-row-end: itemCTA;
  display: grid;
  grid-template-areas: "itemBtns" "addTo";
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container .btn-wrapper .item-link,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container .btn-wrapper .item-link,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container .btn-wrapper .item-link,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container .btn-wrapper .item-link {
  grid-column-start: itemBtns;
  grid-column-end: itemBtns;
  grid-row-start: itemBtns;
  grid-row-end: itemBtns;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container .btn-wrapper .item-link a,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container .btn-wrapper .item-link a,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container .btn-wrapper .item-link a,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container .btn-wrapper .item-link a {
  display: block;
  background: #D40029;
  color: #fff;
  padding: 8px;
  border: 1px solid #D40029;
  transition: all 200ms ease-in;
  border-radius: 5px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  font-size: 0.9rem;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container .btn-wrapper .item-link a:hover,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container .btn-wrapper .item-link a:hover,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container .btn-wrapper .item-link a:hover,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container .btn-wrapper .item-link a:hover {
  background: #fff;
  border: 1px solid #D40029;
  color: #D40029;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container .btn-wrapper .item-in-store,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container .btn-wrapper .item-in-store,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container .btn-wrapper .item-in-store,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container .btn-wrapper .item-in-store {
  grid-column-start: itemBtns;
  grid-column-end: itemBtns;
  grid-row-start: itemBtns;
  grid-row-end: itemBtns;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container .btn-wrapper .product-qty,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container .btn-wrapper .product-qty,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container .btn-wrapper .product-qty,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container .btn-wrapper .product-qty {
  grid-column-start: addTo;
  grid-column-end: addTo;
  grid-row-start: addTo;
  grid-row-end: addTo;
  display: flex;
  justify-content: flex-end;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container .btn-wrapper .product-qty .add-to-list-block .button,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container .btn-wrapper .product-qty .add-to-list-block .button,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container .btn-wrapper .product-qty .add-to-list-block .button,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container .btn-wrapper .product-qty .add-to-list-block .button {
  display: inline-flex;
  background: #000000;
  color: #fff;
  padding: 8px;
  border: 1px solid #000000;
  transition: all 200ms ease-in;
  border-radius: 5px;
  text-transform: uppercase;
  text-align: center;
  width: 125px;
  height: 42px;
  font-weight: normal;
  font-size: 0.9rem;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container .btn-wrapper .product-qty .add-to-list-block .button:hover,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container .btn-wrapper .product-qty .add-to-list-block .button:hover,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container .btn-wrapper .product-qty .add-to-list-block .button:hover,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container .btn-wrapper .product-qty .add-to-list-block .button:hover {
  background: #fff;
  border: 1px solid #000000;
  color: #000000;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container .btn-wrapper .product-qty .add-to-list-block .button.added,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container .btn-wrapper .product-qty .add-to-list-block .button.added,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container .btn-wrapper .product-qty .add-to-list-block .button.added,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container .btn-wrapper .product-qty .add-to-list-block .button.added {
  background: #333;
  border: 1px solid #333;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container .btn-wrapper .product-qty .add-to-list-block .button.added:hover,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container .btn-wrapper .product-qty .add-to-list-block .button.added:hover,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container .btn-wrapper .product-qty .add-to-list-block .button.added:hover,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container .btn-wrapper .product-qty .add-to-list-block .button.added:hover {
  background: #fff;
  border: 1px solid #333;
  color: #333;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container .btn-wrapper .product-qty .qty-block,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container .btn-wrapper .product-qty .qty-block,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container .btn-wrapper .product-qty .qty-block,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container .btn-wrapper .product-qty .qty-block {
  align-items: center;
  justify-content: flex-end;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container .btn-wrapper .product-qty .qty-block .button.is-primary,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container .btn-wrapper .product-qty .qty-block .button.is-primary,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container .btn-wrapper .product-qty .qty-block .button.is-primary,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container .btn-wrapper .product-qty .qty-block .button.is-primary {
  font-size: 50px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 0px 0 9px 0;
  font-weight: 100;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container .btn-wrapper .product-qty .qty-block .button.is-primary#sub,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container .btn-wrapper .product-qty .qty-block .button.is-primary#sub,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container .btn-wrapper .product-qty .qty-block .button.is-primary#sub,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container .btn-wrapper .product-qty .qty-block .button.is-primary#sub {
  background-color: #000;
  border-color: #000;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container .btn-wrapper .product-qty .qty-block .button.is-primary#sub:hover,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container .btn-wrapper .product-qty .qty-block .button.is-primary#sub:hover,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container .btn-wrapper .product-qty .qty-block .button.is-primary#sub:hover,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container .btn-wrapper .product-qty .qty-block .button.is-primary#sub:hover {
  border-color: #000;
  background-color: #fff;
  color: #000;
}
#itemDetailModal .modal-card-body #productItemDetails .shop-online .solo-item .links-container .btn-wrapper .product-qty .qty-block input,
#itemDetailModal .modal-card-body #productItemDetails .shop-online .has-multiple-links .links-container .btn-wrapper .product-qty .qty-block input,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .solo-item .links-container .btn-wrapper .product-qty .qty-block input,
#itemDetailModal .modal-card-body #productItemDetails .in-store-only .has-multiple-links .links-container .btn-wrapper .product-qty .qty-block input {
  width: 42%;
  height: 42px;
  margin-bottom: 0;
}

.remove-item {
  font-size: 2em;
}

#myShoppingList .modal-card-head {
  background: #D40029;
  color: white;
  border-bottom: 0;
}
#myShoppingList .modal-card-head .delete {
  width: 30px;
  height: 30px;
  max-height: 30px;
  max-width: 30px;
  min-height: 30px;
  min-width: 30px;
}
#myShoppingList .panel-icon {
  font-size: 5.313em;
  margin-right: 0.25em;
}
@media screen and (max-width: 767px) {
  #myShoppingList .panel-icon {
    width: 100px;
    height: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #myShoppingList .panel-icon {
    font-size: 7.75em;
  }
}
@media (min-width: 1024px) {
  #myShoppingList .panel-icon {
    font-size: 7.75em;
  }
}
#myShoppingList .panel-block {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
#myShoppingList .panel-block .content {
  width: 90%;
}
#myShoppingList .panel-block .content .title,
#myShoppingList .panel-block .content .subtitle {
  font-size: 1.2rem;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-device-pixel-ratio: 2) and (device-aspect-ratio: 40/71) and (orientation: portrait) {
  #myShoppingList .panel-block .content .title,
  #myShoppingList .panel-block .content .subtitle {
    font-size: 0.9rem !important;
  }
}
#myShoppingList .panel-block .content .subtitle .product-description {
  display: block;
  margin-bottom: 0.6666em;
  font-size: 0.875rem;
}
#myShoppingList .panel-block .content .subtitle .product-description ul {
  margin-left: 1em;
  margin-top: 0;
}
#myShoppingList .panel-block .content .subtitle .product-description ul li {
  font-size: 0.875rem;
}
#myShoppingList .panel-block .content .subtitle .product-subtitle {
  font-size: 0.875rem;
}
#myShoppingList .panel-block .content .subtitle .product-subtitle-container {
  font-size: 0.875rem;
  display: flex;
  flex-wrap: wrap;
  margin: 10px auto;
}
#myShoppingList .panel-block .content .subtitle .product-subtitle-container .buy-online-description {
  font-weight: bold;
  margin-bottom: 0;
  text-transform: uppercase;
}
#myShoppingList .panel-block .content .subtitle .product-subtitle-container .product-subtitle {
  font-size: 0.875rem;
  margin: 0;
}
#myShoppingList .panel-block .content .subtitle .product-subtitle-container .product-subtitle a {
  color: #D40029;
}
#myShoppingList .panel-block .content .subtitle .product-subtitle-container .product-subtitle a:hover {
  text-decoration: underline;
}
#myShoppingList .panel-block .content .subtitle .product-subtitle-container .product-subtitle:not(:last-child):after {
  content: ", ";
  white-space: pre;
  color: #D40029;
}
#myShoppingList .panel-block .content .subtitle .product-price {
  color: #c41230;
  font-family: "Roboto", sans-serif;
  font-weight: bolder;
  font-size: 1.5rem;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-device-pixel-ratio: 2) and (device-aspect-ratio: 40/71) and (orientation: portrait) {
  #myShoppingList .panel-block .content .subtitle .product-price {
    font-size: 1.2rem !important;
  }
}
@media screen and (max-width: 767px) {
  #myShoppingList .panel-block .content .subtitle .product-price {
    font-size: 1.4rem;
  }
}
#myShoppingList .panel-block .content .product-valid-date {
  font-size: 0.875rem;
}
#myShoppingList .panel-block .product-qty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
#myShoppingList .panel-block .product-qty .remove-item {
  color: #9b0a23;
  margin-bottom: 15px;
  cursor: pointer;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-device-pixel-ratio: 2) and (device-aspect-ratio: 40/71) and (orientation: portrait) {
  #myShoppingList .panel-block .product-qty .remove-item {
    font-size: 1.75em;
  }
}
#myShoppingList .panel-block .product-qty .qty-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  align-items: center;
}
#myShoppingList .panel-block .product-qty .qty-block .button.is-primary {
  padding: calc(0.5em - 1px) 1em;
  font-size: 100%;
  font-weight: bold;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 50px;
  padding: 0px 0 9px 0;
  font-weight: 100;
}
#myShoppingList .panel-block .product-qty .qty-block .button.is-primary.sub {
  background-color: #000000;
  border-color: #000000;
}
#myShoppingList .panel-block .product-qty .qty-block .button.is-primary.sub:hover {
  border-color: #000;
  background-color: #fff;
  color: #000;
}
#myShoppingList .panel-block .product-qty .qty-block input {
  width: 25%;
  height: auto;
  margin-bottom: 0;
}
#myShoppingList .modal-card-body {
  padding: 0;
}
#myShoppingList .modal-card-body .shopping-banner {
  background: #2c2c2c;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#myShoppingList .modal-card-body .shopping-banner .shopping-list-title {
  width: 80%;
  padding: 10px;
}
#myShoppingList .modal-card-body .shopping-banner button {
  background: #2c2c2c;
  margin: 0 5px;
  padding-left: 0.5em;
  padding-right: 0.5em;
  min-height: 1.25rem;
  padding: 0.5rem;
  border: none;
  outline: none;
  font: inherit;
}
#myShoppingList .modal-card-body .shopping-banner button .fa-lg {
  font-size: 1.8em;
}
#myShoppingList .modal-card-body .tabs .shopping-list-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-color: #9b0a23;
}
#myShoppingList .modal-card-body .tabs .shopping-list-tabs li {
  width: 100%;
}
#myShoppingList .modal-card-body .tabs .shopping-list-tabs li .tablinks {
  width: 100%;
  min-height: 1.25rem;
  padding: 0.5rem;
  background: transparent;
  border: none;
  outline: none;
  font: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  color: #000;
}
#myShoppingList .modal-card-body .tabs .shopping-list-tabs li .tablinks.is-active {
  color: #fff;
  background: #9b0a23;
}
#myShoppingList .modal-card-body .tabs .shopping-list-tabs li .tablinks:hover {
  background: #9b0a23;
  color: #fff;
}
#myShoppingList .modal-card-body .tabs .shopping-list-tabs li .tablinks span {
  font-weight: bold;
}
#myShoppingList .modal-card-body .tabcontent {
  display: none;
}
#myShoppingList .modal-card-body .tabcontent.is-active {
  display: block;
}
#myShoppingList .modal-card-body .shopping-list-remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
}
@media (min-width: 768px) {
  #myShoppingList .modal-card-body .shopping-list-remove {
    margin-right: 20px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
#myShoppingList .modal-card-body #shoppingListItems {
  padding: 20px;
}
#myShoppingList .modal-card-body #shoppingListItems .panel-block {
  border: none;
  border-bottom: 1px solid #dddddd;
}
#myShoppingList .modal-card-body #shoppingListItems .panel-block:last-child {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  #myShoppingList .modal-card-foot .button:not(:last-child) {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #myShoppingList .modal-card-foot .button:not(:last-child) {
    display: none;
  }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-device-pixel-ratio: 2) and (device-aspect-ratio: 40/71) and (orientation: portrait) {
  .swal2-popup .swal2-styled.swal2-confirm,
  .swal2-popup .swal2-styled.swal2-cancel {
    font-size: 0.85rem !important;
  }
}
@media screen and (max-width: 767px) {
  .swal2-popup .swal2-styled.swal2-confirm,
  .swal2-popup .swal2-styled.swal2-cancel {
    font-size: 1rem;
  }
}

/**  
* Custom Shopping List
**/
.custom-items-container {
  padding: 0 20px 20px 20px;
}
.custom-items-container #custom-items-header {
  font-size: 1.2rem;
  font-weight: bold;
  color: #9b0a23;
  margin-bottom: 10px;
  text-align: center;
  display: none;
}
.custom-items-container .custom-item {
  padding: 0.75em 0.75em;
  margin-bottom: 1rem;
}
.custom-items-container .custom-item div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.custom-items-container .custom-item div .title {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: #333;
  text-transform: none;
}
.custom-items-container .custom-item div .close {
  color: #9b0a23;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 2em;
}
.custom-items-container .custom-item div .close .fa-trash-can {
  pointer-events: none;
}

#customItems {
  padding: 20px;
}
#customItems #customShoppingListItems {
  padding: 0.5em 0.75em;
}
#customItems #customShoppingListItems .header h2 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #9b0a23;
}
#customItems #customShoppingListItems .header .add-custom-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#customItems #customShoppingListItems .header .add-custom-item input {
  width: 69%;
  height: 40px;
  margin-right: 1%;
  padding: 0 10px;
}
#customItems #customShoppingListItems .header .add-custom-item button {
  width: 30%;
  height: 40px;
}
#customItems #customShoppingListItems #listUL {
  margin: 20px auto;
}
#customItems #customShoppingListItems #listUL li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2rem;
}
#customItems #customShoppingListItems #listUL li h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: #333;
  text-transform: none;
}
#customItems #customShoppingListItems #listUL li span {
  color: #9b0a23;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 2em;
}
#customItems #customShoppingListItems #listUL li span .fa-trash-can {
  pointer-events: none;
}

/**  
* Print Shopping List
**/
#emailItems {
  padding: 20px;
}
#emailItems .panel .is-centered {
  padding: 0.5em 0.75em;
}
#emailItems .panel .is-centered h2 {
  font-size: 1.2rem;
  color: #ffffff;
}
#emailItems .panel .is-centered .notification span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row-reverse;
}
#emailItems .panel .is-centered #shopping-list-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 20px;
}
#emailItems .panel .is-centered #shopping-list-form .field-email {
  width: 69%;
  margin-right: 1%;
  margin-bottom: 0;
}
#emailItems .panel .is-centered #shopping-list-form .field-email input {
  width: 100%;
  height: 38px;
  border: 1px solid #767676;
}
#emailItems .panel .is-centered #shopping-list-form .field-btn {
  width: 30%;
  height: 40px;
}
#emailItems .panel .is-centered #shopping-list-form .field-btn button {
  width: 100%;
  height: 40px;
}

#locationContent #storeInfo {
  margin-bottom: 10px;
}
#locationContent #storeInfo #locationInfo .modal-location-title {
  color: #D40029;
}
#locationContent #storeInfo #locationInfo .store-directions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 300px;
  margin: 20px auto;
}
#locationContent #storeInfo #locationInfo .store-directions .store-address a,
#locationContent #storeInfo #locationInfo .store-directions .store-phone a {
  color: #D40029;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}
#locationContent #storeInfo #locationInfo .store-directions .store-address a img,
#locationContent #storeInfo #locationInfo .store-directions .store-phone a img {
  width: 50px;
  height: 50px;
}
#locationContent #storeInfo #locationInfo .store-directions .store-address a span,
#locationContent #storeInfo #locationInfo .store-directions .store-phone a span {
  margin-top: 10px;
}
#locationContent #storeInfo #locationInfo .store-info {
  margin-bottom: 10px;
}
#locationContent #storeInfo #locationInfo .change-default-store .modal-location-subtitle {
  color: #D40029;
}
#locationContent #storeInfo #locationInfo .change-default-store p {
  text-align: center;
  color: #D40029;
  font-weight: bold;
}
#locationContent #storeLocations #locationList hr {
  margin: 1rem auto;
}
#locationContent #storeLocations #locationList .locationName p {
  font-size: 1.2rem;
  font-weight: bold;
}
#locationContent #storeLocations #locationList .locationSelectStore a {
  border: 1px solid #D40029;
  color: #D40029;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}
#locationContent #storeLocations #locationList .locationSelectStore a:hover {
  background: #D40029;
  color: #fff;
}

/*# sourceMappingURL=styles.css.map */
