.field-option {
	display: flex;
	gap: 5px;
	align-items: center;
	cursor: pointer;
	user-select: none;
	margin-bottom: 10px;
}


.skip-section-btn {
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid #dcdcdc;
  border-radius: 50px;
  font-size: 14px;
  color: #07146c;
  background-color: #fff;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.skip-section-btn:hover {
  background-color: #07146c;
  border-color: #07146c;
    color: #fff;
  text-decoration: none;
}


.booking-step {
	scroll-margin-top: 200px;
	padding-bottom: 50px;
}

section#bookingForm {
	position: sticky;
	top: 0;
	z-index: 999;
	background-color:#fff;
	padding: 10px 0;
}
body.admin-bar  section#bookingForm {

	top: 32px;
}

.field-option input[type="checkbox"],
.field-option input[type="radio"] {
	display: none;
}

.field-option {
	padding: 10px 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
	min-width: 200px;
	text-align: left;
	background-color: #fff;
	transition: 0.2s;
	width: 100%;
    font-size: 14px;
    color: #07146c;
    line-height: normal;
}

.field-option .fake-field {
	color: #555;
}


.field-option:has(input[type="radio"]:checked),
.field-option:has(input[type="checkbox"]:checked) {
	border-color: #001a72;
	background-color: #001a72;
	color: #fff;
}

.field-option:has(input[type="radio"]:checked) .fake-field {
	color: #fff;
}

.back-to span a {
	text-decoration: none;
	font-size: 18px;
	color: #07146c;
}

#bookingForm h2,.booking-step h2 {
	font-size: 30px;
	color: #07146c;
	font-weight: 700;
}

#bookingForm h4,.booking-step h4 {
	font-size: 23px;
	color: #07146c;
	font-weight: 700;
}

.stepper {
	gap: 10px;
}

.stepper .nav-link {
	/* width: 32px; */
	/* height: 32px; */
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #d9d9d9;
	border-radius: 9px;
	color: #d9d9d9;
	font-weight: bold;
	background-color: white;
	transition: all 0.3s ease;
	padding: 5px 15px;
}

.stepper .nav-link:hover {
	border-color: #07146c;
	background-color: #07146c;
	color: #fff;
}

.stepper .nav-link.active {
	border-color: #07146c;
	background-color: #07146c;
	color: #fff;
}


.flatpickr-days {
	width: auto !important;
}

.flatpickr-calendar.inline {
	width: auto !important;
}

.numInputWrapper span.arrowUp,
.numInputWrapper span.arrowDown {
	display: none;
}

.numInputWrapper:hover {
	background: transparent;
}

.flatpickr-current-month input.cur-year {
	pointer-events: none;
}

.dayContainer {
	justify-content: flex-start;
}

.flatpickr-day {
	max-width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}

/* Day Cells */
.flatpickr-day {
	color: #000;
	font-weight: 500;
}

.flatpickr-day:hover {
	border-color: rgb(0 26 114) !important;
	cursor: pointer;
	color: rgb(0 26 114) !important;
	background: transparent !important;
}

.flatpickr-day.today {
	border-color: transparent;
}

.flatpickr-day.selected {
	background: rgb(0 26 114) !important;
	border-color: rgb(0 26 114) !important;
	color: white !important;
	/* box-shadow: 0 0 0 2px #1b477d; */
}

.flatpickr-disabled:hover {
	opacity: .5;
}

.btn-default {
	border-color: rgb(9, 22, 109);
/* 	border-radius: 25px; */
	padding: 12px 40px;
	font-family: "Poppins", Sans-serif;
	font-weight: 700;
	letter-spacing: 1.1px;
	color: rgb(9, 22, 109);
	background-color: rgb(253, 253, 254);
	transition: 0.5s all;
	animation: none;
}

.btn-default:hover,.btn-default:active,.btn-default:focus {
	color: #fff;
	background-color: rgb(9, 22, 109);
	animation-name: elementor-animation-pulse-shrink;
	animation-duration: .3s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}


.btn-default-2{
	display: inline-block;
	padding: 12px 30px;
	background: linear-gradient(to right, #001f7f, #4ac6f3);
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	transition: background 0.3s ease;
}
.btn-default-2:hover,.btn-default-2:active,.btn-default-2:focus {
	color: #fff;
	border-color: rgb(9, 22, 109);
	background: linear-gradient(to right, #001566, #34b0e2); /* Slightly darker on hover */
	animation-name: elementor-animation-pulse-shrink;
	animation-duration: .3s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
@keyframes elementor-animation-pulse-shrink {
	to {
		transform: scale(.9)
	}
}


#availableTimes .field-option {
	width: max-content;
	display: flex;
	justify-content: center;
	margin: 0;
}

#availableTimes {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-start;
    flex-direction: column;
}


@media(max-width:767.98px){
	.btn-default-2,.btn-default {
		padding: 12px 15px;
		width: 100%;
	}

	#bookingForm h2, .booking-step h2 {
		font-size: 18px;
	}

	.back-to span a {
		font-size: 14px;
	}

	ul.nav.stepper {
		flex-wrap: nowrap;
		overflow-x: scroll;
	}

	.stepper .nav-link {
		width: max-content;
	}

	section#bookingForm {
		top: 0;
		padding: 10px 0;
		/* 		background-color: #fff; */
	}

	#bookingForm h4, .booking-step h4 {
		font-size: 17px;
	}

	.field-option {
		flex-direction: column;
		align-items: flex-start;
	}

	.booking-step {
		padding-bottom: 25px;
	}
	body.admin-bar section#bookingForm{
		top:46px;
	}
	.stepper .nav-link {
    font-size: 10px;
    padding: 2px;
}

ul.nav.stepper {
    gap: 5px;
}
}
.elementor-element-7f8241f,.elementor-element-2f2fcbf4 {
	position: relative !important;
}