.rental-options {
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
}

.single-rental {
	width: calc(33.3% - 20px);
	margin: 20px 10px;
	box-shadow: 0 0 7px 0px rgba(0,0,0,0.1);
	position: relative;
}

.single_rental-image img {
	object-fit: cover;
	height: 300px;
	width: 100%;
}

.single_rental-header {
	padding: 10px 20px;
}

.single_rental-header h3 {
	font-size: var(--fontsize-heading-quarternary);
	font-weight: 800;
}

.single_rental-header h3 span {
	display: block;
	line-height: 1.2em;
}


.single_rental-header h3 span:first-child {
	font-size: var(--fontsize-body-small);
	font-weight: 600;
}

.single_rental-period {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	background-color: #000;
	margin-top: 10px;
	cursor: pointer;
	transition: all 0.1s ease 0s;
}

.single_rental-period:hover {
	background-color: #fff;
}

.single_rental-period h4 {
	margin: 0;
	align-self: center;
	width: 150px;
	font-size: var(--fontsize-body-normal);
	text-transform: uppercase;
	font-weight: 800;
	text-align: center;
	position: relative;
	color: #fff;
	transition: all 0.1s ease 0s;
}

.single_rental-period:hover h4 {
	color: #000;
}

.single_rental-period h4 span {
	font-weight: 400;
	display: block;
	line-height: 1em;
	font-size: var(--fontsize-body-small);
	font-style: italic;
	color: #ea1d24;
}

.single_rental_period-list {
	width: calc(100% - 150px);
}

.single_rental_period-list p {
	margin: 0;
	font-size: var(--fontsize-body-small);
	padding: 8px 10px;
	background-color: #fafafa;
	line-height: 1.1em;
}

.single_rental_period-list p:nth-child(2n+2) {
	background-color: #f5f5f5;
}

.single_rental-period .button {
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.single_rental-period:hover .button {
	background-color: #fff !important;
	color: #000 !important;
}

.rental-form {
	display: none;
}