.dvnw-booking-form {
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	max-width: 921px;
	background: #e8eef0 url("../images/booking-background.svg") center / 100% 100% no-repeat;
	color: #464545;
	font-family: Roboto, Arial, sans-serif;
}

.dvnw-booking-form *,
.dvnw-booking-form *::before,
.dvnw-booking-form *::after {
	box-sizing: inherit;
}

.dvnw-booking-form__fieldset {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.dvnw-booking-form__heading {
	margin: 0 0 33px;
	padding: 0;
	color: #464545;
	font-family: "Roboto Slab", Georgia, serif;
	font-size: 25px;
	font-weight: 500;
	line-height: 33px;
}

.dvnw-booking-form__intro {
	margin: 0 0 13px;
	color: #464545;
	font-size: 14px;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.14px;
	line-height: 23px;
}

.dvnw-booking-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.dvnw-booking-form__card {
	position: relative;
	display: block;
	min-width: 0;
	cursor: pointer;
}

.dvnw-booking-form__radio {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.dvnw-booking-form__card-content {
	display: flex;
	height: auto;
	min-height: 200px;
	padding: 17px 26px 26px;
	border: 2px solid transparent;
	background: #fff;
	flex-direction: column;
	justify-content: space-between;
	transition: border-color 120ms ease;
}

.dvnw-booking-form__card-content::after {
	position: absolute;
	top: 19px;
	right: 18px;
	width: 20px;
	height: 20px;
	border: 2px solid #49454f;
	border-radius: 50%;
	background: #fff;
	content: '';
}

.dvnw-booking-form__radio:checked + .dvnw-booking-form__card-content {
	border-color: #15324d;
}

.dvnw-booking-form__radio:checked + .dvnw-booking-form__card-content::after {
	border-color: #15324d;
	background: #15324d;
	box-shadow: inset 0 0 0 4px #fff;
}

.dvnw-booking-form__card:hover .dvnw-booking-form__card-content {
	border-color: rgba(21, 50, 77, 0.4);
}

.dvnw-booking-form__card:hover .dvnw-booking-form__radio:checked + .dvnw-booking-form__card-content {
	border-color: #15324d;
}

.dvnw-booking-form__radio:focus-visible + .dvnw-booking-form__card-content {
	outline: 3px solid rgba(21, 50, 77, 0.35);
	outline-offset: 3px;
}

.dvnw-booking-form__title {
	padding-right: 34px;
	color: #464545;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.3;
}

.dvnw-booking-form__description {
	display: block;
	margin-top: 10px;
	color: #464545;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
}

.dvnw-booking-form__price-row {
	display: flex;
	margin-top: auto;
	align-items: baseline;
	gap: 10px;
}

.dvnw-booking-form__price {
	color: #15324d;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.3;
}

.dvnw-booking-form__tax {
	color: #464545;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
}

.dvnw-booking-form__submit {
	display: flex;
	width: 100%;
	height: 56px;
	margin-top: 40px;
	padding: 0 24px;
	border: 2px solid #fc2426;
	border-radius: 3px;
	background: #aa0002;
	color: #fff;
	cursor: pointer;
	font-family: Roboto, Arial, sans-serif;
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.dvnw-booking-form__submit:hover {
	background: #920002;
}

.dvnw-booking-form__submit:focus-visible {
	outline: 3px solid #15324d;
	outline-offset: 3px;
}

.dvnw-booking-form__submit-icon {
	display: block;
	width: 53px;
	height: 10px;
	flex: 0 0 53px;
}

.dvnw-booking-form__notice {
	padding: 16px;
	border-left: 4px solid #aa0002;
	background: #f8eeee;
	color: #3b1515;
}

@media (max-width: 1199.98px) { 
	.dvnw-booking-form__price-row {
		margin-top: 10px;
		flex-direction: column;
		gap: 0;
	}
}

@media (max-width: 960px) {
	.dvnw-booking-form {
		width: 100%;
		min-width: 0;
		max-width: 100%;
		min-height: 0;
		padding: 32px 24px;
	}

	.dvnw-booking-form__heading {
		margin-bottom: 24px;
		font-size: 22px;
		line-height: 1.3;
	}

	
	.dvnw-booking-form__submit {
		margin-top: 24px;
	}

	.dvnw-booking-form__grid {
		grid-template-columns: 1fr;
	}
}
