* {
    margin: 0;
    padding: 0;
}

.detail-jeu {
    display: flex;
    flex-direction: column;
}

.gauche {
    margin-bottom: 15px;
}
.milieu{
    text-align: center;
}

.droite {
    border-top: 2px solid gray;
    padding: 15px 10px;
    -ms-overflow-style: none;
}
.reponse-vert{
    color: green;
}
.question-orange, .text-orange{
    color: #f16e00;
}

.droite::-webkit-scrollbar {
    display: none;
}

.nav-logo,
.orange-bf {
    display: none;
}

/* le home du client */
.jeu-client {
    width: 98%;
    min-height: 90vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    border-radius: 15px;
    box-shadow: 0 0 20px -3px rgba(0, 0, 0, 0.75);
}

.jeu-client-gauche {
    width: 100%;
    display: flex;
    border-radius: 15px 15px 0px 0;
}

.jeu-client-gauche img {
    width: 100%;
    /*max-height: 40vh; */
    border-radius: 15px 15px 0 0;
}

.jeu-client-gauche-milieu {
    margin: auto;
}

.carousel {
    width: 100%;
    height: fit-content;
    margin: 0;
}

/* other */
.form-control {
    box-shadow: 0 2px 0px 0px #f16e00;
}

.h1-petit {
    font-size: small;
}

.couleur-orange {
    font-size: medium;
    color: #f16e00;
}

/* other */

.jeu-client-droite {
    width: 100%;
    display: flex;
    flex-direction: column;
    /*height: 100%;*/
    margin: auto;
    padding: 15px;
    border-radius: 0px 0px 15px 15px;
    -ms-overflow-style: none;
}

.jeu-client-droite::-webkit-scrollbar {
    display: none;
}

.jeu-client-droite .contenu {
    margin: auto 0;
}

.jeu-client h3 {
    color: #f16e00;
}

@media screen and (min-width: 600px) {
    .jeu-client {
        max-width: 920px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .jeu-client-gauche {
        height: 100%;
        border-radius: 15px 0px 0px 15px;
    }

    .jeu-client-gauche img {
        width: 100%;
        height: 90vh;
        border-radius: 15px 0 0 15px;
    }

    .jeu-client-droite {
        height: 90vh;
        overflow-y: scroll;
    }
}

@media screen and (min-width: 920px) {
    .detail-jeu {
        display: grid;
        grid-template-columns: 250px 1fr;
        height: 100vh;
    }

    .gauche {
        margin-right: 15px;
        display: flex;
        flex-direction: column;
    }

    .gauche .milieu {
        margin: auto;
    }

    .milieu h2 {
        color: #f16e00;
    }

    .droite {
        border-left: 2px solid gray;
        height: 100vh;
        overflow: scroll;
        padding: 15px 10px;
        -ms-overflow-style: none;
    }

    /* Le user connecté */
    .nav-logo {
        display: flex;
        cursor: pointer;
        margin: auto;
        border-bottom: #f16e00 5px solid;
        padding-bottom: 5px;
    }

    .nav-logo img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .nav-user {
        display: flex;
        flex-direction: column;
        padding-left: 5px;
    }

    .nav-logo a {
        opacity: 0.5;
        font-size: small;
    }

    .nav-logo h1 {
        font-size: medium;
        font-weight: 500;
        margin: 0;
    }

    /* le pied orange */
    .orange-bf {
        display: flex;
        text-align: center;
        margin: auto;
        border-top: #f16e00 5px solid;
        padding-top: 5px;
    }

    .orange-bf img {
        width: 50px;
        height: 50px;
    }

    .orange-bf h3,
    .nav-logo .nav-user {
        margin: auto;
    }
}