/* class générales */
:root {
    --white-bg-color : #FFF;
    --main-text-color : #FFF;
    --big-black:#141414;
    --big-blue:#13315C;
    --big-gray:#707070;
    --big-red:#E82934;
}

p {
    color: var(--big-black);
}
span {
    color: var(--big-black) !important;
    /* font-size: 7vw !important; */
}

h2 {
    color: #141414;
    font-size: 35px;
}

/*a {*/
    /*color: rgb(0, 0, 0);*/
/*}*/
/*a:hover {*/
    /*color: rgb(0, 0, 0);*/
/*}*/
.bg_dark {
    background-color: var(--big-black);
}
.bg_init {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: var(--main-text-color);
    background-color: var(--white-bg-color);
    min-height: 400px;
    /* padding: 0 20%; */
}

.img_responsive {
    width: 100%;
}
.font_size_14 {
    font-size: 14px !important;
}
.font_size_16 {
    font-size: 16px !important;
}
.font_size_18 {
    font-size: 18px !important;
}
.font_size_20 {
    font-size: 20px !important;
}
.font_size_29 {
    font-size: 29px !important;
}
.black_txt {
    color: black !important;
}
.white_txt {
    color: var(--main-text-color) !important;
}
.h1_40px_none {
    text-transform: none !important;
    font-size: 40px;
    margin-top: 60px;
}
.blue_color {
    color: #263472 !important;
}
.margin_top_60 {
    margin-top: 60px;
}
.display_none {
    display: none !important;
}
.display_flex {
    display: flex !important;
}
.no_underline:hover {
    text-decoration: none !important;
}
.display_none_750px {
    display: flex;
}
@media screen and (max-width: 768px) {
    .display_none_750px {
        display: none;
    }
    .h1_40px_none {
        font-size: 30px;
    }
    .button_commander {
        padding: auto;
    }
    .img_aix_marseille {
        height: auto !important;
    }

}
@media screen and (max-width: 1000px) {
    .camion_course {
        height: auto !important;
    }
}
/* navbar */
.custom_navbar {
    background-color: white;
    width: 100%;
    height: 100px;
}
.custom_navbar a {
    color: black;
}

.text_navbar {
    font-size: 16px;
    margin-right: 10%;
}
.button_navbar_no_hover {
    background-color: #13315C;
    color: white;
    width: 150px;
    /* min-width: 110px; */

    height: 50px;
}
.button_navbar_no_hover p {
    color: white;
}
.button_navbar_no_hover:hover {
    text-decoration: none;
}
.button_navbar {
    background-color: #13315C;
    color: white;
    width: 150px;
    /* min-width: 110px; */
    height: 50px;
}

@media screen and (max-width: 768px) {
    .button_navbar_no_hover {
        width: auto;
    }

}

.button_navbar p {
    color: white;
}
.button_navbar:hover {
    text-decoration: none;
    padding-left: 20px;
}
#hover_acces_but {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
#hover_acces_but i {
    opacity: 0;
    position: absolute;
    right: 166px;
    font-size: 16px;
    color: white;
    transition: all 0.3s ease-out;
    /* top: 15px; */
}
#hover_acces_but:hover {
    width: 185px;
}
#hover_acces_but:hover i {
    opacity: 1;
}

.logo_mini_nav {
    position: absolute;
    top: 14px;
}
.disconnection {
    display: flex;
}
.btn_disconnection {
    display: none;
}
.btn_nav_checkout {
    background-color: var(--big-blue);
    color: #ffffff;
    border: 0px;
    height: 40px;
    border-radius: 3px;
    padding: 12px;
    font-size: 15px;
}
.no_hover:hover {
    color: var(--white-bg-color);
}

@media screen and (max-width: 1500px) {
    .disconnection {
        display: none;
    }
    .btn_disconnection {
        display: flex;
    }
}
/* sous menu style */

.li_nav {
    padding:10px;
}
.black_txt_burger a {
    color: #141414;
}
nav ul li ul { display:none; } /*Rend le menu déroulant caché par défaut*/
/* Affiche la dropNav au survol de la souris avec la class .drop */
nav ul li:hover ul { 
    z-index:99999;
    display:list-item !important;
    position:absolute;
}

nav ul li:hover ul li {
    float:none;
}

/* sous menu mini nav bar */
.mini_nav {
    background-color: var(--white-bg-color);
    color: var(--main-text-color);
    font-size: 16px;
}
.nav-link:hover {
    text-decoration: underline;
}

.tel_navbar {
    background-color: white;
    border-left: transparent;
    border-right: transparent;
    border-top: 1px solid black;
    /* border-bottom: 1px solid black; */
    border-radius: 0%;
    font-size: 16px;
}

.tel_navbar_bot {
    background-color: white;
    border-left: transparent;
    border-right: transparent;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    border-radius: 0%;
    font-size: 16px;
}
/* fin navbar */

/* footer */
.main_footer {
    background-color: #E8E8E8;
}
.main_footer a:hover {
    color: black;
}
.footer_copyright {
    background-color: #EBEBEB;
    height: 80px;
}
.to_the_top {
    position: fixed; /* Fixed/sticky position */
    display: none;
    color: var(--big-black);
    bottom: 35px;
    right: 38px;
    z-index: 999;
    outline: none;
    border: 4px solid var(--big-blue);
    background-color: transparent;
    cursor: pointer;
    padding: 11px;
    border-radius: 15px;
    transition: all .2s ease-in-out;
}
.to_the_top:hover {
    transform: scale(1.1);
}
/* fin footer */

/* class spécifiques à des pages */

/* index */
.bg_accueil {
    background-image: url(/webroot/img/assets/bg_scooter.png);
}

.button_commander {
    height: 50px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 5px 40px 5px 40px;
    font-size: 16px;
    background-color: #E71E2A;
    color: var(--main-text-color);
    border-radius: 6px;
    box-shadow: 1px 1px 2px rgb(0, 0, 0);
    -moz-box-shadow: 1px 1px 2px rgb(0, 0, 0);
    -webkit-box-shadow: 1px 1px 2px rgb(0, 0, 0);
    -khtml-box-shadow: 1px 1px 2px rgb(0, 0, 0);
    transition: transform .2s ease-in-out; /* Animation */
}
.button_commander:hover {
    color: var(--main-text-color) !important;
    text-decoration: none;
    transform: scale(0.85);
}

#font_aix_en_prov {
    bottom: 0;
    position: absolute;
    font-size: 18px;
    left: 80%;
}

ul {
    list-style-type: square;
}

.animation_bg {
    background-color: var(--big-blue);
    position: absolute;
    left: 0px;
    width: 10%;
    height: 70px;
    bottom: 0;
    opacity: 0;
    z-index: 11;
    transition: 0.5s ease-in-out;
}
.img_effect:hover span {
    transition-duration: 0.6s;
    width: 100%;
    opacity: 1;
}

.img_effect:hover {
    transition-duration: 0.6s;
    cursor:pointer;
    z-index: 5;
}
.img_effect:hover img {
    transition: 0.5s ease-in-out;
    filter: grayscale(60%);
    border-radius: 10px;
}

.img_text {
    position: absolute;
    opacity:0;
    z-index: 999;
    transition-duration: 0.4s;
    bottom: 15px;
    left: 10px;
    font-size: 20px;
    padding: 5px;
    /* border: 1px solid black; */
}

.img_text_articles {
    position: absolute;
    opacity:1;
    z-index: 999;
    transition-duration: 0.4s;
    /* bottom: 15px; */
    /* left: 10px; */
    font-size: 20px;
    padding: 5px;
    /* border: 1px solid black; */
}

.img_effect:hover .img_text {
    opacity:1;
}
/* .img_effect:hover .img_text_articles {
    opacity:1;
} */
/* page contact */
.contact_input {
    background-color: transparent;
    color: #000000;
    border-top: transparent; border-right: transparent; border-left: transparent;
    border-bottom-color: var(--big-gray);
    border-bottom-width: 2px;
    border-radius: 0rem;
    box-shadow: inset 0px 0px 0px 0px;
}
.contact_input:hover {
    border-bottom-color: var(--big-blue);
}
.contact_input:focus {
    border-bottom-color: var(--big-blue);
}
#contact_input {
    background-color: transparent;
    color: #000000;
    border-top: transparent; border-right: transparent; border-left: transparent;
    border-bottom-color: var(--big-gray);
    border-bottom-width: 2px;
    border-radius: 0rem;
    box-shadow: inset 0px 0px 0px 0px;
    font-size: 14px !important;
}
#contact_input:hover {
    border-bottom-color: var(--big-blue);
}
#contact_input:focus {
    border-bottom-color: var(--big-blue);
}
.form-gp {
    resize: vertical;
    width: 100%;
    margin-bottom: 5%;
}
.submit_btn {
    background-color: var(--big-blue);
    border-color: var(--big-blue);
    color: #ffffff;
    border: 0px solid #303030;
    height: 50px;
    border-radius: 9px;
    font-size: 18px;
}

.input_textarea {
    resize: none;
}
.contact_carre {
    color: var(--big-black);
    overflow: hidden;
    font-size: 2rem;
    border: 3px solid var(--big-blue);
}
div.contact_carre>ul>li {
    padding-left: 0%;
    padding-right: 0%;
    padding-top: 5%;
}
div.contact_carre>ul>li>p {
    padding-left: 0%;
    padding-right: 0%;
}
.bg_etude_list-item {
    background-color: transparent;
    border: none !important;
}
.icon_size_30 {
    font-size: 30px;
}
/* page contact end */

@media screen and (max-width: 1000px) {
    .contact_carre {
        font-size: 16px;
    }
    .icone_size_30 {
        width: 20px;
    }
}
/* média queries */
@media screen and (max-width: 768px) {
    /* .bg_init {
        padding: 0;
    } */
    .button_commander {
        font-size: 14px;
        padding: 5px 20px 5px 20px;
    }
    .img_text {
        font-size: 15px;
    }
    .font_size_20 {
        font-size: 18px;
    }
    .font_size_29 {
        font-size: 24px;
    }
    /* .interventions_resp {
        padding: 5% !important;
    } */
    #font_aix_en_prov {
        bottom: -35px;
        left: 65%;
    }
    .submit_btn {
        font-size: 16px;
    }
}

/* responsives des pages */
/* .interventions_resp {
    padding-left: 10vh;
} */

/* page garanties */
.btn_accordeon:focus {
    box-shadow: none;
}

/* page garanties end */

/* page actualites */
.card-Acceuil .card-text {
    font-size: var(--font-size-normale-corps);
    color: var(--main-text-color);
    overflow: hidden;
    display: block;
    height: 204px;
    width: 100%;
}
.card-Acceuil .card-body {
    overflow: hidden;
    height: 320px;
    
}
.card-Acceuil img {
    height: 215px;
}

.img_top_actu {
    max-height: 300px;
    width: auto !important;
    max-width: 100%;
}
.contenu_actu {
    overflow: hidden;
    display: block;
    height: 190px;
    width: 100%;
}
.titre_actu {
    text-transform: uppercase;
}
/* page actualites end */

/* page articles view */
.line {
    background-color: var(--big-blue);
    color:var(--big-blue);
    height: 2px;
}

.img_effect_actu:hover .img_text_actualites {
    opacity:1 !important;
}
.img_effect_actu:hover img {
    filter: gray; /* IE5+ */
    -webkit-filter: grayscale(1);
    transition: all .5s ease-in-out;
    -moz-transform: scale(1.06);
    -webkit-transform: scale(1.06);
    transform: scale(1.06)
}

/* page articles view end */

.line_responsive {
    min-width: 150px !important;
}
.text_progress_bar {
    font-size: 29px;
}
@media screen and (max-width: 500px) {
    .line_responsive {
        min-width: 50px !important;
    }
    .text_progress_bar {
        font-size: 20px;
    }
}


/* page checkout */

.line_checkout {
    background-color: var(--big-gray);
    color:var(--big-gray);
    height: 1px;
    width: 100%;
}
div.top_nav_checkout p {
    margin: 0%;
    padding: 0%;
    font-size: 17px;
}
div.top_nav_checkout div {
    margin: 0%;
    padding: 0%;
}

.list_checkout li {
    display: inline-block;
    font-size: 17px;
    width:auto; /* adjust */
    min-width: 10%;
}
.list_checkout p {
    margin: 0%;
    padding: 0%;
}

.color_pages_checkout {
    color: #283e9e;
}
.form-gp-checkout {
    resize: vertical;
    width: 100%;
    margin-bottom: 5%;
}
.color_gray_button {
    background-color: #BFBFBF;
}

.error_form {
    background-color: rgb(255 141 141 / 98%);
}

/* page checkout end*/

/* page prestations */
.gray_square {
    background-color: #E6E6E6;
    border-radius: 10px;
    max-width: 168px;
    height: 168px;
    border: none;
}
.gray_square p {
    font-size: 20px;
    color: #283e9e;
}
.gray_square:hover {
    background-color: var(--big-blue);
}
.gray_square:hover p {
    color: var(--main-text-color) !important;
}
.gray_square:focus {
    background-color: var(--big-blue);
    outline: none;
}
.gray_square:focus p {
    color: var(--main-text-color) !important;
}
.gray_square_cliked {
    background-color: var(--big-blue) !important;
}
.gray_square_cliked p {
    color: var(--main-text-color) !important;
}

.gray_square_cliked2 {
    background-color: var(--big-blue) !important;
}
.gray_square_cliked2 p {
    color: var(--main-text-color) !important;
}

.filter_gray {
    filter: grayscale(1);
}
.filter_gray p {
    color: #BFBFBF !important;
}
.filter_gray h2 {
    color: #BFBFBF !important;
}
.svg_mail {
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
}
/* page prestations end */

/* page options */

.text_options {
    color: var(--big-black) !important;
    text-align: start;
}

.gray_square_options {
    background-color: #E6E6E6;
    border-radius: 10px;
    width: 168px;
    height: 168px;
    border: none;
}
.gray_square_options p {
    font-size: 20px;
    color: #283e9e;
}
.gray_square_options:hover {
    background-color: var(--big-blue);
}
.gray_square_options:hover p {
    color: var(--main-text-color) !important;
}
.gray_square_options:focus {
    outline: none;
}
/* page options end */

/* page validation/order */
.gray_square_validation {
    background-color: #E6E6E6;
    border-radius: 10px;
    width: 350px;
    height: 130px;
    border: none;
}
.gray_square_validation p {
    font-size: 18px;
    margin: 0%;
}
.big_text_validation {
    color: var(--big-blue);
    font-size: 30px;
}

/* class btn plus et moins */
.qty .count {
    color: #000;
    display: inline-block;
    font-size: 20px;

    padding: 0 2px;
    min-width: 60px;
    width: 60px;
}
.qty .plus {
    cursor: pointer;
    display: inline-block;
    width: 30px;
    height: 30px;
    font-size: 25px;
}
.qty .minus {
    cursor: pointer;
    display: inline-block;
    width: 30px;
    height: 30px;
    font-size: 33px;
}

#plusminus{
    border: 0;
    width: 4%;
    margin: 0;
    text-align: center;
    background-color: var(--white-bg-color);
    appearance: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.texte_creation_compte {
font-size: 14px;
}
.retour_acceuil {
    color: var(--main-text-color);
}
.retour_acceuil:hover {
    color: var(--main-text-color);
}
/* page validation/order end */

/* création du compte */
.invalide_mdp {
    background-color: #ac000b;
    border:none;
    border-radius: 5px;
    width: 85%;
}
.invalide_mdp p {
    color: var(--white-bg-color);
}
/* .invalide_email {
    background-color: #7a0008;
    border:none;
    border-radius: 5px;
    /* width: 85%; */
/* } */
.invalide_email p {
    color: var(--big-red);
} 
/* création du compte end */

/* login */
.square_login {
    border: 1px solid black;
    max-width: 700px;
    width: 100%;
    border-radius: 5px;

}
.create_account_btn {
    background-color: #c4c4c4;
    color: #000000;
    border: 1px solid #838383;
    height: 50px;
    border-radius: 5px;
    font-size: 18px;
}
.create_account_btn:hover {
    background-color: #929292;
    border: 1px solid #000000;
}
/* login end */
/* account customer */
.account_elements {
    border: 1px solid black;
    border-radius: 3px;
    background-color: #ffffff;
    height: 130px;
}
.account_elements:hover {
    cursor: pointer;
    background-color: #dddddd;
    text-decoration: none;
}

.icone_account {
    color: black;
    font-size: 40px;
    /* position: absolute; */
    left: 40px;
}
/* account customer end */
/* courses regulieres */
.div_example_courses {
    background-color: var(--main-text-color);
    border-radius: 10px;
    box-shadow: 0 0 10px 3px rgba(100, 100, 100, 0.7);
}
.camion_course {
    border: 1px solid var(--big-blue);
    border-radius: 4px;
    padding: 5px;
    height: 100%;
}
/* courses regulieres end */
/* aix marseille */
.img_aix_marseille {
    height: 255px;
    border: 1px solid var(--big-blue);
    border-radius: 4px;
    padding: 5px;
}
/* progress bar */
/* circle {
    transition: stroke-dashoffset 0.35s;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
  } */
  .progress_mine {
    height: 200px;
    background-color: var(--white-bg-color);
    border-radius: 0 !important;
    box-shadow: none !important;
}

.progress_mine > svg {
    height: 100%;
    display: block;
}
#number {
    font-size: 29px;
    position: absolute;
    top: 80px;
    right: 49%;
    color: var(--big-black);
}
#pourcentage {
    font-size: 29px;
    position: absolute;
    top: 80px;
    right: 42%;
    color: var(--big-black);
}
@media screen and (max-width: 1200px) {
    #pourcentage {
        right: 45%;
    }
}
@media screen and (max-width: 992px) {
    #pourcentage {
        right: 43%;
    }
}
@media screen and (max-width: 576px) {
    #pourcentage {
        right: 38%;
    }
}
#number2 {
    font-size: 29px;
    /* position: absolute; */
    /* top: 46px; */
    /* left: 235px; */
    color: var(--big-black);
}
#pourcentage2 {
    font-size: 29px;
    /* position: absolute;
    top: 46px;
    left: 295px; */
    color: var(--big-black);
}
.line_aix_marseille {
    max-width: 40px; background-color: #283e9e; height: 3px;
    position: absolute;
}

#progress_one {
    transition: 5s ease-in-out;
}

/* .carrousel_effect_div {
    border: 1px solid rgb(197, 197, 197);
    background-color: var(--big-gray);
} */
/* Set the size of the div element that contains the map */
#map {
    height: 400px;
    /* The height is 400 pixels */
    width: 100%;
    /* The width is the width of the web page */
  }
/* aix marseille end */

/* payment form stripe */
/**
 * The CSS shown here will not be introduced in the Quickstart guide, but shows
 * how you can use CSS to style your Element's container.
 */
 .StripeElement {
    box-sizing: border-box;
  
    height: 40px;
  
    padding: 10px 12px;
  
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: white;
  
    box-shadow: 0 1px 3px 0 #e6ebf1;
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
  }
  
  .StripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
  }
  
  .StripeElement--invalid {
    border-color: #fa755a;
  }
  
  .StripeElement--webkit-autofill {
    background-color: #fefde5 !important;}

.btn_payment {
    border: none;
    border-radius: 4px;
    outline: none;
    text-decoration: none;
    color: #fff;
    background: #32325d;
    white-space: nowrap;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 14px;
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-decoration: none;
    -webkit-transition: all 150ms ease;
    transition: all 150ms ease;
    /* float: left; */
    margin-left: 12px;
    margin-top: 28px;
  }

  /* modal */
  .modal {
    background-color: #fff;
    padding: 2em 3em;
    text-align: center;
    border-radius: .5em;
    display: none;
    &.is-active { display: block; }
  }
  
  .modal-image {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #48DB71;
    padding: 11px 10px 2px;
    margin-bottom: 2em;
  }