/* =========================================================
   GLOBAL
========================================================= */

html,
body {
    min-height: 100%;
}
html {
	    scroll-behavior: smooth;
}
#formulaire-inscription {
    scroll-margin-top: 100px;
}

* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'CoFo Raffine';
    src: url('61241.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    background: #FCFBF6;
    color: #1B3F82;
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    font-size: 25px;
}


/* =========================================================
   POINTEUR PERSONNALISÉ
========================================================= */

html,
body,
body *,
select,
option,
input,
textarea,
button,
label {
    cursor: url("images/pointeur.png") 12 12, auto !important;
}

select:focus {
    cursor: url("images/pointeur.png") 12 12, auto !important;
}


/* =========================================================
   PAGE PRINCIPALE
========================================================= */

.landing-page {
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero {
    width: 100%;
    max-width: 1200px;

    padding: 28px 20px 45px;

    text-align: center;
}

.logo {
    display: block;
    width: 230px;
    max-width: 70%;
    height: auto;
    margin: 0 auto 19px;
}

.intro {
    margin: 0 auto 18px;
}

.intro .intro1 {
    margin-bottom: 10px;

    font-size: 25px;
    line-height: 1.12;

    color: #1B3F82;
}

.intro .intro2 {
    font-size: 21px;
    line-height: 1.12;

    color: #1B3F82;
}

.official-title {
    display: block;

    width: 600px;
    max-width: 80%;
    height: auto;

    margin: 0 auto 48px;
}

.event-info {
    margin: 0 auto;

    font-size: 25px;
    line-height: 1.35;

    color: #1B3F82;
}


.event-info p {
    margin: 0;
}

.event-info strong,
.event-info b {
    font-weight: 600;
}

.event-info em,
.event-info i {
    font-style: italic;
}

.event-info .separateur {
    color: #B08A3C;
    font-weight: bold;
}



.registration {
    display: inline-block;

    margin-top: 52px;

    transition:
        transform .18s ease,
        opacity .18s ease;
}

.registration img {
    display: block;

    /*width: 590px;*/
    max-width: 250px;
    height: auto;
}

.registration:hover,
.registration:focus {
    transform: translateY(-2px);

    opacity: .88;

    text-decoration: none;
    outline: none;
}


/* =========================================================
   LANDING - TABLETTE
========================================================= */

@media (max-width: 991px) {

    .hero {
        padding-top: 24px;
    }

    .logo {
        width: 225px;
        margin-bottom: 20px;
    }

    .intro .intro1 {
        font-size: 21px;
    }

    .intro .intro2 {
        font-size: 19px;
    }

    .event-info {
        font-size: 21px;
    }

    .official-title {
        margin-bottom: 40px;
    }

    .registration {
        margin-top: 42px;
    }
}


/* =========================================================
   LANDING - MOBILE
========================================================= */

@media (max-width: 767px) {

    .hero {
        padding: 18px 15px 35px;
    }

    .logo {
        width: 190px;
        max-width: 62%;

        margin-bottom: 17px;
    }

    .intro {
        margin-bottom: 20px;
    }

    .intro .intro1,
    .intro .intro2,
    .event-info {
        font-size: 16px;
        line-height: 1.25;
    }

    .official-title {
        width: 92%;
        max-width: 100%;

        margin-bottom: 30px;
    }

    .event-info p {
        margin-bottom: 4px;
    }

    .registration {
        margin-top: 32px;
    }

    .registration img {
        width: 250px;
        max-width: 78vw;
    }
}

@media (max-width: 380px) {

    .intro .intro1,
    .intro .intro2,
    .event-info {
        font-size: 14px;
    }

    .logo {
        width: 165px;
    }

    .registration img {
        width: 220px;
    }
}


/* =========================================================
   SECTION À PROPOS
========================================================= */

.apropos-section {
    position: relative;

    width: 100%;
    min-height: 900px;

    padding: 100px 0;

    background-color: #FCFBF6;
    background-image: url('images/bg_apropos.png');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: min(52vw, 775px) auto;

    overflow: hidden;
}

.apropos-container {
    position: relative;
    z-index: 2;
}

.apropos-content {
    width: 100%;
    max-width: 1180px;

    padding-right: 250px;
}


/* =========================================================
   TITRE À PROPOS
========================================================= */

.apropos-title {
    margin: 0 0 55px;

    font-family: 'CoFo Raffine', serif;
    font-weight: 300;

    font-size: clamp(38px, 4vw, 68px);
    line-height: 1.05;

    background: linear-gradient(
        90deg,
        #9B7027 0%,
        #C6A13D 45%,
        #E0BD54 75%,
        #A77B2D 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}

.apropos-title span {
    display: block;

    font-size: .72em;
    line-height: 1.15;
}

.apropos-title strong {
    display: block;

    font-family: 'CoFo Raffine', serif;
    font-weight: 300;

    font-size: .9em;
    line-height: 1.16;
}


/* =========================================================
   TEXTE À PROPOS
========================================================= */

.apropos-text {
    font-family: 'Dosis', sans-serif;
    font-weight: 300;

    font-size: 22px;
    line-height: 1.25;

    color: #1B3F82;
}

.apropos-text p {
    margin: 0 0 27px;

    text-align: justify;
}

.apropos-text b {
    font-weight: 600;
}

.apropos-final {
    margin-top: 12px !important;
}


/* =========================================================
   À PROPOS - GRAND ÉCRAN
========================================================= */

@media (min-width: 1400px) {

    .apropos-section {
        min-height: 950px;

        padding-top: 25px;

        background-size: 775px auto;
        background-position: right top;
    }

    .apropos-content {
        max-width: 1220px;
        padding-right: 0;
    }

    .apropos-text {
        font-size: 24px;
    }
}


/* =========================================================
   À PROPOS - TABLETTE
========================================================= */

@media (max-width: 1199px) {

    .apropos-section {
        padding: 80px 0 90px;

        background-size: 52vw auto;
        background-position: right 80px;
    }

    .apropos-content {
        max-width: 100%;
        padding-right: 180px;
    }

    .apropos-title {
        margin-bottom: 42px;

        font-size: clamp(38px, 4.5vw, 58px);
    }

    .apropos-text {
        font-size: 20px;
        line-height: 1.28;
    }

    .apropos-text p {
        margin-bottom: 23px;
    }
}

@media (max-width: 991px) {

    .apropos-section {
        padding: 70px 0 50px;

        background-size: 48vw auto;
        background-position: right 100px;
    }

    .apropos-content {
        padding-right: 80px;
    }

    .apropos-title {
        font-size: clamp(36px, 5vw, 52px);
    }

    .apropos-text {
        font-size: 19px;
    }
}


/* =========================================================
   À PROPOS - MOBILE
========================================================= */

@media (max-width: 767px) {

    .apropos-section {
        padding: 55px 0 15px;

        background-size: 75vw auto;
        background-position: right 70px;
    }

    .apropos-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .apropos-content {
        position: relative;

        padding-right: 0;
    }

    .apropos-content::before {
        content: "";

        position: absolute;

        top: -20px;
        left: -10px;
        right: -10px;
        bottom: -20px;

        z-index: -1;

        background: rgba(252, 251, 246, .55);

        border-radius: 4px;
    }

    .apropos-title {
        margin-bottom: 32px;

        font-size: clamp(34px, 9vw, 46px);
        line-height: 1.02;
    }

    .apropos-title span {
        font-size: .57em;
    }

    .apropos-title strong {
        font-size: .89em;
    }

    .apropos-text {
        font-size: 18px;
        line-height: 1.28;
    }

    .apropos-text p {
        margin-bottom: 21px;
    }
}

@media (max-width: 480px) {

    .apropos-section {
        padding: 45px 0 15px;

        background-size: 85vw auto;
        background-position: right 55px;
    }

    .apropos-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .apropos-title {
        margin-bottom: 28px;
        font-size: 34px;
    }

    .apropos-text {
        font-size: 17px;
        line-height: 1.3;
    }

    .apropos-text p {
        margin-bottom: 18px;
    }
}

@media (max-width: 380px) {

    .apropos-title {
        font-size: 30px;
    }

    .apropos-text {
        font-size: 16px;
    }
}


/* =========================================================
   SECTION PROGRAMME
========================================================= */

.programme-section {
    width: 100%;

    padding: 65px 0 0;

    background-color: #1B3F82;
    background-image: url('images/bg_prg.png');
    background-repeat: no-repeat;
    background-position: right bottom;

    color: #FCFBF6;

    overflow: hidden;
}

.programme-container {
    max-width: 1200px;
    margin: 0 auto;
}

.programme-section-btn-inscription {
    width: 100%;

    padding-top: 0;
    padding-bottom: 0;

    background: #1B3F82;
}


/* =========================================================
   TITRE PROGRAMME
========================================================= */

.programme-heading {
    margin: 0 0 70px;

    text-align: center;

    font-family: 'CoFo Raffine', serif;
    font-size: 68px;
    font-weight: 300;
    line-height: 1;

    color: #FCFBF6;

    background-image: url('images/bg_titre_prog.png');
    background-repeat: no-repeat;
    background-position: center bottom;
}


/* =========================================================
   BLOCS PROGRAMME
========================================================= */

.programme-bloc {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;
}

.programme-bloc-second {
    margin-top: 65px;
}


/* =========================================================
   TITRES ÉVÉNEMENTS
========================================================= */

.programme-event-title {
    font-family: 'CoFo Raffine', serif;
    font-weight: 300;

    color: #C6A13D;

    line-height: .92;
}

.programme-event-title img {
    display: block;
    max-width: 100%;
    height: auto;
	width:460px;
}

.programme-title-main {
    font-size: 58px;
}

.programme-title-sub {
    font-size: 55px;
}

.business-title .programme-title-main {
	height:56px;
    padding-left: 16px;

    font-size: clamp(28px, 4vw, 52px);

    background: linear-gradient(
        90deg,
        #9B7027 0%,
        #C6A13D 5%,
        #E0BD54 35%,
        #A77B2D 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}

.programme-date {
    margin-top: -4px;
    margin-bottom: 38px;
    padding-left: 16px;

    font-family: 'CoFo Raffine', serif;
    font-size: 31px;
    font-weight: 300;

    color: #FCFBF6;
}


/* =========================================================
   LIGNES PROGRAMME
========================================================= */

.programme-items {
    width: 100%;
}

.programme-item {
    display: flex;
    align-items: baseline;

    width: 100%;

    margin-bottom: 14px;

    font-family: 'Dosis', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
}

.programme-time {
    flex: 0 0 61px;

    font-family: 'CoFo Raffine', serif;
    font-size: 21px;
    font-weight: 300;

    color: #FCFBF6;
}

.programme-separator {
    flex: 0 0 25px;

    font-size: 8px;

    color: #C6A13D;
}

.programme-description {
    flex: 1;

    color: #FCFBF6;
}


/* =========================================================
   INSCRIPTION PROGRAMME
========================================================= */

.programme-inscription {
    display: block;

    width: fit-content;

    margin: 0 auto;

    font-family: 'CoFo Raffine', serif;
    font-size: 56px;
    font-weight: 300;

    color: #C6A13D;

    text-decoration: none;

    transition:
        opacity .2s ease,
        transform .2s ease;
}

.programme-inscription:hover,
.programme-inscription:focus {
    opacity: .8;

    background: linear-gradient(
        90deg,
        #9B7027 0%,
        #C6A13D 5%,
        #E0BD54 35%,
        #A77B2D 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;

    text-decoration: none;

    transform: translateY(-2px);

    outline: none;
}

.programme-arrow {
    display: block;

    width: 300px;

    margin: 0 auto;

    padding-bottom: 20px;
}

.programme-arrow img {
    display: block;

    max-width: 92px;
	margin:0 auto;
    height: auto;
}


/* =========================================================
   PROGRAMME - GRAND ÉCRAN
========================================================= */

@media (min-width: 1400px) {
	.form-row {
	width:65%;
	margin:0 auto;
}

    .programme-section {
        padding-top: 75px;
        padding-bottom: 25px;
    }

    .programme-container {
        max-width: 1250px;
    }

    .programme-heading {
        margin-bottom: 80px;

        font-size: 77px;
        letter-spacing: 4px;
    }

    .programme-bloc {
        max-width: 1100px;
    }

    .programme-title-main {
        font-size: 63px;
    }

    .programme-title-sub {
        font-size: 60px;
    }

    .programme-item {
        font-size: 21px;
    }
}


/* =========================================================
   PROGRAMME - TABLETTE
========================================================= */

@media (max-width: 991px) {

    .programme-section {
        padding: 55px 25px 70px;
    }

    .programme-heading {
        margin-bottom: 55px;
        font-size: 58px;
    }

    .programme-title-main {
        font-size: 48px;
    }

    .programme-title-sub {
        font-size: 46px;
    }

    .business-title .programme-title-main {
        font-size: 44px;
    }

    .programme-date {
        margin-bottom: 32px;
        font-size: 27px;
    }

    .programme-item {
        margin-bottom: 12px;
        font-size: 18px;
    }

    .programme-time {
        flex-basis: 75px;
        font-size: 19px;
    }
}


/* =========================================================
   PROGRAMME - MOBILE
========================================================= */

@media (max-width: 767px) {

    .programme-section {
        padding: 45px 18px 60px;
    }

    .programme-heading {
        margin-bottom: 45px;
        font-size: 46px;
    }

    .programme-bloc-second {
        margin-top: 50px;
    }

    .programme-title-main {
        font-size: 37px;
        line-height: .95;
    }

    .programme-title-sub {
        font-size: 35px;
    }

    .business-title .programme-title-main {
        font-size: 34px;
        line-height: 1;
    }

    .programme-date {
        margin-top: 10px;
        margin-bottom: 28px;

        font-size: 23px;
    }

    .programme-item {
        margin-bottom: 11px;

        font-size: 16px;
        line-height: 1.2;
    }

    .programme-time {
        flex: 0 0 62px;
        font-size: 17px;
    }

    .programme-separator {
        flex: 0 0 17px;
        font-size: 6px;
    }

    .programme-inscription {
        font-size: 29px;
    }

    .programme-event-title img {
        width: 280px;
    }
}

@media (max-width: 480px) {

    .programme-section {
        padding-right: 14px;
        padding-left: 14px;
    }

    .programme-heading {
        font-size: 40px;
    }

    .programme-title-main {
        font-size: 31px;
    }

    .programme-title-sub {
        font-size: 30px;
    }

    .business-title .programme-title-main {
        font-size: 29px;
    }

    .programme-date {
        font-size: 20px;
    }

    .programme-item {
        font-size: 15px;
    }

    .programme-time {
        flex-basis: 57px;
        font-size: 16px;
    }

    .programme-separator {
        flex-basis: 14px;
    }

    .programme-inscription {
        font-size: 27px;
    }

    .programme-event-title img {
        width: 280px;
    }
}


/* =========================================================
   FORMULAIRE D'INSCRIPTION
========================================================= */

.inscription-section {
    width: 100%;
    min-height: 100vh;

    padding: 25px 0 35px;

    background: #FCFBF6;

    color: #1B3F82;
}

.inscription-container {
    max-width: 1170px;

    margin: 0 auto;
}


/* =========================================================
   TITRE INSCRIPTION
========================================================= */

.inscription-title {
    margin: 0 0 50px;

    text-align: center;

    font-family: 'CoFo Raffine', serif;
    font-size: 53px;
    font-weight: 300;
    line-height: .82;

    letter-spacing: 2px;

    color: #B08A3C;
}

.inscription-title span {
    display: block;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.inscription-intro {
    max-width: 1150px;

    margin: 0 auto 20px;

    text-align: center;

    font-family: 'Dosis', sans-serif;
    font-size: 21px;
    font-weight: 300;
    line-height: 1.18;

    color: #1B3F82;
}


/* =========================================================
   FORMULAIRE
========================================================= */

.inscription-form {
    width: 100%;
}

.form-row {
    display: flex;

    gap: 20px;

    margin-bottom: 6px;
}

.form-group-custom {
    position: relative;

    width: 50%;

    margin-bottom: 18px;
}


/* =========================================================
   LABELS
========================================================= */

.form-group-custom > label {
    display: block;

    margin: 0 0 2px 8px;
    padding: 0;

    font-family: 'CoFo Raffine', serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;

    color: #B08A3C;
}

.form-group-custom label.no-bottom-margin {
    margin: 0 0 4px 8px;
}

.form-group-custom label sup {
    font-family: 'Dosis', sans-serif;
    font-size: 9px;

    color: #B08A3C;
}
.text-jour {
	margin-top:-10px;
}

/* =========================================================
   INPUTS
========================================================= */

.form-group-custom input,
.form-group-custom select {
    width: 95%;
    height: 36px;

    margin-top: 0 !important;
    padding: 3px 10px;

    border: 2px solid #B08A3C;
    border-left: 5px solid #B08A3C;
    border-right: 5px solid #B08A3C;
    border-radius: 10px;

    background: #FCFBF6;

    font-family: 'CoFo Raffine', serif;
    font-size: 18px;
    font-weight: 300;

    color: #B08A3C;

    outline: none;

    transition:
        box-shadow .2s ease,
        border-color .2s ease;
}

.form-group-custom input::placeholder {
    color: #B08A3C;
    opacity: .75;
}

.form-group-custom input:focus,
.form-group-custom select:focus {
    border-color: #1B3F82;

    box-shadow:
        0 0 0 2px rgba(27, 63, 130, .08);
}


/* =========================================================
   LISTE PAYS PERSONNALISÉE
========================================================= */

.custom-select {
    position: relative;

    width: 95%;
    height: 36px;

    margin-top: 0 !important;

    font-family: 'CoFo Raffine', serif;
    font-size: 18px;
    font-weight: 300;

    color: #B08A3C;
}

.custom-select-selected {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    height: 36px;

    padding: 3px 35px 3px 10px;

    border: 2px solid #B08A3C;
    border-left: 5px solid #B08A3C;
    border-right: 5px solid #B08A3C;
    border-radius: 10px;

    background: #FCFBF6;
}

.custom-select-selected::after {
    content: "";

    position: absolute;

    top: 12px;
    right: 10px;

    width: 0;
    height: 0;

    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #B08A3C;

    pointer-events: none;
}

.custom-select-options {
    display: none;

    position: absolute;

    top: 40px;
    left: 0;

    width: 100%;
    max-height: 250px;

    overflow-y: auto;

    background: #FCFBF6;

    border: 2px solid #B08A3C;
    border-radius: 10px;

    z-index: 99999;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, .15);
}

.custom-select.open .custom-select-options {
    display: block;
}

.custom-option {
    padding: 7px 12px;

    font-family: 'CoFo Raffine', serif;
    font-size: 18px;
    font-weight: 300;

    color: #B08A3C;
    background: #FCFBF6;

    transition:
        background .15s ease,
        color .15s ease;
}

.custom-option:hover {
    background: #1B3F82;
    color: #FCFBF6;
}

.custom-select.open .custom-select-selected {
    border-color: #1B3F82;

    box-shadow:
        0 0 0 2px rgba(27, 63, 130, .08);
}


/* =========================================================
   DATES
========================================================= */

.jours-inscription {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 25px;

    margin-top: 27px;
}

.jour-option {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 21px;

    margin: 0;
    padding: 0;

    font-family: 'Dosis', sans-serif;
    font-size: 19px;
    font-weight: 300;
    line-height: 18px;

    color: #1B3F82;

    white-space: nowrap;
}


/* =========================================================
   RADIO NATIF
========================================================= */

.jour-option input[type="radio"] {
    position: absolute;

    width: 1px;
    height: 1px;

    margin: 0;
    padding: 0;

    opacity: 0;
    pointer-events: none;
}


/* =========================================================
   CASE PERSONNALISÉE
========================================================= */

.custom-checkbox {
    position: relative;

    display: block;

    width: 18px;
    height: 18px;
	top:-11px;

    min-width: 18px;
    min-height: 18px;

    max-width: 18px;
    max-height: 18px;

    flex: 0 0 18px;

    margin: 11px 8px 0 0;
    padding: 0;

    line-height: 0;
}

.custom-checkbox .checkbox-vide {
    position: absolute;

    display: block;

    top: 0;
    left: 0;

    width: 18px;
    height: 18px;

    min-width: 18px;
    min-height: 18px;

    max-width: 18px;
    max-height: 18px;

    margin: 0;
    padding: 0;

    border: 0;

    object-fit: fill;

    pointer-events: none;
}

.custom-checkbox .checkbox-coche {
    position: absolute;

    display: none;

    top: 2px;
    left: -10px;

    width: 38px;
    height: auto;

    margin: 0;
    padding: 0;

    z-index: 10;

    pointer-events: none;
}

.jour-option.selected
.custom-checkbox
.checkbox-coche {
    display: block;
}


/* =========================================================
   VALIDATION
========================================================= */

.form-group-custom.validation-error > label {
    color: #C62828 !important;
}

.form-group-custom.validation-error input,
.form-group-custom.validation-error select,
.form-group-custom.validation-error .custom-select-selected {
    border-color: #C62828 !important;
    border-left-color: #C62828 !important;
    border-right-color: #C62828 !important;
}

.jours-inscription.validation-error .jour-option {
    color: #C62828 !important;
}

.jours-inscription.validation-error .checkbox-vide {
    filter:
        sepia(1)
        saturate(8)
        hue-rotate(320deg);
}


/* =========================================================
   BOUTON ENVOYER
========================================================= */

.btn-envoyer {
    display: block;

    width: 150px;
    height: 40px;

    margin: 24px auto 0;
    padding: 0;

    background: #FCFBF6;

    border: 2px solid #B08A3C;
    border-left: 5px solid #B08A3C;
    border-right: 5px solid #B08A3C;
    border-radius: 10px;

    font-family: 'CoFo Raffine', serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 26px;

    color: #B08A3C;

    transition: all .2s ease;
}

.btn-envoyer:hover,
.btn-envoyer:focus {
    background: #B08A3C;
    color: #FCFBF6;

    outline: none;
}


/* =========================================================
   NOTE CHAMPS OBLIGATOIRES
========================================================= */

.champs-obligatoires {
    margin-top: 14px;

    font-family: 'Dosis', sans-serif;
    font-size: 8px;

    color: #1B3F82;
}


/* =========================================================
   MESSAGE ERREUR
========================================================= */

.validation-message {
    display: none;

    margin-top: 6px;

    font-family: 'Dosis', sans-serif;
    font-size: 13px;

    color: #C62828;
}

.validation-message.visible {
    display: block;
}


/* =========================================================
   FORMULAIRE - TABLETTE
========================================================= */

@media (max-width: 767px) {

    .inscription-section {
        padding: 25px 15px 35px;
    }

    .inscription-container {
        max-width: 600px;
    }

    .inscription-title {
        font-size: 45px;
    }

    .inscription-intro {
        font-size: 13px;
    }

    .form-row {
        gap: 12px;
    }

    .jours-inscription {
        gap: 15px;
    }

    .jour-option {
        font-size: 12px;
    }
}


/* =========================================================
   FORMULAIRE - MOBILE
========================================================= */

@media (max-width: 600px) {

    .inscription-section {
        padding: 25px 15px 35px;
    }

    .inscription-title {
        margin-bottom: 18px;

        font-size: 39px;
    }

    .inscription-intro {
        font-size: 12px;
        line-height: 1.25;
    }

    .form-row {
        display: block;

        margin-bottom: 0;
    }

    .form-group-custom {
        width: 100%;
        margin-bottom: 10px;
    }

    .form-group-custom input,
    .form-group-custom select,
    .custom-select {
        width: 100%;
    }

    .jours-inscription {
        display: block;

        margin-top: 20px;
    }

    .jour-option {
        display: flex;

        width: fit-content;
        min-height: 18px;

        margin-bottom: 10px;

        white-space: normal;
    }

    .btn-envoyer {
        margin-top: 20px;
    }
}
/* =========================================================
   FORMULAIRE EN COURS D'ENVOI
========================================================= */

.inscription-form.form-envoi {

    opacity: 0.55;

    pointer-events: none;

}


/* =========================================================
   MESSAGE AJAX
========================================================= */

.ajax-message {

    margin-bottom: 30px;

    padding: 18px 25px;

    font-family: 'Dosis', sans-serif;

    font-size: 20px;

    line-height: 1.5;

}


/* SUCCÈS */

.ajax-message-success {

    background: #e8f6ed;

    border: 1px solid #a8d5b5;

    color: #236b3b;

}


/* ERREUR */

.ajax-message-danger {

    background: #fbeaea;

    border: 1px solid #e0aaaa;

    color: #8b2020;

}


/* =========================================================
   MESSAGE FINAL
========================================================= */

.inscription-success {

    text-align: center;

    padding: 60px 20px;

}


.inscription-success h2 {

    font-family: 'Dosis', sans-serif;

    font-size: 38px;

    margin-bottom: 25px;

}


.inscription-success p {

    font-family: 'Dosis', sans-serif;

    font-size: 24px;

    line-height: 1.6;

}
.inscription-message {
    margin: 25px auto;
    padding: 20px 25px;
    text-align: center;
    font-size: 20px;
    border-radius: 4px;
}

.inscription-message-loading {
    background: #f5f5f5;
    color: #1B3F82;
}

.inscription-message-success {
    background: #e8f7ed;
    color: #287a3d;
}

.inscription-message-error {
    background: #fbeaea;
    color: #a94442;
}
/* =========================================================
   MESSAGE DE CONFIRMATION
========================================================= */

.confirmation-wrapper {
    width: 100%;
    min-height: 608px;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    background: #faf9f4;

    padding: 25px 20px 60px;

    box-sizing: border-box;
}


.confirmation-content {
    width: 100%;
    max-width: 644px;

    text-align: center;

    margin: 0 auto;
}


/* =========================================================
   LOGO
========================================================= */

.confirmation-logo {
    margin-bottom: 75px;
}


.confirmation-logo img {
    max-width: 190px;
    width: auto;
    height: auto;
}


/* =========================================================
   TEXTE
========================================================= */

.confirmation-text {
    font-family: 'Dosis', sans-serif;

    font-size: 29px;

    font-weight: 300;

    color: #1B3F82;

    line-height: 1.3;

    margin-bottom: 35px;
}


/* =========================================================
   MERCI
========================================================= */

.confirmation-thanks {
    font-family: 'CoFo Raffine', serif;

    font-size: 76px;

    line-height: 1;

    color: #C4932A;

    margin-bottom: 35px;
}


/* =========================================================
   TEXTE DU BAS
========================================================= */

.confirmation-text-bottom {
    margin-bottom: 45px;
}


/* =========================================================
   TRAIT DÉCORATIF
========================================================= */

.confirmation-separator {
    width: 100%;

    display: flex;

    justify-content: center;

    margin-top: 10px;
}


.confirmation-separator span {
    display: block;

    width: 195px;

    height: 2px;

    background: linear-gradient(
        to right,
        transparent,
        #C4932A 20%,
        #C4932A 80%,
        transparent
    );

    position: relative;
}


.confirmation-separator span::before,
.confirmation-separator span::after {

    content: "";

    position: absolute;

    top: 50%;

    width: 4px;

    height: 4px;

    background: #C4932A;

    border-radius: 50%;

    transform: translateY(-50%);
}


.confirmation-separator span::before {
    left: 0;
}


.confirmation-separator span::after {
    right: 0;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .confirmation-wrapper {
        min-height: 100vh;

        padding: 20px 15px 50px;
    }


    .confirmation-logo {
        margin-bottom: 55px;
    }


    .confirmation-logo img {
        max-width: 150px;
    }


    .confirmation-text {
        font-size: 24px;
    }


    .confirmation-thanks {
        font-size: 60px;
    }


    .confirmation-separator span {
        width: 150px;
    }

}
/* =========================================================
   MESSAGE DE CONFIRMATION
========================================================= */

.confirmation-wrapper {
    width: 100%;
    min-height: 608px;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    background: #faf9f4;

    padding: 25px 20px 60px;

    box-sizing: border-box;
}


/* =========================================================
   CONTENU
========================================================= */

.confirmation-content {
    width: 100%;
    max-width: 644px;

    margin: 0 auto;

    text-align: center;

    box-sizing: border-box;
}


/* =========================================================
   LOGO
========================================================= */

.confirmation-logo {
    width: 100%;

    margin: 0 0 75px;

    text-align: center;
}


.confirmation-logo img {
    display: inline-block;

    width: auto;
    max-width: 190px;
    height: auto;

    vertical-align: middle;
}


/* =========================================================
   TEXTE PRINCIPAL
========================================================= */

.confirmation-text {
    margin: 0 0 35px;

    font-family: 'Dosis', sans-serif;

    font-size: 29px;
    font-weight: 300;

    line-height: 1.3;

    color: #1B3F82;

    text-align: center;
}


/* =========================================================
   MERCI
========================================================= */

.confirmation-thanks {
    margin: 0 0 35px;

    font-family: 'CoFo Raffine', serif;

    font-size: 76px;
    font-weight: normal;

    line-height: 1;

    color: #C4932A;

    text-align: center;
}


/* =========================================================
   TEXTE DU BAS
========================================================= */

.confirmation-text-bottom {
    margin: 0 0 45px;

    font-family: 'Dosis', sans-serif;

    font-size: 29px;
    font-weight: 300;

    line-height: 1.3;

    color: #1B3F82;

    text-align: center;
}


/* =========================================================
   TRAIT DÉCORATIF
========================================================= */

.confirmation-separator {
    width: 100%;

    display: flex;

    justify-content: center;
    align-items: center;

    margin: 10px 0 0;
}


.confirmation-separator span {
    position: relative;

    display: block;

    width: 195px;
    height: 2px;

    background: linear-gradient(
        to right,
        transparent 0%,
        #C4932A 20%,
        #C4932A 80%,
        transparent 100%
    );
}


/* =========================================================
   PETITS POINTS AUX EXTRÉMITÉS
========================================================= */

.confirmation-separator span::before,
.confirmation-separator span::after {

    content: "";

    position: absolute;

    top: 50%;

    width: 4px;
    height: 4px;

    background: #C4932A;

    border-radius: 50%;

    transform: translateY(-50%);
}


.confirmation-separator span::before {
    left: 0;
}


.confirmation-separator span::after {
    right: 0;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .confirmation-wrapper {
        width: 100%;
        min-height: 100vh;

        padding: 20px 15px 50px;
    }


    .confirmation-content {
        width: 100%;
        max-width: 100%;
    }


    .confirmation-logo {
        margin-bottom: 55px;
    }


    .confirmation-logo img {
        max-width: 150px;
    }


    .confirmation-text,
    .confirmation-text-bottom {
        font-size: 24px;

        line-height: 1.35;
    }


    .confirmation-thanks {
        font-size: 60px;

        margin-bottom: 30px;
    }


    .confirmation-text-bottom {
        margin-bottom: 40px;
    }


    .confirmation-separator span {
        width: 150px;
    }

}


/* =========================================================
   TRÈS PETITS ÉCRANS
========================================================= */

@media (max-width: 400px) {

    .confirmation-wrapper {
        padding-left: 12px;
        padding-right: 12px;
    }


    .confirmation-logo {
        margin-bottom: 45px;
    }


    .confirmation-logo img {
        max-width: 130px;
    }


    .confirmation-text,
    .confirmation-text-bottom {
        font-size: 21px;
    }


    .confirmation-thanks {
        font-size: 52px;
    }


    .confirmation-separator span {
        width: 130px;
    }

}
.trait-fin-confirmation {
	margin-top:30px;
}