/*
 * TPL Mon compte
 * -----------------------------
*/

/* === Layout général === */
main.mon-compte {
    padding: 2rem 0;
    font-family: var(--main-font-family);
    color: var(--color-prim-blue);
}

/* === Sidebar === */
main.mon-compte .sidebar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--white);
    border: 1px solid #E8E8E8;
    border-radius: 18px;
    padding: 60px 35px 35px 35px;
    height: 100%;
    max-height: calc(100vh - 200px);
    margin-right: 10px;
}

main.mon-compte .sidebar .welcome {
    text-align: left;
    font-style: normal;
    font-variant: normal;
    font-weight: 300;
    font-size: 1.5rem;
    font-family: var(--main-font-family);
    color: var(--color-prim-blue);
    margin-bottom: 5px;
}

main.mon-compte .sidebar .username {
    text-align: left;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    font-size: 2rem;
    font-family: var(--main-font-family);
    color: var(--color-prim-blue);
    margin-bottom: 20px;
}

main.mon-compte .sidebar .description {
    text-align: left;
    font-style: normal;
    font-variant: normal;
    font-weight: bold;
    font-size: 1rem;
    font-family: var(--main-font-family);
    color: var(--color-prim-blue);
    margin-bottom: 20px;

}

main.mon-compte .sidebar .help {
    text-align: left;
    font-style: normal;
    font-variant: normal;
    font-weight: bold;
    font-size: 1rem;
    font-family: var(--main-font-family);
    color: var(--color-prim-blue);
    margin-bottom: 35px;
}

main.mon-compte .sidebar .help:before {
    content: '\f059';
    font-family: var(--fontawesome);
    font-style: normal;
    font-weight: 700;
    text-decoration: inherit;
    font-size: 15px;
    color: var(--color-prim-blue);
    margin-right: 10px;
}

main.mon-compte .sidebar ul.menu {
    list-style: none;
    padding: 0;
    margin-left: 0 !important;
}

main.mon-compte .sidebar ul.menu li {
    list-style: none;
    padding-left: 0;
}

main.mon-compte .sidebar .menu li a {
    height: 50px;
    display: flex;
    align-items: center;
    padding: 15px;
    border-left: 5px solid transparent;
    text-align: left;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-size: 0.95rem;
    font-family: var(--main-font-family);
    color: var(--color-prim-blue);
    text-transform: uppercase;
}

main.mon-compte .sidebar .menu li a.active,
main.mon-compte .sidebar .menu li a:hover {
    border-left: 5px solid var(--color-prim-red);
    border-radius: 6px;
    color: var(--white);
    background-color: var(--color-prim-blue);
    text-decoration: none;
}

main.mon-compte .sidebar .menu li a:before {
    content: '\f015';
    font-family: var(--fontawesome);
    font-style: normal;
    font-weight: 700;
    text-decoration: inherit;
    font-size: 19px;
    color: var(--color-prim-blue);
    margin-right: 10px;
}
main.mon-compte .sidebar .menu li a.active:before,
main.mon-compte .sidebar .menu li a:hover:before {
    color: var(--white);
}

main.mon-compte .sidebar .menu li.home a:before {
    content: '\f015';
}
main.mon-compte .sidebar .menu li.mon-garage a:before,
main.mon-compte .sidebar .menu li.my-garage a:before {
    content: '\e00b';
}
main.mon-compte .sidebar .menu li.mon-equipe a:before,
main.mon-compte .sidebar .menu li.my-team a:before {
    content: '\f0c0';
}
main.mon-compte .sidebar .menu li.inscriptions a:before,
main.mon-compte .sidebar .menu li.registrations a:before {
    content: '\e472';
}
main.mon-compte .sidebar .menu li.parametres-du-compte a:before,
main.mon-compte .sidebar .menu li.account-settings a:before {
    content: '\f2c2';
}

main.mon-compte .sidebar .menu hr.menu-sep {
    margin: 0 !important;
    border-color: var(--color-sec-blue);
}

main.mon-compte .sidebar .bottom-content {
    margin-top: auto;
}

main.mon-compte .sidebar .bottom-content .lang-switch > div {
    padding: 0 !important;
}

main.mon-compte .sidebar .bottom-content .lang-switch ul {
    display: flex;
    padding-left: 0;
}

main.mon-compte .sidebar .bottom-content .lang-switch ul li {
    opacity: 0.35;
}

main.mon-compte .sidebar .bottom-content .lang-switch ul li:hover {
    opacity: 1;
}

main.mon-compte .sidebar .bottom-content .lang-switch ul li.wpml-ls-current-language {
    opacity: 1;
}

main.mon-compte .sidebar .bottom-content .lang-switch ul li a img {
    width: 25px;
    height: auto;
    display: block;
    border: 0;
}

main.mon-compte .sidebar .bottom-content .logout {
    text-align: left;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-size: 0.95rem;
    font-family: var(--main-font-family);
    color: var(--color-prim-blue);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
}

main.mon-compte .sidebar .bottom-content .logout:before {
    content: '\f2f5';
    font-family: var(--fontawesome);
    font-style: normal;
    font-weight: 700;
    font-size: 19px;
    color: var(--color-prim-blue);
    margin-right: 15px;
    text-decoration: none;
}

main.mon-compte .sidebar .bottom-content .logout:hover span {
    text-decoration: underline;
}


/* === Contenu principal === */
main.mon-compte .dashboard-content {
    background-color: var(--white);
    border: 1px solid #E8E8E8;
    border-radius: 18px;
    padding: 60px;
    height: fit-content;
}

main.mon-compte .title {
    text-align: left;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    font-size: 1.2rem;
    font-family: var(--main-font-family);
    color: var(--color-prim-blue);
    text-transform: uppercase;
    margin-bottom: 15px;
}

main.mon-compte .rsv-box .icon {
    text-align: left;
    font-family: var(--fontawesome);
    font-style: normal;
    font-weight: 700;
    text-decoration: inherit;
    font-size: 30px;
    color: var(--color-prim-blue);
    opacity: 0.2;
}

/* === Boîtes vides === */
main.mon-compte .rsv-box {
    background-color: #F0F2F4;
    border-radius: 4px;
    padding: 25px;
}

main.mon-compte .rsv-box.box-full {
    margin-bottom: 35px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

main.mon-compte .rsv-box.box-full .icon {
    margin-right: 25px;
}

main.mon-compte .rsv-box.box-full .content {
    text-align: left;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    font-size: 1rem;
    font-family: var(--main-font-family);
    color: var(--color-prim-blue);
}

main.mon-compte .rsv-box.box-half {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

main.mon-compte .rsv-box.box-half.box-empty {
    height: 200px;
}

main.mon-compte .rsv-box.box-half .icon {
    margin-bottom: 20px;
}

main.mon-compte .rsv-box.box-half .title {
    text-align: left;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    font-size: 1.13rem;
    font-family: var(--main-font-family);
    color: var(--color-prim-blue);
    text-transform: uppercase;
    margin-bottom: 15px;
}

main.mon-compte .rsv-box .cta {
    font-weight: 800 !important;
}

main.mon-compte .card-grid > div:nth-child(1) .cta {
    width: 196px;
}

main.mon-compte .card-grid > div:nth-child(2) .cta {
    width: 100%;
}

/* === Boîtes complétées === */
main.mon-compte .inscription {
    display: flex;
    flex-direction: column;
    align-items: end;
}

main.mon-compte .inscription .box-link {
    margin-bottom: 35px;
}

main.mon-compte .rsv-box.box-inscription {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: stretch;
    background-color: #F0F1F2;
    border-radius: 6px;
    overflow: hidden;
    padding: 0;
    color: var(--color-prim-blue);
    margin-bottom: 25px !important;
}
main.mon-compte .rsv-box.box-inscription:last-child {
    margin-bottom: 0;
}

main.mon-compte .rsv-box.box-inscription .icon {
    width: 180px;
    height: auto;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 180px;
    margin-right: 0;
    opacity: 1;
}

main.mon-compte .rsv-box.box-inscription .icon .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(32, 50, 80, 0.85);
}

main.mon-compte .rsv-box.box-inscription .icon img {
    width: 125px;
    z-index: 1;
}

main.mon-compte .rsv-box.box-inscription .content-zone {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* top-zone en haut, download-bar en bas */
}

main.mon-compte .rsv-box.box-inscription .top-zone {
    display: flex;
    align-items: flex-start;
    padding: 16px 35px;
}

main.mon-compte .rsv-box.box-inscription .infos {
    flex-grow: 1;
    padding-right: 20px;
}

main.mon-compte .rsv-box.box-inscription .title {
    text-align: left;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-size: 1.5rem;
    font-family: var(--main-font-family);
    color: var(--color-prim-blue);
    line-height: 1.1;
    margin-bottom: 8px;
}

main.mon-compte .rsv-box.box-inscription .dates {
    text-align: left;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    font-size: 1rem;
    font-family: var(--main-font-family);
    color: var(--color-prim-blue);
}

main.mon-compte .rsv-box.box-inscription .cta-zone {
    margin: auto;
    /* padding-right: 35px; */
}

main.mon-compte .rsv-box.box-inscription .cta {
    width: 200px;
    background-color: var(--color-prim-blue) !important;
    color: var(--white) !important;
}

main.mon-compte .rsv-box.box-inscription .cta:hover {
    background: #f2f2f2;
    color: #000;
}

main.mon-compte .rsv-box.box-inscription .download-bar {
    padding: 10px 35px;
    display: flex;
    /* justify-content: space-between; */
    justify-content: unset;
    border-top: 1px dashed #20325036;
    /* gap: 20px; */
    gap: 50px;
}

main.mon-compte .rsv-box.box-inscription .download-bar .download-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--main-font-family);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-prim-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

main.mon-compte .rsv-box.box-inscription .download-bar .download-item:hover {
    color: var(--color-sec-red);
}

main.mon-compte .rsv-box.box-inscription .download-bar .download-item i {
    font-size: 1rem;
}

main.mon-compte .rsv-box.box-inscription .download-bar .download-item.unavailable {
    opacity: 0.3;
    cursor: not-allowed;
}

main.mon-compte .rsv-box.box-inscription .download-bar .download-item.unavailable:hover {
    color: var(--color-prim-blue);
    opacity: 0.3;
}


/* main.mon-compte .card-grid {
    margin-top: 65px;
} */

main.mon-compte .rsv-box.box-vehicule,
main.mon-compte .rsv-box.box-pilote {
    padding: 0;
}

main.mon-compte .rsv-box.box-vehicule,
main.mon-compte .rsv-box.box-pilote {
    padding: 0;
}

main.mon-compte .rsv-box.box-vehicule .content,
main.mon-compte .rsv-box.box-pilote .content {
    padding: 25px;
}

main.mon-compte .rsv-box.box-vehicule .image {
    width: 100%;
    aspect-ratio: 16/9;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 4px 4px 0px 0px;
}

main.mon-compte .rsv-box.box-pilote .image {
    width: 100%;
    height: 280px  ;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 4px 4px 0px 0px;
}

main.mon-compte .rsv-box.box-vehicule .content .subtitle,
main.mon-compte .rsv-box.box-pilote .content .subtitle {
    text-align: left;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--main-font-family);
    color: var(--color-prim-blue);
    margin-bottom: 10px;
}

main.mon-compte .rsv-box.box-vehicule .content .title,
main.mon-compte .rsv-box.box-pilote .content .title {
    margin-bottom: 35px;
}

main.mon-compte .box-link {
    float: right;
    font-style: normal;
    font-variant: normal;
    font-weight: bold;
    font-size: 0.8rem;
    font-family: var(--main-font-family);
    color: var(--color-prim-blue);
    margin-top: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

main.mon-compte .box-link span:hover {
    text-decoration: underline;
}

main.mon-compte .box-link:after {
    content: '\f0da';
    font-family: var(--fontawesome);
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    color: var(--color-prim-blue);
    margin-left: 5px;
}

/* End of TPL Mon compte */

/* ---------------------------------------- */

/*
 * TPL Mon compte - Pages enfants 
 * -----------------------------
*/

main.mon-compte .dashboard-content .return {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-style: italic;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--main-font-family);
    color: var(--color-prim-blue);
    margin-bottom: 20px;
    gap: 10px;
}

main.mon-compte .dashboard-content .return:hover .text {
    text-decoration: underline;
    text-underline-offset: 2px;
}

main.mon-compte .dashboard-content .return .icon {
    font-family: var(--fontawesome);
    content: '\f177';
    font-weight: 700;
    font-size: 14px;
    color: var(--color-prim-blue);
    text-decoration: none !important;
    display: inline-block;
    line-height: 1;
}

main.mon-compte .dashboard-content .return .icon::before {
    content: '\f177';
}

main.mon-compte .dashboard-content .title {
    text-align: left;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    font-size: 1.2rem;
    font-family: var(--main-font-family);
    color: var(--color-prim-blue);
    text-transform: uppercase;
    margin-bottom: 15px;
}

main.mon-compte .dashboard-content .description {
    text-align: left;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    font-size: 0.9rem;
    font-family: var(--main-font-family);
    color: var(--color-prim-blue);
    margin: 15px 0 35px 0;
}

main.mon-compte .delete-post {
    text-align: center !important;
    margin-top: 25px;
    color: var(--color-prim-red);
    cursor: pointer;
}

main.mon-compte .delete-post:hover {
    text-decoration: underline;
}

/* End of TPL Mon compte - Pages enfants */

/* ---------------------------------------- */

/*
 * TPL Mon compte - Mon garage
 * -----------------------------
*/

main.mon-compte .mon-garage .mes-voitures .container {
    padding: 0;
}

main.mon-compte .mon-garage .mes-voitures .voiture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

main.mon-compte .mon-garage .mes-voitures .rsv-box.box-vehicule {
    background-color: #F0F2F4;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

main.mon-compte .mon-garage .mes-voitures .rsv-box .image {
    height: 160px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

main.mon-compte .mon-garage .mes-voitures .rsv-box .content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

main.mon-compte .mon-garage .mes-voitures .box-vehicule .image {
    height: 200px;
}

main.mon-compte .mon-garage .mes-voitures .box-vehicule .cta {
    width: 196px;
}

main.mon-compte .mon-garage .mes-voitures .add-vehicule .image {
    background-color: var(--color-sec-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

main.mon-compte .mon-garage .mes-voitures .add-vehicule .image i {
    color: var(--color-prim-blue);
    font-size: 5rem;
}

main.mon-compte .mon-garage .mes-voitures .add-vehicule .content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 170px;
    padding: 20px;
    text-align: center;
}

/* End of TPL Mon compte - Mon garage */

/* ---------------------------------------- */

/*
 * TPL Mon compte - Mon équipe
 * -----------------------------
*/

main.mon-compte .mon-equipe .mes-pilotes .container {
    padding: 0;
}

main.mon-compte .mon-equipe .mes-pilotes .pilote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

main.mon-compte .mon-equipe .mes-pilotes .rsv-box.box-pilote {
    background-color: #F0F2F4;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 400px;
}

main.mon-compte .mon-equipe .mes-pilotes .rsv-box .image {
    height: 270px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

main.mon-compte .mon-equipe .mes-pilotes .rsv-box .content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

main.mon-compte .mon-equipe .mes-pilotes .rsv-box .content .title {
    font-size: 1.15rem;
    text-transform: uppercase;
    font-weight: 900;
    overflow-wrap: break-word;
}

main.mon-compte .mon-equipe .mes-pilotes .box-pilote .cta {
    width: 196px;
}

main.mon-compte .mon-equipe .mes-pilotes .add-pilote .content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    padding: 20px;
    text-align: center;
}

main.mon-compte .mon-equipe .mes-pilotes .add-pilote .image {
    background-color: var(--color-sec-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

main.mon-compte .mon-equipe .mes-pilotes .add-pilote .image i {
    color: var(--color-prim-blue);
    font-size: 5rem;
}

/* End of TPL Mon compte - Mon équipe */

/* ---------------------------------------- */

/*
 * TPL Mon compte - Inscriptions
 * -----------------------------
*/

main.mon-compte .inscriptions .mes-inscriptions .container {
    padding: 0;
}

main.mon-compte .inscriptions .mes-inscriptions .inscriptions {
    margin-bottom: 25px;
}
main.mon-compte .inscriptions .mes-inscriptions .inscriptions:last-child {
    margin-bottom: 0;
}

main.mon-compte .inscription .box-inscription .icon p {
    font-family: var(--main-font-family);
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 700;
    font-variant: normal;
    color: var(--white);
    text-align: center !important;
    z-index: 9;
}

main.mon-compte .inscription .box-inscription .infos .title {
    font-size: 1.2rem;
}

main.mon-compte .inscription .box-inscription .status-badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--main-font-family);
    font-size: 0.85rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 500;
    color: var(--white);
    background-color: var(--color-sec-red);
    padding: 5px 18px;
    border-radius: 20px;
}

main.mon-compte .inscription .box-inscription .status-badge.unfinished {
    background-color: #A53223e6 !important;
}

main.mon-compte .inscription .box-inscription .status-badge.confirmed {
    background-color: #6BA378 !important;
}

main.mon-compte .inscription .box-inscription .status-badge.pending {
    background-color: #C39675 !important;
}

/* End of TPL Mon compte - Inscriptions */

/* ---------------------------------------- */


/*
 * TPL Landing Formulaire
 * -----------------------------
*/

main.landing-formulaire .presentation-box {
    background: var(--white);
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    margin-bottom: 35px;
}

main.landing-formulaire .presentation-box .box-header {
    position: relative;
    overflow: hidden;
    color: var(--white);
    height: 150px;
    border-radius: 8px 8px 0 0;
    border-bottom: 5px solid var(--color-sec-red);
}
main.landing-formulaire .presentation-box.unavailable .box-header {
    border: none;
}

main.landing-formulaire .presentation-box .box-header .bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    z-index: 0;
}

main.landing-formulaire .presentation-box .box-header .overlay {
    position: absolute;
    inset: 0;
    background-color: #203250d9;
    z-index: 1;
}
main.landing-formulaire .presentation-box.unavailable .box-header .overlay {
    background-color: #475C71d9;
}

main.landing-formulaire .presentation-box .box-header .content {
    position: relative;
    z-index: 2;
    padding: 35px;
    text-align: center;
}

main.landing-formulaire .presentation-box .box-header .content .title {
    font-family: var(--main-font-family);
    font-size: 2rem;
    font-style: normal;
    font-weight: 800;
    font-variant: normal;
    color: var(--white);
    text-transform: uppercase;
    opacity: 1;
    margin-bottom: 10px;
}

main.landing-formulaire .presentation-box .box-header .content .subtitle {
    font-family: var(--main-font-family);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 800;
    font-variant: normal;
    color: var(--white);
    opacity: 1;
    margin-bottom: 0;
}

main.landing-formulaire .presentation-box .box-body {
    padding: 50px 110px;
    color: var(--color-prim-blue);
}

main.landing-formulaire .presentation-box .box-body blockquote {
    background: #F0F1F2;
    border-radius: 8px;
    padding: 30px 35px;
    margin-bottom: 40px;
}
main.landing-formulaire .presentation-box .box-body blockquote:before,
main.landing-formulaire .presentation-box .box-body blockquote:after {
    content: '';
}

main.landing-formulaire .presentation-box .box-body blockquote p {
    font-family: var(--main-font-family);
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 900;
    font-variant: normal;
    color: var(--color-prim-blue);
    text-align: left !important;
}

main.landing-formulaire .presentation-box .box-body .btn-wrapper {
    position: relative;
    margin: 40px 0;
    text-align: center;
}

main.landing-formulaire .presentation-box .box-body .btn-wrapper .btn-start {
    width: 100%;
    height: 60px;
    background-color: var(--color-prim-blue);
    color: var(--white);
    font-family: var(--main-font-family);
    font-size: 0.90rem;
    font-style: normal;
    font-weight: 800;
    font-variant: normal;
    border: none;
    padding: 20px 0;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    text-transform: uppercase;
    border-radius: 4px;
}

main.landing-formulaire .presentation-box .box-body .msg-questions-acm {
    margin-top: 30px;
}

/* End of Landing Formulaire */

/* ---------------------------------------- */

/*
 * TPL Détail Formulaire
 * -----------------------------
*/

main.detail-formulaire .presentation-box {
    background: var(--white);
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    margin-bottom: 35px;
}

main.detail-formulaire .presentation-box .box-header {
    position: relative;
    overflow: hidden;
    color: var(--white);
    height: 100px;
    border-radius: 8px 8px 0 0;
    border-bottom: 5px solid var(--color-sec-red);
}

main.detail-formulaire .presentation-box .box-header .bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    z-index: 0;
}

main.detail-formulaire .presentation-box .box-header .overlay {
    position: absolute;
    inset: 0;
    background-color: hsla(218, 43%, 22%, 0.85);
    z-index: 1;
}

main.detail-formulaire .presentation-box .box-header .content {
    position: relative;
    z-index: 2;
    padding: 35px;
    text-align: center;
}

main.detail-formulaire .presentation-box .box-header .content .subtitle {
    font-family: var(--main-font-family);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 800;
    font-variant: normal;
    color: var(--white);
    opacity: 1;
    margin-bottom: 0;
}

main.detail-formulaire .presentation-box .box-body {
    padding: 30px 60px;
    color: var(--color-prim-blue);
}

main.detail-formulaire .presentation-box .box-body .preambule {
    font-family: var(--main-font-family);
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 500;
    font-variant: normal;
    color: var(--color-sec-blue);
    margin-bottom: 30px;
    opacity: 1;
    
}

main.detail-formulaire .presentation-box .box-body .rsv-form-style {
    background-color: #F4F4F4;
    border-radius: 10px;
    padding: 40px;
}

main.detail-formulaire .presentation-box .box-body .rsv-form-style .rsv-form-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

main.detail-formulaire .presentation-box .box-body .rsv-form-style .rsv-form-header .etape-titre {
    display: flex;
    align-items: center
}

main.detail-formulaire .presentation-box .box-body .rsv-form-style .rsv-form-header .etape-titre .etape-num {
    width: 40px;
    height: 40px;
    background: var(--color-prim-blue);
    border-radius: 50%;
    color: var(--white);
    font-family: var(--main-font-family);
    font-size: 1.35rem;
    font-style: normal;
    font-weight: 900;
    font-variant: normal;
    text-align: center;
    line-height: 40px;
    margin-right: 10px
}

main.detail-formulaire .presentation-box .box-body .rsv-form-style .rsv-form-header .etape-titre .step-name {
    color: var(--color-prim-blue);
    font-family: var(--main-font-family);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 900;
    font-variant: normal;
    margin-left: 20px;
    line-height: 1;
}

main.detail-formulaire .presentation-box .box-body .rsv-form-style .rsv-form-header .etapes-progression {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    margin-right: 30px;
}

main.detail-formulaire .presentation-box .box-body .rsv-form-style .rsv-form-header .etapes-progression::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    right: -30px;
    height: 1px;
    background-color: var(--color-prim-blue);
    transform: translateY(-50%);
    z-index: 0;
}

main.detail-formulaire .presentation-box .box-body .rsv-form-style .rsv-form-header .etapes-progression .etape {
    position: relative;
    width: 30px;
    height: 30px;
    background: var(--white);
    color: var(--color-sec-blue);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-family: var(--fontawesome);
    font-size: 16px;
    font-weight: 600;
    z-index: 1;
}

main.detail-formulaire .presentation-box .box-body .rsv-form-style .rsv-form-header .etapes-progression .etape.active {
    background: var(--color-prim-blue);
    color: var(--white);
}

main.detail-formulaire .presentation-box .box-body .rsv-form-style .rsv-form-body form {
    padding: 0;
}

main.detail-formulaire .presentation-box .box-body .rsv-form-style .rsv-form-body form .acf-form-submit input {
    width: 100%;
}

main.detail-formulaire .presentation-box .box-body .rsv-form-style .rsv-form-body form .acf-pilote-message {
    margin-top: 10px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 6px;
}

main.detail-formulaire .presentation-box .box-body .rsv-form-style .rsv-form-body form .pay-button {
    border: none !important;
}

/* Page paiement */
main.detail-formulaire .missing-fields.alert {
    background-color: rgba(194, 149, 117, 0.35);
    border: none;
    padding: 35px;
}

main.detail-formulaire .select-payment-method {
    text-align: center !important;
    margin-top: 30px;
}

main.detail-formulaire .select-payment-method .label {
    font-family: var(--main-font-family);
    font-size: 0.9rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 700;
    color: var(--color-prim-blue);
    margin-bottom: 10px;
    text-align: center !important;
}

main.detail-formulaire .select-payment-method .payment-options {
    margin-bottom: 30px;
}

main.detail-formulaire .select-payment-method .payment-options label {
    font-family: var(--main-font-family);
    font-size: 0.9rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 500;
    color: var(--color-prim-blue);
    margin-right: 25px;
}
main.detail-formulaire .select-payment-method .payment-options label:last-of-type {
    margin-right: 0;
}

main.detail-formulaire .select-payment-method .payment-options label input{
    vertical-align: middle;
}

/* End of Détail Formulaire */


