.containerTitle {
    position: relative;
    text-align: center;
}

.containerTitle, .containerExplication, .containerExplicationMinRequired {
    box-shadow: 0 0 15px var(--black);
    line-height: 40px;
    border-radius: 10px;
    width: 95%;
}

.top {
    margin-top: 30px;
}

.containerExplicationMinRequired {
    padding: 15px;
    text-align: left;
}

.containerExplication div, .containerExplicationMinRequired div {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 85px;
}

.containerExplication div {
    width: 610px;
}

.containerExplication p {
    line-height: 25px;
    padding: 5px 0 5px 10px;
}

.containerExplicationMinRequired {
    line-height: initial;
}

.containerExplicationMinRequired div {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 5px;
    width: max-content;
    margin: 0 auto;
    padding: 0 20px;
}

.containerCard {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}



.accountCard {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 250px;
    height: 150px;
    padding: 5px 10px;
    box-shadow: 0 0 15px var(--black);
    border-radius: 10px;
    margin: 10px 15px;
    flex-shrink: 0;
    font-family: LondrinaSolid-Regular, sans-serif;
    text-decoration: none;
    color: var(--white);
    letter-spacing: 1px;
    text-align: center;
}

.accountCard.red {
    background-color: var(--red);
}

.accountCard img {
    height: 100px;
    max-width: 220px;
}

@media screen and (max-width: 801px) {
    .accountCard {
        width: 200px;
        height: 120px;
        box-shadow: 0 0 15px var(--black);
        margin: 8px 12px;
    }

    .accountCard img {
        height: 80px;

    }
}

.avatar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 100px;
    height: 90%;
    box-shadow: 0 0 15px var(--black);
    border-radius: 10px;
    overflow: hidden;
}

.avatar.admin {
    left: 5px;
}

.avatar img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    min-width: 100px;
    height: auto;
    max-height: 101%;
    border-radius: 10px;
}

.avatar.admin img {
    height: 100px;
}

.containerTitle a {
    text-decoration: none;
    font-size: large;
    color: var(--black);
}

#content-container-info {
    height: initial;
    padding: 20px 0 40px 0;
}

@media screen and (max-width: 1000px) {
    .avatar {
        width: 80px;
    }

    .avatar.admin img {
        height: 75px;
        min-width: initial;
    }
}


@media screen and (max-width: 800px) {
    .avatar {
        top: 30px;
        width: 50px;
        height: 30%;
    }

    .avatar.admin img {
        min-width: 50px;
        max-height: 75%;
    }
}

/*****************************/
/***** PRACTICE RESEARCH *****/
/*****************************/
#nbAff-form {
    height: 35px;
    line-height: 35px;
}

#search-practice {
    width: 100%;
}

#search-practice-form {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 90%;
    border: 1px solid var(--darkorange);
    border-radius: 10px;
    padding: 0 5px;
    margin-bottom: 4px;
    height: 40px;
}

#search-practice-form div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: initial;
}

#search-practice-form div label {
    margin-right: 10px;
}

#search-practice-form div input {
    height: 25px;
}

#search-practice-form div select {
    width: fit-content;
    padding: 0 5px;
}

#search-practice-form .btn-valid {
    width: 60px;
    height: 25px;
    padding: 12px 25px;
}

/*************************/
/***** ERROR MESSAGE *****/
/*************************/
div li {
    list-style-type: none;
    color: var(--red);
    font-size: 0.9rem;
}

/*******************/
/***** RANKING *****/
/*******************/
#ranking-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    right: 5px;
}

#ranking-container.hidden-row {
    display: none;
}

.title-type, .title-pt {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 45px;
    text-align: center;
    font-size: 0.7rem;
}

.title-type {
    top: -5px;
}

.title-pt {
    bottom: -5px;
}

.title-rank {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    text-align: center;
}

.rank {
    position: relative;
    width: 45px;
    height: 45px;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 25px;
}

.rank.p {
    background-color: var(--yellow);
    color: var(--black);
}

.rank.d {
    background-color: var(--green);
    color: var(--white);
}

.rank.r {
    background-color: var(--blue);
    color: var(--white);
}

.rank.n {
    background-color: var(--red);
    color: var(--white);
}

.rank.a {
    background-color: var(--black);
    color: var(--white);
}