.containerProfil{
    width: 80%;
    max-width: 1000px;
    position: relative;
}
.containsProfil{
    width: 100%;
    height: 400px;
    border: 1px solid var(--AAB734);
    border-radius: 10px;
}
.containerProfilBackground{
    width: 100%;
    height: 400px;
    position: absolute;
}
.profilBackgroundTop{
    width: 100%;
    height: 65%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.profilBackgroundBottom{
    width: 100%;
    height: 35%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: black;
    border-radius: 0 0 10px 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.containerProfilInfos{
    position: absolute;
    width: calc(100% - 40px);
    height: 360px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
}
.containerProfilAvatar{
    margin-right: 20px;
    width: 200px;
    height: 200px;
    border-radius: 5px;
    border: var(--AAB734) 2px solid;
    background: black;
}
.profilAvatar{
    border-radius: 3px;
    width: 200px;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.containerProfilPseudoGradeStatsRegister{
    width: 100%;
    height: 360px;
}
.containerProfilPseudoGrade{
    width: auto;
    height: calc(65% + 6px);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
.containsProfilPseudoGrade{
    width: 100%;
    height: 67%;
    position: relative;
}
.profilPseudo{
    margin: 0;
    font-size: 30px;
    width: max-content;
    height: 25%;
}
.containerProfilGrade{
    width: max-content;
    height: 120px;
}
.containsProfilGrade{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: max-content;
    height: 25%;
}
.profilGrade{
    color: #aeaeae;
    margin-top: 5px;
    width: max-content;
    padding: 5px 10px 5px 10px;
    border-radius: 3px;
    border: 1px solid #aeaeae;
    margin: 5px 5px 0 0;
    border-radius: 3px;
}
.profilGradeClub{
    background: #ac8422;
}
.profilGradeFondateur{
    background: #a30000;
}
.profilGradeStaff{
    background: #184FC6;
}
.profilGradeModerateur{
    background: #3e8f05;
}
.profilGradeMembre{
    background: black;
}
.containerProfilBadges{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 25%;
    position: inherit;
    z-index: 1;
}
.containsProfilBadges{
    width: 30px;
    height: 30px;
    background-color: black;
    margin: 10px 5px 10px 0;
    border-radius: 3px;
    border: 1px solid #aeaeae;
    cursor: pointer;
}
.containsProfilBadges svg{
    padding: 5px;
}
.containerProfilGames{
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
}
.containsProfilGames{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.profilGames, .profilGamesDisplay{
    width: 30px;
    height: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: black;
    margin: 10px 5px 6px 0;
    border-radius: 3px;
    border: 1px solid #aeaeae;
    cursor: pointer;
}
.containerProfilGamesDisplay{
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}
.containsProfilGamesDisplay{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    transition: .7s;
    height: 100%;
}
.profilGamesDisplayText, .profilGamesDisplayTextDisplay{
    width: 22px;
    height: 22px;
    margin: 10px 5px 10px 0;
    font-size: 20px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    border: 1px solid #aeaeae;
    background-color: black;
}
.profilGamesDisplayText{
    display: flex;
}
.profilGamesDisplayTextDisplay{
    display: none;
}
.containerProfilStatsRegister{
    margin: 0 20px 0 20px;
    width: auto;
    height: calc(35% - -13px);
}
.containsProfilStats{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 50%;
    width: auto;
    text-align: center;
}
.containsProfilRegister{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50%;
    width: auto;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.containerProfilRegisterReportSvg{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #aeaeae;
    cursor: pointer;
}
.containerProfilRegisterReportSvg p{
    margin: 0;
}
.profilRegisterReportSvg{
    fill: #aeaeae;
    width: 16px;
    height: auto;
    margin-right: 5px;
}
[data-title]{
    position: relative;
}
[data-title]:hover::before {
    content: attr(data-title);
    position: absolute;
    bottom: 42px;
    left: -1px;
    display: inline-block;
    padding: 3px 6px;
    border-radius: 2px;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-family: sans-serif;
    white-space: nowrap;
    border: 1px solid #aeaeae;
    z-index: 2;
}
.containerProfilNotMessage p{
    margin: 20px;
}
.profilEditSvg, .profilEditBackgroundSvg{
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    border: 1px solid var(--AAB734);
    border-radius: 5px;
    padding: 4px;
    background: black;
    cursor: pointer;
}
.profilEditSvg:hover, .profilEditBackgroundSvg:hover{
    background: var(--AAB734)!important;
}
.profilEditSvg:hover path, .profilEditBackgroundSvg:hover path{
    fill: black!important;
}
.containerProfilAvatar{
    position: relative;
}
.containerEditBackground{
    position: absolute;
    border: 1px solid var(--AAB734);
    border-radius: 10px;
    top: 0;
    left: 0;
    z-index: 2;
    width: 1000px;
    max-width: 100%;
}
.hidden{
    display: none!important;
}
.containsTopEditBackground{
    max-width: 100%;
    width: 1000px;
    height: 260px;
    background-color: var(--AAB734);
    border-radius: 10px 10px 0 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.containsBotEditBackground{
    max-width: 100%;
    width: 1000px;
    height: 140px;
    background-color: black;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}
.choiceEditBackground{
    width: 198px;
    height: 55px;
    border: 1px solid;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    filter: brightness(0.5);
}
.choiceEditBackground:hover{
    filter: none!important;
}
.parametresImgEditBackground{
    max-width: 100%;
    width: 1000px;
    height: 27px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -40px;
}
.imgEditBackgroundSite{
    max-width: 100%;
    width: 1000px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: overlay;
}
.imgEditBackgroundPerso{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.buttonParametreChoiceImgSite, .buttonParametreChoiceImgPerso, .buttonChoiceImgfile{
    background: black;
    color: #aeaeae;
    font-size: 16px;
    border-radius: 3px;
    border: 1px solid var(--AAB734);
    width: auto;
    height: 23px;
    cursor: pointer;
    margin: 10px;
    font-family: inherit;
}
.menuEditBackgroundSvg{
    position: absolute;
    top: 10px;
    right: 10px;
}
.cancelProfilEditBackgroundSvg, .validProfilEditBackgroundSvg{
    z-index: 1;
    border: 1px solid var(--AAB734);
    border-radius: 5px;
    padding: 4px;
    background: black;
    cursor: pointer;
}
.cancelProfilEditBackgroundSvg:hover, .validProfilEditBackgroundSvg:hover{
    background: var(--AAB734)!important;
}
.cancelProfilEditBackgroundSvg:hover path, .validProfilEditBackgroundSvg:hover path{
    fill: black!important;
}

.scrollbar {
    overflow-y: auto;
    max-height: 500px;
}
.imageContainer{
    width: 198px;
    height: 55px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid;
}
.imageAvatarContainer {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid;
}
@media all and (max-width: 600px) {
    .containsProfil {
        height: auto!important;
        overflow: hidden!important;
    }
    .containerProfilInfos {
        position: inherit!important;
        display: inherit!important;
        height: auto!important;
        background-color: black!important;
    }
    .contentAvatarResponsive{
        width: 100%;
        height: 340px;
        display: flex;
        justify-content: center;
        align-items: end;
    }
    .containerProfilPseudoGrade{
        display: inherit!important;
    }
    .profilPseudo {
        width: 100%!important;
        text-align: center!important;
    }
    .containsProfilGrade {
        justify-content: center!important;
        width: 100%!important;
        height: auto!important;
        flex-wrap: wrap!important;
    }
    .containerProfilBadges {
        justify-content: center!important;
    }
    .containerProfilGames {
        position: inherit!important;
    }
    .containerProfilAvatar {
        margin-right: 0!important;
    }
}