/* Popup Container */
#popup-container {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  display: none;
  height: 100%;
  justify-content: center;
  left: 0;
  padding: 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

/* Popup Box */
.popup {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  padding: 20px;
  text-align: center;
  z-index: 1000;
  width: 90%;
}

#zip_input_popup {
  max-width: 300px;
  border-radius: 0px;
  margin-bottom: 0px;
}

/* Close Button */
.close-popup {
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  right: 10px;
  top: 5px;
}

.wpfsbz_cancel_btn,
.wpfsbz_search_btn {
  background: #eb5827;
  border: 1px solid #e45525;
  color: #fff;
  min-width: 300px;
  margin: 10px 0 0 0;
}

.wpfsbz_cancel_btn {
  background: #eee;
  border: 1px solid #eee;
  color: #222;
}

@media (max-width: 480px) {
  #zip_input_popup {
    max-width: 100%;
  }

  .wpfsbz_cancel_btn,
  .wpfsbz_search_btn {
    min-width: 100%;
    font-size: 13px;
  }
}
