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

#check-availability {
	margin-left: calc(-100vw / 2 + 100% / 2);
	margin-right: calc(-100vw / 2 + 100% / 2);
	max-width: 100vw;
}

.pizza-sold {
	opacity: .3;
}


.overlay {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
	background-color: rgba(0, 0, 0, 0.8);
}

.delivery-availablity {
	position: fixed;
	right: 1.8rem;
	top: 1.8rem;
	z-index: 10;
}


#delivery-wrapper {
	display: none;
}

#delivery-wrapper.overlay {
	display: flex;
	align-items: baseline;
	justify-content: center;
	z-index: 999;
	padding-top: 10em;
}

.papagees-green-panel {
	background: #38a169;
	border-radius: 1rem;
	padding: 2rem;
	color: #fff;
}

.papagees-red-panel {
	background: #f56565;
	border-radius: 1rem;
	padding: 2rem;
	color: #fff;

}

.close-check-delivery {
	float: right;
	margin: -1.5rem;
	background: black;
	border-radius: 11px;
	cursor: pointer;
}

.btn-orange {
	color: #fff;
	background-color: #202d46;
	border-color: #000;
}

.btn-orange:hover {
	border-color: #2c4168;
}

.inputwrapper {
	display: flex;
	gap: 4px;
	justify-content: center;
}

/**
close icon use:
<i class="gg-close-o"></i>
**/
.gg-close-o {
	box-sizing: border-box;
	position: relative;
	display: block;
	transform: scale(var(--ggs, 1));
	width: 22px;
	height: 22px;
	border: 2px solid;
	border-radius: 40px
}

.gg-close-o::after,
.gg-close-o::before {
	content: "";
	display: block;
	box-sizing: border-box;
	position: absolute;
	width: 12px;
	height: 2px;
	background: currentColor;
	transform: rotate(45deg);
	border-radius: 5px;
	top: 8px;
	left: 3px
}

.gg-close-o::after {
	transform: rotate(-45deg)
}

#trigger-check-delivery {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	background-image: url('/wp-content/plugins/papa-gees-custom-woo/public/img/place.png');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
	width: clamp(3em, 5vw, 5em);
	/* Match aspect ratio if possible */
	height: clamp(5em, 8vw, 8em);
	/* Adjust as needed */
	margin-top: 1em;
	margin-right: 1em;
	cursor: pointer;
	transition: all 0.3s ease;
}


.label-text {
	background: #fff;
	margin-top: 45px;
	display: inline-block;
	color: #38a169;
	padding: 2px 10px;
	border-radius: 6px;
	font-size: 14px;
}

.swal-title {
	margin: 0px;
	font-size: 18px;
	margin-bottom: 28px;
}

.swal-text {
	font-weight: bold;
	font-size: 24px;
}

.swal-button.swal-button--confirm {
	background-color: #38a169;
}




/**

reviews slider

**/

.slider {
	position: relative;
	width: 100%;
	height: 350px;
	overflow: hidden;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.slide.active {
	opacity: 1;
}


.navigation {
	/* position: absolute;
	bottom: 40px;
	left: 50%; */
	display: flex;
	margin: 0 auto;
	width: 120px;
}

.navigation button {
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin: 0 10px;
	font-size: 18px;
	cursor: pointer;
	transition: background-color 0.3s ease-in-out;
}

.navigation button:hover {
	background-color: #fff;
	color: #000;
}


/* Mobile styles for screens up to 480px */
@media (max-width: 480px) {
	.label-text {
		display: none;
	}
	#trigger-check-delivery {
		margin-right: 0;
	}
}

/* Tablet styles for screens up to 768px */
@media (max-width: 768px) {
}
