/* --------------------------------------  CSS RELATIF A LA HOME PAGE (small col + big col) -------------------------------------- */


/* --------------------------- PARTIE DE GAUCHE : LOGO / CONNECTION / ETC --------------------------- */

.homeWelcomeContainer {
    height: auto;
    min-height: 100vh;
    max-width: 540px;
    width: 100%;
}

.homeInfosContainer {
    height: 100%;
}

/* LOGO (pas centré verticalement sur la page) */
.logoSpace {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logoSpace img {
    max-height: 120px;
    width: 100%;
    /*max-width: 200px !important;*/
}

/* TEXTE INTRO + LOGIN + INSCRIPTION LINK - centré verticalement */

.welcomeSpace {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 400px;
    padding: 0px 60px;
    margin-top: 20px;
}

.welcomeSpace h2 {
    text-align: center;
    font-size: 30px;

}

.welcomeSpace p {
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.2rem;
    color: #707070; /* meme partout sauf TSC */
}



/* --------- CONNECTED DATA */


.toDashboardButton {
    margin-top: 22px;
}

.toDashboardButton input {
    margin-bottom: 11px !important;
    width: auto !important;
    padding: 0px 22px !important;
}


.disconnectLink {
    display: inline;
    font-family: 'Montserrat', sans-serif !important;
}

.disconnectLink input {
    background: transparent !important;
    border: 0px solid white !important;
    text-decoration: underline;
    text-align: center;
    width: 100%;
    cursor: pointer;
}


/* BLOC PAS ENCORE INSCRIT ? */

.registerContainer {
    background: #F7F7F7;
    padding: 18px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
}

.registerContainer p {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.4rem;
    font-weight: 600 !important;

}

.registerContainer a {
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
    font-weight: 600 !important;
    cursor:pointer !important;
}

/* LIENS STORES */

.appContainer {
    /*padding: 30px 120px*/
}
.appContainer ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 348px;
    margin: 0 auto;
    padding: 26px;
}
.appContainer li {float: left;}
.appContainer a {
    width: 100%;
    display: inline-block;
    height: 100%;
}
.appContainer img {
    max-width: 140px !important;
}

/* FOOTER TOS */
.homeFooter {padding: 0px 60px; margin-bottom: 16px}
.TOSlinks {display: flex;  align-items: center;  justify-content: center; padding-top: 25px;text-align: center;  line-height: rem;  flex-wrap: wrap;  line-height: 1.1rem;  border-width: 1px !important;}
.TOSlinks li {float: left; margin-right: 11px;font-size: 12px;}
.TOSlinks li:last-child {margin-right: 0px}
.TOSlinks li a {text-decoration: none; opacity: 0.7;             font-family: 'Quicksand', sans-serif;}

.plainText h1 {    font-family: 'Raleway', sans-serif;}



/* --------------------------- PARTIE DE DROITE : ILLUS / PHOTOS --------------------------- */

.homePicturesContainer {
    max-width: calc(100% - 540px);
    width: 100%;
    object-fit: cover;
    height: auto;
    min-height: 100vh
}

.homePicturesContainer .pictures {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100vh
}



/* /* -------------------------------------- MEDIAQUERIES ------------------------------ */

@media only screen and (max-width: 1150px) {


    #mainLogo {
        height: auto !important;
    }

    .homeWelcomeContainer {
        max-width: 400px;
    }

    .homePicturesContainer {
        max-width: calc(100% - 400px);
    }


    .appContainer img {
        max-width: 130px !important;
    }


}



@media only screen and (max-width: 1024px) {


    .homeWelcomeContainer {
        max-width: 100% !important;
    }

    /* LA PARTIE PHOTO DISPARAIT */
    .homePicturesContainer {
        display: none
    }

    .appContainer img {
        max-width: 166px !important;
    }

    .appContainer {
        width: 100%;
        margin: 0 auto;
    }

    .appContainer ul {
        width: auto;
        max-width: 400px;
        margin: 0 auto;
        padding: 20px;
    }

    .homeFooter {padding-bottom: 22px;}


}

