/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.pickup_location {
  /* display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center; */
  padding: 30px;
}

.pickup_location .option-row {
  max-width: 70%;
  min-width: 320px;
}

.pickup_location .table-box {
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 30px;
}

.pickup_location .table-box .option-row:nth-child(odd) {
  background-color: #f8f6ef;
}

.pickup_location .table-box .option-row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin: 10px auto 0px;
  height: 36px;
}
.pickup_location .table-box .option-row.location_closed {
  opacity: 0.5;
  cursor: initial;
}

.pickup_location .table-box .option-row .opt-name {
  margin: 0 20px 0;
}

.pickup_location .table-box .option-row span.spot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 20px;
}

.pickup_location .table-box .option-row span.location_open {
  background-color: olivedrab;
}
.pickup_location .table-box .option-row span.location_closed {
  background-color: tomato;
}

/* 
/* .woocommerce-shipping-totals.shipping {
  display: none;
} */ */

.btn-change-location {
  cursor: pointer;
}

.pay-form, .payment-form {
  visibility: hidden;
  opacity: 0;
  height: 25px;
}

.hide_section {
  visibility: hidden;
  opacity: 0;
  transition: opacity 300ms 100ms ease;
}
.show_section {
  visibility: visible;
  opacity: 1;
  transition: opacity 300ms 100ms ease;
  height: auto;
}

.payment-form address, .pay-form address  {
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.payment-form address h3, .pay-form address h3 {
  font-size: 20px;
  margin-bottom: 0;
  margin-right: 5px;
}
.payment-form address span, .pay-form address span  {
  font-size: 18px;
  font-weight: 500;
  margin-right: 5px;
}
payment-form address span, .pay-form address span.time {
	flex-basis: 100%;
	font-size: 24px;
}

#zip_error {
    padding: 20px;
    margin-bottom: 20px;
    border-left: solid 4px#d64123;
    background-color: white;
    color: #d64123;
    display: block;
    font-weight: 700;
}

/* search spinner */
.spinner-container {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100vw;
	left: 0;
	top:0;
	z-index: 4;
	background-color: rgba(255,255,255,0.6);
	transition: all 300ms ease;
}
.lds-ellipsis {
	display: inline-block;
	position: relative;
	background-color: transparent;/*#0B3E7A*/
	/* top: 25vh; */
	width: 64px;
	height: 64px;
	border-radius: 50%;
}
.lds-ellipsis.js-rendered {
	position: relative;
	height: 11px;
	width: 54px;
	margin: 0 auto;
}
.lds-ellipsis div {
	position: absolute;
	top: 27px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #43AEC9;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis.js-rendered.white div {
	top: 0;
	background: #fff;
}
.lds-ellipsis.js-rendered.grey div {
	top: 0;
	background: grey;
}
.lds-ellipsis div:nth-child(1) {
	left: 6px;
	animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
	left: 6px;
	animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
	left: 26px;
	animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
	left: 45px;
	animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
	0% {
			transform: scale(0);
	}
	100% {
			ransform: scale(1);
	}
}
@keyframes lds-ellipsis3 {
	0% {
			transform: scale(1);
	}
	100% {
			transform: scale(0);
	}
}
@keyframes lds-ellipsis2 {
	0% {
			transform: translate(0, 0);
	}
	100% {
			transform: translate(19px, 0);
	}
}
/* search spinner end */

