.profileCard-active {
    position: absolute;
    top: 0;
    width: 100vw;
    background: white;
}

.backButton-profileCard {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 25px;
    height: 25px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profileHeader {
    height: 30vh;
    width: 100vw;
    background: rgba(0, 80, 170, 1);
    display: flex;
    justify-content: center;
    padding-top: 15%;
}

.backButton-profileCard-Line1 {
    position: absolute;
    background: black;
    height: 2px;
    width: 80%;
    border-radius: 50%;
    transform: rotate(45deg);
}

.backButton-profileCard-Line2 {
    background: black;
    height: 2px;
    width: 80%;
    border-radius: 50%;
    transform: rotate(135deg);
}

.profileImg {
    object-fit: cover;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    position: absolute;
    top: 20vh;
    background: white;
}

.statsList {
    display: flex;
    flex-direction: row;
    padding-top: 20vh;
    padding-right: 10%;
    padding-left: 10%;
}

.statsColumn1 {
    flex-basis: 50vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.statsColumn2 {
    flex-basis: 30vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.statsList li {
    height: 40px;
}

#lastMatchesButton {
    text-align: center;
    transform: translateX(-50%);
    margin-left: 50%;
    margin-top: 50px;
    padding: 10px;
    background-color: #0051AA;
    color: #EEE;
    border-radius: 15px;
}

#lastMatchesButton:hover {
    background-color: #3170B5;
    cursor: pointer;
}

#lastMatchesButton:active {
    background-color: #0051AA;
}

.diagrammList {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.canvasElo {
    /* width: 100vw; */
    /* height: 33vh; */
    /* background: lightblue; */
    margin-top: 200px;
    padding-right: 20px;
}

@media (min-width: 600px) {
    .doughnutList {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .canvasMatchType {
        width: 50vw !important;
        height: 50vw !important;
        /* background: pink; */
    }
    .canvasEnemy {
        width: 50vw !important;
        height: 50vw !important;
        /* background: yellow; */
    }
}