:root {
    --Black: #000;
    --White: #fff;
    --DarkGray: rgba(34, 34, 34, 0.8);
    --Hertz-Gold-100: #fffbea;
    --Hertz-Gold-200: #ffeea9;
    --BrandYellow: #fc0;
    --GrayBackground: #f3f4f8;
    --Red: #c31515;
    --EV: #128b08;
    --Hertz-Gold-400: #ffd014;
    --GrayColor: #e6e7eb;
}
* {
    font-family: "Open Sans", sans-serif;
}
.text-muted {
    color: #222 !important;
}
.btn-primary {
    padding: 12px 20px;
    background-color: var(--BrandYellow);
    border: 1px solid var(--BrandYellow);
    color: var(--Black);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    transition: 0.3s ease-in-out;
    border-radius: 8px;
    text-decoration: none;
}
.btn-primary:hover {
    background-color: var(--Black);
    color: var(--White);
    border-color: var(--Black);
}
.btn-primary:active {
    background-color: var(--Black) !important;
    color: var(--White) !important;
    border-color: var(--Black) !important;
}
.btn-primary:focus-visible {
    box-shadow: none !important;
}
.btn-secondary {
    padding: 12px 20px;
    background-color: var(--White);
    border: 1px solid var(--DarkGray);
    color: var(--Black);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    transition: 0.3s ease-in-out;
    border-radius: 8px;
    text-decoration: none;
}
.btn-secondary:hover {
    background-color: var(--Black);
    color: var(--White);
    border-color: var(--Black);
}
.inner-btn-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.heading {
    margin-bottom: 30px;
}
.heading .heading-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.33;
    color: var(--Black);
    padding-bottom: 8px;
    position: relative;
}
.heading .heading-title::after {
    content: "";
    width: 70px;
    height: 3px;
    background-color: var(--BrandYellow);
    position: absolute;
    top: 100%;
    left: 0;
}
@media (max-width: 767px) {
    .heading .heading-title {
        font-size: 24px;
    }
}
.heading .heading-subdesc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--DarkGray);
}
.site-header {
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.04);
}
.site-header .logo {
    display: inline-block;
}
.site-header .logo img {
    height: 68px;
    width: auto;
    padding: 20px 0;
}
.site-header .language-dropdown .dropdown-toggle {
    border: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
}
.site-header .language-dropdown .dropdown-toggle .fi {
    width: 20px;
    height: 15px;
}
.site-header .language-dropdown .dropdown-item {
    display: flex;
    align-items: center;
}
.site-header .language-dropdown .dropdown-item .fi {
    width: 20px;
    height: 15px;
}
footer {
    background-color: #f6f6f6;
    padding: 10px;
    text-align: center;
}
footer p {
    color: #808285;
    color: #505153;
    font-size: 12px;
    margin-bottom: 0;
    text-align: center;
}
.stepper {
    gap: 16px;
    padding: 30px 0 24px;
}
@media (max-width: 767px) {
    .stepper {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
}
.step {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}
.step span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.step.active span {
    background: var(--BrandYellow);
}
.step.active p {
    color: var(--Black);
}
.step p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.42;
    color: var(--DarkGray);
}
.line {
    width: 36px;
    height: 2px;
    background: #dee2e6;
}
.form-control {
    border-radius: 8px;
}
.form-control:focus {
    box-shadow: none;
    border-color: var(--yellow);
}
.reservation-section {
    padding-top: 60px;
    padding-bottom: 70px;
}
@media (max-width: 767px) {
    .reservation-section {
        padding: 30px 0;
    }
}
.reservation-section .reservation-content-wrapper {
    padding-right: 40px;
}
@media (max-width: 991px) {
    .reservation-section .reservation-content-wrapper {
        padding: 0;
    }
}
.reservation-section .reservation-content-wrapper .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--Hertz-Gold-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.reservation-section .reservation-content-wrapper .reservation-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}
@media (max-width: 767px) {
    .reservation-section .reservation-content-wrapper .reservation-title {
        font-size: 26px;
        line-height: 1.2;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .reservation-section .reservation-content-wrapper .reservation-title {
        font-size: 32px;
        line-height: 1.3;
    }
}
.reservation-section .reservation-content-wrapper .yellow-line {
    width: 70px;
    height: 3px;
    background: var(--BrandYellow);
    margin-bottom: 8px;
}
.reservation-section .reservation-content-wrapper p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--DarkGray);
}
.form-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow:
        0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.form-card .card-header {
    background: var(--GrayBackground);
    padding: 15px 24px;
    border-bottom: 1px solid #e2e8f0;
}
@media (max-width: 767px) {
    .form-card .card-header {
        padding: 10px 16px;
    }
}
.form-card .card-header h2 {
    color: #0f172a;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .form-card .card-header h2 {
        font-size: 18px;
    }
}
.form-card .card-body {
    padding: 20px;
}
@media (max-width: 767px) {
    .form-card .card-body {
        padding: 15px 5px;
    }
}
.form-card .card-body .form-label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.12;
    color: var(--Black);
}
.form-card .card-body .form-label span {
    color: var(--Red);
}
.form-card .card-body label.error {
    color: var(--Red);
    font-size: 13px;
    margin-top: 5px;
    display: block;
}
.form-card .card-body .form-control {
    border-radius: 8px;
    padding: 14px;
    border: 1px solid #c7c7c7;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #222;
}
.form-card .card-body .form-control.error {
    border-color: var(--Red);
}
.form-card .card-body .form-control.valid {
    border-color: var(--EV);
}
.form-card .card-body .form-control::placeholder {
    color: rgba(34, 34, 34, 0.3);
}
.toggle-buttons {
    display: flex;
    gap: 0px;
    margin-bottom: 10px;
    position: relative;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 100px;
    overflow: hidden;
    width: max-content;
}
.toggle-buttons .toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    width: 130px;
    height: calc(100% - 4px);
    background: #000;
    border-radius: 100px;
    transition: transform 0.35s ease;
    z-index: 1;
}
.toggle-buttons .toggle-btn {
    margin-right: 2px;
    padding: 6px 15px;
    min-width: 130px;
    border: 0;
    background: rgba(0, 0, 0, 0);
    position: relative;
    z-index: 2;
    font-size: 14px;
    line-height: 1.42;
    font-weight: 600;
    color: #000;
    transition: color 0.35s ease;
}
.toggle-buttons .toggle-btn.active {
    color: #fff;
}
.toggle-buttons.email-active .toggle-slider {
    transform: translateX(100%);
}
.tab-content-wrapper {
    position: relative;
    min-height: 130px;
}
.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
}
.tab-panel.active {
    display: block;
    animation: fadeSlide 0.35s ease forwards;
}
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.section-wrapper {
    padding: 50px 0 90px;
}
@media (max-width: 767px) {
    .section-wrapper {
        padding: 30px 0 40px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .section-wrapper {
        padding: 40px 0 60px;
    }
}
.iti__selected-country {
    max-height: 49px;
}
.iti {
    width: 100%;
}
.confirmation-right-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 15px;
}
.confirmation-right-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 25px;
    background: #f1fdf7;
    border-bottom: 1px solid #8dbfa6;
}
.confirmation-right-card__icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.confirmation-right-card__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.37;
    color: var(--EV);
    color: #052e05;
}
.confirmation-right-card__title span {
    font-weight: 700;
}
.confirmation-right-card__body {
    padding: 20px 25px;
}
.confirmation-right-card__item {
    border-bottom: 1px solid var(--GrayColor);
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.confirmation-right-card__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}
.confirmation-right-card__label {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--Black);
}
.confirmation-right-card__value {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.12;
    color: #222;
}
.confirmation-right-card__meta {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: #222;
}
@media (max-width: 991.98px) {
    .confirmation-right-card__header {
        padding: 14px 20px;
    }
    .confirmation-right-card__body {
        padding: 20px;
    }
}
@media (max-width: 767.98px) {
    .confirmation-right-card__header {
        padding: 12px 16px;
    }
    .confirmation-right-card__body {
        padding: 20px;
    }
    .confirmation-right-card__item {
        padding: 0px 0px 16px;
    }
    .confirmation-right-card__title {
        font-size: 18px;
    }
    .confirmation-right-card__label {
        font-size: 16px;
    }
    .confirmation-right-card__value,
    .confirmation-right-card__meta {
        font-size: 14px;
    }
}
.coverage-section {
    margin: 30px 0;
}
.coverage-card {
    position: relative;
    display: block;
    border: 2px solid var(--GrayColor);
    border-radius: 8px;
    margin-bottom: 25px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    background: rgba(243, 244, 248, 0.3);
}
.coverage-card:hover {
    border: 2px solid var(--BrandYellow);
    background-color: var(--Hertz-Gold-100);
    box-shadow: 0 1px 4px 0 rgba(82, 83, 85, 0.22);
}
.coverage-card:hover .coverage-card__icon {
    background-color: var(--Hertz-Gold-200);
}
.coverage-card.featured {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.12);
    border: 2px solid var(--Hertz-Gold-400);
    background: var(--Hertz-Gold-100);
    margin-bottom: 40px;
}
.coverage-card.featured .coverage-card__inner {
    padding: 25px;
}
.coverage-card:has(.coverage-checkbox:checked) {
    border-color: var(--BrandYellow);
    background: #fff9e8;
}
.coverage-card .coverage-checkbox {
    display: none;
}
.coverage-card .coverage-checkbox:checked + .coverage-card__inner {
    background: #fff7dd;
    border-radius: 12px;
}
.coverage-card
    .coverage-checkbox:checked
    + .coverage-card__inner
    .coverage-card__check {
    border-color: var(--Black);
}
.coverage-card
    .coverage-checkbox:checked
    + .coverage-card__inner
    .coverage-card__icon {
    background-color: var(--Hertz-Gold-200);
}
.coverage-card
    .coverage-checkbox:checked
    + .coverage-card__inner
    .coverage-card__check::after {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--Black);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.coverage-card__inner {
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 18px;
}
@media (max-width: 767px) {
    .coverage-card__inner {
        align-items: start;
    }
}
.coverage-card__icon {
    flex-shrink: 0;
    background: var(--White);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 60px;
    transition: 0.5s ease-in-out;
}
.coverage-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.coverage-card__content {
    flex: 1;
}
.coverage-card__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    color: var(--Black);
}
@media (max-width: 767px) {
    .coverage-card__title {
        padding-right: 18px;
    }
}
.coverage-card__description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--DarkGray);
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.coverage-card__description.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}
.coverage-card__description p {
    margin-bottom: 0;
}
.coverage-card__link {
    color: var(--Black);
    text-decoration: underline;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.14;
    display: none;
    margin-top: 10px;
    background: rgba(0, 0, 0, 0);
    border: 0;
    padding: 0;
}
.coverage-card__price-wrap {
    text-align: right;
    min-width: 120px;
}
.coverage-card__price {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: var(--Black);
    margin-bottom: 2px;
}
.coverage-card__perday {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.14;
    color: var(--DarkGray);
}
.coverage-card__check {
    width: 28px;
    height: 28px;
    border: 2px solid rgba(34, 34, 34, 0.3);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    background-color: var(--White);
}
@media (max-width: 767px) {
    .coverage-card__check {
        right: 10px !important;
        top: 25px !important;
    }
}
.coverage-badge {
    position: absolute;
    top: -16px;
    left: 25px;
    z-index: 2;
    background: var(--BrandYellow);
    padding: 4px 10px 7px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--Black);
}
.coverage-hidden {
    display: none;
}
.coverage-hidden.active {
    display: block;
    animation: fadeIn 0.35s ease;
}
.coverage-hidden.active + button.coverage-toggle-btn::before {
    transform: rotate(180deg);
}
.coverage-hidden + button.coverage-toggle-btn::before {
    content: "";
    background-image: url(../images/icons/arrow-down.svg);
    width: 24px;
    height: 24px;
    display: inline-block;
    transition: 0.3s ease-in-out;
}
.coverage-toggle-btn {
    background: rgba(0, 0, 0, 0);
    border: 0;
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 991px) {
    .coverage-card__inner {
        flex-wrap: wrap;
        padding: 20px;
    }
    .coverage-card__price-wrap {
        text-align: right;
        width: 100%;
    }
    .coverage-card__check {
        position: absolute;
        top: 20px;
        right: 20px;
    }
    .coverage-card__title {
        font-size: 20px;
    }
}
.confirmation-wrapper .form-card {
    margin-bottom: 30px;
}
.booking-confirmation-alert-head-wrapper {
    padding: 18px 25px;
    border-radius: 10px;
    border: 1px solid #8dbfa6;
    background: #f1fdf7;
    margin-bottom: 30px;
}
.booking-confirmation-alert-head-wrapper .booking-confirmation-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.booking-confirmation-alert-head-wrapper .booking-confirmation-alert__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.booking-confirmation-alert-head-wrapper .booking-confirmation-alert__icon svg {
    display: block;
}
.booking-confirmation-alert-head-wrapper .booking-confirmation-alert__content {
    flex: 1;
    min-width: 0;
}
.booking-confirmation-alert-head-wrapper .booking-confirmation-alert__title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.22;
    color: var(--EV);
    color: #052e05;
}
.booking-confirmation-alert-head-wrapper
    .booking-confirmation-alert__title
    span {
    font-weight: 700;
}
.booking-confirmation-alert-head-wrapper__description p {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    color: var(--DarkGray);
}
@media (max-width: 991.98px) {
    .booking-confirmation-alert-head-wrapper {
        padding: 18px;
    }
    .booking-confirmation-alert-head-wrapper__title {
        font-size: 24px;
    }
    .booking-confirmation-alert-head-wrapper__description {
        font-size: 16px;
    }
}
@media (max-width: 575.98px) {
    .booking-confirmation-alert-head-wrapper {
        gap: 12px;
        padding: 16px;
    }
    .booking-confirmation-alert-head-wrapper__icon svg {
        width: 20px;
        height: 20px;
    }
    .booking-confirmation-alert-head-wrapper__title {
        font-size: 20px;
    }
    .booking-confirmation-alert-head-wrapper__description {
        font-size: 15px;
        line-height: 1.6;
    }
}
.reservation-summary {
    background: var(--White);
    border-radius: 12px;
}
.reservation-summary__item--border {
    border-right: 1px solid #e8e8e8;
    padding-right: 10px;
}
@media (max-width: 767.98px) {
    .reservation-summary__item--border {
        border-right: 0;
        border-bottom: 1px solid #e8e8e8;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}
.reservation-summary__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--Black);
    margin-bottom: 8px;
}
.reservation-summary__text {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
    color: #222;
    line-height: 1.12;
}
.reservation-summary__date {
    margin: 0;
    font-size: 16px;
    color: #222;
    line-height: 1.75;
}
.reservation-summary__documents {
    margin-top: 24px;
}
.reservation-summary__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px;
    border-radius: 8px;
    color: var(--EV);
    color: #052e05;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.12;
    background: rgba(18, 139, 8, 0.1);
}
.reservation-summary__badge svg {
    flex-shrink: 0;
}
.reservation-summary__title-second {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--Black);
    margin-bottom: 12px;
}
@media (max-width: 767.98px) {
    .reservation-summary__title {
        font-size: 18px;
    }
    .reservation-summary__text,
    .reservation-summary__date {
        font-size: 15px;
    }
    .reservation-summary__documents {
        padding: 0;
    }
}
.vehicle-rate-card {
    background: var(--White);
}
.vehicle-rate-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e6e7eb;
}
.vehicle-rate-card__left {
    flex: 1;
}
.vehicle-rate-card__title {
    margin-bottom: 2px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.11;
    color: var(--Black);
}
.vehicle-rate-card__subtitle {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    color: var(--DarkGray);
}
.vehicle-rate-card__right {
    flex-shrink: 0;
    align-self: center;
}
.vehicle-rate-card__label {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--Black);
}
.vehicle-rate-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vehicle-rate-card__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.vehicle-rate-card__name {
    margin: 0;
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: #222;
}
.vehicle-rate-card__price {
    flex-shrink: 0;
}
.vehicle-rate-card__price strong {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    color: #222;
}
.vehicle-rate-card__price span {
    margin-left: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42;
    color: var(--DarkGray);
}
@media (max-width: 767.98px) {
    .vehicle-rate-card__header {
        flex-direction: column;
        gap: 12px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .vehicle-rate-card__right {
        align-self: flex-start;
    }
    .vehicle-rate-card__title {
        font-size: 24px;
    }
    .vehicle-rate-card__subtitle,
    .vehicle-rate-card__name,
    .vehicle-rate-card__price span {
        font-size: 16px;
    }
    .vehicle-rate-card__price strong {
        font-size: 18px;
    }
    .vehicle-rate-card__item {
        align-items: flex-start;
    }
}
@media (max-width: 575.98px) {
    .vehicle-rate-card__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .vehicle-rate-card__price {
        width: 100%;
        text-align: left;
    }
    .vehicle-rate-card__title {
        font-size: 20px;
    }
}
.pickup-instructions {
    position: relative;
    padding: 20px;
    border-radius: 8px;
    box-shadow:
        0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--Hertz-Gold-200);
    background: var(--Hertz-Gold-100);
}
.pickup-instructions__header {
    margin-bottom: 10px;
}
.pickup-instructions__title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--Black);
}
.pickup-instructions__list {
    margin: 0;
    padding-left: 22px;
}
.pickup-instructions__item {
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: #222;
}
.pickup-instructions__item:last-child {
    margin-bottom: 0;
}
.pickup-instructions__item::marker {
    color: var(--Black);
}
@media (max-width: 767.98px) {
    .pickup-instructions {
        padding: 24px;
    }
    .pickup-instructions__header {
        align-items: center;
        margin-bottom: 18px;
    }
    .pickup-instructions__title {
        font-size: 24px;
    }
    .pickup-instructions__logo {
        width: 56px;
        height: 56px;
    }
    .pickup-instructions__item {
        font-size: 16px;
    }
}
@media (max-width: 575.98px) {
    .pickup-instructions {
        padding: 20px;
    }
    .pickup-instructions__header {
        flex-direction: column;
        align-items: flex-start;
    }
    .pickup-instructions__logo {
        align-self: flex-end;
        margin-top: -50px;
    }
    .pickup-instructions__title {
        font-size: 20px;
        padding-right: 70px;
    }
    .pickup-instructions__item {
        font-size: 15px;
        line-height: 1.5;
    }
}
@media print {
    @page {
        size: A4;
        margin: 15mm;
    }
    body {
        background: #fff !important;
        color: #000 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    .site-header,
    .stepper-section,
    footer,
    .language-dropdown,
    .inner-btn-wrapper {
        display: none !important;
    }
    .section-wrapper {
        padding: 0 !important;
        margin: 0 !important;
    }
    .container,
    .container-fluid {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    .row {
        display: block !important;
    }
    .col-md-6,
    .col-md-3,
    .col-md-4,
    .col-md-8,
    .col-lg-6,
    .col-lg-4,
    .col-12 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    .form-card,
    .pickup-instructions,
    .card-body {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        page-break-inside: avoid;
        break-inside: avoid;
    }
    .form-card {
        margin-bottom: 20px;
    }
    .card-header {
        background: var(--GrayBackground) !important;
        border-bottom: 1px solid #ddd !important;
    }
    .card-body {
        padding: 20px !important;
    }
    .booking-confirmation-alert-head-wrapper {
        border: 2px solid #8dbfa6;
        background: #f5fff7 !important;
        page-break-inside: avoid;
    }
    .reservation-summary__item--border {
        border-right: none !important;
        border-bottom: 1px solid #ddd;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .vehicle-rate-card__header {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #ddd;
    }
    .vehicle-rate-card__item {
        display: flex;
        justify-content: space-between;
    }
    .pickup-instructions {
        margin-top: 20px;
        background: #fff9df !important;
    }
    h1,
    h2,
    h3,
    p,
    li {
        page-break-inside: avoid;
        break-inside: avoid;
    }
    .form-card,
    .pickup-instructions {
        page-break-inside: avoid;
        break-inside: avoid;
    }
    img,
    svg {
        max-width: 100%;
    }
}

#pageLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: rgba(255, 255, 255, 0.8);
    z-index: 999999;

    display: flex;
    justify-content: center;
    align-items: center;
}

#pageLoader.d-none {
    display: none;
}

.loader-spinner {
    color: #EF0730;
    width: 3rem;
    height: 3rem;
}

.error-box {
    padding: 12px 16px;
    border: 1px solid #f5c2c7;
    background: #fff5f5;
    color: #b42318;
    border-left: 5px solid #dc3545;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.1);
    animation: fadeIn 0.25s ease-in-out;
}

.error-box::before {
    content: "⚠ ";
    font-size: 16px;
    margin-right: 4px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}