/* LISTAS DE TESTS AGRUPADOS POR CATEGORIA */

div#test-list-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

div#test-list-container a{
    min-width: 238px;
    max-width: 238px;
    padding: 8px;
    border: 1px solid rgb(0, 102, 204);
    background-color: white;
    box-shadow: 0px 0px 0px #0000;
    border-radius: 5px;

    transition: transform 0.2s, box-shadow 0.2s;
}

@media only screen and (min-width: 992px) {
    div#test-list-container a:hover{
        transform: scale(1.07);
        box-shadow: 0px 0px 10px #0002;
    }
}

@media only screen and (max-width: 800px) {
    /* div#test-list-container a{
        width: 100%;
    } */
    div#test-list-container{
        justify-content: center;
        gap: 0px 20px;
    }
    div#test-list-container a{
        width: 45%;
    }
}

@media (max-width: 480px){
    div#test-list-container a{
        width: 100%;
    }
}

div#test-list-container a h2{
    white-space: nowrap;
    font-size: 18px!important;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0px;
    font-style: normal;
    text-align: center;
    margin: 0px;
}

div#test-list-container a hr{
    margin: 5px 15px;
}

div#test-list-container a .icono_y_texto_test{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0px 10px;
}

div#test-list-container a .icono_y_texto_test p{
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 0px;
    text-align: center;
}

div#test-list-container a .icono_y_texto_test svg{
    transform: scale(1.5);
}

div#test-list-container a .icono_y_texto_test svg.arrow{
    fill: rgb(0, 102, 204);
}

div#test-list-container a .icono_y_texto_test svg.tick{
    fill: #26af1f;
}

div#test-list-container a .icono_y_texto_test svg.cross{
    fill: #fe0000;
}



div#exam-list-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    margin: 32px 0px;
}

div#exam-list-container a{
    width: 158px;
    background: #2d89ef;
    color: white;
    border-radius: 40px;
    text-align: center;
    padding: 12px;
}

div#exam-list-container a h2{
    font-size: 14px!important;
    margin: 0px!important;
    padding: 0px!important;
    font-weight: 600!important;
    text-transform: uppercase;
    color: white!important;
}
