@charset "UTF-8";

.clickandcollect-header {
    display: flex;
    justify-content: end;
    align-items: end;
    flex-direction: row-reverse;
    padding: 10px 50px;
    right: 0;
    transition: right 0.5s ease-in-out;

}
.clickandcollect-header.absolute-position {
  position: fixed;
  right: -222px;
  top: 50px;
  transition: right 0.5s ease-in-out;
}
.clickandcollect-header.absolute-position:before {
  content: "<";
  position: absolute;
  left: 1px;
  border: 1px solid white;
  padding: 7px;
  top: 0;
  font-size: 27px;
  background-color: black;
  color: white;
  border-radius: 10px;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.clickandcollect-header.absolute-position:hover {
  transition: right 0.5s ease-in-out;
  right: 0px;

}
.clickandcollect-header.absolute-position:hover::before {
 opacity: 0;
 transition: opacity 0.5s ease-in-out;
}
@media (max-width: 800px) {
  .clickandcollect-header {
    position: absolute;
    /* right: -1000px; */
    visibility: hidden;
  }
}
.setStoreWrapper {
  position: relative;
  cursor: pointer;
  width: 150px;
}
.setStoreWrapper.isOpen {
  position: relative;
}
.setStoreWrapper .icon {
  position: absolute;
  left: -20px;
  right: auto;
  top: 0;
  bottom: 0;
  margin: auto;
}
.setStoreWrapper .icon svg{
    width: 20px;
    vertical-align: middle;
  }
.setStoreWrapper .setStore {
  float: left;
  width: 70%;
  text-align: left;
  padding-left: 10px;
}
.setStoreWrapper .setStore p.title {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: bold;
}
.setStoreWrapper .setStore p {
  font-size: 10px;
  font-weight: bold;
  line-height: 14px;
  margin-bottom: 0;
}
.setStoreWrapper .setStore p.text {
  font-weight: 300;
}
.setStoreWrapper .setStore p.openUntil {
  font-size: 10px;
}
.setStoreWrapper .setStore p.closed {
  color: firebrick;
}
.setStoreWrapper .setStore .arrow-right {
  font-size: 40px;
  line-height: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 24px;
  margin: auto;
  transition: all ease-in-out 0.2s; 
}
.setStoreWrapper .setStore .arrow-right svg{
    width: 16px;
    height: auto;
  }
.storesDropdown {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -300px;
  background-color: white;
  text-align: left;
  padding: 15px;
  padding-bottom: 30px;
  box-shadow: 0px 6px 12px -8px rgba(0, 0, 0, 0.49);
  width: 300px;
  z-index: 999999;
  transition: all ease-in-out 0.2s;
  visibility: hidden;
  border-top-width: 8px;
  border-top-style: solid;
  overflow-y: scroll;
}
.storesDropdown svg {
  height: 20px;
}

#modal.noZindex, .modal-background.noZindex{
  z-index: unset
}

@media (max-width: 800px) {
  .storesDropdown {
    width: 100%;
  }
  .storesDropdown::before {
    display: none;
  }
}
.storesDropdown::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
.storesDropdown.isOpen {
  visibility: visible;
  right: 0;
  transition: all ease-in-out 0.2s;
}
.storesDropdown.isOpen .click-and-collect-overlay {
  content: " ";
  position: fixed;
  left: 0;
  top: 0;
  right: 300px;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 800px) {
  .storesDropdown.isOpen .click-and-collect-overlay {
    right: unset;
  }
}
.storesDropdown .close {
  float: right;
  padding: 3px;
  right: 0;
  top: 0;
}
.storesDropdown .close svg{
    width: 20px;
    height: auto;
  }
.storesDropdown .title {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: black;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.storesDropdown .icon {
    margin-top: 3px;
    width: 20px;
    margin-bottom: 10px;
    margin-right: 3px;
    height: auto;
}
.storesDropdown span.text {
  font-size: 12px;
  text-align: center;
  display: inline-block;
}
.storesDropdown span.text.useCurrentLocation {
  display: block;
  text-align: left;
  line-height: 28px;
}
.storesDropdown .search-input {
  position: relative;
}
.storesDropdown .search-input svg {
  position: absolute;
  top: 40px;
  left: auto;
  right: 14px;
  width: 20px;
  height: auto;
}
.storesDropdown .search-input input {
  height: 50px;
  color: black;
  background-color: #f5f5f5;
  border: none;
  width: 100%;
  padding-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 12px;
  border-radius: 5px;
}
.storesDropdown .content {
  overflow-y: scroll;
  width: 100%;
}
.storesDropdown .content::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
.storesDropdown .content::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
.storesDropdown .content::-webkit-scrollbar-thumb {
  background: #00acf8;
  border: 0px none #ffffff;
  border-radius: 2px;
}
.storesDropdown .content::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}
.storesDropdown .content::-webkit-scrollbar-thumb:active {
  background: #000000;
}
.storesDropdown .content::-webkit-scrollbar-track {
  background: white;
  border: 0px none #ffffff;
  border-radius: 6px;
}
.storesDropdown .content::-webkit-scrollbar-track:hover {
  background: #666666;
}
.storesDropdown .content::-webkit-scrollbar-track:active {
  background: #333333;
}
.storesDropdown .content::-webkit-scrollbar-corner {
  background: transparent;
}
.storesDropdown .stores {
  list-style: none;
}
.storesDropdown .stores .store {
  padding: 20px 0;
  border-bottom: solid 1px #d8d8d8;
  position: relative;
}
.storesDropdown .stores .store:first-of-type {
  border-top: solid 1px #d8d8d8;
}
.storesDropdown .stores .store .availability {
  font-size: 12px;
  font-weight: bold;
  display: block;
}
.storesDropdown .stores .store .name {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  float: left;
  width: 75%;
  line-height: 18px;
}
.storesDropdown .stores .store .distance {
  float: right;
  color: #aaaaaa;
  font-size: 12px;
  line-height: 18px;
}
.storesDropdown .stores .store .address {
  width: 60%;
  display: block;
  font-size: 12px;
  color: #000000;
  line-height: 1.2;
  padding: 0;
}
.storesDropdown .stores .store .click-and-collect-primary-button {
  width: 45%;
  font-size: 12px;
  padding: 6px 10px;
  float: left;
  background-color: white !important;
  border: 3px solid;
  border-radius: 5px;
}
.storesDropdown .stores .store .click-and-collect-primary-button:focus {
    outline: none !important;
}
.storesDropdown .stores .store .showDetails {
  font-size: 12px;
  float: right;
  padding: 5px 0px;
  background-color: white;
  width: 50%;
  text-align: right;
  border: none;
}
.storesDropdown .stores .store .showDetails:focus{
    outline: none !important;
  }
.storesDropdown .stores .store .showDetails:hover, .storesDropdown .stores .store .showDetails:focus, .storesDropdown .stores .store .showDetails:active {
  /* background-color: transparent; */
  outline: none;
}
.storesDropdown .stores .store .showDetails .text {
  font-size: 12px;
  line-height: 2.2;
}
.storesDropdown .stores .store .showDetails svg {
    width: 14px;
    height: auto;
    margin-left: 5px;
    vertical-align: middle;
}
.storesDropdown .stores .store .showDetails svg.rotate-img {
  transform: rotate(-180deg);
}
.storesDropdown .stores .store .storeDetails {
  width: 100%;
  margin: auto;
  margin-top: 10px;
  position: relative;
  display: inline-block;
}
.storesDropdown .stores .store .storeDetails .details .address {
  width: 100%;
}
.storesDropdown .stores .store .storeDetails .details .phone {
  width: 100%;
}
.storesDropdown .stores .store .storeDetails .details .address, .storesDropdown .stores .store .storeDetails .details .phone {
  padding: 10px 0;
}
.storesDropdown .stores .store .storeDetails .details .phone {
  padding-top: 0;
}
.storesDropdown .stores .store .storeDetails .details .address > p, .storesDropdown .stores .store .storeDetails .details .phone > p {
  margin: 0;
  font-size: 12px;
  color: #000000;
  margin-bottom: 0;
}
.storesDropdown .stores .store .storeDetails .details .address span.info, .storesDropdown .stores .store .storeDetails .details .phone span.info {
  text-align: left;
}
.storesDropdown .stores .store .storeDetails .details .address span.info p, .storesDropdown .stores .store .storeDetails .details .address span.info a, .storesDropdown .stores .store .storeDetails .details .phone span.info p, .storesDropdown .stores .store .storeDetails .details .phone span.info a {
  margin: 0;
  font-size: 12px;
  color: #000000;
  text-decoration: none;
}
.storesDropdown .stores .store .storeDetails > p.hideDetails {
  position: static;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #000000;
  cursor: pointer;
  margin-top: 20px;
}
.storesDropdown .stores .store .allStoreDetails {
  text-align: right;
  float: right;
  margin-top: 20px;
}
.storesDropdown .myStore {
  /* background-color: #f5f5f5; */
  /* position: relative; */
  padding: 30px 0;
}
.storesDropdown .myStore::before {
  content: "";
  position: absolute;
  width: 15px;
  background: #f5f5f5;
  left: -15px;
  top: 0;
  height: 100%;
}
.storesDropdown .myStore::after {
  content: "";
  position: absolute;
  width: 15px;
  background: #f5f5f5;
  right: -15px;
  top: 0;
  height: 100%;
}
.storesDropdown .myStore .availability {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  margin-bottom: 5px;
}
.storesDropdown .myStore .storeName {
  font-size: 16px;
  font-weight: bold;
  float: left;
  width: 60%;
  color: #000000;
}
.storesDropdown .myStore .distance {
  float: right;
  width: 40%;
  position: static;
  line-height: 25px;
  text-align: right;
  font-size: 12px;
  color: #aaaaaa;
}
.storesDropdown .myStore .storeAddress {
  font-size: 12px;
  line-height: 1.2;
  color: #000000;
  max-width: 60%;
}
.storesDropdown .myStore span.currentIndicator {
    float: left;
    font-size: 12px;
    font-weight: bold;
    line-height: 27px;
}
.storesDropdown .myStore svg {
  width: 17px;
  height: auto;
  vertical-align: middle;
}
.storesDropdown .myStore .showDetails {
  float: right;
}
.storesDropdown .myStore .showDetails .text {
  font-size: 12px;
  line-height: 2.2;
}
.storesDropdown .myStore .showDetails svg {
    width: 14px;
    height: auto;
    margin-left: 5px;
    margin-top: 0px;
    vertical-align: middle;
}
.storesDropdown .myStore .showDetails svg.rotate-img {
  transform: rotate(-180deg);
}
.storesDropdown .storeDetails {
  width: 100%;
  margin: auto;
  margin-top: 15px;
  position: relative;
  clear: both;
}
.storesDropdown .storeDetails .details .address {
  width: 100%;
}
.storesDropdown .storeDetails .details .phone {
  width: 100%;
}
.storesDropdown .storeDetails .details .address, .storesDropdown .storeDetails .details .phone {
  padding: 10px 0;
}
.storesDropdown .storeDetails .details .phone {
  padding-top: 0;
}

.storesDropdown .storeDetails .details .address > p, .storesDropdown .storeDetails .details .phone > p {
  margin: 0;
  font-size: 12px;
  color: #000000;
  margin-bottom: 0;
  font-weight: bold;
}
.storesDropdown .storeDetails .details .address span.info, .storesDropdown .storeDetails .details .phone span.info {
  text-align: left;
}
.storesDropdown .storeDetails .details .address span.info p, .storesDropdown .storeDetails .details .address span.info a, .storesDropdown .storeDetails .details .phone span.info p, .storesDropdown .storeDetails .details .phone span.info a {
  margin: 0;
  font-size: 12px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}
.storesDropdown .storeDetails > p.hideDetails {
  position: static;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #000000;
  cursor: pointer;
  margin-top: 20px;
}
.click-and-collect-mobile {
  text-align: center;
  background-color: white;
}
.click-and-collect-mobile .setStoreWrapper .setStore .icon{
  position: static;
}
@media (min-width: 800px) {
  .click-and-collect-mobile {
    display: none;
  }
}
.click-and-collect-mobile .setStoreWrapper {
  width: auto;
  float: none;
  display: inline-block;
}
.click-and-collect-mobile .setStoreWrapper .setStore {
  display: flex;
}
.click-and-collect-mobile .setStoreWrapper .setStore .icon {
  margin: 8px;
}
.click-and-collect-mobile .setStoreWrapper .setStore .cc-text-mobile {
  color: #999;
  line-height: 40px;
  font-size: 14px;
  text-transform: capitalize;
}
.click-and-collect-mobile .setStoreWrapper .setStore .title {
  margin: 0 8px;
  line-height: 40px !important;
}

.productView .storeSection {
  margin-left: 20px;
  margin-top: 20px;
}
.productView .storeSection .availability, .productView .storeSection .onlineAvailability {
  font-size: 13px;
  margin-bottom: 10px;
  padding-left: 5px;
}
.productView .storeSection .availability.available, .productView .storeSection .availability.alwaysAvailable, .productView .storeSection .onlineAvailability.available, .productView .storeSection .onlineAvailability.alwaysAvailable {
  position: relative;
}
.productView .storeSection .availability.available svg, .productView .storeSection .availability.alwaysAvailable svg, .productView .storeSection .onlineAvailability.available svg, .productView .storeSection .onlineAvailability.alwaysAvailable svg {
  position: absolute;
  width: 18px;
  height: auto;
  left: -20px;
}
.productView .storeSection .availability.notAvailable, .productView .storeSection .onlineAvailability.notAvailable {
  position: relative;
}
.productView .storeSection .availability.notAvailable svg, .productView .storeSection .onlineAvailability.notAvailable svg {
    position: absolute;
    width: 20px;
    height: auto;
    left: -20px;
}
.productView .storeSection .availability.notAvailable:after, .productView .storeSection .onlineAvailability.notAvailable:after {
  display: block;
  position: absolute;
  top: 20px;
  left: auto;
  right: auto;
  bottom: auto;
  font-size: 13px;
  color: #afafaf;
  line-height: 10px;
}
.productView .storeSection .availability.notAvailable.alwaysUnavailable:after, .productView .storeSection .onlineAvailability.notAvailable.alwaysUnavailable:after {
  content: "";
  display: none;
}
@media (max-width: 1132px) {
  .productView .storeSection .availability, .productView .storeSection .onlineAvailability {
    float: none;
    width: 100%;
  }
}
.productView .storeSection .alwaysAvailable {
  font-size: 12px;
  margin-bottom: 10px;
  font-weight: bold;
  position: relative;
}
.productView .storeSection .alwaysAvailable:before {
  position: absolute;
  content: "";
  background: url(https://cc.randemcommerce.com/assets/bc/icons/available.svg) 0 0 no-repeat;
  width: 20px;
  height: 20px;
  font-size: 17px;
  left: -20px;
  color: #99CC33;
}
.productView .storeSection .chooseStore {
  cursor: pointer;
  margin-top: 5px;
}
.productView .storeSection .chooseStore .icon {
    display: inline-block;
    height: 25px;
    margin-right: 5px;
}
.productView .storeSection .chooseStore .icon svg{
    width: 16px;
    height: auto;
}
.productView .storeSection .chooseStore .title {
  display: inline-block;
  margin: 0;
  font-size: 12px;
}
.productView .storeSection .alternativeStores {
  clear: both;
  text-align: right;
  margin-left: 5px;
}
.productView .storeSection .alternativeStores > p {
  margin: 0;
  padding: 2px 0;
  float: left;
  color: #9d9d9d;
  font-size: 12px;
  margin-bottom: 5px;
}
.productView .storeSection .alternativeStores .allAltStores {
  list-style: none;
  float: left;
  margin-bottom: 0;
  text-align: left;
}
.productView .storeSection .alternativeStores .allAltStores .store {
  margin-bottom: 10px;
}
.productView .storeSection .alternativeStores .allAltStores .store .setAsStore {
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  padding: 3px;
  font-weight: bold;
  cursor: pointer;
  font-size: 12px;
}

.productView .storeSection .alternativeStores .allAltStores .store .showDetails:hover {
  background: transparent;
}
.productView .storeSection .setStoreWrapper {
  margin-left: 5px;
}
@media (max-width: 1132px) {
  .productView .storeSection .setStoreWrapper {
    float: none;
    width: 100%;
  }
}
.productView .storeSection .setStoreWrapper .text {
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
  margin-bottom: 0;
  color: black;
}
.productView .storeSection .setStoreWrapper .text.time {
  font-weight: normal;
  color: #757575;
}
.productView .storeSection .setStoreWrapper .noStoreSelectedMessage {
  font-size: 10px;
  color: #afafaf;
}
.productView .storeSection .setStoreWrapper .myStore {
  text-align: left;
}
.productView .storeSection .setStoreWrapper .myStore > span img {
  margin-bottom: 5px;
}
.productView .storeSection .setStoreWrapper .myStore .storeName {
  font-size: 12px;
  font-weight: normal;
  color: #757575;
}
.productView .storeSection .setStoreWrapper .myStore .distance {
  float: right;
  font-size: 10px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 20px;
  letter-spacing: normal;
  text-align: right;
  color: #9d9d9d;
  line-height: 24px;
}
.productView .storeSection .setStoreWrapper .myStore .storeAddress {
  margin: 0;
  font-size: 12px;
  color: #9d9d9d;
}
.productView .storeSection .setStoreWrapper .availabilityInfo {
  margin-top: 1.2rem;
  font-size: 11px;
  color: #9d9d9d;
  margin-bottom: 0;
}
.productView .storeSection .setStoreWrapper .availabilityInfo a {
  color: #9d9d9d;
}
.productView .storeSection .setStoreWrapper .availabilityInfo a:hover {
  color: #f8b6a9;
}
.productView .storeSection .onlineAvailability.notAvailable {
  position: relative;
  margin-bottom: 20px;
}
.productView .storeSection .onlineAvailability.notAvailable:before {
  position: absolute;
  content: "";
  background: url(https://cc.randemcommerce.com/assets/bc/icons/unavailable.svg) 0 0 no-repeat;
  width: 20px;
  height: 20px;
  font-size: 17px;
  left: -20px;
  color: #99CC33;
}
.productView .storeSection .onlineAvailability.notAvailable:after {
  content: "";
}

.clickAndCollectPopup {
  width: 780px;
  -webkit-box-shadow: 0px 0px 41px -7px rgba(0, 0, 0, 0.49);
  -moz-box-shadow: 0px 0px 41px -7px rgba(0, 0, 0, 0.49);
  box-shadow: 0px 0px 41px -7px rgba(0, 0, 0, 0.49);
  border-top: 8px solid black !important;
  border-bottom: 8px solid black !important;
}
.clickAndCollectPopup .storesPopup .popupHeader > img {
  margin-bottom: 20px;
}
.clickAndCollectPopup .storesPopup .popupHeader .title {
  font-size: 21px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #000000;
}
.clickAndCollectPopup .storesPopup .popupHeader span {
  display: inline-block;
}
.clickAndCollectPopup .storesPopup .popupHeader span.text {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #000000;
  text-decoration: underline;
  cursor: pointer;
}
.clickAndCollectPopup .storesPopup .popupHeader input {
  display: block;
  margin: 20px auto;
  height: 46px;
  width: 250px;
  padding-left: 10px;
  background-color: #f7f7f7;
  border: none;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #a2a2a2;
}
.clickAndCollectPopup .storesPopup .popupBody {
  max-height: 348px;
  overflow-y: scroll;
  padding: 0 5px;
}
.clickAndCollectPopup .storesPopup .popupBody::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.clickAndCollectPopup .storesPopup .popupBody::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
.clickAndCollectPopup .storesPopup .popupBody::-webkit-scrollbar-thumb {
  background: #00acf8;
  border: 0px none #ffffff;
  border-radius: 2px;
}
.clickAndCollectPopup .storesPopup .popupBody::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}
.clickAndCollectPopup .storesPopup .popupBody::-webkit-scrollbar-thumb:active {
  background: #000000;
}
.clickAndCollectPopup .storesPopup .popupBody::-webkit-scrollbar-track {
  background: white;
  border: 0px none #ffffff;
  border-radius: 6px;
}
.clickAndCollectPopup .storesPopup .popupBody::-webkit-scrollbar-track:hover {
  background: #666666;
}
.clickAndCollectPopup .storesPopup .popupBody::-webkit-scrollbar-track:active {
  background: #333333;
}
.clickAndCollectPopup .storesPopup .popupBody::-webkit-scrollbar-corner {
  background: transparent;
}
.clickAndCollectPopup .storesPopup .popupBody .stores {
  list-style: none;
  margin: 0;
}
.clickAndCollectPopup .storesPopup .popupBody .stores .store {
  border-top: solid 1px #979797;
  padding: 15px;
  margin-bottom: 15px;
  position: relative;
}
.clickAndCollectPopup .storesPopup .popupBody .stores .store .content {
  width: 70%;
  margin: auto;
  text-align: left;
}
@media (max-width: 800px) {
  .clickAndCollectPopup .storesPopup .popupBody .stores .store .content {
    width: 100%;
  }
}
.clickAndCollectPopup .storesPopup .popupBody .stores .store .content .availability {
  font-size: 12px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
}
.clickAndCollectPopup .storesPopup .popupBody .stores .store .content .name {
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #000000;
}
.clickAndCollectPopup .storesPopup .popupBody .stores .store .content .distance {
  position: absolute;
  right: 20px;
  top: 40px;
  left: auto;
  bottom: auto;
}
.clickAndCollectPopup .storesPopup .popupBody .stores .store .content .address {
  font-size: 13px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #000000;
  width: 100%;
}
.clickAndCollectPopup .storesPopup .popupBody .stores .store .content .click-and-collect-primary-button {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
}
.clickAndCollectPopup .storesPopup .popupBody .stores .store .content .button--secondary {
  float: right;
  height: 41px;
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: right;
  color: #000000;
}
.clickAndCollectPopup .storesPopup .popupBody .stores .store .storeDetails {
  width: 70%;
  margin: auto;
  margin-top: 20px;
  position: relative;
  display: inline-block;
}
.clickAndCollectPopup .storesPopup .popupBody .stores .store .storeDetails .storeMap {
  min-height: 300px;
}
@media (max-width: 800px) {
  .clickAndCollectPopup .storesPopup .popupBody .stores .store .storeDetails {
    width: 100%;
  }
}
.clickAndCollectPopup .storesPopup .popupBody .stores .store .storeDetails .details .address {
  float: left;
  width: 50%;
}
@media (max-width: 800px) {
  .clickAndCollectPopup .storesPopup .popupBody .stores .store .storeDetails .details .address {
    float: none;
    width: 100%;
  }
}
.clickAndCollectPopup .storesPopup .popupBody .stores .store .storeDetails .details .phone {
  float: right;
  width: 50%;
}
@media (max-width: 800px) {
  .clickAndCollectPopup .storesPopup .popupBody .stores .store .storeDetails .details .phone {
    float: none;
    width: 100%;
  }
}
.clickAndCollectPopup .storesPopup .popupBody .stores .store .storeDetails .details .address, .clickAndCollectPopup .storesPopup .popupBody .stores .store .storeDetails .details .phone {
  padding: 10px 0;
}
.clickAndCollectPopup .storesPopup .popupBody .stores .store .storeDetails .details .address > p, .clickAndCollectPopup .storesPopup .popupBody .stores .store .storeDetails .details .phone > p {
  margin: 0;
  font-size: 12px;
  color: #000000;
  margin-bottom: 0;
}
.clickAndCollectPopup .storesPopup .popupBody .stores .store .storeDetails .details .address span.info, .clickAndCollectPopup .storesPopup .popupBody .stores .store .storeDetails .details .phone span.info {
  text-align: left;
}
.clickAndCollectPopup .storesPopup .popupBody .stores .store .storeDetails .details .address span.info p, .clickAndCollectPopup .storesPopup .popupBody .stores .store .storeDetails .details .address span.info a, .clickAndCollectPopup .storesPopup .popupBody .stores .store .storeDetails .details .phone span.info p, .clickAndCollectPopup .storesPopup .popupBody .stores .store .storeDetails .details .phone span.info a {
  margin: 0;
  font-size: 12px;
  color: #000000;
  text-decoration: none;
}
.clickAndCollectPopup .storesPopup .popupBody .stores .store .storeDetails > p.hideDetails {
  position: static;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #000000;
  cursor: pointer;
  margin-top: 20px;
}

@media (max-width: 1132px) {
  .productView .productView-details .storeSection {
    clear: both;
    text-align: left;
  }

  .productView .productView-details .storeSection .availability.notAvailable + span,
.productView .productView-details .storeSection .onlineAvailability.notAvailable + span,
.productView .productView-details .storeSection .availability.available + span,
.productView .productView-details .storeSection .onlineAvailability.available + span {
    display: inline !important;
    float: none;
    text-align: left;
  }

  .productView .productView-details .storeSection .alternativeStores {
    float: none;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left;
  }

  .productView .productView-details .storeSection .alternativeStores .stores {
    float: none;
    flex: 8;
    text-align: left;
    margin-left: 0;
  }
  .productView .productView-details .storeSection .alternativeStores .stores .store {
    display: inline;
  }
}
.cart-item .availability, .cart-item .onlineAvailability {
  font-size: 13px;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  margin-bottom: 0;
}
.cart-item .availability.available, .cart-item .onlineAvailability.available {
  color: #00acf8;
}
.cart-item .availability.notAvailable, .cart-item .onlineAvailability.notAvailable {
  color: red;
}

@media (max-width: 800px) {
  .setStoreWrapper {
    width: 100%;
    margin-right: 0;
    float: right;
  }
  .setStoreWrapper.isOpen::before {
    background-color: transparent;
  }
  .setStoreWrapper .setStore {
    width: 100%;
    float: none;
    padding: 0;
    text-align: left;
  }
  .setStoreWrapper .setStore p.title {
    line-height: 24px !important;
  }
  .setStoreWrapper .setStore span.text {
    display: none;
  }
  .setStoreWrapper .setStore .arrow-right {
    display: none;
  }
  .storesDropdown {
    border-top: 7px solid #00acf8;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  .storesDropdown .content {
    width: 100%;
  }
  .storesDropdown .close {
    display: block;
    margin-bottom: 20px;
  }
  .storesDropdown .close span img {
    transform: rotate(90deg);
    height: 20px;
  }
  .storesDropdown .close span {
    text-transform: uppercase;
    font-size: 13px;
    color: black;
  }

  .storeSection {
    width: 100%;
    margin-left: 20px !important;
    margin-top: 20px;
  }
  .storeSection .setStoreWrapper {
    margin: auto;
  }
  .storeSection .alternativeStores {
    text-align: center;
  }
  .storeSection .alternativeStores .allAltStores {
    text-align: center;
  }
  .storeSection .alternativeStores .allAltStores .store {
    display: inline-block;
  }
}
#pickUpSection .storeSection {
  border: 1px solid #ddd;
  box-shadow: rgba(221, 221, 221, 0.5) 0px 4px 8px;
  margin-bottom: 20px;
}
#pickUpSection > h1 {
	 display: inline-block;
	 font-size: 18px;
	 font-weight: bold;
	 color: #000;
	 margin-top: 0;
	 margin-bottom: 10px;
}
 #pickUpSection .infoIcon {
	 position: relative;
}
 #pickUpSection .infoIcon:hover {
	 cursor: pointer;
}
 #pickUpSection .infoIcon:hover:after {
	 content: "Orders placed before 12pm each business day will be ready within 3 hours the same day.\aOrders placed after this time will be prepared by 11am the following business day.";
	 position: absolute;
	 top: 16px;
	 right: auto;
	 bottom: auto;
	 left: 16px;
	 width: 300px;
	 height: 80px;
	 background-color: #000;
	 color: white;
	 font-size: 12px;
	 font-style: italic;
	 z-index: 9;
	 padding: 5px;
	 white-space: break-spaces;
}
 @media (max-width: 650px) {
	 #pickUpSection .infoIcon:hover:after {
		 position: static;
		 display: block;
	}
}
 #pickUpSection svg {
   height: 20px;
 }

 #pickUpSection .infoIcon img {
	 width: 16px;
}
 @media (max-width: 800px) {
	 #pickUpSection .storeSection {
		 margin-left: 0 !important;
	}
	 #pickUpSection .storeSection .row {
		 display: block !important;
	}
	 #pickUpSection .storeSection .columns {
		 padding: 0;
	}
  #click-and-collect-checkout-pickup-button {
    margin-left: 10px;
  }
}
 #pickUpSection .storeSection .columns:first-of-type {
	 padding-right: 20px;
}
 #pickUpSection .storeSection .columns:first-of-type::after {
	 width: 1px;
	 height: 75%;
	 position: absolute;
	 right: 0;
	 top: 0;
	 bottom: 0;
	 left: auto;
	 margin: auto;
	 background-color: #979797;
}
 @media (max-width: 800px) {
	 #pickUpSection .storeSection .columns:first-of-type::after {
		 width: 0px;
	}
}
 #pickUpSection .storeSection .columns:last-of-type {
	 padding-left: 20px;
}
 @media (max-width: 800px) {
	 #pickUpSection .storeSection .columns:last-of-type {
		 padding: 0;
	}
}
 #pickUpSection .storeSection .setStoreWrapper .Availability {
	 font-size: 12px;
	 font-weight: bold;
}
 #pickUpSection .storeSection .setStoreWrapper .Availability.available {
	 color: #7ad36e;
}
 #pickUpSection .storeSection .setStoreWrapper .Availability.notAvailable {
	 color: firebrick;
}
 #pickUpSection .storeSection .setStoreWrapper .myStore .storeName {
	 font-size: 16px;
	 font-weight: bold;
	 color: #000;
}
 #pickUpSection .storeSection .setStoreWrapper .myStore .storeAddress {
	 font-size: 12px;
	 color: #000;
}
 #pickUpSection .storeSection .setStoreWrapper .storeDetails .details .address, #pickUpSection .storeSection .setStoreWrapper .storeDetails .details .phone {
	 width: 100%;
	 display: table;
	 padding: 0;
}
#pickUpSection .storeSection .setStoreWrapper .storeDetails .details .address {
  margin-bottom: 10px;
}
 #pickUpSection .storeSection .setStoreWrapper .storeDetails .details .address .image, #pickUpSection .storeSection .setStoreWrapper .storeDetails .details .phone .image {
	 display: table-cell;
	 vertical-align: middle;
	 width: 28px;
}
 #pickUpSection .storeSection .setStoreWrapper .storeDetails .details .address .info > p, #pickUpSection .storeSection .setStoreWrapper .storeDetails .details .phone .info > a {
	 font-size: 12px;
	 color: #000;
   margin-bottom: 0;
   font-weight: bold;
}
 #pickUpSection .storeSection .setStoreWrapper .storeDetails .details .address .info > p .close, #pickUpSection .storeSection .setStoreWrapper .storeDetails .details .phone .info > p .close, #pickUpSection .storeSection .setStoreWrapper .storeDetails .details .address .info > p .open, #pickUpSection .storeSection .setStoreWrapper .storeDetails .details .phone .info > p .open {
	 font-size: 12px;
	 color: #000 !important;
	 margin-bottom: 0;
	 float: none;
	 opacity: 1;
   font-weight: normal;
   font-weight: bold;
}
 #pickUpSection .storeSection .row {
	 padding: 15px;
	 display: flex;
	 border: 1px solid #ebebeb;
}
 #pickUpSection .storeSection .row .columns.large-6.medium-12 {
	 position: relative;
	 flex: 6;
}
 @media (max-width: 800px) {
	 #pickUpSection .storeSection .row .columns.large-6.medium-12 {
		 flex: 12;
	}
}
 #pickUpSection .chooseStore {
	 float: right;
	 text-align: right;
	 margin-bottom: 20px;
	 cursor: pointer;
}
 #pickUpSection .chooseStore .icon {
	 display: inline;
}
 #pickUpSection .chooseStore .icon svg {
	 width: 20px;
   height: auto;
   vertical-align: middle;
}
 #pickUpSection .chooseStore .title {
	 display: inline;
	 font-size: 12px;
   font-weight: bold;
   text-decoration: underline;
}
 #pickUpSection .chooseStore.noStoreSelected {
	 float: none;
	 text-align: left;
}
#pickUpSection .pickupButtonWrapper {
    text-align: right;
}
 #pickUpSection .confirmPickup {
	 /* float: right; */
	 margin-top: 20px;
	 margin-right: 15px;
	 margin-right: 0;
	 height: 45px;
	 width: 150px;
}
 @media (max-width: 800px) {
	 #pickUpSection .confirmPickup {
		 width: 100%;
		 margin-right: 0;
		 float: none;
	}
}
 @media (max-width: 551px) {
	 #pickUpSection {
		 margin-left: 0;
		 margin-right: 0;
	}
}
 #pickUpSection .form-field.form-field--input.form-field--inputText {
	 clear: both;
	 margin: 0;
}
#datePickerSection {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 10px;
}
#datePickerSection #datepicker-container, #datePickerSection #timepicker-container {
    flex: 6;
    max-width: 45%;
} 

.checkoutHeader.optimizedCheckout-header .clickandcollect-header {
  visibility: hidden;
}
.checkout-step.optimizedCheckout-checkoutStep.checkout-step--shipping .stepHeader, .checkout-step.optimizedCheckout-checkoutStep.checkout-step--billing .stepHeader {
  display: block;
  position: relative;
}
.checkout-step.optimizedCheckout-checkoutStep.checkout-step--shipping .stepHeader .stepHeader-body.stepHeader-column.optimizedCheckout-contentPrimary, .checkout-step.optimizedCheckout-checkoutStep.checkout-step--billing .stepHeader .stepHeader-body.stepHeader-column.optimizedCheckout-contentPrimary {
  margin-left: 56px;
}
.checkout-step.optimizedCheckout-checkoutStep.checkout-step--shipping .stepHeader .stepHeader-body.stepHeader-column.optimizedCheckout-contentPrimary .vcard.checkout-address--static, .checkout-step.optimizedCheckout-checkoutStep.checkout-step--billing .stepHeader .stepHeader-body.stepHeader-column.optimizedCheckout-contentPrimary .vcard.checkout-address--static {
  margin-top: 20px;
}
.checkout-step.optimizedCheckout-checkoutStep.checkout-step--shipping .stepHeader .stepHeader-body.stepHeader-column.optimizedCheckout-contentPrimary .shippingOption-price, .checkout-step.optimizedCheckout-checkoutStep.checkout-step--billing .stepHeader .stepHeader-body.stepHeader-column.optimizedCheckout-contentPrimary .shippingOption-price {
  display: none;
}
.checkout-step.optimizedCheckout-checkoutStep.checkout-step--shipping .stepHeader .stepHeader-actions.stepHeader-column, .checkout-step.optimizedCheckout-checkoutStep.checkout-step--billing .stepHeader .stepHeader-actions.stepHeader-column {
  position: absolute;
  top: 1rem;
  right: 0;
}
.buttonsWrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: 55px;
  margin-top: 30px;
}
@media (max-width: 551px) {
  .buttonsWrapper {
    margin-left: 0;
    margin-top: 0;
  }
}
button.button.button--primary.delivery, button.button.button--primary.pickup {
  flex: 1;
  height: 50px;
}
button.button.button--primary.delivery[disabled], button.button.button--primary.pickup[disabled] {
  border-width:1px;
  border-style: solid;
  opacity: 1;
}
#pickUpSection {
  margin-left: 55px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 551px) {
  #pickUpSection {
    margin-left: 0;
  }
}