* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}



:focus {
    outline: none
}

textarea {
    resize: none
}

input,
textarea,
select,
button {
    font-family: "roboto";
    font-size: 1rem;
    color: #2d2c2c;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none
}

img {
    max-width: 100%;
    vertical-align: middle
}

.wrapper {
    max-width: 600px;
    height: 100vh;
    margin: auto;
    display: flex;
    align-items: center
}

.wrapper .image-holder {
    width: 51%
}

.wrapper form {
    width: 100%
}

.wizard>.steps .current-info,
.wizard>.steps .number {
    display: none
}

#wizard {
    min-height: 500px;
    background: rgb(239, 238, 241);
    padding: 80px 35px 65px;
    margin-top: 10px;
    margin-bottom: 0px;
    border-radius: 5px;
}


.steps {
    margin-bottom: 30px
}

.steps ul {
    display: flex;
    position: relative
}

.steps ul li {
    width: 33%;
    margin-right: 10px
}

.steps ul li a {
    display: inline-block;
    width: 100%;
    height: 7px;
    background: #e6e6e6;
    border-radius: 3.5px
}

.steps ul li.first a,
.steps ul li.checked a {
    background: rgb(253, 126, 20);
    transition: all 0.5s ease
}

.steps ul li.done a {
    background: rgb(158, 234, 71)!important;
    transition: all 0.5s ease
}

.steps ul li.error a {
    background: rgb(234, 25, 56) !important;
    transition: all 0.5s ease
}

.modal-content {
    width: 90%;
    max-width: 500px;
}



h3 {
    font-family: "roboto"
}

.row {
    display: flex;
    flex-direction: row;
}

.col {
    display: flex;
    flex-direction: column;
}

.wrapper-100 {
    width: 100%;
}

.wrapper-75 {
    width: 75%;
}

.wrapper-50 {
    width: 50%;
}

.wrapper-25 {
    width: 25%;
}



.form-row {
    margin-bottom: 1%;
}

.form-row label {
    margin-bottom: 2px;
    display: block
}

.form-row.form-group {
    display: flex
}

.form-row.form-group .form-holder {
    width: 50%;
    margin-right: 21px
}

.form-row.form-group .form-holder:last-child {
    margin-right: 0
}

.form-holder {
    position: relative
}

.form-holder i {
    position: absolute;
    top: 11px;
    right: 19px;
    font-size: 17px;
    color: #999
}



.form-control::-webkit-input-placeholder {
    color: #999;
    font-size: 13px
}

.form-control::-moz-placeholder {
    color: #999;
    font-size: 13px
}

.form-control:-ms-input-placeholder {
    color: #999;
    font-size: 13px
}

.form-control:-moz-placeholder {
    color: #999;
    font-size: 13px
}

textarea.form-control {
    padding-top: 11px;
    padding-bottom: 11px
}

.option {
    color: #999
}

.actions ul {
    display: flex;
    margin-top: 30px;
    justify-content: space-between;
}


.steps ul:before {
    font-size: 22px;
    font-family: 'roboto';
    color: #5e0baf;
    top: -45px;
    position: absolute;
    font-weight: bold;
}


.actions li a {
    padding: 0;
    border: none;
    display: inline-flex;
    height: 51px;
    width: 135px;
    align-items: center;
    border-radius: 3px;
    background: rgb(253, 126, 20);
    cursor: pointer;
    color: #fff !important;
    position: relative;
    padding-left: 41px;
    text-decoration: none;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    font-weight: 400
}

.actions li a:before {
    content: url('../img/fleche_droite.png');
    position: absolute;
    top: 15px;
    right: 21px;
    color: #fff;
    font-family: "roboto";
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.actions li a:hover {
    background: rgba(226, 185, 154, 0.73)
}

.actions li a:hover:before {
    -webkit-animation-name: hvr-icon-wobble-horizontal;
    animation-name: hvr-icon-wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1
}

.actions li[aria-disabled="true"] a {
    display: none
}

.actions li:first-child a {
    background: #e6e6e6;
    padding-left: 48px
}

.actions li:first-child a:before {
    content: url('../img/fleche_gauche.png');
    left: 10%;
}

.actions li:first-child a:hover {
    background: #cccccc
}

.actions li:last-child a {
    padding-left: 29px;
    width: 167px;
    font-weight: 400
}

.actions li:last-child a:before {
    right: 30px
}

.checkbox {
    position: relative
}

.checkbox label {
    padding-left: 21px;
    cursor: pointer;
    color: #999
}

.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer
}

.checkbox input:checked~.checkmark:after {
    display: block
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 12px;
    width: 13px;
    border-radius: 2px;
    background-color: #ebebeb;
    border: 1px solid #ccc;
    font-family: "roboto";
    color: #000;
    font-size: 10px;
    font-weight: bolder
}

.checkmark:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    content: '\f178'
}

.checkbox-circle {
    margin-top: 41px;
    margin-bottom: 46px
}

.checkbox-circle label {
    cursor: pointer;
    padding-left: 26px;
    color: #999;
    display: block;
    margin-bottom: 15px;
    position: relative
}

.checkbox-circle label.active .tooltip {
    display: block
}

.checkbox-circle input {
    position: absolute;
    opacity: 0;
    cursor: pointer
}

.checkbox-circle input:checked~.checkmark:after {
    display: block
}

.checkbox-circle .checkmark {
    position: absolute;
    top: 11px;
    left: 0;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: #ebebeb;
    border: 1px solid #cdcdcd
}

.checkbox-circle .checkmark:after {
    content: "";
    top: 6px;
    left: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #666666;
    position: absolute;
    display: none
}

.checkbox-circle .tooltip {
    padding: 9px 22px;
    background: #f2f2f2;
    line-height: 1.8;
    position: relative;
    margin-top: 16px;
    margin-bottom: 28px;
    display: none
}

.checkbox-circle .tooltip:before {
    content: "";
    border-bottom: 10px solid #f2f2f2;
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
    position: absolute;
    bottom: 100%
}

.product {
    margin-bottom: 33px
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 30px
}

.item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none
}

.item .left {
    display: flex;
    align-items: center
}

.item .thumb {
    display: inline-flex;
    width: 100px;
    height: 90px;
    justify-content: center;
    align-items: center;
    border: 1px solid #f2f2f2
}

.item .purchase {
    display: inline-block;
    margin-left: 21px
}

.item .purchase h6 {
    font-family: "roboto";
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 500
}

.item .purchase h6 a {
    color: #333
}

.item .price {
    font-size: 16px
}

.checkout {
    margin-bottom: 44px
}

.checkout span.heading {
    font-family: "roboto";
    font-weight: 500;
    margin-right: 5px
}

.checkout .subtotal {
    margin-bottom: 18px
}

.checkout .shipping {
    margin-bottom: 19px
}

#wizard select option {
    font-family: "roboto";

}


.checkout .shipping span.heading {
    margin-right: 4px
}

.checkout .total-price {
    font-family: "roboto";
    color: #333;
    font-weight: 700
}

@-webkit-keyframes hvr-icon-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px)
    }

    33.3% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px)
    }

    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px)
    }

    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px)
    }

    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes hvr-icon-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px)
    }

    33.3% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px)
    }

    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px)
    }

    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px)
    }

    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

label {
    font-size: 0.8rem;
    margin-bottom: 0rem;

}




#registration_form section {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.form-title {
    color: #5e0baf;
    font-size: 3vw;
}

.bank-container {
    display: flex;
    width: 100%;
    padding: 0;
    flex-direction: row;
    align-items: center;
}

.bank-container > label {
    float: left;
    width: 25%;
    font-weight: bold;
}

.bank-container .input-container {
    width: 75%;
}

.form-display-inline{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.label-inline {
    float: left;
    width: 25%;
    font-weight: 600;
}

.input-inline-container {
    width: 75%;
}

.bank-radio-container{
    display: flex;
    flex-direction: row;
}

.bank-radio-container > div{
    width: 33%;
    margin-top: 10px
}

.bank-input {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.bank-input .input{
    width: 75%;
}

.bank-input .input input{
    width: 100%;
}

.bank-input label{
    width: 25%;
    float: left;
    font-weight: 600;
}

.form-display-block {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
}

.form-input {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 2%;
}

.form-input-50{
    display: flex;
    flex-direction: row;
    width: 50%;
}

.form-input-50 label{
    width: 25%;
    font-weight: 600;

}

.form-input div.input{
    width: 75%;
}

.form-input div.input input{
    width: 100%;
}

#gender {
    width: 100%;
}

#gender > label {
    width: 12.5%;
    font-weight: 600;
}

#gender .input {
    width: 87.5%;
}

.gender-radio-container {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.gender-radio-container > div{
    width: 33%;
    margin-top: 10px
}

.centre-radio-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
}

.centre-radio-container > div{
    width: 20%;
    margin-top: 10px
}

#_centre {
    width: 100%;
}

#_centre > label {
    width: 12.5%;
    font-weight: 600;
}

#_centre > div {
    display:flex;
    flex-direction: column;
    width: 87.5%
}

.form-input input[type="date"]{
}

.attemps > label {
    float: left;
    font-weight: 600;
}

.attemps  .input{
    margin-left: 2%;
    max-width: 200px;
}

.parcours {
    width: 100%;
    padding-left: 20px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.bac-container {
    gap: 2%;
}

.form-bac {
     display: flex;
     flex-direction: row;
     width: 100%;
     gap:1%;
    align-items: center;
 }

.bac-container label{
    font-weight: 600;
}

.bac-item {
    display: flex;
    flex-direction: column;
    width: 23%;
    margin-bottom: 2%;
}

.bac-item.annee-item {
    width: 31%;
}

#annee-bac-container select{
   width: 150px;
}

#annee-bac-container label{
    flex-grow: 1;
}

#lang {
    width: 100%;
    gap: 20px;
}

#lang > label {
    font-weight: 600;
}

#lang  .input {
   width: 300px;
}

.lang-radio-container {
    display: flex;
    flex-direction: row;
    width: 100%;

}

.lang-radio-container > div {
    width: 50%;

}

.input-group {
    display: flex; /* Utiliser flexbox pour aligner les éléments */
    align-items: center; /* Aligner verticalement au centre */
    margin-bottom: 10px; /* Espacement entre les groupes d'input */
}

.input-group label {
    margin-right: 10px; /* Espacement à droite du label */
    width: 150px; /* Largeur fixe pour le label */
    font-weight: bold; /* Mettre le label en gras */
}

.input-group input {
    width: 250px; /* Largeur fixe pour les champs d'entrée */
    padding: 8px; /* Espacement interne pour le champ de texte */
    border: 1px solid #ccc; /* Bordure pour le champ de texte */
    border-radius: 4px; /* Coins arrondis pour le champ de texte */
}




.nb {
    text-align: justify;
    font-size: 2vw;
    margin-top: 0px;
    font-weight: bold;
}

.choice_parcours_step_title {
    width: 100%;
    float: left;
    padding-left: 3%;
    font-weight: bold;
    text-align: left;
    margin-bottom: 10px;
    margin-top: 10px;

}

.parcours-radio-container {
    display: flex;
    flex-direction: row;
    width: 80%;
}



.radio-parcours-label {
    display: inline-block;
    width: 20%;
    float: left;
    font-weight: bold;
    font-size: 14px;
    margin-left: 40px;
}

#btn_show_confirm_modal {
    position: absolute;
    right: 50px;
    bottom: 75px;
    width: 100px;
    height: 50px;
    padding-top: 10px;
    color: white;
}


.wizard_modal {
    background-color: #ffffff;
    line-height: 30px;
    padding-left: 10px;
    padding-right: 10px;
}

.wizard_modal_message {
    font-size: 18px;
    color: #241a26
}


@media (max-width: 1500px) {
    .wrapper {
        height: auto
    }
}



@media (max-width: 1199px) {
    .wrapper {
        height: 100vh
    }

    #wizard {
        margin-right: 40px;
        min-height: 550px;
        padding-left: 30px;
        padding-right: 30px
    }

    .navbar-light .navbar-nav .nav-link{
        font-size: 18px
    }

    .navbar-light .navbar-nav .btn-login{
        font-size: 1rem
    }

}

@media (max-width: 1071px){


    .wrapper {
        justify-content: center
    }

    .wrapper .image-holder {
        display: none
    }

    .wrapper form {
        width: 60%
    }

    #wizard {
        margin-right: 0;
        padding-left: 40px;
        padding-right: 40px
    }

    .radio-item {
        margin-bottom: 10px;
    }

    .radio-item span{
        font-size: 0.8rem
    }

    td.cursus_annee {
        font-size: 13px !important;
        text-align: center;
    }
    .cursus_annee {
        font-size: 13px !important;
        text-align: center;
    }

    .table-responsive {
        margin-left: -1%;
        margin-top: 3%;
    }
}

@media (max-width: 900px) {
    .bac-container {
        flex-wrap: wrap !important;
    }

    .bac-item {
        width: 49%;
    }

    .bac-item.annee-item {
        width: 49%;
    }
}

@media (max-width: 860px) {

}

@media (max-width: 767px) {
    .wrapper {
        height: auto;
        display: block
    }

    .wrapper .image-holder {
        width: 100%;
        display: block
    }

    .wrapper form {
        width: 100%
    }

    #wizard {
        min-height: unset;
        padding: 70px 20px 40px
    }

    .form-row.form-group {
        display: block
    }

    .form-row.form-group .form-holder {
        width: 100%;
        margin-right: 0;
        margin-bottom: 24px
    }

    .item .purchase {
        margin-left: 11px
    }

    .form-title {
        color: blueviolet;
        font-size: 4vw;
    }

    #_centre {
        flex-direction: column;
    }

    #_centre > label {
        width: 100%;
    }

    #_centre > div {
        width: 100%;
    }

    #btn_show_confirm_modal {

        bottom: 48px;
    }

}

@media (max-width: 700px) {
    .form-input-50, .bank-input, .bank-container {
        flex-direction: column;
    }

    .form-input-50 label{
       width: 100%;
    }

    .form-input-50 div.input {
        width: 100%;
    }

    .form-input-50 input {
        width: 100%;
    }

    .bank-input .input {
        width: 100%;
    }

    .bank-input input {
        width: 100%;
    }

    .bank-input label {
        width: 100%;
    }

    .bank-container > label {
        width: 100%;
    }

    .bank-container .input-container {
        width: 100%;
    }

    .radio-item span {
        font-size: 11px;
    }


}

@media (max-width: 600px) {
    .steps ul:before {
        font-size: 0.9rem
    }

    .form-bac {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-bac select {
       width: 100%;
    }

    .table-responsive {
        margin-left: -3%;
        margin-top: 3%;
    }

    #annee-bac-container select{
        width: 100% !important
    }

    .centre-radio-container > div{
        width: 25%;
        margin-top: 5px
    }


}

@media (max-width: 500px) {

    .steps ul:before {
        font-size: 0.8rem !important
    }

    .bank-container .input-container {
        margin-left: 50%
    }

    .bank-radio-container{
        flex-direction: column;
    }

    .bank-radio-container > div{
        width: 100%;
        margin-top: 5px
    }

    .table-responsive {
        margin-left: -5%;
        margin-top: 5%;
    }

    .actions ul {

    }

    .actions ul li a[href = "#next"] {
        margin-bottom: 20px !important;
    }

    #btn_show_confirm_modal {
        bottom: 100px;
        text-align: center;
        margin-bottom: 20px !important;
    }

    .actions li:first-child a:before {
        left: -50%;
    }

    .centre-radio-container > div{
        width: 33%;
    }
}

@media (max-width: 435px) {

    .steps ul:before {
        font-size: 60%
    }

    .form-input {
        flex-direction: column;
        gap: 2vw;
     }

    .form-input-50{
        width: 100%;
    }

    .bac-container {
        display: flex;
        flex-direction: column;
    }

    .bac-item{
        width: 100%;
    }

    .form-bac {
        width: 100%;
    }

    .choice_parcours_step_title{
        text-align: center;
    }

    #annee-bac-container{
        width: 100%;
    }

    .bac-item.annee-item {
        width: 100%;
    }

    #lang, .attemps {
        flex-direction: column;
        align-items: flex-start;
        gap: 4%
    }

    #lang  .input {
        width: 100%;
    }

    #lang > label {
        font-weight: 600;
    }

    .attemps  .input{
        margin-left: 0%;
        width: 100%;
        max-width: 100%;
    }

    .attemps  .input select{
        width: 100%;
    }

}

.card {
    border: 0;
    border-radius: 0px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.03);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.03);
    -webkit-transition: .5s;
    transition: .5s
}

.padding {
    padding: 3rem !important
}

h5.card-title {
    font-size: 15px
}

.fw-400 {
    font-weight: 400 !important
}

.card-title {
    font-family: 'roboto', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 0;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(77, 82, 89, 0.07)
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem
}

.form-group {
    margin-bottom: 1rem
}



.form-control {
    border-color: #ebebeb;
    border-radius: 2px;
    color: #0641a1;
    padding: 5px 12px;
    font-size: 14px;
    line-height: inherit;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear
}

.card-body>*:last-child {
    margin-bottom: 0
}

.btn-primary {
    background-color: #33cabb;
    border-color: #33cabb;
    color: #fff
}

.btn-bold {
    font-family: 'roboto', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px
}

.btn-primary:hover {
    background-color: #52d3c7;
    border-color: #52d3c7;
    color: #fff
}

.btn:hover {
    cursor: pointer
}

.form-control:focus {
    border-color: rgba(210, 116, 210, 0.8);
    color: #4d5259;
    -webkit-box-shadow: 0 0 0 0.1rem rgba(51, 202, 187, 0);
    box-shadow: 0 0 0 0.1rem rgba(101, 69, 235, 0)
}

.custom-radio {
    cursor: pointer
}

.custom-control {
    display: -webkit-box;
    display: flex;
    min-width: 18px
}

.heading {
    color: #6645eb
}

.total {
    float: right;
    color: #6645eb
}

svg {
    width: 100px;
    display: block;
    margin: 40px auto 0
}

.path {
    stroke-dasharray: 1000;

stroke-dashoffset: 0 &.circle {
                          -webkit-animation: dash .9s ease-in-out;
                          animation: dash .9s ease-in-out
                      }

&.line {
     stroke-dashoffset: 1000;
     -webkit-animation: dash .9s .35s ease-in-out forwards;
     animation: dash .9s .35s ease-in-out forwards
 }

&.check {
     stroke-dashoffset: -100;
     -webkit-animation: dash-check .9s .35s ease-in-out forwards;
     animation: dash-check .9s .35s ease-in-out forwards
 }
}

p {
    text-align: center;
    margin: 20px 0 60px;
    font-size: 1.25em;

&.success {
     color: #73AF55
 }

&.error {
     color: #D06079
 }
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000
    }

    100% {
        stroke-dashoffset: 0
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000
    }

    100% {
        stroke-dashoffset: 0
    }
}

@-webkit-keyframes dash-check {
    0% {
        stroke-dashoffset: -100
    }

    100% {
        stroke-dashoffset: 900
    }
}

@keyframes dash-check {
    0% {
        stroke-dashoffset: -100
    }

    100% {
        stroke-dashoffset: 900
    }
}