body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #131313;
    height: 100%;
    width: 100%;
    text-align: center;
    user-select: none;
    overflow-x: hidden;
}

.header {
    width: 100vw;
    height: 10vh;
    margin-top: 20px;
    text-align: right;
}

.nav {
    color: #dedede;
    margin-right: 30px;
    text-decoration: none;
    font-family: "Rubik", sans-serif;
    font-size: larger;
    text-shadow: 4px 4px 10px #000000;
}

.nav:hover {
    transition: color 0.1s ease, text-decoration 0.4s ease;
    color: #ccc;
    text-decoration: underline;
}

/*################################################################################################################################*/
/*Page connexion*/

.connexion {
    height: 85vh;
    width: 100vw;
    background-color: transparent;
    display: flex;
    flex-direction: column;
}

.connexion h2 {
    margin-top: -5vh;
    font-family: "Bebas Neue", sans-serif;
    color: #dedede;
    font-size: 6vh;
    order: 1;
    align-self: center;
}

.connexion .formulaire {
    order: 2;
    display: flex;
    flex-direction: row;
    align-self: center;
    height: fit-content;
    background-color: #191919;
    border-radius: 15px;
    padding: 1%;
}

.connexion .image {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    order: 1;
}

.connexion .conteneur-image {
    height: 60vh;
    width: auto;
    overflow: hidden;
}

.connexion .champs {
    order: 2;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    margin-left: 3vw;
}

.connexion .pseudo {
    order: 1;
    align-self: flex-start;
    margin-top: 10vh;
}

.connexion .mdp{
    order: 2;
    align-self: flex-start;
    margin-top: 2vh;
}

.connexion input[type="text"],
.connexion input[type="password"] {
    font-family: "Rubik", sans-serif;
    background-color: #232323;
    border: 2px solid transparent;
    border-radius: 5px;
    height: 55px;
    width: 20vw;
    color: #bebebe;
    transition: border-bottom 0.2s ease-out;
    font-size: 16px;
    padding-top: 5px;
    padding-left: 15px;
    order: 2;
    outline: none;
    min-width: 300px;
}

.connexion input[type="submit"] {
    width: 14vw;
    min-width: 180px;
    border: none;
    padding: 10px 20px;
    color: #dedede;
    background-color: #0E9272;      
    transition: background-color 0.3s;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
    margin-top: 15px;
    margin-bottom: 10px;
    font-family: "Rubik", sans-serif;
    align-self: center;
}

.connexion input[type="submit"]:hover {
    background-color:  #29755d;
}

.connexion input[type="text"]:focus,
.connexion input[type="text"]:hover,
.connexion input[type="password"]:focus,
.connexion input[type="password"]:hover {
    transition: border-bottom 0.2s ease-out;
    border-bottom: 2px solid #ccc;
}

.connexion input[type="text"]:focus::placeholder,
.connexion input[type="password"]:focus::placeholder {
    transform: translate(-10px, -21px);
    font-size: 13px;
    color: #ccc;
    transition: transform 0.3s ease-in-out, font-size 0.3s ease-in-out, color 0.3s ease-in-out;
}

.connexion input[type="text"]:not(:focus)::placeholder,
.connexion input[type="password"]:not(:focus)::placeholder {
    transform: translate(0px, 0px);
    font-size: 15px;
    color: #646464;
    transition: transform 0.3s ease-in-out, font-size 0.3s ease-in-out, color 0.3s ease-in-out;
}

.connexion #mdp.n1 {
    border-bottom-color: #d51a1a;
}

.connexion #mdp.n1::placeholder {
    color: #d51a1a;
}

.connexion #pseudo.n2 {
    border-bottom-color: #d51a1a;
}

.connexion #pseudo.n2::placeholder {
    color: #d51a1a;
}

.connexion #pseudo.n3 {
    border-bottom-color: #d51a1a;
}

.connexion #pseudo.n3::placeholder {
    color: #d51a1a;
}

.connexion .warning {
    color: #d51a1a;
    font-size: larger;
    margin-top: 2%;
}

.connexion .warning .material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 800,
  'GRAD' 0,
  'opsz' 24
}

.connexion .togle-icon {
    position: relative;
    height: fit-content;
    width: fit-content;
}

.connexion .password-toggle {
    color: #646464;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    margin-top: 2.5%;
    cursor: pointer;
    transition: color 0.1s ease-out;
}

.connexion .password-toggle:hover {
    color: #ccc;
}

.connexion .register {
    color: #aaaaaa;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.4s ease, font-size 0.3s ease;
}


.connexion .register:hover {
    color: #cccccc;
    text-decoration: underline;
    font-size: 14.5px;
}


/*################################################################################################################################*/
/*Classement*/

.classement {
    background-color: transparent;
    width: 100vw;
    height: fit-content;
    display: flex;
    flex-direction: column;
}


.classement h1 {
    margin-top: -2vh;
    font-family: "Bebas Neue", sans-serif;
    font-size: 7vh;
    order: 1;
    color: #dedede;
}

.classement table {
    width: 90vw;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    color: #333;
    order: 3;
    align-self: center;
    min-width: 300px;
    max-width: 800px;
    margin-top: 5vh;
}

.classement table .ligne-classement .pp {
    align-self: flex-start;
    order: 1;
    height: 8vh;
    width: 8vh;
    object-fit: cover;
    clip-path: circle();
    margin-left: 2vw;
    margin-right: 15px;
}


.classement table .ligne-classement .pseudo {
    align-self: flex-end;
    order: 2;
    font-size: 2.25vh;
    color: #c0bebe;
    font-family: "Rubik", sans-serif;
}

.classement table .ligne-classement {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.classement table .temps {
    align-self: flex-end;
    order: 3;
    font-size: 2.25vh;
    color: #c0bebe;
    font-family: "Rubik", sans-serif;
    margin-left: auto;
    margin-right: 3vw;
}

.classement th, td {
    padding: 15px;
    text-align: center;
    font-size: larger;
}

.classement td{
    background-color: #272727;
    border-bottom: 2px solid #646262;
    padding-bottom: 2.5%;
}

.classement .premier {
    order: 2;
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    align-content: center;
    width: 33%;
}

.classement .deuxieme {
    order: 1;
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    align-content: center;
    width: 35%;
}

.classement .troisieme {
    order: 3;
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    align-content: center;
    width: 33%;
}

.classement .podium {
    height: 30vh;
    width: 90vw;
    min-width: 300px;
    max-width: 600px;
    background-color: #191919;
    border-radius: 15px;
    order: 2;
    align-self: center;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    overflow: hidden;
}

.classement .marche-premier {
    background-color: #DA9C02;
    height: 16vh;
}

.classement .marche-deuxieme {
    background-color: #878F92;
    height: 13vh;
}

.classement .marche-troisieme {
    background-color: #B66E4C;
    height: 10vh;
}

.classement .podium .marche {
    padding-left: 4%;
    padding-right: 4%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    min-width: 85px;
    align-self: center;
    display: flex;
    flex-direction: column;
}

.classement .podium .temps {
    margin-top: -2vh;
    font-size: 2.25vh;
    color: #e0dede;
    font-family: "Rubik", sans-serif;
    align-self: center;
    order: 3;
}

.classement .podium .pseudo {
    margin-top: 10px;
    font-size: 2.25vh;
    color: #e0dede;
    font-family: "Rubik", sans-serif;
    align-self: center;
    order: 2;
}

.classement .podium .pp {
    height: 10vh;
    width: 10vh;
    object-fit: cover;
    clip-path: circle();
    margin-bottom: 10px;
}

/*################################################################################################################################*/
/*Page Accueil*/

.accueil {
    text-align: left;
    background-color: #131313;
    overflow: hidden;
}

.accueil .accueil-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accueil .titre {
    font-family: "Bebas Neue", sans-serif;
    color: #e0e0e0;
    margin-top: 15vh;
    font-size: 9vmax;
    line-height: 85%;
    margin-left: 4%;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.35);
    word-break: break-word;
    margin-bottom: 15px;
    align-self: start;
    order: 1;
}

.accueil .sous-titre {
    font-family: "Rubik", sans-serif;
    color: #e0e0e0;
    line-height: 0px;
    font-size: 2vmax;
    font-weight: 300;
    margin-top: -0.5%;
    margin-left: 4%;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.35);
    align-self: start;
    order: 2;
}

.accueil .decouvrir {
    font-family: "Bebas Neue", sans-serif;
    font-size: 4vmax;
    color: #e0e0e0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.35);
    margin-top: 45vh;
    order: 3;
}

.accueil video {
    position: fixed;
    top: 0;
    left: 0;
    width: 110vw;
    height: 110vh;
    object-fit: cover;
    z-index: -1;
}

/*################################################################################################################################*/
/*Blocs*/

.liste-bloc {
    width: 100vw;
    height: 85vh;
    display: flex;
    flex-direction: column;
}

.liste-bloc .blocs {
    background-color: #1f1f1f;
    color: #EEEFEC;
    width: max-content;
    height: fit-content;
    box-shadow: 2px 2px 3px #00000063;
    border-radius: 7px;
    flex-basis: 31%;
    align-items: center;
    min-width: 350px;
    max-width: 500px;
    margin-right: 1vw;
    margin-bottom: 20px;
    padding-bottom: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.liste-bloc .miniature {
    order: 1;
    align-self: flex-start;
    height: 35vh;
    width: 95%;
    overflow-y: hidden;
    margin-bottom: 1.5vh;
    min-height: 200px;
    border-radius: 7.5px;
    margin: 2.5%;
}

.liste-bloc .cover {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.liste-bloc .informations {
    order: 2;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    margin-left: 15px;
    width: 100%;
}

.liste-bloc .ligne-haut {
    order: 1;
    display: flex;
    flex-direction: row;
    align-self: flex-start;
    width: 92%
}

.liste-bloc .auteur {
    align-self: flex-start;
    color: #848484;
    font-size: 100%;
    min-width: fit-content;
    order: 3;
}

.liste-bloc .nombloc {
    font-size: 200%;
    font-family: "Bebas Neue", sans-serif;
    min-width: fit-content;
    order: 1;
}

.liste-bloc .cotation {
    background-color: #0E9272;
    font-size: 16px;
    padding: 1% 5%;
    border-radius: 15px;
    align-self: center;
    margin-top: -5px;
    order: 2;
    margin-left: auto;
}

.liste-bloc h2 {
    margin-top: -5vh;
    font-size: 5vmax;
    margin-bottom: 0vh;
    color: #dedede;
    font-family: "Bebas Neue", sans-serif;
}

.liste-bloc .liste {
    display: flex;
    flex-wrap: wrap;
    width: 95vw;
    align-self: flex-start;
    justify-content: center;
    margin: auto;
}

.ajouter-bloc {
    background-color: #18a07e;
    position: fixed;
    color: #dedede;
    bottom: 3vw;
    right: 3vh;
    padding: 1%;
    width : 7vh;
    height : 7vh;
    border-radius : 100%;
    transition: background-color 0.3s ease;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ajouter-bloc:hover {
    background-color: #19886c;
}

/*################################################################################################################################*/
/*Page Ajouter*/

.ajouter {
    height: 80vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
}

.ajouter h2 {
    margin-top: -5vh;
    font-size: 5vmax;
    margin-bottom: 0vh;
    color: #dedede;
    font-family: "Bebas Neue", sans-serif;
}

.champ-informations {
    order: 1;
    align-self: center;
    display: flex;
    flex-direction: column;
    width: 40vw;
    height: 80vh;
    border-radius: 10px;
    min-width: 300px;
}

.ajouter .box {
    display: flex;
    flex-direction: column;
    width: 95%;
    min-width: fit-content;
    align-self: center;
    margin-top: 0;
}

.ajouter h4 {
    color: #dedede;
    margin-left: 5px;
    min-width: max-content;
    order: 1;
    align-self: flex-start;
    margin-bottom: 5px;
}

.ajouter .haut {
    padding-top: -3vh;
}

.ajouter .nom {
    background-color: #232323;
    border: 2px solid transparent;
    border-radius: 5px;
    height: 40px;
    width: 60%;
    color: #bebebe;
    transition: border-bottom 0.2s ease-out;
    font-size: 16px;
    padding-top: 5px;
    padding-left: 15px;
    order: 2;
    align-self: flex-start;
    outline: none;
    min-width: 280px;
    max-width: 90vw;
    font-family: "Rubik", sans-serif;
}

.ajouter .description {
    background-color: #232323;
    border: 2px solid transparent;
    border-radius: 5px;
    height: 10vh;
    width: 80%;
    color: #bebebe;
    transition: border-bottom 0.2s ease-out;
    font-size: 16px;
    padding-top: 8px;
    padding-left: 8px;
    order: 2;
    align-self: flex-start;
    outline: none;
    min-width: 280px;
    max-width: 500px;
    max-height: 150px;
    min-height: 75px;
    font-family: "Rubik", sans-serif;
}

.ajouter .description::placeholder {
    color: #606060;
}

.ajouter .nom::placeholder {
    color: #606060;
}

.ajouter .cotation {
    order: 3;
    display: flex;
    flex-direction: row;
}

.ajouter .cotation .cotation-1 {
    order: 1;
}

.ajouter .cotation .cotation-2 {
    order: 2;
}

.ajouter select {
    background-color: #0E9272;
    color: #dedede;
    border: none;
    border-radius: 3px;
    height: 30px;
    width: 65px;
    padding-left: 12px;
    margin-right: 30px;
}

.ajouter .fichier {
    display: inline-block;
    border: 1px solid transparent;
    border-radius: 7.5px;
    background-color: #0E9272;
    width: 95%;
    padding: 10px;
    cursor: pointer;
    font-family: "Rubik", sans-serif;
    order: 2;
    align-self: flex-start;
    color: #dedede;
    transition: background-color ease-out 0.3s;
    max-width: 320px;
}

.ajouter .fichier:hover{
    background-color: #29755d;
}

.ajouter #fichier {
    display: none;
}

.ajouter #label-fichier.fichier-ajouter {
    background-color: #4752C4;
}

.ajouter #label-fichier.fichier-ajouter:hover {
    background-color: #3e48b4;
}

.ajouter .suivant{
    order: 5;
    width: 30%;
    min-width: 120px;
    border: none;
    padding: 10px 20px;
    color: #dedede;
    background-color: #0E9272;      
    transition: background-color 0.3s;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
    margin-top: 12%;
    margin-bottom: 10px;
    min-width: 150px;
    font-family: "Rubik", sans-serif;
    align-self: center;
}

.ajouter .suivant:hover {
    background-color:  #29755d;
}


/*################################################################################################################################*/
/*Page Détails blocs*/

.details-bloc {
    display: flex;
    flex-direction: column;
}

.details-bloc .miniature {
    order: 1;
    border-radius: 7.5px;
    margin: 0%;
    margin-bottom: 15px;
    height: fit-content;
}

.details-bloc .cover {
    height: 100%;
    width: 100%;
    object-fit: cover;
    max-height: 80vh;
    border-radius: 10px;
}

.details-bloc .informations {
    order: 2;
    align-self: center;
    display: flex;
    flex-direction: column;
    width: 95vw;
    border-radius: 7px;
    background-color: #191919;
    padding: 1%;
    box-shadow: 2px 2px 3px #00000063;
    padding-left: 15px;
    margin-top: 2%;
    max-width: 900px;
}

.details-bloc .ligne-haut {
    order: 1;
    display: flex;
    flex-direction: row;
    align-self: flex-start;
    width: 98%
}

.details-bloc .nombloc {
    color: #dedede;
    font-size: 250%;
    font-family: "Bebas Neue", sans-serif;
    min-width: fit-content;
    order: 1;
}

.details-bloc .cotation {
    background-color: #0E9272;
    color: #dedede;
    font-size: 16px;
    padding: 0.5% 3%;
    border-radius: 15px;
    align-self: center;
    margin-top: -5px;
    order: 2;
    margin-left: auto;
}

.details-bloc .description {
    width: 95%;
    font-family: "Rubik", sans-serif;
    font-size: 120%;
    align-self: flex-start;
    order: 3;
    margin-bottom: 8px;
    word-break: break-word;
    text-align: left;
    color: #dedede;
}

.details-bloc .auteur {
    align-self: flex-start;
    color: #848484;
    font-size: 100%;
    min-width: fit-content;
    order: 4;
    margin-bottom: 4px;
}

.details-bloc textarea {
    font-family: "Rubik", sans-serif;
    text-align: left;
    width:93%;
    height: 26px;
    resize: none;
    overflow: hidden;
    outline: none;
    border-radius: 10px;
    font-size: 18px;
    padding: 10px 10px 5px 15px;
    order: 1;
    align-self: center;
    background-color: #232323;
    border: none;
    color: #dedede;
    box-shadow: 2px 2px 4px #0a0a0a63;
}

.details-bloc textarea::placeholder {
    color: #646464;
}

.details-bloc .commentaires{
    margin-top: 1%;
    order: 5;
}

.details-bloc form {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.details-bloc .commentaire {
    order: 2;
    display: flex;
    word-break: break-word;
    flex-direction: row;
    margin-bottom: 12px;
    padding: 1%;
    border-radius: 10px;
    background-color: #1f1f1f;
    box-shadow: 2px 2px 4px #0a0a0a63;
}

.details-bloc .couleur0 {
    background-color: #242424;
}

.details-bloc .couleur1 {
    background-color: #1f1f1f;
}

.details-bloc .commentaire .utilisateur {
    order: 1;
    display: flex;
    flex-direction: column;
}

.details-bloc .commentaire .utilisateur .pp {
    order: 1;
    height: 6vh;
    width: 6vh;
    object-fit: cover;
    clip-path: circle();
}

.details-bloc .commentaire .utilisateur .auteur {
    order: 2;
    align-self: center;
    margin-bottom: 0px;
}

.details-bloc .commentaire .message {
    order: 2;
    align-self: flex-start;
    margin-top: 10px;
    margin-left: 10px;
    color: #dedede;
    font-family: "Rubik", sans-serif;
    text-align: left;
    font-size: 100%;
}

.details-bloc button {
    align-self: center;
    order: 2;
    background-color: transparent;
    border: none;
    color: #dedede;
    cursor: pointer;
}

/*################################################################################################################################*/
/*Page profil*/

.profil {
    width: 100vw;
    height: 85vh;
    display: flex;
    flex-direction: column;
}

.profil .titre {
    margin-top: 0vh;
    font-size: 6vh;
    align-self: center;
    margin-left: 0px;
    color: #dedede;
    font-family: "Bebas Neue", sans-serif;
}

.profil .pp {
    height: 20vh;
    width: 20vh;
    object-fit: cover;
    clip-path: circle();
    align-self: center;
    margin-bottom: 20px;
}

.profil .pseudo {
    background-color: #232323;
    border: 2px solid transparent;
    border-radius: 5px;
    height: 35px;
    width: 20vw;
    color: #ccc;
    transition: border-bottom 0.2s ease-out;
    font-size: 16px;
    padding-top: 5px;
    padding-left: 15px;
    order: 2;
    align-self: center;
    margin-top: -15px;
    outline: none;
    min-width: 250px;
}

.profil .pseudo:focus {
    transition: border-bottom 0.2s ease-out;
    border-bottom: 2px solid #ccc;
}


.profil h4 {
    color: #dedede;
    margin-left: 8px;
    min-width: max-content;
    order: 1;
    align-self: flex-start;
}

.profil .box {
    display: flex;
    flex-direction: column;
    width: 20vw;
    min-width: fit-content;
    align-self: center;
    margin: auto;
    margin-top: 0;
    margin-bottom: -10px;
}

.profil .box-pseudo {
    margin-top: -4vh;
}

.profil .fichier {
    display: inline-block;
    border: 1px solid transparent;
    border-radius: 7.5px;
    background-color: #0E9272;
    width: 20vw;
    padding: 10px;
    cursor: pointer;
    font-family: "Rubik", sans-serif;
    order: 2;
    margin-top: -15px;
    align-self: center;
    min-width: 100px;
    color: #dedede;
    transition: background-color ease-out 0.3s;
    min-width: 250px;
}

.profil .fichier:hover{
    background-color: #29755d;
}

.profil #fichier {
    display: none;
}

.profil #label-fichier.fichier-ajouter {
    background-color: #4752C4;
}

.profil #label-fichier.fichier-ajouter:hover {
    background-color: #3e48b4;
}

.profil .mdp {
    background-color: #232323;
    border: 2px solid transparent;
    border-radius: 5px;
    height: 22px;
    width: 20vw;
    color: #ccc;
    transition: border-bottom 0.2s ease-out;
    font-size: 16px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    order: 2;
    align-self: center;
    margin-top: -15px;
    outline: none;
    min-width: 250px;
}

.profil .mdp:focus {
    transition: border-bottom 0.2s ease-out;
    border-bottom: 2px solid #ccc;
}

.profil .appliquer {
    width: 10vw;
    min-width: 120px;
    border: none;
    padding: 10px 20px;
    color: #dedede;
    background-color: #0E9272;      
    transition: background-color 0.3s;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
    margin-top: 25px;
    margin-bottom: 10px;
    font-family: "Rubik", sans-serif;
    align-self: center;
}

.profil .appliquer:hover {
    background-color:  #29755d;
}

.profil .deconnexion {
    align-self: right;
    background-color: #c00c0c;
    width: 12vw;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #f0ecec;
    font-size: 16px;
    font-family: "Rubik", sans-serif;
    order: 1;
    margin-right: 30px;
    transition: background-color 0.3s ease-out;
    min-width: 150px;
}

.profil .supprimer {
    align-self: center;
    background-color: transparent;
    width: 15vw;
    padding: 10px;
    border: 2px solid #b11010;
    border-radius: 5px;
    cursor: pointer;
    color: #f0ecec;
    font-size: 16px;
    font-family: "Rubik", sans-serif;
    order: 2;
    transition: background-color 0.4s ease-in-out;
    min-width: 200px;
}

.profil .profil-end {
    align-self: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: auto;
    margin-bottom: 10px;
    justify-content: center;
}

.profil .deconnexion:hover {
    background-color: #980909;
}

.profil .supprimer:hover {
    background-color: #b11010;
}

/*################################################################################################################################*/
/*Page &*/

.editeur {
    display: inline-block;
    position: relative;
    margin: auto;
    overflow: hidden;
}

.editeur.fond {
    height: fit-content;
}

.editeur img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    max-height: 80dvh;
    border-radius: 10px;
}

.cercle {
    position: absolute;
    border-radius: 50%;
    border: 5px dashed #f00;
    background: transparent;
    height: 5%;
    width: 5%;
    box-shadow: 2px 2px 10px #00000063;
}

.selection {
    border-color: #131313;
}

#PriseDepart {
    border: 5px solid #338b0a;
}

#PrisePied {
    border: 5px dashed #f00;
}

#PriseMain {
    border: 5px solid #f00;
}

#selectionee {
    color: #0E9272;
}

.container .modifieur {
    order: 1;
    align-self: center;
    background-color: #232323;
    padding: 10px 20px 10px 20px;
    width: fit-content;
    border-radius: 30px;
    margin-right: 20px;
}

.container {
    display: flex;
    flex-direction: row;
    margin: auto;
    width: fit-content;
}

.container .icon {
    color: #fff;
}

.container .terminer {
    width: 10vw;
    min-width: 120px;
    border: none;
    padding: 10px 20px;
    color: #dedede;
    background-color: #0E9272;      
    transition: background-color 0.3s;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: "Rubik", sans-serif;
    order: 2;
    align-self: center;
}

.container .material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 300,
  'GRAD' 0,
  'opsz' 24;
  cursor: pointer;
  padding-right: 5px;
}

/*################################################################################################################################*/
/*Page Chronomètre*/
.chrono {
    height: 80vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
}

.chrono .box {
    align-self: center;
    height: 70vh;
    width: 60vw;
    min-width: 350px;
    min-height: 500px;
    order: 1;
    background-color: #191919;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    padding: 2%;
}

.chrono h2 {
    font-family: "Bebas Neue", sans-serif;
    color: #dedede;
    font-size: 6vh;
    order: 1;
    align-self: center;
}

.chrono .sous-titre {
    font-family: "Rubik", sans-serif;
    color: #e0e0e0;
    line-height: 0px;
    font-size: 1.5vmax;
    font-weight: 300;
    margin-top: -3.5vh;
    order: 2;
}

.chrono .texte {
    font-family: "Rubik", sans-serif;
    color: #e0e0e0;
    font-size: 1.5vmax;
    font-weight: 300;
    margin-top: 6vh;
    margin-left: 4%;
    align-self: flex-start;
    text-align: left;
    word-wrap: break-word;
    order: 3;
}

.chrono .telecharger {
    width: 12vw;
    min-width: 140px;
    border: none;
    padding: 10px 20px;
    color: #dedede;
    background-color: #0E9272;      
    transition: background-color 0.3s;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
    margin-top: 20vh;
    margin-bottom: 10px;
    font-family: "Rubik", sans-serif;
    align-self: center;
    order: 4;
}

.chrono .telecharger:hover {
    background-color:  #29755d;
}

.chrono .lien {
    order: 4;
}

/*################################################################################################################################*/
/*Media width*/

@media (max-width: 1100px) {
    .ajouter .champ-informations {
        width: 80vw;
    }
}

@media (max-width: 850px) {

    .connexion .image {
        height: 100%;
        width: 100%;
    }

    .connexion .conteneur-image {
        height: 45vh;
        width: auto;
        overflow: hidden;
    }

    .connexion .formulaire {
        padding: 1.5%;
    }

    .details-bloc .cotation {
        padding-left: 5%;
        padding-right: 5%;
        font-size: 12px;
    }


}

@media (max-width: 700px) {

    .connexion .conteneur-image {
        display: none;
    }

    .connexion .champs {
        margin-left: 0;
    }

    .connexion .formulaire {
        margin-top: -7vh;
        padding: 5%;
        background-color: transparent;
    }

    .connexion input[type="text"],
    .connexion input[type="password"] {
        width: 70vw;
        min-width: 280px;
    }
}

@media (max-width: 540px) {

    .nav {
        font-size: medium;
        margin-right: 20px;
    }

    .header {
        text-align: center;
    }

    .details-bloc .commentaire .utilisateur .auteur {
        font-size: 90%;
    }

    .details-bloc .commentaire {
        padding: 2%;
    }
}

@media (max-width: 400px) {

    .profil .deconnexion {
        margin-top: 30px;
        margin-bottom: 7.5px;
        margin-left: 30px;
    }

    .nav {
        margin-right: 7.5px;
    }

    .liste-bloc .blocs {
        min-width: 300px;
    }

    .liste-bloc .nombloc {
        font-size: 175%;
    }
}

@media (max-width: 341px) {

    .nav {
        font-size: small;
    }
}
