body .page:has(.storefinder) {
  overflow: visible !important;
}
.store-locater-container .title{
    font-size: 28px;
    line-height: 40px;
    text-align: center;
    letter-spacing: 0.56px;
    color: #BBA562;
    padding:80px 0 56px;
}
.store-locater-container.selector .title{
  padding-bottom: 16px;
}
.store-locater-container .description {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #3E3E3E;
  margin-bottom: 46px;
}
.store-locater-container .step-container{
  max-width: 1023px;
  margin: auto;
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
}
.store-locater-container .step-container .step{
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
}
.store-locater-container .step-container .step img{
  width: 105px;
  height: 105px;
  margin-bottom: 16px;
}
.store-locater-container .step-container .step .name{
  display: flex;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #3E3E3E;
  max-width: 205px;
}
.store-locater-container .step-container .step .name .step-num{
  min-width: 24px;
  width: 24px;
  height: 24px;
  background-color: #3E3E3E;
  line-height: 19px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border-radius: 100%;
}
.store-locater-container .map-container{
  display: grid;
  grid-template-columns: repeat(2,minmax(0%,650px));
  gap: 15px;
  justify-content: center;
  padding: 0 20px;
}
.store-locater-container .map-container .map-panel{
  display: flex;
  flex-direction: column;
  max-height: 600px;
  height: auto;
}
.store-locater-container .map-container .map-searcher {
  display: flex;
  align-items: center;
  min-height: 40px;
  height: 40px;
  padding-right: 20px;
  border-bottom: solid 1.5px rgba(62, 62, 62, 0.2);
  width: 100%;
  margin-bottom: 18px;
}
.store-locater-container .map-container .map-searcher:focus-within {
    border-bottom: 2px solid #3e3e3e;
}
.store-locater-container .map-container .map-searcher .msg{
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #3e3e3e;
  margin: 0 5px 0 0;
  outline: none;
  border: none;
  width: 0;
  flex-grow: 1;
}
.store-locater-container .map-container .map-searcher .msg::placeholder{
    color: #3e3e3e66;
}
.store-locater-container .map-container .map-searcher .search-icon{
  cursor: pointer;
}
.store-locater-container .map-container .filter-container{
  display: flex;
  flex-direction: column;
  height: calc(100% - 58px);
}
.store-locater-container .map-container .filter-container .filters{
  display: flex;
  border-bottom: 1px solid rgba(179, 179, 179, 0.8);
  margin-bottom: 12px;
  height: fit-content;
}
.store-locater-container .map-container .filter-container .filters .item{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 45px;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.28px;
  color: #B3B3B3;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.store-locater-container .map-container .filter-container .filters .item.active{
  font-weight: 700;
  color: #BCA662;
  border-bottom-color: #BCA662;
}
.store-locater-container .map-container .filter-container .filter-result{
  display: grid;
  gap: 8px;
  overflow: auto;
}
.store-locater-container .map-container .filter-container .filter-result::-webkit-scrollbar {
  width: 16px;
  background: transparent;
}
.store-locater-container .map-container .filter-container .filter-result::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
  box-shadow: inset 0.5px 0px 0px rgba(0, 0, 0, 0.07), inset 1px 0px 0px rgba(0, 0, 0, 0.02), inset -1px 0px 0px rgba(0, 0, 0, 0.02), inset -0.5px 0px 0px rgba(0, 0, 0, 0.07);
}
.store-locater-container .map-container .filter-container .filter-result::-webkit-scrollbar-thumb {
  border: 4px solid #fafafa;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.51);
}
.store-locater-container .map-container .filter-container .filter-result .item{
  display: flex;
  justify-content: space-between;
  /* align-items: flex-end; */
  padding: 16px;
  cursor: pointer;
}
.store-locater-container .map-container .filter-container .filter-result .item .info{
  display: grid;
  font-size: 12px;
  line-height: 16px;
  color: #3E3E3E;
  grid-template-columns: repeat(2,1fr);
  max-width: 388px;
}
.store-locater-container .map-container .filter-container .filter-result .item .info >*{
  display: flex;
  align-items: center;
}
.store-locater-container .map-container .filter-container .filter-result .item .info >* img{
  margin-right: 4px;
  width: 14px;
  height: 14px;
}
.store-locater-container .map-container .filter-container .filter-result .item:hover,
.store-locater-container .map-container .filter-container .filter-result .item.active{
  background: rgba(180, 178, 175, 0.12);
}
.store-locater-container .map-container .filter-container .filter-result .item:hover .action a,
.store-locater-container .map-container .filter-container .filter-result .item.active .action a{
  background: #000000;
}
.store-locater-container .map-container .filter-container .filter-result .item .name{
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  margin-bottom: 2px;
  grid-column: span 2;
}
.store-locater-container .map-container .filter-container .filter-result .item .address,
.store-locater-container .map-container .filter-container .filter-result .item .openhour{
  grid-column: span 2;
  margin-bottom: 8px;
}
.store-locater-container .map-container .filter-container .filter-result .item .action {
  display: none;
}
.store-locater-container.selector .map-container .filter-container .filter-result .item .action {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  justify-content: space-between;
}
.store-locater-container .map-container .filter-container .filter-result .item .action .status-tag {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #ffffff;
  background-color: #2FA84F;
  padding: 2px 12px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.store-locater-container .map-container .filter-container .filter-result .item .action a{
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: 0.28px;
  width: 168px;
  height: 45px;
  color: #ffffff;
  background: #BBA661;
}
.store-locater-container .map-container .filter-container .filter-result .item .action a.disabled{
  /* pointer-events: none; */
  background: #DADADA;
}
.store-locater-container .google-map{
  width: 100%;
  min-height: 600px;
}
.store-locater-container #googleMap{
  width: 100%;
  max-height: 600px;
  height: auto;
}
.store-locater-container .google-map .store-locator-map-msg {
  line-height: 20px;
  color: #3E3E3E;
  text-align: center;
}
.store-locater-container .google-map .store-locator-map-msg .title{
  font-weight: 600;
  font-size: 16px;
  padding: 0;
  margin:9px 0 6px;
  line-height: 20px;
  letter-spacing: normal;
  color: #3E3E3E;
}
.store-locater-container .google-map .store-locator-map-msg a{
  font-size: 12px;
  text-decoration: underline;
  margin-bottom: 16px;
  display: block;
}
.store-locater-container .google-map .store-locator-map-msg img{
  width: 100%;
  height: 100%;
}
.store-locater-container .google-map .gm-style .gm-style-iw-d{
  display: contents;
}
.store-locater-container .google-map .gm-style .gm-style-iw-c{
  padding: 8px !important;
  min-height: 204px;
}
.store-locater-container .google-map .gm-style .gm-style-iw-c .gm-style-iw-chr {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.store-locater-container .google-map .gm-style .gm-style-iw-c .gm-style-iw-chr .gm-style-iw-ch {
  display: none;
}
.store-locater-container .google-map .gm-style .gm-style-iw-c .gm-style-iw-chr button {
  width: 24px !important;
  height: 24px !important;
}
.store-locater-container .google-map .gm-style .gm-style-iw-c .gm-style-iw-chr button span {
  width: 8px !important;
  height: 8px !important;
  margin: 8px !important;
}
.googleMap .gm-style .gm-style-iw-c .gm-style-iw-chr {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.googleMap .gm-style .gm-style-iw-c .gm-style-iw-chr .gm-style-iw-ch {
  display: none;
}
.googleMap .gm-style .gm-style-iw-c .gm-style-iw-chr button {
  width: 24px !important;
  height: 24px !important;
}
.googleMap .gm-style .gm-style-iw-c .gm-style-iw-chr button span {
  width: 8px !important;
  height: 8px !important;
  margin: 8px !important;
}
.store-locater-container .tips{
  max-width: 946px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #3E3E3E;
  margin: 64px auto 0;
}
@media screen and (max-width:1024px) {
  .store-locater-container .title,
  .store-locater-container .map-container .map-searcher,
  .store-locater-container .map-container .filter-container .filters{
    position: sticky;
    background-color: #ffffff;
    top: 200px;
  }
  .store-locater-container .title{
    padding: 40px 0 24px;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
    top: var(--offseHeadertTop, 104px);
    height: 90px;
    z-index: 20;
  }
  .google-map .store-locator-map-msg .title {
    position: unset !important;
    height: unset !important;
    top: unset !important
  }
  .store-locater-container.selector .title{
    padding-left: 30px;
    padding-right: 30px;
  }
  .store-locater-container .description,
  .store-locater-container .step-container {
    padding: 0 30px;
  }
  .store-locater-container .map-container .map-searcher{
    top: calc(var(--offseHeadertTop, 104px) + 90px);
    z-index: 19;
  }
  .store-locater-container .map-container .map-searcher .msg{
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }
  .store-locater-container .map-container{
    display: flex;
    flex-direction: column;
    gap: unset;
  }
  .store-locater-container .map-container .map-panel{
    display: contents;
  }
  .store-locater-container .map-container .map-searcher{
    order: 1;
    margin-bottom: unset;
    padding-right: 8px;
    z-index: 19;
  }
  .store-locater-container .map-container .filter-container{
    display: contents;
  }
  .store-locater-container .map-container .filter-container .filters{
    padding-top: 24px;
    margin-bottom: unset;
    order: 1;
    top: calc(var(--offseHeadertTop, 104px) + 90px + 40px);
    border-bottom: 1.11px solid #B3B3B3CC;
    z-index: 19;
  }
  .cartPage .store-locater-container .map-container .filter-container .filters,
  .checkout-page .store-locater-container .map-container .filter-container .filters {
    padding-top: unset;
    top: unset;
  }
  .store-locater-container .map-container .filter-container .filter-result{
    order: 3;
  }
  .store-locater-container .google-map{
    order: 2;
    margin-top: 25px;
    margin-bottom: 16px;
    min-height: min(calc(100vw - 40px) , 650px)
  }
  .store-locater-container .google-map .store-locator-map-msg .title{
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .store-locater-container.selector .title{
    padding-left: 30px;
    padding-right: 30px;
    height: 108px;
  }
  .store-locater-container.selector .title ~ .map-container .map-searcher{
    top: calc(var(--offseHeadertTop, 104px) + 108px);
  }
  .store-locater-container.selector .title ~ .map-container .filter-container .filters{
    top: calc(var(--offseHeadertTop, 104px) + 108px + 40px);
  }
  .store-locater-container .description{
   margin-bottom: 24px; 
   font-size: 14px;
  }
  .store-locater-container .step-container{
    grid-template-columns: 1fr;
    gap: 9px;
    margin-bottom: 24px;
  }
  .store-locater-container .step-container .step .name{
    max-width: unset;
    font-size: 12px;
  }
  .store-locater-container .step-container .step .name .step-num{
    font-size: 16px;
  }
  .store-locater-container .step-container .step img{
    width: 80px;
    height: 80px;
  }
  .store-locater-container .map-container .filter-container .filters{
    overflow-x: auto;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
  .cartPage .store-locater-container .map-container .filter-container .filters,
  .checkout-page .store-locater-container .map-container .filter-container .filters {
    margin: unset;
  }
  .store-locater-container .map-container .filter-container .filters .item{
    min-width: max-content;
    padding: 0 16px;
  }
  .store-locater-container .map-container .filter-container .filter-result{
    gap: 16px;
  }
  .store-locater-container .map-container .filter-container .filter-result .item{
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 0.5px solid #3e3e3e66;
    padding: 0 0 16px;
  }
  .store-locater-container .map-container .filter-container .filter-result .item .action{
    margin-top: 16px;
  }
  .store-locater-container .map-container .filter-container .filter-result .item:hover,
  .store-locater-container .map-container .filter-container .filter-result .item.active{
    background: unset;
  }
  .store-locater-container .map-container .filter-container .filter-result .item .action .status-tag {
    font-size: 12px;
    line-height: 18px;
    padding: 2px 8px;
  }
  .store-locater-container .map-container .filter-container .filter-result .item:hover .action a,
  .store-locater-container .map-container .filter-container .filter-result .item.active .action a{
    background: #BCA662;
  }
  .store-locater-container .map-container .filter-container .filter-result .item .action a.disabled{
    background: #DADADA;
  }
  .store-locater-container .google-map .gm-your-location-control,
  .store-locater-container .google-map .gm-fullscreen-control{
    display: none;
  }
  .store-locater-container .google-map .gm-style .gm-style-iw-c{
    max-height: unset !important;
    max-width: 245px !important;
  }
  .store-locater-container .google-map .store-locator-map-msg img{
    height: 128px;
  }
  .store-locater-container .google-map .store-locator-map-msg a{
    margin-bottom: 6px;
  }
}

/* store locator popup */
.cce-change-store .popup-container{
  padding: 30px;
  width: 100%;
  max-width: 1376px;
}
.cce-change-store .popup-container .filter-container{
  max-width: unset;
}
.cce-change-store .popup-container .popup-header{
  margin-bottom: 20px;
}
.cce-change-store .popup-container .popup-header .title{
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 0.56px;
  color: #BBA562;
  margin-bottom: 8px;
}
.cce-change-store .popup-container .store-locater-container .map-container {
  height: min(600px, 66vh);
  grid-template-rows: 100%;
}
.cce-change-store .popup-container .store-locater-container .map-container .google-map {
  min-height: unset;
}

.cce-change-store .popup-container .store-locater-container .map-container .map-panel .tips{
  font-size: 14px;
  margin-bottom: 5px;
}
.cce-change-store .popup-container .store-locater-container .step-container {
  background-color: #FBFAF7;
  margin-bottom: 16px;
  gap: 20px;
  padding: 8px;
  max-width: 100%;
  width: 100%;
  grid-template-columns: repeat(4, minmax(245px,1fr));
}
.cce-change-store .popup-container .store-locater-container .step-container .step:not(:last-child) {
  margin-right: 44px;
  position: relative;
}
.cce-change-store .popup-container .store-locater-container .step-container .step:not(:last-child):after{
  position: absolute;
  left: calc(100% + 20px);
  top: 0;
  bottom: 0;
  margin: auto;
  content: '\E805';
  font-family: 'fontello';
  width: 24px;
  height: 24px;
  font-size: 17px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cce-change-store .popup-container .store-locater-container .step-container .step img {
  width: 51px;
  height: 51px;
  margin-bottom: 8px;
}
.cce-change-store .popup-container .store-locater-container .step-container .step .name{
  font-size: 11px;
  line-height: 14.98px;
  max-width: unset;
}
.cce-change-store .popup-container .store-locater-container .step-container .step .name .step-num{
  min-width: 17px;
  width: 17px;
  height: 17px;
  margin-right: 8px;
  font-size: 11px;
  line-height: 12.89px;
}
.store-locater-container .map-container .map-panel .tips{
  display: flex;
  align-items: center;
  background: #FF9C00;
  border-radius: 5px;
  width: fit-content;
  font-size: 16px;
  line-height: 135%;
  text-align: left;
  color: #FFFFFF;
  padding: 6px 8px;
  margin: 0 0 4px;
}
.store-locater-container .map-container .map-panel .tips img{
  width: 12px;
  height: 12px;
  margin-right: 8px;
}
.cce-change-store .popup-container .map-container .filter-container .filter-result .item .action {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  justify-content: space-between;
}
.cce-change-store .popup-container .map-container .filter-container .filter-result .item .action .status-tag {
  display: flex;
}
@media screen and (max-width:1024px) {
  .store-locater-container .map-container .map-panel .tips{
    font-size: 12px;
    line-height: 100%;
    margin-bottom: 6px;
  }
  .cce-change-store .popup-container .store-locater-container .step-container {
    max-width: calc(100% + 40px);
    width: calc(100% + 40px);
    margin: 0 -20px 8px;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .cce-change-store .popup-container .store-locater-container .step-container .step .name .step-num{
    display: none;
  }
  .cce-change-store .popup-container .store-locater-container .step-container .step img{
    min-width: 37px;
    width: 37px;
    height: 37px;
  }
  .cce-change-store .popup-container .store-locater-container .step-container .step .name{
    font-size: 10px;
    line-height: 13.62px;
    text-align: center;
  }
  .cce-change-store .popup-container .store-locater-container .step-container .step:not(:last-child){
    margin-right: 20px;
  }
  .cce-change-store .popup-container .store-locater-container .step-container .step:not(:last-child):after{
    left: calc(100% + 8px);
    width: 12px;
    height: 12px;
    font-size: 8px;
  }
  .cce-change-store .popup-container{
    height: 100%;
    border-radius: unset;
    padding: 20px;
  }
  .cce-change-store .popup-container .popup-header{
    margin-bottom: 12px;
  }
  .cce-change-store .popup-container .popup-header .title{
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 12px;
  }
  .cce-change-store .popup-container .popup-header .close-btn{
    top: 20px;
    right: 20px;
  }
  .cce-change-store .popup-container .popup-body{
    height: calc(100% - 63px - 40px);
    overflow: auto;
    padding: 0 20px;
    margin: 0 -20px;
  }
  .cce-change-store .popup-container .store-locater-container .map-container .map-panel .tips{
    font-size: 12px;
    line-height: 100%;
    margin-bottom: 8px;
  }
  .cce-change-store .popup-container .store-locater-container .map-container .map-searcher{
    position: unset;
    order: unset;
    margin-bottom: 24px;
  }
  .cce-change-store .popup-container .store-locater-container .map-container .filter-container .filters{
    display: none;
  }
  .cce-change-store .popup-container .store-locater-container .google-map{
    display: none;
  }
  .cce-change-store .popup-container .store-locater-container .map-container .filter-container{
    position: unset;
    overflow: unset;
  }
  .cce-change-store .popup-container .store-locater-container .map-container{
    padding: 0;
  }
}
@media screen and (max-width:768px) {
  .cce-change-store .popup-container .map-container .filter-container .filter-result .item .action{
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
  }
}
/* font family for title */
.store-locater-container .title {
    font-family: "LibreBaskerville";
}
[lang^="zh-Hant"] .store-locater-container .title  {
    font-family: "NotoSansTC";
}
[lang^="zh-Hans"] .store-locater-container .title  {
    font-family: "NotoSansSC";
}
  
/* google map */
/* .store-locater-container .google-map [role="region"]>:first-child>:last-child */
.store-locater-container .google-map [role="region"]>:first-child>:not(:nth-child(4)){
  filter: grayscale(1);
}  
.store-locater-container .google-map a[href^="http://maps.google.com/maps"],
.store-locater-container .google-map a[href^="https://maps.google.com/maps"]{
  display:none !important;
}  
.store-locater-container .google-map .gmnoprint a, 
.store-locater-container .google-map .gmnoprint span, 
.store-locater-container .google-map .gm-style-cc {
    display:none;
}

.myCart-container .tab-box-cce-store{
  background: #f0f0f0;
  padding: 0 25px 15px;
  font-size: 13px;
  line-height: 15px;
  display: block;
  color: #3E3E3E;
}

.myCart-container .tab-box-cce-store span{
  font-weight: 700;
}




.cce-check-stock-available .popup-container{
  padding: 30px;
  width: 100%;
  max-width: 1376px;
}
.cce-check-stock-available .popup-container .filter-container{
  max-width: unset;
}
.cce-check-stock-available .popup-container .popup-header{
  margin-bottom: 20px;
}
.cce-check-stock-available .popup-container .popup-header .title{
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 0.56px;
  color: #BBA562;
  margin-bottom: 8px;
}
.cce-check-stock-available .popup-container .store-locater-container .map-container {
  height: min(600px, 66vh);
  grid-template-rows: 100%;
}
.cce-check-stock-available .popup-container .store-locater-container .step-container {
  background-color: #FBFAF7;
  margin-bottom: 16px;
  gap: 20px;
  padding: 8px;
  max-width: 100%;
  width: 100%;
  grid-template-columns: repeat(4, minmax(245px,1fr));
}
.cce-check-stock-available .popup-container .store-locater-container .step-container .step:not(:last-child) {
  margin-right: 44px;
  position: relative;
}
.cce-check-stock-available .popup-container .store-locater-container .step-container .step:not(:last-child):after{
  position: absolute;
  left: calc(100% + 20px);
  top: 0;
  bottom: 0;
  margin: auto;
  content: '\E805';
  font-family: 'fontello';
  width: 24px;
  height: 24px;
  font-size: 17px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cce-check-stock-available .popup-container .store-locater-container .step-container .step img {
  width: 51px;
  height: 51px;
  margin-bottom: 8px;
}
.cce-check-stock-available .popup-container .store-locater-container .step-container .step .name{
  font-size: 11px;
  line-height: 14.98px;
  max-width: unset;
}
.cce-check-stock-available .popup-container .store-locater-container .step-container .step .name .step-num{
  min-width: 17px;
  width: 17px;
  height: 17px;
  margin-right: 8px;
  font-size: 11px;
  line-height: 12.89px;
}
.cce-check-stock-available .popup-container .map-container .filter-container .filter-result .item .action {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  justify-content: space-between;
}
.cce-check-stock-available .popup-container .map-container .filter-container .filter-result .item .action .status-tag {
  display: flex;
}
@media screen and (max-width:1024px) {
  .cce-check-stock-available .popup-container .store-locater-container .step-container {
    max-width: calc(100% + 40px);
    width: calc(100% + 40px);
    margin: 0 -20px 8px;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .cce-check-stock-available .popup-container .store-locater-container .step-container .step .name .step-num{
    display: none;
  }
  .cce-check-stock-available .popup-container .store-locater-container .step-container .step img{
    min-width: 37px;
    width: 37px;
    height: 37px;
  }
  .cce-check-stock-available .popup-container .store-locater-container .step-container .step .name{
    font-size: 10px;
    line-height: 13.62px;
    text-align: center;
  }
  .cce-check-stock-available .popup-container .store-locater-container .step-container .step:not(:last-child){
    margin-right: 20px;
  }
  .cce-check-stock-available .popup-container .store-locater-container .step-container .step:not(:last-child):after{
    left: calc(100% + 8px);
    width: 12px;
    height: 12px;
    font-size: 8px;
  }
  .cce-check-stock-available .popup-container{
    height: 100%;
    border-radius: unset;
    padding: 20px;
  }
  .cce-check-stock-available .popup-container .popup-header{
    margin-bottom: 12px;
  }
  .cce-check-stock-available .popup-container .popup-header .title{
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 12px;
  }
  .cce-check-stock-available .popup-container .popup-header .close-btn{
    top: 20px;
    right: 20px;
  }
  .cce-check-stock-available .popup-container .popup-body{
    height: calc(100% - 63px - 40px);
    overflow: auto;
    padding: 0 20px;
    margin: 0 -20px;
  }
  .cce-check-stock-available .popup-container .store-locater-container .map-container .map-searcher{
    position: unset;
    order: unset;
    margin-bottom: 24px;
  }
  .cce-check-stock-available .popup-container .store-locater-container .map-container .filter-container .filters{
    display: none;
  }
  .cce-check-stock-available .popup-container .store-locater-container .google-map{
    display: none;
  }
  .cce-check-stock-available .popup-container .store-locater-container .map-container .filter-container{
    position: unset;
    overflow: unset;
  }
  .cce-check-stock-available .popup-container .store-locater-container .map-container{
    padding: 0;
  }
}
@media screen and (max-width:768px) {
  .cce-check-stock-available .popup-container .map-container .filter-container .filter-result .item .action{
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
  }
}
