.calc {
	box-sizing: border-box;
	max-width: 100%;
	padding: 2rem;
	background: #fff;
	--color-orange: #f84606;
	--color-teal: #00c4b4;
	--color-grey: #54565b;
}
.calc-intro {
	margin: 0 0 4rem 0;
	max-width: 100%;
}
.calc-info {
	padding-top: 0;
	margin-top: 2rem;
	border-top: 0 none;
	font-size: 2rem;
	font-weight: 700;
}


/* ===== Scrollbar CSS ===== */
/* Firefox */
.calc * {
	scrollbar-width: thin;
	scrollbar-color: #f84606 #f3f3f3;
}

/* Chrome, Edge, and Safari */
.calc *::-webkit-scrollbar {
	height: 5px; 
}

.calc *::-webkit-scrollbar-track {
	background: #f3f3f3;
}

.calc *::-webkit-scrollbar-thumb {
	background-color: #f84606;
	border-radius: 10px;
	border: 3px none #ffffff;
}

@media screen and (min-width: 768px) {
	.calc-container {
		display: flex;
		flex-flow: row wrap;
		gap: 10px;
	}
	.calc-form,
	.vehicleInfo {
		flex: 1 300px;
		max-width: 48%;
		order:1;
	}

	.calc-info {
		flex: 1 300px;
		margin-top: 0;
		order: 1;
	}

}
@media screen and (max-width: 1100px) {
	.calc-form,
	.vehicleInfo {
		flex: 1 50%;
	}
	.calc-info {
		flex: 100%;
		margin-top: 2rem;
	}
}

.calc label {
	font-weight: 700;
}
.calc input[type="text"], 
.calc input[type="email"], 
.calc input[type="tel"] {
	font-size: 1.5rem;
	padding: 1rem;
	line-height: 1;
	background: #fff;
	border: #aaa;
	box-shadow: 0 5px 10px rgba(0,0,0,.2);
}
.calc .hs-button {
	padding: 1rem;
	font-weight: 700;
}
.calc select {
	-webkit-appearance: none;
	appearance: none;
	font-size: 1.5rem;
	margin-top: 1rem;
	padding: 0.2rem 1rem;
	background: #fff;
	border: 3px solid var(--color-orange);
	box-shadow: 0 5px 10px rgba(0,0,0,.2);
	height: auto;
}
.additional {
	margin: 1rem 0;
}
.otherDisplay {
	display: block;
	color: #e74c3c;
	font-size: 1rem;
	margin-bottom: 1rem;
	text-decoration: none;
}
.otherDisplay:hover {
	background: #ddd;
}

.otherWrapper {
	height: 0;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height .5s ease;
}
.otherWrapper.open {
	height: auto;
	max-height: 999px;
	opacity: 1;
	overflow: visible;
}

.calc .time {
	text-align: right;
	display: block;
}

.calc .fees {
	color: #777777;
	font-size: .8rem;
}
.calc .dispatch {
	font-weight: 700;
	color: #000000;
}

.calc .appForm .hs-button svg {
	width: 18px;
	height: 18px;
	margin-left: 3px;
	vertical-align: inherit;
}
.calc .appForm .hs-button svg:first-of-type {
	margin-left: 10px;
}
.calc-form-item {
	margin-bottom: 1rem;
	padding: 1rem;
	border: 3px solid var(--color-teal);
	border-radius: 4px;
}

.help-text {
	margin: 1rem 0;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: .5rem;
}
.help-text * {
	font-size: .8rem;
	line-height: 1.3;
	flex: 1;
}
.help-text:before {
	position: static;
	content: "?";
	font-weight: 700;
	color: #ffffff;
	background: var(--color-orange);
	width: 25px;
	height: 25px;
	margin-right: 5px;
	display: inline-block;
	text-align: center;
	border-radius: 100px;
}

.disclaimer {
	margin-top: 1rem;
}
.disclaimer small p {
	font-size: .8rem;
	margin-bottom: 1em;
}
.form-container {
	margin-top: 1rem;
	background: var(--color-orange);
	padding: 1rem;
	border-radius: 4px;
}

/* alert */
.alert-text {
	padding: 1rem;
	margin-bottom: 1rem;
	background: pink;
	color: red;
	display: flex;
	flex-flow: row no-wrap;
	align-items: center;
}
.alert-text svg {
	width: 40px;
	height: 40px;
	margin-right: 1rem;
	fill: currentColor;
}
.alert-text p {
	font-weight: 700;	
}



.hs_cos_wrapper_type_form label {
	color: #ffffff; !important
}

.slider-container {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: 1.5rem;
}

.button-prev,
.button-next{
	border-top: 50px transparent solid;
	border-bottom: 50px transparent solid;
	background-color: #fff;
	cursor: pointer;
}

.button-prev {
	border-right: 15px var(--color-orange) solid;
	border-left: none;
}

.button-next {
	border-left: 15px var(--color-orange) solid;
	border-right: none;
}

.slider-wrapper {
	display: flex;
	justify-content: space-between;
	flex-flow: row nowrap;
	gap: 1%;
	overflow-x: auto;
	overflow-y: hidden;
}

.slider-item {
	width: 100%;
	max-width: 46%;
	cursor: pointer;
	transition: border .125s ease-in-out;
}
.selected_img {
	border: 5px solid var(--color-orange);
}

@media (min-width: 768px) {
	.slider-item {
		max-width: 31%;
	}
}
@media (min-width: 1024px) {
	.slider-item {
		max-width: 23%;
	}
}

.wrap-coverage {
	display: flex;
	justify-content: space-between;
	margin-top: 2rem
}

.coverage-item {
	max-width: 32%;
	transition: border .125s ease-in-out;
}

.top-callout {
	display: flex;
}

.callout_content,
.callout_image {
	max-width: 50%;
}

.callout_content h3 {
	color: var(--color-teal);
	font-weight: bold;
}

.callout_image {
	position: relative;
	width: 100%
}

.callout_image img {
	max-width: 150px;
	position: absolute;
	top: -50px;
	right: -25px;
	transform: rotateY(180deg);
}

@media screen and (min-width: 768px) {
	.callout_image img {
		max-width: 100%;
	}
}

	.vehicle-number-section {
		display: flex;
		justify-content: flex-end;
		align-items: baseline;
		margin-bottom: 1rem;
		gap: 0.2rem;
} 

.number-field {
	display: grid;
	grid-template-columns: 70% 30%;
	width: 100%;
	align-items: baseline;
	margin-bottom: 1rem;
}

select.vehicle-numbers {
	color: var(--color-orange);
	font-weight: 700;
	text-align: center;
	text-align-last: center;
	padding: 0;	
	z-index: 3;
}

.price-section {
	display: grid;
	grid-template-columns: 60% 40%;
	row-gap: 0.375rem;
	align-items: flex-start;
}

.label {
	font-size: 1rem;
	text-align: start;
}

@media screen and (min-width: 1100px) {
	.label {
		text-align: end;
	}
}

.label-value {
	color: var(--color-orange);
	text-align: end;
	font-size: 1.75rem;
}

.cost_per_vehicle {
	font-size: 2.5rem;
}

.form-header {
	display: flex;
}

.header-text h3 {
	font-weight: 700;
	margin-bottom: 0;
	color: white;
}

.header-text p {
	color: white;
}

.blur {
	filter: grayscale(.75) blur(3px);
	opacity: .9;			;
	pointer-events: none
}