/**
 * All of the CSS for your public-facing functionality should be included in this file.
 */
#wplb-pr-modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}
.wplb-pr-modal-content {
	display: block;
	background: #fff;
	padding: 40px;
	padding-top: 30px;
	border-radius: 15px;
	width: 50%;
	max-width: 600px;
	position: relative;
}
.wplb-pr-close {
	position: absolute;
	top: 5px;
	right: 20px;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}
.wplb_d_flex {
	display: flex;
}
#wplb-pr-form label {
	margin-top: 5px;
	display: block;
}
#wplb-pr-form input[type=text], #wplb-pr-form input[type=email], #wplb-pr-form textarea {
	width: 100%;
	padding: 10px;
	margin-top: 5px;
}
#wplb-pr-form input[type=submit] {
	margin-top: 10px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
#wplb-pr-form > div {
	display: flex !important;
	column-gap: 10px;
}
#wplb-pr-form > div div {
	width: 100%;
}
.field-container {
	position: relative;
	margin-bottom: 10px;
}
.field-container input, .field-container textarea {
	width: 100%;
	padding: 10px;
	padding-top: 25px;
}
.field-container label {
	position: absolute;
	left: 10px;
	top: 10px;
	transition: all 0.3s ease;
	pointer-events: none;
}
.field-container input:focus + label, .field-container textarea:focus + label, .field-container input:not(:placeholder-shown) + label, .field-container textarea:not(:placeholder-shown) + label {
	top: -10px;
	font-size: 12px;
	background: #fff;
	padding: 0 10px;
	color: #000;
}
.wplb-pr-form-title {
	margin: 0;
	font-size: 12px;
	font-style: italic;
	color: #666;
	line-height: 12px;
}
.wplb-pr-form-title-product {
	font-size: 24px;
	margin: 0;
	color: #000;
}
.wplb-pr-quantity-holder {
	display: flex;
	align-items: center;
	column-gap: 0;
	margin-top: 10px;
	margin-bottom: 20px;
}
.wplb-pr-quantity-holder label {
	background: #f0f0f0;
	border-radius: 5px 0 0 5px;
	height: 36px;
	padding: 5px 12px;
	font-size: 12px;
	display: flex;
	align-items: center;
	color: #000;
}
#wplb-pr-quantity {
	padding: 5px 14px;
	border-left: 0;
	background: #fff;
	border-radius: 0 5px 5px 0;
	border: 1px solid #f0f0f0 !important;
	width: 80px;
	font-size: 12px;
	height: 36px;
	font-weight: bold;
}
#wplb-pr-countdown {
	margin: 0;
	position: absolute;
	top: 0;
	right: 0;
	background: #000;
	color: #fff;
	border-radius: 0px 10px;
	padding: 10px;
	font-size: 12px;
}
#wplb_pr_success_message .wplb_pr_h3 {
	margin-bottom: 0;
	text-align: center;
}
#wplb_pr_success_message .wplb_pr_p {
	margin-top: 0;
	font-style: italic;
	text-align: center;
}
.processing {
	animation: blinkAnimation 1s infinite;
	cursor: default;
}
@keyframes blinkAnimation {
	50% {
		opacity: 0.5;
	}
}
@media screen and (max-width: 768px) {
	.wplb-pr-modal-content {
		width: 90%;
		padding: 30px;
	}
	#wplb-pr-form > div {
		flex-direction: column;
		row-gap: 0;
	}
	#wplb-pr-quantity {
		width: 100px;
	}
	.wplb-pr-form-title-product {
		line-height: 28px;
	}
}