<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Rental Form */

.wcrp-rental-products-rental-form {
	margin-bottom: 20px;
}

.wcrp-rental-products-rental-form.wcrp-rental-products-rental-form-after-quantity {
	margin-top: 15px;
}

.wcrp-rental-products-rental-form.wcrp-rental-products-rental-form-after-quantity:before { /* Ensures the rental form is cleared so after quantity, height is added here as margin-top wouldn't work here due to clear: both; */
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	height: 20px;
}

.wcrp-rental-products-rental-form .wcrp-rental-products-rental-dates {
	width: 65%; /* Ensures not too wide while keeping dates visible on mobile */
}

.wcrp-rental-products-rental-form .wcrp-rental-products-rental-totals {
	display: none;
	margin: 20px 0 0 0;
	font-weight: 700;
}

.wcrp-rental-products-rental-form .wcrp-rental-products-rental-dates-parent {
	position: relative;
}

.wcrp-rental-products-rental-form .wcrp-rental-products-disable-rental-start-end-days-notice {
	margin-top: 10px;
	font-size: 0.8em;
}

.wcrp-rental-products-excludes-addons {
	display: none; /* Hidden and gets shown if add-ons active and product allows add-ons via JS */
}

/* Availability Checker */

.wcrp-rental-products-availability-checker .wcrp-rental-products-availability-checker-parent {
	position: relative;
	display: block;
}

.wcrp-rental-products-availability-checker-status {
	margin: 15px 0 !important;
}

.wcrp-rental-products-availability-checker-status p {
	margin: 0 auto;
}

.wcrp-rental-products-availability-checker-status:not(.wcrp-rental-products-availability-checker-status-info) {
	line-height: 1;
}

.wcrp-rental-products-availability-checker-status:not(.wcrp-rental-products-availability-checker-status-info) strong {
	display: block;
	margin-bottom: 5px;
}

/* Litepicker */

.wcrp-rental-products-is-rental .litepicker * { /* Some themes (Divi but maybe more) override elements to be box-sizing: border-box which causes the litepicker days to be misaligned from the day headings */
	-webkit-box-sizing: content-box !important;
	box-sizing: content-box !important;
}

/* WooCommerce */

.wcrp-rental-products-is-rental .woocommerce .product .summary {
	overflow: visible !important; /* Some themes add an overflow hidden to the product summary div meaning the rental form can be cut off, this fixes it */
}</pre></body></html>