.bloc-reservation {
    padding: 40px;
}

.bloc-reservation .container-large {
    display: flex;
    flex-wrap: wrap;
    margin: 0 8%;
    gap: 80px;
}

.bloc-reservation .container-large .left {
    width: 60%;
}

.bloc-reservation .container-large .right {
    width: calc(40% - 80px);
}

.bloc-reservation .container-large .right h2 {
    font-weight: 700;
    font-size: 32px;
    color: #000;
    margin-top: 0px;
    margin-bottom: 25px;
}

/* --------------------------------------------------------- */
/* ------------------------ Steps -------------------------- */
/* --------------------------------------------------------- */
.bloc-reservation .steps {
    display: flex;
    margin-bottom: 40px;
}

.bloc-reservation .steps .step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    transition: all 0.2s;
    color: #000;
    font-weight: 300;
    font-size: 18px;
}

.bloc-reservation .steps .step.active .step-number {
    background-color: #000;
    color: #fff;
}

.bloc-reservation .steps .step::after {
    content: "";
    position: absolute;
    width: calc(100% - 40px);
    height: 2px;
    background-color: #979797;
    left: calc(50% + 20px);
    top: 20px;
}

.bloc-reservation .steps .step:last-child::after {
    display: none;
}

.bloc-reservation .steps .step .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
}

/* --------------------------------------------------------- */
/* -------------------------- Box -------------------------- */
/* --------------------------------------------------------- */
.bloc-reservation .wrapper-box-50 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.bloc-reservation .wrapper-box-50 .wrapper-box {
    width: calc(50% - 20px);
    margin-bottom: 0px;
}

.bloc-reservation .wrapper-box {
    margin-bottom: 30px;
}

.bloc-reservation .wrapper-box-title {
    font-weight: 500;
    font-size: 25px;
    margin-bottom: 15px;
    color: #000;
}

.bloc-reservation .wrapper-box-title .update-pax {
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
    gap: 5px;
}

.bloc-reservation .wrapper-box-title .update-pax input {
    width: 44px;
    height: 34px;
    border-radius: 4px;
    border: 1px solid #C8C8C8;
    font-weight: 400;
    font-size: 17px;
    text-align: center;
    pointer-events: none;
}

.bloc-reservation .wrapper-box-title .update-pax i {
    color: #bfbfbf;
    cursor: pointer;
    transition: all 0.2s;
}

.bloc-reservation .wrapper-box-title .update-pax i:hover {
    color: #000;
}

.bloc-reservation .wrapper-box-content {
    border: 2px solid var(--main-primary-color);
    border-radius: 8px;
    padding: 24px 32px;
    height: 100%;
}

.bloc-reservation .wrapper-box-content .wrapper-box-content-title {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
}

.bloc-reservation .wrapper-box-content .form-group-line {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.bloc-reservation .wrapper-box-content .form-group-file input {
    visibility: hidden;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
}

.bloc-reservation .wrapper-box-content .form-group-file label.label-file-reservation {
    cursor: pointer;
    font-size: 13px;
    border-radius: 6px;
    border: 1px solid #C8C8C8;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 12px;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.2s;
}

.bloc-reservation .wrapper-box-content .form-group-file label.label-file-reservation:hover {
    border-color: var(--main-primary-color);
}
    
.bloc-reservation .wrapper-box-content .form-group-file.file-ok label.label-file-reservation {
    border-color: #8DE328;
}

.bloc-reservation .wrapper-box-content .form-group-file label.label-file-reservation i {
    font-size: 18px;
    line-height: 18px;
    height: 18px;
    margin-right: 10px;
}

.bloc-reservation .wrapper-box-content .form-group-file label.label-file-reservation span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bloc-reservation .wrapper-box-content .form-group-file.file-ok label i::before {
    content: '\e9c2';
}

.bloc-reservation .wrapper-box-content .form-group-file.file-ok label i {
    color: #8DE328;
}


.bloc-reservation .wrapper-box-content .form-group {
    flex: 1;
}

.bloc-reservation .wrapper-box-content .form-group.required label::after {
    content: "*";
    font-size: 14px;
    top: 1px;
    right: -10px;
    color: #de0404;
    position: absolute;
}

.bloc-reservation .wrapper-box-content .form-group label {
    position: relative;
    font-weight: 300;
    font-size: 18px;
    color: #000000;
} 

.bloc-reservation .wrapper-box-content .form-group .form-control {
    border: 1px solid #C8C8C8;
    border-radius: 8px;
    min-height: 67px;
    font-size: 18px;
}

.bloc-reservation .wrapper-box-content .form-check {
    height: auto;
}

.bloc-reservation .wrapper-box-content p {
    margin-bottom: 20px;
}

.bloc-reservation .wrapper-box .form-group.small {
    margin-bottom: 5px;
}

.bloc-reservation .wrapper-box .form-group.small label {
    font-size: 14px;
}

.bloc-reservation .wrapper-box .form-group.small .form-control {
    min-height: 40px;
    font-size: 14px;
}

.bloc-reservation .wrapper-box-content table tr th, 
.bloc-reservation .wrapper-box-content table tr td {
    border: none;
}

.bloc-reservation .wrapper-box-content table tr td input {
    height: 40px;
    border-radius: 8px;
    border: 1px solid #C8C8C8;
}

.bloc-reservation .wrapper-box-action {
    display: flex;
    justify-content: space-between;
}

/* --------------------------------------------------------- */
/* ----------------------- Insurance ----------------------- */
/* --------------------------------------------------------- */
.bloc-reservation .insurance-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.bloc-reservation .insurance-choices label {
    width: 28%;
}

.bloc-reservation .insurance-choices label input {
    position: absolute;
    visibility: hidden;
    z-index: -1;
}

.bloc-reservation .insurance-choices .insurance-choices-item {
    position: relative;
    border: 1px solid #BDBDBD;
    padding: 10px 15px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s;
}

.bloc-reservation .insurance-choices .insurance-choices-item div {
    width: 60%;
    font-weight: 500;
    font-size: 14px;
    color: #25252D;
}

.bloc-reservation .insurance-choices .insurance-choices-item span {
    font-weight: 400;
    font-size: 12px;
    color: #828282;
}

.bloc-reservation .insurance-choices .insurance-choices-item i {
    opacity: 0;
    position: absolute;
    right: 13px;
    top: 3px;
    font-size: 28px;
    color: #6FCF97;
    transition: all 0.2s;
}

.bloc-reservation .insurance-choices input[type="radio"]:checked + .insurance-choices-item {
    border: 1px solid var(--main-primary-color);
}

.bloc-reservation .insurance-choices input[type="radio"]:checked + .insurance-choices-item i {
    opacity: 1;
}


/* -------------------------------------------------------------- */
/* ------------------------- Voyage part ------------------------ */
/* -------------------------------------------------------------- */
.bloc-reservation .voyage-wrapper .voyage-image {
    width: 100%;
    height: 13vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
} 

.bloc-reservation .voyage-wrapper h3 {
    font-weight: 700;
    font-size: 32px;
    color: #000;
    margin-bottom: 30px;
}

.bloc-reservation .voyage-wrapper .informations .information-item {
    font-weight: 600;
    font-size: 15px;
    color: #090909;
    font-style: normal;
    margin-bottom: 10px;
}

.bloc-reservation .voyage-wrapper .informations .information-item span {
    font-weight: 400;
}


/* --------------------------------------------------------- */
/* ----------------------- Insurance ----------------------- */
/* --------------------------------------------------------- */
.bloc-reservation .add-pax {
    cursor: pointer;
    text-decoration: none;
    color: var(--main-primary-color);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 700;
    font-size: 15px;
}

.bloc-reservation .add-pax i {
    font-size: 40px;
    line-height: 40px;
    height: 40px;
}


/* --------------------------------------------------------- */
/* ------------------------- STEP 3 ------------------------ */
/* --------------------------------------------------------- */
.bloc-reservation .reservation-prices {
    margin: 0px 20px;
}

.bloc-reservation .reservation-prices .reservation-prices-line {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.bloc-reservation .reservation-prices .reservation-prices-line.bold {
    font-weight: 700;
}

.bloc-reservation .reservation-prices .reservation-prices-line .delete-promotion {
    display: block;
    font-size: 12px;
    color: red;
}

.bloc-reservation .reservation-promotion {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.bloc-reservation .reservation-promotion .form-group {
    margin-bottom: 0px !important;
}

.bloc-reservation .reservation-promotion .form-group input {
    margin-right: 10px;
}

/* --------------------------------------------------------- */
/* ------------------------ STEP 4 ------------------------- */
/* --------------------------------------------------------- */
.bloc-reservation .reglements-container .reglements-container-item {
    height: 96px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 2px 4px 0px #00000040;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 32px;
}

.bloc-reservation .reglements-container .reglements-container-item .custom-checkbox {
    font-size: 20px;
    margin-bottom: 0px;
    line-height: 21px;
    font-weight: 300;
    color: #000;
}

.bloc-reservation .reglements-container .reglements-container-item i {
    font-size: 40px;
    color: var(--main-primary-color);
}

/* --------------------------------------------------------- */
/* ------------------------ STEP 5 ------------------------- */
/* --------------------------------------------------------- */
.bloc-reservation .recap-voyageurs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.bloc-reservation .recap-voyageurs .recap-voyageurs-item {
    width: calc(33% - 8px);
}

.bloc-reservation .recap-voyageurs .recap-voyageurs-item .recap-voyageurs-item-header {
    text-align: center;
    color: var(--main-primary-color);
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 14px;
}

.bloc-reservation .recap-voyageurs .recap-voyageurs-item .recap-voyageurs-item-content {
    border: 1px solid #BDBDBD;
    border-radius: 5px;
    padding: 15px 18px 0px 18px;
}

.bloc-reservation .recap-voyageurs .recap-voyageurs-item .recap-voyageurs-item-title {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 5px;
    color: #25252D;
}

.bloc-reservation .recap-voyageurs .recap-voyageurs-item .recap-voyageurs-item-content p {
    color: #828282;
    font-size: 14px;
}


/* ------------------------------------------------------------------------------- */
/* ------------------------------ Reservation edit ------------------------------- */
/* ------------------------------------------------------------------------------- */
.container-reservation-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.container-reservation-wrapper h2 {
    margin-top: 0px;
    line-height: 30px;
    font-size: 30px;
    margin-bottom: 16px;
    color: #333;
    font-weight: 600;
}

.container-reservation-wrapper .container-reservation-edit {
    background-color: #fff;
    box-shadow: 0px 2px 4px 0px #00000040;
    padding: 26px;
    border-radius: 10px;
    max-width: 575px;
}

/* ------------------------------------------------------------------------------- */
/* -------------------------- Reservation dashboard ------------------------------ */
/* ------------------------------------------------------------------------------- */
.dashboard-reservation {
    margin: auto 8%;
    margin-bottom: 40px;
}

.dashboard-reservation .dashboard-reservation-title {
    margin-top: 40px;
    margin-bottom: 40px;
}

.dashboard-reservation .dashboard-reservation-title .title {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    margin-bottom: 5px;
}

.dashboard-reservation .dashboard-reservations-actions {
    display: flex;
    justify-content: center;
    gap: 45px;
}

.dashboard-reservation .dashboard-reservations-actions a {
    flex: 1;
    border: 2px solid var(--main-primary-color);
    display: flex;
    align-items: center;
    padding: 20px;
    height: 60px;
    font-size: 16px;
    border-radius: 10px;
    font-weight: 600;
    color: #333;
    transition: all 0.2s;
}

.dashboard-reservation .dashboard-reservations-actions a i {
    font-size: 32px;
    line-height: 32px;
    height: 32px;
    margin-right: 10px;
    color: var(--main-primary-color);
}

.dashboard-reservation .dashboard-reservations-actions a:hover {
    color: #fff;
    background-color: var(--main-primary-color);
}

.dashboard-reservation .dashboard-reservations-actions a:hover i {
    color: #fff;
}

.dashboard-reservation .dashboard-reservations-actions .info {
    flex: 1;
    margin-top: 20px;
}

.dashboard-reservation .dashboard-reservations-actions .info p {
    font-size: 13px;
    margin-bottom: 2px;
}

.dashboard-reservation .dashboard-reservations-actions .info p.between {
    display: flex;
    justify-content: space-between;
}

.dashboard-reservation .dashboard-reservations-actions .info p span {
    font-weight: 600;
}

.dashboard-reservation .dashboard-reservation-top {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-reservation .dashboard-reservation-top .col-md-6 {
    height: 100%;
}

.dashboard-reservation .dashboard-reservation-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 280px;
    border-radius: 16px;
}

/* ------------------------------------------------------------------------------- */
/* ---------------------------------- Responsive --------------------------------- */
/* ------------------------------------------------------------------------------- */
@media screen and (max-width: 992px) {
    .bloc-reservation {
        padding: 40px 30px;
    }

    .bloc-reservation .container-large {
        flex-direction: column-reverse;
        margin: 0;
    }

    .bloc-reservation .container-large .left {
        width: 100%;
    }

    .bloc-reservation .container-large .right {
        width: 100%;
    }

    .bloc-reservation .container-large .right h2 {
        display: flex;
        gap: 6px;
    }

    .bloc-reservation .voyage-wrapper .voyage-image {
        height: 40vw;
    }

    .bloc-reservation .steps .step {
        width: 20%;
    }

    .bloc-reservation .steps .step .step-number {
        font-size: 16px;
    }

    .bloc-reservation .steps .step .step-title {
        font-size: 11px;
    }

    .bloc-reservation .wrapper-box-content {
        padding: 20px;
    }

    .bloc-reservation .wrapper-box-content .form-group-line {
        display: block;
    }

    .bloc-reservation .insurance-choices label {
        width: 100%;
    }

    .bloc-reservation .wrapper-box-50 .wrapper-box {
        width: 100%;
    }

    .bloc-reservation .wrapper-box-action {
        flex-direction: column;
        gap: 10px;
    }

    .bloc-reservation .reservation-prices {
        margin: 0px;
    }

    .bloc-reservation .wrapper-box-content table tr th, .bloc-reservation .wrapper-box-content table tr td {
        padding: 0px;
        font-size: 12px;
    }

    .bloc-reservation .wrapper-box-content table tr td input {
        padding: 10px 12px;
        font-size: 12px;
    }

    .bloc-reservation .reservation-prices .reservation-prices-line {
        font-size: 13px;
    }

    .bloc-reservation .reservation-prices .reservation-prices-line span {
        white-space: nowrap;
    }

    .bloc-reservation .reglements-container .reglements-container-item .custom-checkbox {
        font-size: 14px;
        margin-bottom: 0px;
        line-height: 22px;
        font-weight: 300;
        color: #000;
    }

    .bloc-reservation .recap-voyageurs .recap-voyageurs-item {
        width: 100%;
    }
}