/* --------------------------------
         Css - Minha Rede
-------------------------------- */

.container-minhaRede{
    width: 100%;
    height: auto;
    background-color: #E5E5E5;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feedRecomendados{
    width: 80%;
    height: auto;
    max-width: 1170px;
    font-size: 1.6rem;
    background-color: #fff; 
    border-radius: 10px;
    box-shadow: 0 2px 4px #999999;
    border: 1px solid #ced4da;
    padding: 20px 0px;
    margin: 30px 0px 0px 0px;
    display: flex;
    justify-content: center;
}

.feed{
    width: 80%;
    height: auto;
    max-width: 1170px;
    background-color: #fff; 
    border-radius: 10px;
    box-shadow: 0 2px 4px #999999;
    border: 1px solid #ced4da;
    margin: 30px 0px;
}

.pesquisarContatos,
.feedContatos{
    width: 100%;
    font-size: 1.6rem;
    margin: 30px 0px 0px 0px;
    display: flex;
    justify-content: center;
}

.feedContatos{
    margin-bottom: 30px;
}

/* --------------------------------
         Feed contatos
-------------------------------- */
.feedContatos-conteudo,
.feedRecomendados-conteudo{
    width: 90%;
    max-width: 1028px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.scroll{
    overflow-x: scroll;
    display: flex;
    flex-wrap: nowrap;
}

.feedRecomendados-conteudo .cardContato{
    margin: 0px 8px;
    margin-bottom: 5px;
}

.feedRecomendados-conteudo h4{
    width: 100%;
    margin-bottom: 10px;
}

.feedRecomendados-conteudo .nomeContato{
    width: 130px;
}

.feedRecomendados-conteudo .cardContato img.contatoimg {
    width: 130px;
    height: 130px
}

/* --------------------------------
         Form
-------------------------------- */
.form-group{
    margin-bottom: 0px;
}

.form-control{
    height: 50px;
    font-size: 1.6rem; 
    font-weight: normal;
    font-family: sans-serif;
}

::-webkit-input-placeholder{
    font-size: 1.6rem;
    color: #999999;
}

/* --------------------------------
         Pesquisar contatos
-------------------------------- */
.formulario-pesquisar-contato{
    width: 90%;
    max-width: 1028px;
    display: flex;
    flex-direction: column;
}

.mesmaLinha{
    display: flex;
}

/* --------------------------------
         Card Contato
-------------------------------- */
.cardContato {
    margin: 0 auto;
    padding: 0px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nomeContato{
    width: 170px;
    height: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 4px #999999;
    border: 1px solid #ced4da;
    margin: 10px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nomeContato a{
    font-weight: 700;
    color: #11173d; 
}

.nomeContato a:hover{
    text-decoration: none;
    color: #fb3c00;
}

.feedContatos-conteudo .cardContato{
    margin-bottom: 10px;
}

/* --------------------------------
         Img contato
-------------------------------- */
.cardContato img.contatoimg {
    width: 170px;
    height: 170px;
    background-color: #E5E5E5;
    border-radius: 50%;
}

/* --------------------------------
         Radio e Radio-group
-------------------------------- */
.radio-group{
    width: 100%;
    height: 50px;
    font-size: 2.2rem;
    font-weight: 700;
    border-radius: none;
    box-shadow: none;
    padding: 6px 0px;
    margin-bottom: 10px;
    display: flex;
}

.radio-group label.custom-control-label{
    padding: 0px 10px;
    cursor: pointer;
}

.custom-control{
    margin-right: 10px;
}

.custom-control-label:before{
    width: 20px;
    height: 20px;
    background-color:#F7F7F7;
    box-shadow: 0px 2px 4px #999999;
} 
  
.custom-radio .custom-control-input:checked~.custom-control-label::before{
    box-shadow: 0px 2px 4px #999999;
}

.custom-control-label::after{
    width: 20px;
    height: 20px;
}

/* --------------------------------
         Botões
-------------------------------- */
button.btn {
    width: 100px;
    height: 40px;
    font-size: 1.6rem;
    font-weight: 700;
    transition: filter 0.2s;
    color: #fff;
    background-color: #fb3c00;
    border: 2px solid #fb3c00;
    border-radius: 10px;
    margin-top: 20px;
}

button.btn:hover {
    text-decoration: none;
    color: #fff;
    background-color: #fb754b;
    border: 2px solid #fb3c00;
}

button.btn:focus{
    box-shadow: none;
}

.mesmaLinha button{
    margin-top: 0px;
    margin-left: 10px
}

.btn.btn-Seguir{
    height: 25px;
    font-size: 1.4rem;
    padding-top: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.btn.btn-mais{
    width: 115px;
    margin-top: 0px;
}

.feedContatos-conteudo .botao{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

/* --------------------------------
            MEDIA QUERY
-------------------------------- */
    @media screen and (max-width: 992px) {
    main,
    .modal{
        font-size: 58%;
    }

    .pesquisarContatos,
    .feedContatos,
    .feedRecomendados{
        margin: 25px 0px 0px 0px;
    }

    .feedContatos{
        margin-bottom: 25px;
    }

    .scroll{
        margin-top: 5px;
    }

    .form-control,  
    .radio-group{
        height: 45px;
    }

    .radio-group label.custom-control-label{
        padding: 2px 10px;
    }

    .nomeContato{
        width: 150px;
    }
    .cardContato img.contatoimg {
        width: 150px;
        height: 150px;
    }

    .btn.btn-Seguir{
        height: 23px;
    }
} 

@media screen and (max-width: 768px) {
    main,
    .modal{
        font-size: 53%; 
    }

    .pesquisarContatos,
    .feedContatos,
    .feedRecomendados{
        margin: 20px 0px 0px 0px;
    }

    .feedContatos{
        margin-bottom: 20px;
    }

    .form-control, 
    .radio-group{
        height: 40px;
    }

    .nomeContato{
        width: 140px;
    }

    .cardContato img.contatoimg {
        width: 140px;
        height: 140px;
    }

    .btn.btn-Seguir{
        height: 21px;
    }
}

@media screen and (max-width: 576px) {
    main,
    .modal{
        font-size:62.5%;
    }

    .navbar-toggler-icon {
        font-size: 2.3rem;
        height: 1em;
    }

    html { 
        font-size: 47%; 
    }    

    .container-minhaRede{
        margin-top: 44.69px;
    }

    .feedRecomendados,
    .feed{
        width: 90%;
        margin: 15px 0px 0px 0px;
    }

    .feed{
        margin-bottom: 15px;
    }

    .pesquisarContatos{
        margin-top: 15px;
    }

    .feedContatos{
        margin: 0px;
        margin-bottom: 15px;
    }
    
    .custom-control{
        margin-top: 15px;
    }

    .radio-group{
        padding: 6px 0px;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .form-group{
        margin-top: 0px;
    }

    .radio-group label.custom-control-label{
        padding: 5px 15px;
    }

    .nomeContato{
        width: 130px;
    }

    .feedContatos{
        padding-top: 0px;
    }
    
    .feedContatos .cardContato {
        margin-bottom: 0px;
        margin-top: 55px;
    }

    .cardContato img.contatoimg {
        width: 130px;
        height: 130px
    }

    .btn.btn-Seguir{
        height: 19px;
    }
}