/** Fonrt */
/** Colors */
/** Media Queries */
/* Header Styles */
.header-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  grid-template-areas: "menu-wrap     logo       shopping-list" "store-info-wrapper      store-info-wrapper        store-info-wrapper " "valid-dates   valid-dates   valid-dates";
  grid-template-rows: repeat(3, auto);
  font-size: 14pt;
  background-color: #fff;
}
@media (min-width: 768px) {
  .header-container {
    grid-template-areas: "store-info-wrapper     logo       shopping-list" "menu-wrap     menu-wrap     menu-wrap" "valid-dates   valid-dates   valid-dates";
    grid-template-rows: repeat(2, auto);
    padding-top: 15px;
  }
}
.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: #e11e3c;
  height: 50px;
}
@media (min-width: 768px) {
  .header-container .menu-wrap {
    margin-top: 10px;
  }
}
.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 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
  .header-container .menu-wrap .mobile-menu ul li {
    width: 100%;
    height: 50px;
    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 a {
    width: 100%;
    height: 100%;
    background: #e11e3c;
    font-size: 1.15rem;
    font-weight: bold;
  }
  .header-container .menu-wrap .mobile-menu ul li a.active {
    background: #9b0a23;
    border-radius: 0;
  }
}
.header-container #weekly-Circulars {
  grid-column-start: store-info-wrapper;
  grid-column-end: store-info-wrapper;
  display: grid;
  grid-template-areas: "store-info  .  store-directions";
  grid-template-columns: 1fr 100px 1fr;
  grid-template-rows: repeat(1, auto);
  font-weight: bold;
}
@media (min-width: 768px) {
  .header-container #weekly-Circulars {
    grid-template-areas: "store-info" "store-directions";
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, auto);
    margin-left: 20px;
  }
}
@media (min-width: 1200px) {
  .header-container #weekly-Circulars {
    margin-left: 60px;
  }
}
@media only screen and (min-width: 1500px) {
  .header-container #weekly-Circulars {
    margin-left: 150px;
  }
}
.header-container #weekly-Circulars .store-info {
  grid-column-start: store-info;
  grid-column-end: store-info;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.83rem;
  margin: 5px auto;
}
.header-container #weekly-Circulars .store-info .store-ad span .fa-map-marker-alt {
  display: none;
}
.header-container #weekly-Circulars .store-info .store-ad span a {
  color: #e11e3c;
}
@media (min-width: 992px) {
  .header-container #weekly-Circulars .store-info .store-ad span .fa-map-marker-alt {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 5px;
    color: #e11e3c;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .header-container #weekly-Circulars .store-info .store-hours {
    display: none;
  }
}
@media (min-width: 768px) {
  .header-container #weekly-Circulars .store-info {
    font-size: 0.875rem;
    margin: 0 0 10px 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .header-container #weekly-Circulars .store-info .store-ad {
    margin-right: 15px;
  }
}
.header-container #weekly-Circulars .store-directions {
  grid-column-start: store-directions;
  grid-column-end: store-directions;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.83rem;
  margin: 5px auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-container #weekly-Circulars .store-directions .store-address {
  margin-right: 20px;
}
.header-container #weekly-Circulars .store-directions .store-address a,
.header-container #weekly-Circulars .store-directions .store-phone a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #e11e3c;
}
.header-container #weekly-Circulars .store-directions .store-address a img,
.header-container #weekly-Circulars .store-directions .store-phone a img {
  width: 24px;
  margin-right: 10px;
}
.header-container #weekly-Circulars .store-directions .store-address a span,
.header-container #weekly-Circulars .store-directions .store-phone a span {
  display: none;
}
@media (min-width: 768px) {
  .header-container #weekly-Circulars .store-directions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 10px 0 0 0;
    font-size: 0.875rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .header-container #weekly-Circulars .store-directions .store-address a span,
  .header-container #weekly-Circulars .store-directions .store-phone a span {
    display: block;
  }
}
.header-container .store-logo {
  grid-column-start: logo;
  grid-column-end: logo;
  grid-row-start: logo;
  grid-row-end: logo;
  width: 100%;
  position: absolute;
  z-index: 1;
  background: -o-linear-gradient(top, #e11e3c 50px, transparent 0%);
  background: linear-gradient(180deg, #e11e3c 50px, transparent 0%);
}
@media (min-width: 768px) {
  .header-container .store-logo {
    position: relative;
    background: none;
  }
}
.header-container .store-logo img {
  max-width: 90px;
}
.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: #e11e3c;
  height: 50px;
  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: uppercase;
  font-size: 0.7rem;
  font-weight: bold;
}
.header-container .shopping-list a:hover {
  background: #e11e3c;
}
.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: #e11e3c;
    padding: 10px;
    width: 200px;
    border-radius: 5px;
    font-size: 1rem;
  }
  .header-container .shopping-list a span {
    font-size: 0.875rem;
    font-weight: bold;
  }
  .header-container .shopping-list a img {
    margin-left: 10px;
  }
}
@media (min-width: 768px) {
  .header-container .shopping-list {
    background: none;
    height: auto;
    margin-right: 20px;
    padding-right: 0;
  }
}
@media (min-width: 1200px) {
  .header-container .shopping-list {
    margin-right: 60px;
  }
}
@media only screen and (min-width: 1500px) {
  .header-container .shopping-list {
    margin-right: 150px;
  }
}
.header-container .valid-dates {
  grid-column-start: valid-dates;
  grid-column-end: valid-dates;
  font-size: 1em;
}

.valid-dates-container {
  margin-top: 98px;
}
@media screen and (max-width: 350px) {
  .valid-dates-container {
    margin-top: 117px;
  }
}
@media (min-width: 768px) {
  .valid-dates-container {
    margin-top: 173px;
  }
}
.valid-dates-container .saleDates #validDates {
  font-size: 0.9em;
}

/* Responsvie menu */
@media screen and (max-width: 350px) {
  .header-container .menu-wrap .hamburger::after {
    content: "" !important;
  }
}
@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: 50px;
    height: 50px;
    opacity: 0;
  }
  .header-container .menu-wrap .hamburger {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 13;
    width: 60px;
    height: 60px;
    height: 50px;
    padding: 1rem;
    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;
  }
  .header-container .menu-wrap .hamburger::after {
    content: "Categories";
    text-transform: uppercase;
    color: #ffffff;
    position: absolute;
    right: -60px;
    font-size: 0.7rem;
    font-weight: bold;
  }
  .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 + .hamburger:after,
  .header-container .menu-wrap .toggler:checked + .hamburger > span {
    display: none;
  }
  .header-container .menu-wrap .toggler:checked + .hamburger > div {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    background: #fff;
  }
  .header-container .menu-wrap .toggler:checked + .hamburger > div:before,
  .header-container .menu-wrap .toggler:checked + .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 + .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: 100%;
    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: 15px auto;
    line-height: 30px;
    width: 90%;
    border-bottom: 1px solid #fff;
  }
  .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: 16pt;
    color: #fff;
    font-weight: bold;
    background: 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 {
    color: #e11e3c;
  }
  .header-container .menu-wrap .toggler:checked ~ .mobile-menu {
    visibility: visible;
    position: absolute;
    left: 0;
    width: 100%;
    min-height: 700px;
    height: 100vh;
    background: #2c2c2c;
    z-index: 12;
  }
  .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;
  }
}
#myShoppingList .modal-card-head {
  background: #e11e3c;
  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;
}
#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-price {
  color: #c41230;
  font-family: "Roboto Slab", 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;
}
@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;
}
#myShoppingList .panel-block .product-qty .qty-block input {
  width: 25%;
}
#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;
}
#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;
  }
}

#customItems {
  padding: 20px;
}
#customItems #customShoppingListItems {
  padding: 0.5em 0.75em;
}
#customItems #customShoppingListItems .header h2 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
#customItems #customShoppingListItems .header .add-custom-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#customItems #customShoppingListItems .header .add-custom-item input {
  width: 69%;
  height: 38px;
  margin-right: 1%;
}
#customItems #customShoppingListItems .header .add-custom-item button {
  width: 30%;
  height: 38px;
}
#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;
}
#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;
}

@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 */
.grid {
  background-color: #bcbcbc;
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-auto-rows: calc((100vw - (calc(3 - 1) * 5px)) / 3);
  grid-auto-flow: dense;
  grid-gap: 5px;
  overflow: hidden;
  padding: 5px;
}
@media (min-width: 576px) {
  .grid {
    grid-template-columns: repeat(4, auto);
    grid-auto-rows: calc((100vw - (calc(4 - 1) * 5px)) / 4);
  }
}
@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(5, auto);
    grid-auto-rows: calc((100vw - (calc(5 - 1) * 5px)) / 5);
  }
}
@media (min-width: 992px) {
  .grid {
    grid-template-columns: repeat(6, minmax(auto, 1fr));
    grid-auto-rows: calc((100vw - (calc(6 - 1) * 5px)) / 6);
  }
}
@media (min-width: 1200px) {
  .grid {
    grid-template-columns: repeat(7, minmax(auto, 1fr));
    grid-auto-rows: calc((1400px - (calc(7 - 1) * 5px)) / 7);
  }
}
@media only screen and (min-width: 1500px) {
  .grid {
    grid-template-columns: repeat(8, minmax(auto, 1fr));
    grid-auto-rows: calc((1400px - (calc(8 - 1) * 5px)) / 8);
  }
}
.grid .section-content {
  background-color: #fff;
  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;
}
.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) {
  .grid .section-content .product-nav {
    top: 6px;
  }
}
.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: 150px;
}
@media (min-width: 768px) {
  .grid .section-content .product-nav .item-badge {
    left: 6px;
  }
}
.grid .section-content .product-nav .item-badge img {
  vertical-align: middle;
}
.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) {
  .grid .section-content .product-nav .add {
    right: 6px;
  }
}
.grid .section-content .product-nav .add .ace-icon {
  color: #e11e3c;
  cursor: pointer;
  width: 26px;
  height: 26px;
}
@media (min-width: 768px) {
  .grid .section-content .product-nav .add .ace-icon {
    width: 32px;
    height: 32px;
  }
}
.grid .section-content .product-nav .add .ace-icon .fa-check-circle {
  color: #2c2c2c;
}
.grid .section-content .product-nav .add input {
  display: none;
}
.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;
}
.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%);
}
.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;
}
.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;
}
.grid .section-content.grid11 {
  grid-column-end: span 1;
  grid-row-end: span 1;
}
.grid .section-content.grid11 .item-badge {
  width: 60%;
}
@media (min-width: 768px) {
  .grid .section-content.grid11 .item-badge {
    width: 50px;
  }
}
.grid .section-content.grid11 .bottomright {
  height: 30px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .grid .section-content.grid11 .bottomright {
    height: 40px;
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .grid .section-content.grid11 .bottomright {
    font-size: 1.7rem;
  }
}
.grid .section-content.grid11.full .is-sized img {
  height: 100%;
  width: 100%;
}
.grid .section-content.grid12 {
  grid-column-end: span 1;
  grid-row-end: span 2;
}
.grid .section-content.grid12.full .is-sized img {
  height: 100%;
  width: 100%;
}
.grid .section-content.grid21 {
  grid-column-end: span 2;
  grid-row-end: span 1;
}
.grid .section-content.grid21 .bottomright {
  height: 30px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .grid .section-content.grid21 .bottomright {
    height: 40px;
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .grid .section-content.grid21 .bottomright {
    font-size: 1.7rem;
  }
}
.grid .section-content.grid21.full .is-sized img {
  height: 100%;
  width: 100%;
}
.grid .section-content.grid22 {
  grid-column-end: span 2;
  grid-row-end: span 2;
}
.grid .section-content.grid22.full .is-sized img {
  height: 100%;
  width: 100%;
}
.grid .section-content.grid31 {
  grid-column-end: span 3;
  grid-row-end: span 1;
}
.grid .section-content.grid31 .bottomright {
  height: 30px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .grid .section-content.grid31 .bottomright {
    height: 40px;
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .grid .section-content.grid31 .bottomright {
    font-size: 1.7rem;
  }
}
.grid .section-content.grid31.full .is-sized img {
  height: 100%;
  width: 100%;
}
.grid .section-content.grid32 {
  grid-column-end: span 3;
  grid-row-end: span 2;
}
.grid .section-content.grid32 .is-sized img {
  height: 90%;
  width: auto;
}
.grid .section-content.grid32.full .is-sized img {
  height: 100%;
  width: 100%;
}
.grid .section-content.grid33 {
  grid-column-end: span 3;
  grid-row-end: span 3;
}
.grid .section-content.grid33.full .is-sized img {
  height: 100%;
  width: 100%;
}
.grid .show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.grid .show article figure {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.grid .show article figure #product-nav {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.grid .show article figure .is-sized {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0%;
  overflow: hidden;
}
.grid .show article .bottomright {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: absolute;
  z-index: 1;
  background-color: #e11e3c;
  margin-bottom: 29px;
  padding: 0 5px;
  color: #fff;
  bottom: 0px;
  right: 0px;
  font-size: 1.5rem;
  font-family: "Roboto Slab", serif;
}
@media (min-width: 768px) {
  .grid .show article .bottomright {
    height: 80px;
  }
}
@media (min-width: 992px) {
  .grid .show article .bottomright {
    font-size: 2rem;
  }
}
.grid .show article .bottomright::before {
  content: " ";
  position: absolute;
  display: block;
  width: 20px;
  height: 100%;
  left: -10px;
  z-index: -1;
  background: #e11e3c;
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
  -webkit-transform: skew(-10deg, 0deg);
  -ms-transform: skew(-10deg, 0deg);
  transform: skew(-10deg, 0deg);
  top: 0;
}
.grid .show article .ace-rewards {
  position: absolute;
  bottom: 0px;
  margin-bottom: 60px;
  right: 5px;
  width: 50px;
}
@media (min-width: 768px) {
  .grid .show article .ace-rewards {
    width: 60px;
    margin-bottom: 70px;
  }
}
.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;
}
.grid .show article .product-title a {
  width: 100%;
  display: block;
  text-align: left;
}
.grid .show article .product-title a .title {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  margin-bottom: 0;
  font-size: 12pt;
  font-weight: bold;
}
.grid .show article .product-title[data-selectstate="true"] {
  background-color: #2c2c2c;
}
.grid .show article .product-title[data-selectstate="true"] a .title {
  color: #dddddd;
}

#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;
}
#itemDetailModal .modal-card-body #productItemDetails .product-nav .item-badge {
  position: relative;
  grid-column-start: badge;
  grid-column-end: badge;
  max-width: 150px;
}
#itemDetailModal .modal-card-body #productItemDetails .product-nav .item-badge img {
  vertical-align: middle;
}
#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: #e11e3c;
  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 {
  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 #e11e3c inset;
  box-shadow: 0px 0px 0px 1px #e11e3c inset;
  border-radius: 50px;
}
#itemDetailModal .modal-card-body #productItemDetails .product-nav .add .add-container .add-text {
  margin-left: 10px;
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  color: #e11e3c;
}
@media (min-width: 768px) {
  #itemDetailModal .modal-card-body #productItemDetails .product-nav .add .add-container .add-text {
    font-size: 1.1em;
  }
}
#itemDetailModal .modal-card-body #productItemDetails .product-nav .add .add-container input {
  display: none;
}
#itemDetailModal .modal-card-body #productItemDetails .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 .ace-rewards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#itemDetailModal .modal-card-body #productItemDetails .item-container {
  margin: 10px 0;
}
@media (min-width: 768px) {
  #itemDetailModal .modal-card-body #productItemDetails .item-container {
    display: grid;
    grid-template-columns: 1.2fr auto;
    grid-gap: 30px;
  }
}
#itemDetailModal .modal-card-body #productItemDetails .item-container .item-details .item-title {
  font-family: "Roboto Slab", serif;
  font-size: 1.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 .item-price .product-price {
  color: #000;
  font-size: 2.2em;
  font-family: "Roboto Slab", serif;
}
@media (min-width: 768px) {
  #itemDetailModal .modal-card-body #productItemDetails .item-container .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-price .product-price {
    font-size: 3em;
  }
}
#itemDetailModal .modal-card-body #productItemDetails .in-store-btn p {
  background: #bcbcbc;
  color: #fff;
  padding: 8px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  border-radius: 5px;
}

#locationContent #storeInfo {
  margin-bottom: 10px;
}
#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: #e11e3c;
  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-directions .store-address a:hover,
#locationContent #storeInfo #locationInfo .store-directions .store-phone a:hover {
  color: #9b0a23;
}
#locationContent #storeInfo #locationInfo .store-info {
  margin-bottom: 10px;
}
#locationContent #storeInfo #locationInfo .change-default-store p {
  text-align: center;
  color: #e11e3c;
  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 #e11e3c;
  color: #e11e3c;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}
#locationContent #storeLocations #locationList .locationSelectStore a:hover {
  background: #9b0a23;
  border: 1px solid #9b0a23;
  color: #fff;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}
body.swal2-shown.swal2-height-auto {
  padding-right: 0 !important;
}

.button.is-primary.is-focused:not(:active),
.button.is-primary:focus:not(:active) {
  -webkit-box-shadow: 0 0 0 0.125em rgba(225, 30, 60, 0.25);
  box-shadow: 0 0 0 0.125em rgba(225, 30, 60, 0.25);
}

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

h1,
h2,
h3 {
  font-weight: bold;
}

h1 {
  font-size: 18pt;
}

h2 {
  font-size: 16pt;
}

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

#footer .social-media a {
  padding: 0 20px;
}

.is-sticky-nav-top {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 30;
  -webkit-box-shadow: 0px -1px 8px black;
  box-shadow: 0px -1px 8px black;
}

.front-logo img {
  max-width: 100px;
}

#locationList .circular-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #dddddd;
}
#locationList .circular-location:last-child {
  border-bottom: none;
}

.modal-card-head {
  background: #e11e3c;
  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;
}

#first-nav {
  background-color: #a30f28;
  color: #ffffff;
  font-size: 100%;
}
#first-nav .navbar {
  background-color: #a30f28;
  color: #ffffff;
  font-size: 100%;
}

.has-border-right {
  border-right: solid 1px #444444;
}

h1.has-text-green,
h1.has-text-red {
  font-size: 200%;
}

.has-text-green {
  color: #3f5f3f;
  font-size: 100%;
}

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

.footer-column {
  color: #b6b6b6 !important;
  font-size: 100%;
}
.footer-column a {
  color: #b6b6b6 !important;
  font-size: 100%;
}
.footer-column a:hover {
  color: #fc0 !important;
}

#skip a {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
#skip a:focus {
  position: static;
  width: auto;
  height: auto;
}

.specialty-button.button.is-primary {
  font-size: 150%;
}

.button.is-primary,
.button.is-primary[disabled] {
  background-color: #9b0a23;
  font-size: 100%;
  font-weight: bold;
}

.button.is-primary:hover,
.button.is-primary:active {
  background-color: #e11e3c;
}

.has-family-bree {
  font-family: "Roboto", sans-serif;
}

.has-text-orange {
  margin-bottom: 30px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.5em;
  letter-spacing: -2px;
  color: #ea650c;
}

.has-text-orangeWS {
  color: #e76737;
  font-size: 100%;
}

.has-beige-background {
  background-color: #e9ded0;
  font-size: 100%;
}

.has-small-font {
  font-size: 0.75em;
}

.section {
  padding: 1.5rem;
}

.section-bg {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: center center;
}

.service {
  height: 500px !important;
}

#overlay {
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 100%;
}

#overlayImage {
  height: 40%;
  width: 70%;
  display: block;
  margin: auto;
}

#carneOverlayImage {
  width: auto;
  height: 150px;
  position: center;
}

#whiteFont {
  color: white;
  font-weight: bold;
  position: center;
}

#overlayLink {
  color: white;
  text-decoration: underline;
}

.content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.col1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.modal {
  z-index: 31;
}

.table thead th {
  background: #a30f28;
  color: white;
}

.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-transparent-background {
  background: rgba(0, 0, 0, 0.4) !important;
}

.has-shadow-border {
  border: solid;
  border-color: rgba(150, 31, 23, 0.4);
  -webkit-box-shadow: 0 0 8px rgba(150, 31, 23, 0.4);
  box-shadow: 0 0 8px rgba(150, 31, 23, 0.4);
}

.listLabel {
  background-color: #451400;
  width: 20px;
  float: left;
  text-align: center;
  margin-right: 2px;
}

.listDetail {
  width: 100%;
  padding: 10px;
  margin: 12px;
}

.location:nth-child(even) {
  background-color: #eeeeee;
  font-size: 100%;
}

.location {
  cursor: pointer;
  margin-bottom: 10px;
  width: 100%;
  display: block;
  clear: left;
  float: left;
  border: 1px solid #ffffff;
}

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

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

#headerMessage {
  padding: 10px;
}

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

.media-right {
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

.media-content {
  width: 100%;
}

.navbar-brand {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

@media (min-width: 1024px) {
  .is-invisible-desktop {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .columns {
    margin-right: 0;
    margin-left: 0;
  }
}

@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) {
  .weekly-ad-block .navbar-item {
    font-size: 0.85rem;
  }
}

@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) {
  .specials-title {
    font-size: 1.8rem;
  }
}

/* Top Social Media icons */
.social-icons {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
}

/* Sale Items Swipper */
span.specials-title,
span.stores-title {
  display: block;
}

.swiper-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .swiper-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    padding: 0;
  }
}
.swiper-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  background: #fff;
}

/* Footer columns */
.footer-column {
  color: #b6b6b6 !important;
  font-size: 100%;
}
.footer-column a {
  color: #b6b6b6 !important;
  font-size: 100%;
}
.footer-column a:hover {
  color: #fc0 !important;
  font-size: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footer-column.has-border-right {
    width: calc(100% / 3);
    float: left;
    border-right: none;
  }
}
@media (min-width: 1024px) {
  .footer-column.has-border-right {
    padding-left: 30px;
  }
}

/* Sign Up Modal */
@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) {
  #signup .modal-card-title {
    font-size: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  #signup .modal-card-title {
    font-size: 1.2rem;
  }
}

/* Specialty Foods */
.pulled-right {
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .pulled-right {
    float: right !important;
  }
}
@media (min-width: 1024px) {
  .pulled-right {
    float: right !important;
  }
}

.food-trays {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  width: 100%;
}

a.accessible {
  left: -999px;
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}

a.accessible:focus,
a.accessible:active {
  color: #000;
  background-color: #fff;
  left: auto;
  top: auto;
  width: 30%;
  height: auto;
  overflow: auto;
  margin: 10px 35%;
  padding: 5px;
  border-radius: 15px;
  border: 4px solid yellow;
  text-align: center;
  font-size: 1.2em;
  z-index: 999;
}

/* Weekly Circular */
#pastCirculars {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#pastCirculars .table td {
  padding: 0.5em 0.5em;
}

/* Modal Screen */
.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;
}

/* Loader */
.loading-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.loading-spinner div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #9b0a23;
  -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;
}

@-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);
  }
}
