@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-azul: #00609c;
    --color-verde: #74bc1f;
    /* ---- llamar con -var(--color-primary) ---- */
}

body{
    background: #072F5C;
    font-family: 'Poppins', sans-serif;
}

.nav{
    width: 100%;
}



.nav__link{
    color: #303440;
    display: block;
    padding: 15px 0;
    text-decoration: none;
}

.nav__link--inside{
    border-radius: 6px ;
    padding-left: 20px;
    text-align: left;
}

.nav__link--inside:hover{
    background: #F6F8FA;
}

.list{
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #fff;    
}

.list__item{
    list-style: none;
    width: 100%;
    text-align: left;
    overflow: hidden;
}

.list__item--click{
    cursor: pointer;

}

@media (max-width:1366px) {

    .list__item--click{
        overflow-y: scroll;
    }

}

                

.list__button{
    display: flex;
    align-items: center;
    gap: 1em;
    width: 70%;
    margin: 0px 0px 0px 10px;
}




.list__button:hover {
background-color: var(--color-verde);
}


li label:hover{
background-color: var(--color-verde);
   
}


.arrow .list__arrow{
    
    transform: rotate(90deg);
}

.list__arrow{
    padding-left: 5%;
    margin-left: auto;
    transition: transform .3s;
}

.list__show{
    display: grid;
    grid-template-columns: 50% 50%;
    font-size: 10px;
    font-weight: 500;
    width: 100%;
    margin-left: 13px;
    border-left: 2px solid #303440;
    list-style: none;
    transition: height .4s;
    height: 0;
}



@media (max-width:1366px) {

    .list__show {
        grid-template-columns: 1fr;
    }

}


/* ----------------------------------------------- */


