.hidden {
    display: none;
}

#document_sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

#document_sections .section_title {
    text-transform: uppercase;
    font-size: 700;
}

.section-research {
    padding-top: 40px;
    padding-bottom: 50px;
}

.section-research h2 {
	margin-bottom: 60px;
    font-weight: 400;
}

#document_search .download-form__fields {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

#document_search .download-form__fields {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

#document_search .download-form__field {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center;
}

#document_search .download-form__field-icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 0;
}

#document_search .download-form__field-icon img {
    height: 50px;
}

#document_search .wpcf7-form-control-wrap {
    width: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
}

#document_search .download-form__buttons {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
}

#document_search .download-form__buttons .btn {
    margin: 0 4px;
}

#document_search .img-filter-hidden {
    height: 50px;
}

#document_results .download-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 20px;
    padding: 15px 40px 10px 0;
    border-bottom: 1px solid #d0d0d0;
    background-color: #fff;
    background-image: url(/wp-content/plugins/calicantus-downloadarea/assets/img/icons/download-icon.png);
    background-repeat: no-repeat;
    background-position: 100% 70%;
    transition: background-color .25s ease-in; 
}

#document_results .download-item .download-item__w {
    -ms-flex: 1;
    flex: 1;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    text-transform: uppercase;
}

#document_results .download-item:hover {
    background-color: #f9f9f9;
}

#document_results .download-item:hover .download-item__w {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}


@media screen and (min-width: 64em) {
    #document_search .download-form__fields {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; 
    }
    
    #document_search .download-form__field {
        -ms-flex: 1;
        flex: 1;
        padding: 0 5px;
    }
    
    #document_search .download-form__buttons {
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

@media screen and (min-width: 40em) {
    #document_search .download-form__fields {
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    #document_sections {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .download-form__field {
        margin-top: 15px;
    }
    
    .download-form__buttons {
        margin-top: 20px;
    }
}