#stepperFormBlock #form-container {
    margin-top: 0 !important;
}

#stepperFormBlock {
    color: #fff;
    margin: 0 auto;
}

.shell {
    min-height: 100%;
    display: grid;
    place-items: start center;
    padding: 32px 16px 56px
}

.card {
    width: min(510px, 100%);
    background: #8B6DB0;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 14px 30px rgba(34,16,62,.25);
    position: relative;
	overflow: hidden;
}

header {
    transition: opacity 0.3s ease;
}

h1 {
    margin: 0 0 15px;
    font-size: 32px;
    line-height: 36px;
    font-weight: 900
}

.sub {
    margin: 0 0 30px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.stepper-head {
    margin: 10px 0 8px
}

.stepper {
    position: relative;
    padding-top: 22px
}

.stepper .label-start, .stepper .label-end {
    position: absolute;
    top: 0;
    line-height: 1;
    font-size: 14px;
    font-weight: 800
}

.stepper .label-start {
    left: 0;
    color: #fff
}

.stepper .label-end {
    right: 0;
    opacity: .75
}

.progress {
    height: 8px;
    border-radius: 999px;
    background: rgba(0,0,0,.18);
    overflow: hidden
}

.progress > span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg,#f5a623,#ffcf66);
    border-radius: inherit;
    transition: width .35s ease
}

.step {
    display: none
}

.step.active {
    display: block;
    animation: fade .25s ease
}

@keyframes fade {
    from {
        opacity: .2;
        transform: translateY(6px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.header-2 {
    font-size: 32px;
    line-height: 36px;
    font-weight: 700;
    margin: 30px 0;
}

.header-3 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    margin: 30px 0 15px;
}

.muted {
    color: #f0e8ff;
    opacity: .9;
    font-size: 14px;
    margin: 2px 0 18px
}

.grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2,minmax(0,1fr))
}

.opt {
    background: #ffffff;
    color: #2F1512;
    border: 2px solid transparent;
    padding: 12px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    min-height: 92px;
    cursor: pointer;
    transition: transform .06s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
    border-color: #fff;
    border-width: 3px;
}

.opt:hover {
    transform: translateY(-1px)
}

.opt input {
    display: none
}

.opt .icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #805ab9;
    color: #fff;
    font-size: 18px;
    flex: 0 0 40px;
}

.opt .lbl {
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
    font-size: 18px;
    line-height: 24px;
}

.opt:has(> input[type="radio"]) {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 12px;
    min-height: auto;
}

.opt.opt--radio {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 12px;
    min-height: auto;
}

.opt[data-checked="true"], .opt:hover, .opt:focus-within {
    background: #E5E7EB;
    border-color: #f5a623;
    box-shadow: 0 0 0 2px rgba(0,0,0,.04) inset;
    border-width: 3px;
}

.opt:hover .icon, .opt:focus-within .icon, .opt[data-checked="true"] .icon {
    box-shadow: 0 0 0 3px rgba(245,166,35,.35)
}

.help {
    margin-top: 14px;
    background: rgba(255,255,255,.1);
    border: 1px dashed rgba(255,255,255,.2);
    border-radius: 12px;
    padding: 12px 14px;
    color: #fff;
    opacity: .95;
    font-size: 13px
}

.form-row {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
    margin: 10px 0
}

.form-row.single {
    grid-template-columns: 1fr
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.field label {
    font-size: 14px;
    font-weight: 700
}

.control {
    appearance: none;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: #fff;
    color: #333;
    font-weight: 600;
    outline: none
}

.form-row .control:focus, .form-row .control:focus-within, .form-row .control:hover {
    border: 1px solid #15803E;
    box-shadow: 0 0 0 2px rgba(21, 128, 61, 0.15)
}

textarea.control {
    min-height: 92px;
    resize: vertical
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 75px
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 12px
}

.btn {
    border: 1px solid transparent;
    background: #fff;
    color: #2F1512;
    padding: 10px 15px;
    font-weight: 500;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    line-height: 24px;
}

.btn-primary:disabled {
    opacity: .5;
    cursor: not-allowed;
    background: #FDB71B;
    color: #2F1512;
    border: none;
}

.btn-primary {
    background: #FDB71B;
    color: #2F1512;
    border: none;
}

.btn-primary:not(:disabled):hover, .btn-primary:not(:disabled):focus, .btn-primary:not(:disabled):focus-within {
    background: #FDB71B !important;
    color: #2F1512 !important;
    opacity: 0.9;
}

.btn-back {
    background: transparent;
    color: #fff;
    opacity: 0.8;
}

.btn-back:hover {
    background: rgba(255,255,255,.08)
}

.btn .arrow {
    font-weight: 900
}

.bottom {
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: 15px;
    margin-top: 30px
}

.meta-badges {
    display: flex;
    gap: 18px;
    align-items: center;
    opacity: .75;
    font-size: 14px;
    line-height: 20px;
}

.meta-badges img {
    margin-right: 3px;
}

.meta-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ui-datepicker {
    width: 100%;
    border: 0;
    padding: 6px 8px 10px
}

.ui-datepicker .ui-datepicker-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 0;
    background: transparent;
    padding: 10px 44px 12px
}

.ui-datepicker .ui-datepicker-title {
    margin: 0;
    text-align: center;
    font-weight: 800;
    color: #1f2937;
    font-size: 18px;
    line-height: 1.2;
    width: auto;
    pointer-events: none
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #6b7280;
    text-decoration: none;
    cursor: pointer;
    border: none
}

.ui-datepicker .ui-datepicker-prev {
    left: 8px
}

.ui-datepicker .ui-datepicker-next {
    right: 8px
}

.ui-datepicker .ui-datepicker-prev:hover, .ui-datepicker .ui-datepicker-next:hover {
    background: #f3f4f6
}

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
    display: none
}

.ui-datepicker .ui-datepicker-prev::before {
    content: "<";
    font-size: 18px
}

.ui-datepicker .ui-datepicker-next::before {
    content: ">";
    font-size: 18px
}

.ui-datepicker table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 6px;
    margin: 0
}

.ui-datepicker thead th {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding: 4px 0 0
}

.ui-datepicker tbody td {
    width: calc(100% / 7);
    padding: 0
}

.ui-datepicker .ui-state-default {
    display: grid;
    place-items: center;
    height: 40px;
    line-height: 40px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: #111827;
    text-align: center;
    text-decoration: none;
    font-size: 14px
}

.ui-datepicker .ui-state-default:hover {
    background: #f3f4f6
}

.ui-datepicker .ui-datepicker-current-day .ui-state-active, .ui-datepicker .ui-state-active {
    background: #F0AA28;
    color: #26150E !important;
    font-weight: 700;
}

.ui-datepicker .ui-state-disabled, .ui-datepicker .ui-datepicker-disabled .ui-state-default {
    color: #c7cdd8 !important;
    opacity: 1;
    pointer-events: none
}

.ui-datepicker .ui-datepicker-other-month .ui-state-default {
    color: #c7cdd8;
    pointer-events: none
}

.slot-wrap {
    margin-top: 40px
}

.slot-label {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    margin: 12px 2px 10px;
    font-weight: 700
}

.slots {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 17px 12px
}

.slot {
    position: relative
}

.slot input[type="radio"] {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer
}

.slot label {
    border-radius: 12px;
    padding: 20px;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #fff;
    border: 1.5px solid #ffffff;
    box-shadow: 0 1px 0 rgba(0,0,0,0.02);
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease;
    background: rgba(255, 255, 255, .12);
}

.slot input[type="radio"]:checked + label {
    background: #E5E7EB;
    border: 1.5px solid #fdb71b;
    box-shadow: 0 0 0 2px rgba(253,183,27,0.18);
    color: #000000;
}

.note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 12px;
    margin-top: 17px;
    opacity: 0.7;
}

.note .fa-clock {
    font-size: 12px
}

.slot:hover input[type="radio"] + label {
    border: 1px solid #fdb71b;
    background: #E5E7EB;
    box-shadow: 0 0 0 2px rgba(253,183,27,0.18);
    color: #000000;
}

.step[data-title="Equipment age"] .h2 {
    font-size: 28px
}

.age-wrap {
    display: grid;
    gap: 14px
}

.age-row {
    display: grid;
    grid-template-columns: min-content 1fr min-content;
    align-items: end;
    gap: 12px;
    padding: 50px 10px;
    border: 1px solid #fff;
    border-radius: 20px;
    background: #fff;
}

.range-wrap {
    position: relative;
    height: 44px;
    display: flex;
    align-items: flex-end;
}

#ageBubble {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    background: #6f4aa6;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    padding: 12px;
    border-radius: 8px;
    line-height: 1;
    white-space: nowrap;
    margin-top: -20px;
}

#ageRange {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 999px;
    outline: none;
    background: linear-gradient(90deg, #b7a6d2 40%, #e9defd 40%);
    box-shadow: none;
}

#ageRange::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f5a623;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.25);
    cursor: pointer;
    position: relative;
}

#ageRange::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f5a623;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.25);
    cursor: pointer;
}

#ageRange::-moz-range-track {
    height: 10px;
    border-radius: 999px;
    background: #e9defd
}

#ageRange::-moz-range-progress {
    height: 10px;
    border-radius: 999px;
    background: #B7A6D2
}

.range-min,
.range-max {
    color: #7C61A4;
    font-weight: 700;
    font-size: 14px;
}

.age-unknown {
    background: #ffffff;
    color: #2a1a55;
    border: 3px solid #fff;
    padding: 16px;
    border-radius: 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    cursor: pointer;
    transition: transform .06s ease,border-color .2s ease,background .2s ease,box-shadow .2s ease;
}

.opt[data-checked="true"],
.opt:hover,
.opt:focus-within {
    background: #E5E7EB;
    border: 3px solid #f5a623;
    box-shadow: 0 0 0 2px rgba(0,0,0,.04) inset;
}

.age-unknown .icon {
    background: #e9e2d0;
    color: #5a4a2a
}

.hint {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.35);
    border-radius: 12px;
    padding: 12px 14px;
    color: #fff;
    font-size: 14px;
    line-height: 23px;
}

.hint .hint-ic {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #ffffff20
}

.slider-disabled {
    opacity: .55
}

.btn-back img {
    height: 16px;
    width: auto;
    display: inline-block;
}

section[data-requires="radio"] .grid {
    grid-template-columns: 1fr;
}

section[data-requires="radio"] .radio-inline .grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
}

section[data-requires="radio"] .radio-inline .grid .opt:has(> input[type="radio"]) {
    flex-direction: column;
    text-align: center;
}

.slider-disabled {
    opacity: .45;
    pointer-events: none;
}

.ui-datepicker td.ui-state-disabled .ui-state-default {
    color: #c7cdd8 !important;
}

#successScreen ul {
    padding-left: 0;
    list-style: none;
    font-size: 14px;
    line-height: 30px;
}

#successScreen a:hover, #successScreen a:focus {
    text-decoration: none;
    background: rgba(255, 255, 255, .2);
}

.success-screen {
    display: none;
    text-align: center;
    padding: 10px;
}

.section-block {
    display: block;
    padding: 15px 0;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #000;
    font-weight: 900;
}

.heading-left {
    margin-top: 20px;
    font-size: 32px;
    line-height: 36px;
    font-weight: 800;
    text-align: left;
}

.heading-center {
    margin-top: 20px;
    font-size: 32px;
    line-height: 36px;
    font-weight: 800;
    text-align: center;
}

.info-box-left {
    background: rgba(255,255,255,.15);
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
    text-align: left;
}

.info-box-center {
    background: rgba(255,255,255,.15);
    border-radius: 16px;
    padding: 20px 30px;
    margin-top: 20px;
    text-align: center;
}

.info-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}

.info-text-large {
    font-size: 14px;
    line-height: 18px;
    color: rgba(255,255,255,0.85);
}

.info-text {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
}

.info-text-small {
    font-size: 14px;
    line-height: 18px;
    color: rgba(255,255,255,0.85);
}

.next-steps {
    margin-top: 10px;
    line-height: 1.8;
}

.icon-margin {
    margin-right: 10px;
}

.call-button {
    background: rgba(255,255,255,.12);
    margin-top: 20px;
    border: 2px solid #fff;
    border-radius: 12px;
    padding: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    width: 100%;
    display: block;
}

#cantBookBtn {
    border: 1px solid #fff;
}

.field-error {
    background-color: #c8102e;
    color: #ffffff;
    font-style: italic;
    line-height: 1.2;
    margin: 0 0 5px;
    padding: 7px 8px;
    width: 100%;
    display: block;
    border-radius: 8px;
}

.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.stepper-form-container {
    display: grid;
}

.stepper-form-container > .form-content,
.stepper-form-container > #formLoader {
    grid-area: 1 / 1;
}

.submit-dim {
    opacity: 0.1;
    pointer-events: none;
}

#formLoader {
    display: none; 
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

#formLoader .loader-inner {
    text-align: center;
}

#formLoader i {
    font-size: 40px;
    color: #fff;
}

#formLoader p {
    margin-top: 10px;
    font-size: 15px;
}

input:-webkit-autofill {
    animation-name: autofill-detect;
    animation-duration: 0.01s;
}

@keyframes autofill-detect {
    from {
    }

    to {
    }
}

/***** Responsive *****/
@media (max-width: 991px) {
    #stepperFormBlock {
        margin-bottom: 50px;
    }
}

@media (max-width:575px) {
    .grid,
	.slots,
	section[data-requires="radio"] .radio-inline .grid,
	.form-row {
        grid-template-columns: 1fr;
    }
	
	.opt {
        gap: 8px;
        padding: 8px;
    }

    .opt .icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }
	
	.stepper .label-end {
		right: 0;
		opacity: .75;
		top: 35px;
	}
	
	form#form-container {
		margin-top: 50px;
	}
	
	.meta-badges {
		flex-direction: column;
	}
	
	.opt .lbl {
		font-size: 15px;
		line-height: 20px;
	}
	
	.header-2 {
		font-size: 26px;
		line-height: 30px;
	}
	
	section[data-requires="radio"] .radio-inline .grid .opt:has(> input[type="radio"]) {
		flex-direction: row;
		text-align: left;
	}
	
	.ui-datepicker {
		padding: 0;
	}
	
	.ui-datepicker table {
		border-spacing: 0;
	}
	
	section[data-requires="time"] .card {
		padding: 0;
	}
	
	#navRow, #rightActions {
		flex-direction: column-reverse;
	}
}
