body {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.formulaire-reservation-card {
    border-radius: 0;
    overflow: hidden;
    width: 100%;
}

.formulaire-reservation-card p {
    margin: 0;
}

.formulaire-reservation-card .alert {
    border-radius: 1rem;
}

.formulaire-reservation-card .alert.alert-icon > .icon {
    font-size: 1.5rem;
}

.formulaire-reservation-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.formulaire-reservation-card .card-header .restaurant-logo {
    max-width: 60px;
}

.nk-wizard-simple .steps ul li.done h5,
.nk-wizard-simple .steps ul li.done .h5,
.nk-wizard-simple .steps ul li.done .number,
.nk-wizard-simple .steps ul li.current h5,
.nk-wizard-simple .steps ul li.current .h5,
.nk-wizard-simple .steps ul li.current .number {
    color: #101626;
}

.nk-wizard-simple .steps ul li.done:after,
.nk-wizard-simple .steps ul li.current:after {
    background: #101626;
}

.actions ul li:first-child {
    order: 0;
}

.actions ul {
    justify-content: center;
}

.actions ul li a {
    background: #101626;
    border-color: #101626;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-width: 2px;
}

.actions ul li a:hover {
    border-color: #101626;
}

.actions ul li a[href="#previous"] {
    background: #fff;
    color: #101626;
    padding: 5px 12px;
    border: 2px solid #101626;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.actions ul li a[href="#previous"]:hover {
    background: #101626;
    color: #ffffff;
    border: 2px solid #101626;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.actions ul li a[href="#next"] {
    background: #101626;
    color: #fff;
    padding: 5px 12px;
    border: 2px solid #101626;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.actions ul li a[href="#next"]:hover {
    background: #fff;
    color: #101626;
    border: 2px solid #101626;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.actions ul li a[href="#finish"] {
    background: #0fca7a;
    color: #fff;
    padding: 5px 12px;
    border: 2px solid #0fca7a;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.actions ul li a[href="#finish"]:hover {
    background: #ffffff;
    color: #0fca7a;
    border: 2px solid #0fca7a;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.heures-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.heures-list.heures-soir-list {
    margin-bottom: 50px;
}

small.red {
    color: red;
}

.lottie-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.calendar .loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.75);
    z-index: 10;
}

.calendar-wrapper {
    max-width: 100%;
    width: 450px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    position: relative;
}

.calendar-wrapper header {
    display: flex;
    align-items: center;
    padding: 15px 30px 0;
    justify-content: space-between;
}

.calendar header .calendar-icons {
    display: flex;
}

.calendar header .calendar-icons span {
    height: 38px;
    width: 38px;
    margin: 0 1px;
    cursor: pointer;
    color: #878787;
    text-align: center;
    line-height: 38px;
    font-size: 1.9rem;
    user-select: none;
    border-radius: 50%;
}

.calendar-icons span:last-child {
    margin-right: -10px;
}

.calendar header .calendar-icons span:hover {
    background: #f2f2f2;
}

.calendar header .calendar-current-date {
    font-size: 1.2rem;
    font-weight: 500;
}

.calendar-calendar {
    padding: 20px;
    padding-top: 5px;
}

.calendar-calendar ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    text-align: center;
}

.calendar-calendar .calendar-days {
    margin-bottom: 20px;
}

.calendar-calendar li {
    color: #333;
    width: 14.2857142857%;
    font-size: 1rem;
}

.calendar-calendar .calendar-weeks li {
    font-weight: 500;
    cursor: default;
}

.calendar-calendar .calendar-days li {
    z-index: 1;
    cursor: pointer;
    position: relative;
    margin-top: 20px;
}

.calendar-days li.inactive {
    color: #aaa;
    cursor: auto;
}

.calendar-days li.inactive.pointer {
    color: #aaa;
    cursor: pointer;
}

.calendar-days li.active {
    color: #fff;
    transition: all ease-in-out 0.2s;
}

.calendar-days li.active.focus {
    color: #101626;
    transition: all ease-in-out 0.2s;
}

.calendar-days li.inactive.pointer.focus {
    color: #000;
}

.calendar-days li::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    height: 40px;
    width: 40px;
    z-index: -1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.calendar-days li.active::before {
    background: #101626;
    border: 1px solid #101626;
    transition: all ease-in-out 0.2s;
}

.calendar-days li.focus::before {
    background: none;
}

.calendar-days li.inactive.pointer.focus::before {
    background: none;
    border: 1px solid #101626;
    transition: all ease-in-out 0.2s;
}

.calendar-days li.active:hover {
    color: #06060a;
}

.calendar-days li.active:hover::before {
    background: none;
}

.calendar-days li:not(.active):hover::before {
    background: #f2f2f2;
}

.calendar-legende {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.calendar-legende-pastille {
    height: 30px;
    width: 30px;
    background: #101626;
    border-radius: 50%;
}

.calendar-calendar .calendar-days li {
    user-select: none;
}

form .steps ul li a {
    display: flex;
    align-items: center;
    gap: 2px;
}

form .steps ul li a h5 {
    padding: 0 !important;
}

.empty-space-bottom {
    padding-bottom: 100px;
}

@media (max-width: 800px) {
    body {
        padding: 1rem;
    }
    .nk-wizard-simple .steps ul li h5 {
        font-size: 11px;
    }
    .calendar-calendar li {
        font-size: 0.8rem;
        line-height: 2;
    }
    .actions ul li a {
        font-size: 11px;
    }
    .formulaire-reservation-card .actions.clearfix {
        bottom: 90px !important;
        width: 90% !important;
    }
    .header-container p {
        font-size: 12px;
    }
}

.iframe-hopreza {
    padding: 0px;
}

.hopreza-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #101626;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.hopreza-loader.active {
    opacity: 1;
    pointer-events: all;
}

.formulaire-reservation-card {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.card-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.calendar-days {
    min-height: 240px;
}

.heures-list .badge.badge-dim.bg-warning {
    color: #fd9722 !important;
    background-color: #fff4e7 !important;
    border-color: #fff4e7 !important;
    border: unset !important;
    line-height: 1.125rem !important;
    font-family: Roboto, sans-serif !important;
    letter-spacing: 0.01em !important;
}

.formulaire-reservation-card .actions.clearfix {
    display: flex;
    justify-content: center;
}

.formulaire-reservation-card .actions.clearfix ul {
    justify-content: center;
    gap: 8px;
    position: fixed;
    bottom: 70px;
    z-index: 1000;
}

.reservation-summary {
    gap: 5px;
    padding: 10px 0px !important;
    flex-wrap: wrap;
}

.reservation-summary .badge {
    border: unset !important;
}

.formulaire-reservation-card form label {
    margin-bottom: 2px;
}

.heures-list button {
    padding: 6px 14px !important;
}

.heures-list button span.badge {
    margin-left: 5px;
}

.alert-container .alert {
    padding: 0.6rem 1.25rem !important;
}

.reservation-summary-container {
    padding: 1rem;
    padding-top: 0px !important;
}

.reservation-summary-container .badge {
    border: unset !important;
    padding: 0.2rem 0.9rem !important;
    color: #fff !important;
}

.actions ul li a.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.formulaire-reservation-card .is-alter .form-control ~ .invalid {
    bottom: calc(100% + -19px) !important;
}

.reservation-summary-container .main-title {
    text-align: center;
    color: #2cda94;
    font-size: 1.5rem;
}

.formulaire-reservation-card .header-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.formulaire-reservation-card .header-container img.logo {
    width: 50px;
}

.formulaire-reservation-card .card-content {
    margin-bottom: 10px;
}

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    padding: 12px 16px;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    flex-basis: unset;
}

.toast.hide {
    opacity: 0;
    transform: translateY(-10px);
}

.toast-success {
    background: #28a745;
}
.toast-danger {
    background: #dc3545;
}
.toast-warning {
    background: #ffc107;
}
.toast-info {
    background: #17a2b8;
}