.single .zipcode-wrapper{
    width: 100%!important;
}

.zipcode-wrapper{
    position: relative;
    width: 50%!important;
    display: flex;
    margin: auto;
    text-align: left;
}

.zipcode-wrapper .zipcode-icon {
    line-height: 40px;
    color: #767676;
    font-size: 13px;
    background: url(pin.png), #fff;
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
    width: 50px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-left: 1px solid red;
    border-top: 1px solid red;
    border-bottom: 1px solid red;
}

.zipcode-wrapper #zip,
.zipcode-wrapper #zip2{
    box-shadow: none;
    border-radius: 0px;
    width: 100%;
    font-size: 13px;
    color: #505050;
    padding: 10px 12px;
    background-color: #fdfdfd;
    outline: 0;
    margin-bottom: 0;
    border-top: 1px solid red;
    border-bottom: 1px solid red;
    border-left: transparent;
    border-right: transparent;
}

.zipcode-wrapper .zipcode-search,
.zipcode-wrapper .zipcode-search2{
    width: 144px !important;
    background: red;
    top: 0;
    right: 0;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    font-size: 14px;
    padding-top: 8px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border: none;
}

.cities{
    padding-bottom: 35px;
}

@media( max-width: 767px ){
    .zipcode-wrapper{
        width: 100% !important;
    }
}

.woocommerce-tabs {
    float: left;
    clear: none !important;
}

.zipcode-wrapper span.spinner {
    display: none;
    position: absolute;
    right: 26px;
    bottom: 2px;
    color: #fff;
}

.zipcode-wrapper span.spinner.is-active{
    display: inline-block;
}

.overlay-wrap {
    position: absolute;
    z-index: 99999;
    width: 100%;
    height: 100vh;
    background: #0000004d;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.overlay-wrap i {
    font-size: 30px !important;
}
body.loading-location {
    overflow: hidden !important;
    padding-right: 15px !important;
}

/* Hide real select2 */



/* Nearby Cities Section */
.nearby-cities-otr {
    background: transparent;
    border-radius: 16px;
    max-width: 900px;
    margin: 30px auto;
    margin-top: 0;
}
.nearby-cities-otr ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    /* grid-template-columns: repeat(auto-fit, minmax(102px, 0fr)); */
    /* gap: 6px; */
    text-align: center;
    margin: 0 auto;
    width: auto;
}
.nearby-cities-otr li {
    text-align: center;
    display: inline-block;
    margin: 0;
}
.nearby-cities-otr a {
    display: block;
    padding: 4px 9px;
    background: #fff;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
}

.nearby-cities-otr a:hover {
  background: #ff0000;
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
/*      padding: 4px 9px;*/
}
.nearby-cities-otr a.active {
     background: #ff0000;
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
/*      padding: 4px 9px;*/
}

.nearby-cities-otr a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* For iPad portrait (768px) */
@media (max-width: 768px) {
  #customer_location_wrap {
    bottom: 14%;
  }
}

/* For iPad landscape (1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  #customer_location_wrap {
    bottom: 10%; /* Adjust as needed */
  }
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .nearby-cities-otr ul {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
  }
  .nearby-cities-otr a {
      font-size: 10px;
      padding: 4px;
  }
  #customer_location_wrap {
      bottom: 8%;
  }
}