﻿

/* *******************************Modal de mais perfis********************************* */
.modal_outros_perfis {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 9999;
    left: 30%;
    top: 0%;
    width: 40%;
    height: auto;
    max-height: 80vh;
    overflow: auto;
    border: 0.1em solid var(--cor_cinza_escura);
    border-radius: 1vw;
    background-color: var(--cor_branca);
    padding: 2vw;
}

.box_texto_botao {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn_fechar {
    font-size: 1.3em;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 1vw;
}

.box_texto_delimitador {
    display: flex;
    align-items: center;
}

.titulo_delimitador {
    display: inline-block;
    font-family: var(--font-family-koho);
    font-size: 1.2em;
    color: var(--cor_cinza_escura);
    font-weight: 600;
    margin-left: 1.5vw;
}
.box_quantidades {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction:column;
    gap: 0.5vw;
    margin-top:0.5vw;
}
.linha_delimitadora {
    flex-grow: 1;
    height: 0vw;
    border-top: 0.15em solid var(--cor_principal);
    margin: 0.1vw 1.5vw 0 1.5vw;
}

.container_perfis {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
}

.perfil_extra {
    display: flex;
    align-items: center;
    margin-bottom: 2vw;
}

    .perfil_extra img {
        width: 4vw;
        height: 4vw;
        margin-right: 1.5vw;
        margin-left: 1.5vw;
        object-fit: cover;
        border-radius: 0.5vw;
    }

.ajuste_usuario img {
    width: 4vw;
    height: 4vw;
    margin-right: 1.5vw;
    margin-left: 1.5vw;
    object-fit: cover;
    border-radius: 50%;
}

.perfil_extra_info {
    width: 26vw;
    height: 4vw;
    flex-grow: 1;
    border-bottom: 0.05em solid var(--cor_principal_transparencia);
    margin-right: 1.5vw;
}

    .perfil_extra_info h3 {
        font-family: var(--font-family-montserrat);
        color: var(--cor_cinza_escura);
        font-size: 1em;
        margin: 0.1vw 0 0 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .perfil_extra_info p {
        font-family: var(--font-family-koho);
        color: var(--cor_cinza_clara);
        font-weight: 600;
        font-size: 0.7em;
        margin-bottom: 0;
    }



/* Propriedade de scroll da tela */
.scrollable-section_headerprincipal {
    max-height: calc(40vh - 2.5vw);
    overflow: hidden;
    overflow-y: auto;
    margin-top: 0.5vw;
}















@media only screen and (max-width: 1024px) {


    /* *******************************Modal de mais perfis********************************* */
    .modal_outros_perfis {
        left: 20%;
        top: 10%;
        width: 60%;
        padding: 2vw;
    }


    .linha_delimitadora {
        height: 1vw;
        margin: 0vw 1.5vw 0 1.5vw;
    }

    .perfil_extra {
        display: flex;
        align-items: center;
        margin-bottom: 2vw;
    }

        .perfil_extra img {
            width: 8vw;
            height: 8vw;
            border-radius: 1.5vw;
        }

    .perfil_extra_info {
        width: 46vw;
        height: 8vw;
    }

  
}

@media only screen and (max-width: 768px) {


    /* *******************************Modal de mais perfis********************************* */
    .modal_outros_perfis {
        left: 20%;
        top: 10%;
        width: 60%;
        padding: 2vw;
    }

    .linha_delimitadora {
        height: 1vw;
        margin: 0vw 1.5vw 0 1.5vw;
    }

    .perfil_extra {
        display: flex;
        align-items: center;
        margin-bottom: 2vw;
    }

        .perfil_extra img {
            width: 10vw;
            height: 10vw;
            border-radius: 2vw;
        }

    .perfil_extra_info {
        width: 43vw;
        height: 10vw;
    }

    
}

@media only screen and (max-width: 480px) {
  
    /* *******************************Modal de mais perfis********************************* */
    .modal_outros_perfis {
        left: 5%;
        top: 10%;
        width: 90%;
        height: auto;
        max-height: 80vh;
        border-radius: 2vw;
        padding: 2vw;
    }


    .linha_delimitadora {
        height: 1vw;
        margin: 0vw 1.5vw 0 1.5vw;
    }

    .perfil_extra {
        display: flex;
        align-items: center;
        margin-bottom: 2vw;
    }

        .perfil_extra img {
            width: 12vw;
            height: 12vw;
            border-radius: 2.5vw;
        }

    .perfil_extra_info {
        width: 68vw;
        height: 13vw;
    }


}
