/*
Michail Kanakas
10.01.2024
CSS pour la page classements
*/

.fadeDuTitre {
    position: relative;
    width: 100%;
    height: 2.5vw;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}

#menu {
    color: black;
    display: flex;
    justify-content: space-between;
    padding-top: 2vw;
    margin-left: 12.5vw;
    margin-right: 12.5vw;
    font-size: 3vw;
    margin-bottom: 2vw;
    align-items: center;
}

#menu .categorie {
    text-align: left;
    transition: all 0.4s ease-out;
}

#menu .categorie:hover {
    text-align: left;
    transition: all 0.4s ease;
    transform: scale(1.05);
}

#menu #indication {
    text-align: right;
    font-size: 2vw;
}

#femmes {
    margin-right: 6vw;
    cursor: pointer;
}

#hommes {
    cursor: pointer;
    color: #D20A0A;
}


#classementHomme section,
#classementFemme section {
    background-color: white;
    margin-left: 10vw;
    margin-right: 10vw;
    margin-bottom: 3vw;
    color: black;
    box-shadow: 0px 18px 30px rgba(0, 0, 0, 0.07);
    padding: 1vw;
    border-radius: 1.5vw;
    transition: all 0.4s ease-out;
}

#classementHomme section:hover,
#classementFemme section:hover {
    transition: all 0.4s ease;
    transform: scale(1.025);
}

hr {
    width: 99.5%;
    height: 0;
    border-color: #EBEBEB;
    border-width: 0.2vw;
    border-style: solid;
    margin-top: 0;
    margin-bottom: 0;
}

.enGris {
    color: #929292;
}

.palmaresEtStyle {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.invisible {
    color: black;
    display: none;
}

.flexBoxEnLigne {
    display: flex;
    justify-content: space-between;
}

.invisible .gauche,
.invisible .droite {
    align-items: center;
    display: flex;
}

.invisible .gauche p {
    margin-right: 2vw;
    font-size: 2.5vw;
}

.invisible .gauche .enGris {
    margin-left: 2vw;
    font-size: 3vw;
}

.invisible .droite .enGris {
    margin-right: 2vw;
    font-size: 2.25vw;
}

.invisible .droite p {
    margin-left: 1vw;
    font-size: 2.25vw;
}

.invisible .flexBoxEnLigne p {
    margin-top: 1.25vw;
    margin-bottom: 1.25vw;
}

.invisible .dernier p {
    margin-bottom: 0.25vw;
}

.visible img,
.visible canvas {
    height: 16.5vw;
}

.visible h1 {
    color: #D20A0A;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 2.75vw;
    margin-left: 0.5vw;
}

.visible h2 {
    color: #929292;
    font-size: 2.2vw;
    margin-bottom: 1vw;
    margin-top: 0;
    margin-left: 0.5vw;
}

.visible .colonneGauche>p {
    font-size: 2.75vw;
    margin-bottom: 0;
    margin-right: 0;
}

.visible p {
    font-size: 2.15vw;
    margin-right: 0.7vw;
    margin-bottom: 0;
    margin-top: 0;
    margin-left: 0.5vw;
}

.visible {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

#classementFemme {
    display: none;
    color: black;
}

.invisible .flexBoxEnLigne {
    transition: all 0.4s ease-out;
}

.invisible .flexBoxEnLigne:hover {
    transition: all 0.4s ease;
    transform: scale(1.025);
}

.nom {
    cursor: pointer;
}

#classementHomme .derniereSection,
#classementHomme .derniereSection {
    margin-bottom: 5.5vw;
}

header svg path {
    transition: all 0.4s ease-out;
}

header svg:hover path {
    fill: #D20A0A;
    transition: all 0.4s ease;
}