.contenitore-ricerca-documento {
    display: flex;
    justify-content: center;
}

    .contenitore-ricerca-documento input {
        width: 30%;
        height: 50px;
        border: 1px solid #CCCBCB;
        border-radius: 8px;
        padding: 0 32px;
        position: relative;
    }

.icon-ricerca-documento {
    background-color: #00783D;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    right: 25px;
}

    .icon-ricerca-documento i {
        left: 25%;
        position: relative;
        top: 25%;
    }

        .icon-ricerca-documento i.fa-magnifying-glass::before {
            color: #FFFFFF !important;
            cursor: pointer;
        }

/* Griglia documenti */


.contenitore-griglia-elenco-documenti {
    width: 100%;
}

.griglia-doc {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    column-gap: 5%;
    width: 100%;
    padding-left: 48px;
    row-gap: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
}

.documento {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 221px;
    width: 220px;
    background-color: #EEEEEE;
    transition: ease-in-out 200ms;
}

    .documento img {
        height: 50%;
        width: 50%;
        transition: ease-in-out 200ms;
    }

    .documento p {
        font-size: 12px;
        font-weight: 600;
        text-align: center;
        padding: 0 24px 32px 24px;
        transition: ease-in-out 200ms;
    }

.doc-elenco-documenti {
    color: #00783D;
    font-weight: 600;
}

    .doc-elenco-documenti:hover {
        color: #00783D;
        font-weight: 600;
        -webkit-text-decoration: underline;
        text-decoration: underline;
    }

.lista-documenti-elenco-documenti {
    width: 100%;
    min-height: 25vh;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
}

    .lista-documenti-elenco-documenti::-webkit-scrollbar {
        background-color: #E8E8E8;
    }

    .lista-documenti-elenco-documenti::-webkit-scrollbar-thumb {
        background: #87C668;
        width: 100%;
        height: 30px;
    }

.documento-elenco-documenti {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #bdbcbc;
}

    .documento-elenco-documenti a {
        width: 75px;
    }

    .documento-elenco-documenti img {
        width: 100%;
    }

    .documento-elenco-documenti img:hover {
        transform: scale(1.1);
    }

    .documento-elenco-documenti h4 {
        font-size: 18px;
    }

/* Box Filtro  */

.filtro-documenti {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.filtro-anno-documenti, .filtro-mese-documenti, .filtro-mercato-documenti {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

    .filtro-anno-documenti h4, .filtro-mese-documenti h4, .filtro-mercato-documenti h4 {
        align-self: center;
        margin-right: 10px;
    }

    .filtro-anno-documenti select, .filtro-mese-documenti select, .filtro-mercato-documenti select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        display: block;
        height: 35px;
        float: right;
        margin: 5px 0px;
        padding: 0px 15px;
        font-size: 15px;
        line-height: 1.75;
        color: #333;
        background-color: #ffffff;
        background-image: none;
        border: 1px solid #00783D;
        -ms-word-break: normal;
        word-break: normal;
        border-radius: 10px;
        outline: #00783D;
    }

    .filtro-anno-documenti select {
        min-width: 125px;
        width: max-content;
    }

    .filtro-mese-documenti select {
        min-width: 150px;
        width: max-content;
    }

    .filtro-mercato-documenti select {
        min-width: 150px;
        width: max-content;
    }


.filtro-anno-documenti::after, .filtro-mese-documenti::after, .filtro-mercato-documenti::after {
    content: '\f078';
    font: normal normal normal 17px/1 FontAwesome;
    color: #00783D;
    right: 25px;
    align-self: center;
    position: relative;
    pointer-events: none;
}