/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 10 2021 | 15:40:48 */
#zipFinder, #zipFinderRec, #geolocator {
  max-width: 400px;
  margin: 0px auto;
  display: flex;
}

.gmpInfoWindowtext {
  font-size: 13px;
  line-height: 18px;
}

#zipFinderSubheader {
  font-size: 12px;
  max-width: 400px;
  text-align: center;
  margin: 15px auto 20px auto;
}

#zipFinderError p, #zipFinderErrorRec p {
  padding: 10px;
  color: #ea0000;
  text-align: center;
}

#zipFinderInput, #zipFinderInputRec, #geolocationInput{
  flex: 3 1 auto;
  width: 100px;
  padding: 10px;
  font-size: 25px;
  border: 1px solid #000000;
}

#zipFinderSubmit, #zipFinderSubmitRec, #geolocationSubmit {
  flex: 1 1 auto;
  width: 50px;
  border-radius: 0px !important; 
  padding: 10px;
  font-size: 25px;
  background-color: #d87558;
  border: 1px solid #d87558;
  color: white;
  font-family: "Trilon";
  font-weight:400;
}
#zipFinderSubmit:hover{
  background-color: #000000;
  border: 1px solid #000000!important;
}
#zipFinderSubmitRec:hover{
  background-color: #000000;
  border: 1px solid #000000!important;
}

@media only screen and (max-width: 425px) {
  #zipFinderSubmit, #zipFinderSubmitRec, #geolocationSubmit, #geoLocate {
    font-size: 1rem !important; 
  }
}

/* Hide the spinners on the number input */
input[type=number][id="zipFinderInput"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Hide the spinners on the number input */
input[type=number][id="zipFinderInputRec"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Begin Geolocation Feature */
#geolocator {
  display: none;
  flex-wrap: wrap;
}
#geolocator #geoLocate {
  flex: auto;
}
#geolocator label {
  flex: 100%;
  text-align:  center;
  margin: 10px 0px;
}
#geolocator input {
  flex: 4 auto;
}
#geolocator input::placeholder {
  font-size: 1rem;
}
#geolocator button {
  flex: auto;
  border-radius: 0px !important; 
  padding: 10px;
  font-size: 25px;
  background-color: #49763B;
  border: 1px solid #49763B;
  color: white;
}
/* Toggle Switch */
#zipPickupToggleContainer {
  text-align: center;
  padding: 0px 0px 20px;
}
#zipPickupToggleLabelDelivery {
  margin-right: 10px
}
#zipPickupToggleLabelPickup {
  margin-left: 10px
}
#zipPickupToggleContainer .js-switch {
  display: inline-block;
  width: 44px;
  height: 24px;
  border-radius: 24px;
  top: 6px;
  position: relative;
  overflow: hidden;
}
#zipPickupToggleContainer .js-switch__toggle {
  position: absolute;
  background-color: grey;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  transition: background-color .25s ease;
}
#zipPickupToggleContainer .js-switch__toggle::before {
  position: absolute;
  content: "";
  left: 2px;
  top: 2px;
  height: calc( 100% - 4px );
  width: calc( 50% - 2px );
  border-radius: 50%;
  background-color: white;
  transform: translateX(0px);
  transition: transform .25s ease;
}
#zipPickupToggleContainer input[type="checkbox"] {
  visibility: hidden;
  opacity: 0;
  width: 0px;
  height: 0px;
}
#zipPickupToggleContainer input[type="checkbox"]:checked + .js-switch__toggle {
  background-color: #49763B;
}
#zipPickupToggleContainer input[type="checkbox"]:checked + .js-switch__toggle::before {
  transform: translateX(100%);
}
/* End Toggle Switch */
/* Map */
#zipMapContainer {
  text-align: center;
  opacity: 0;
  visibility: hidden;
  padding-top: 0px;
  margin-top: 0px;
  max-height: 0px;
  transition: opacity .25s ease, visibility .25s ease, padding-top .25s ease, margin-top .25s ease, max-height .25s ease;
}
/* Map Locations List */
#zipFinderLocations {
  margin-top: 10px;
  margin-left: 0px;
  margin-bottom: 0px;
  padding: 10px;
}
#zipFinderLocations li {
  list-style: none;
  margin-bottom: 8px;
  position: relative;
}
#zipFinderLocations li:after {
  content: '';
  position: absolute;
  bottom: -5px;
  width: 100%;
  left: 0px;
  height: 1px;
  opacity: .5;
  background-color: #49763B;
}
#zipFinderLocations li .locationName{
  display: block;
  font-weight: 700;
}
#zipFinderLocations li .locationDistance {
  float: right;
}
@media only screen and (max-width: 425px) {
  #zipFinderLocations li .locationDistance {
    display: block;
    margin-top: 5px;
    float: none;
  }
}
/* End Map */
/* Loading Spinner */
#zipFinderLoader {
  text-align: center;
  opacity: 0;
  visibility: hidden;
  height: 0px;
  overflow: hidden;
  transition: opacity .25s ease, visiblity .25s ease, height .25s ease;
}
#zipFinderRoller {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
#zipFinderRoller div {
  animation: zipFinderRoller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 32px 32px;
}
#zipFinderRoller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #49763B;
  margin: -3px 0 0 -3px;
}
#zipFinderRoller div:nth-child(1) {
  animation-delay: -0.036s;
}
#zipFinderRoller div:nth-child(1):after {
  top: 50px;
  left: 50px;
}
#zipFinderRoller div:nth-child(2) {
  animation-delay: -0.072s;
}
#zipFinderRoller div:nth-child(2):after {
  top: 54px;
  left: 45px;
}
#zipFinderRoller div:nth-child(3) {
  animation-delay: -0.108s;
}
#zipFinderRoller div:nth-child(3):after {
  top: 57px;
  left: 39px;
}
#zipFinderRoller div:nth-child(4) {
  animation-delay: -0.144s;
}
#zipFinderRoller div:nth-child(4):after {
  top: 58px;
  left: 32px;
}
#zipFinderRoller div:nth-child(5) {
  animation-delay: -0.18s;
}
#zipFinderRoller div:nth-child(5):after {
  top: 57px;
  left: 25px;
}
#zipFinderRoller div:nth-child(6) {
  animation-delay: -0.216s;
}
#zipFinderRoller div:nth-child(6):after {
  top: 54px;
  left: 19px;
}
#zipFinderRoller div:nth-child(7) {
  animation-delay: -0.252s;
}
#zipFinderRoller div:nth-child(7):after {
  top: 50px;
  left: 14px;
}
#zipFinderRoller div:nth-child(8) {
  animation-delay: -0.288s;
}
#zipFinderRoller div:nth-child(8):after {
  top: 45px;
  left: 10px;
}
@keyframes zipFinderRoller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Modifier Classes */
/* Loading Class */
.loading > #zipFinderLoader {
  opacity: 1;
  visibility: visible;
  height: 64px;
}
/* Map Displayed Class */
.map-on > #zipMapContainer {
  opacity: 1;
  visibility: visible;
  padding-top: 500px;
  margin-top: 50px;
  max-height: 500px;
}
.pickup-active #geolocator {
  display: flex;
}
.pickup-active #zipFinder, .pickup-active #zipFinderRec {
  display: none;
}
/* End Loading Spinner */
/* Start Static Page Styling */
.wpb_raw_html #geolocationSubmit,
.wpb_raw_html #zipFinderSubmit,
.wpb_raw_html #zipFinderSubmitRec{
  width: auto;
}
.wpb_raw_html #zipFinderLocations {
  display: block;
}
.page-id-10284 #pum-10460 {
  display: none !important;
}
/* End Static Page Styling */