// BIBLIOTECA
//------------------------------------
.acervo-links {
    display: flex;
    margin-bottom: 35px;

    .item-acervo {
        width: 19%;
        margin-right: 5%; 

        a {
            display: flex;
            align-items: center;

            img {
                margin-right: 8%;
            }

            p {
                color: #203562;
                font-size: 18px;
                margin: 0;
                font-weight: 500;
            }
        }
    }
}
.container-app {
    width: 45%;
    display: flex;

    a {
        margin-right: 1%;
        display: block;
    }

    img {
        display: block;
        height: auto;
        width: 100%;
    }
}
.list-courses.periodicos-cursos {
    justify-content: center;
}

.course-menu.periodicos-cursos {
    display: none;
}

#detail-periodico {
    cursor: pointer;
}

.list-periodicos {
    width: 100%;

    #detail-periodico-internal {
        margin-bottom: 20px;
        width: 23%;
        margin-right: 2%;
        display: inline-grid;

        .box-image-book {
            width: 100%;
            height: 300px;
        }

        .title {
            text-align: center;
            display: block;
            font-weight: 600
        }
    }

    #detail-periodico-internal:nth-child(4n) {
        margin-right: 0;
    }
}
.course-home--wrapper > .content.internal-periodicos:before {
    display: none;
}
.title-periodicos {
    text-align: center;
}
.no-results {
    width: 100%;
    text-align: center;
}
.course-select select {
    display: none;
}
.course-select.select-seta:after {
    display: none;
}

/*RESPONSIVE*/
@media (max-width: 900px) {
    .acervo-links .item-acervo {
        width: 30%;
    }
    .list-periodicos #detail-periodico-internal {
        width: 48%;
        margin-right: 2%;
    }

    .list-periodicos #detail-periodico-internal:nth-child(2n) {
        margin-right: 0;
    }
}

@media (max-width: 750px) {
    .acervo-links {
        flex-direction: column;
        margin-bottom: 0;
    }
    .acervo-links .item-acervo {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }
    .acervo-links .item-acervo a img {
        margin-right: 2%;
    }
}

@media (max-width: 600px) {
    .list-periodicos #detail-periodico-internal {
        width: 100%;
        margin-right: 0;
    }
} 
