div#fields-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 50px;
}

div#fields-box .field-item {
    width: 33%;
}

.form-group.field-item > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group h4 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.form-group small {
    font-size: 12px;
    text-align: center;
    padding: 0 40px;
    margin-bottom: 10px;
}

.form-group span.filename, .form-group span.action{
    display: none;
}

.form-group.button-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.form-group.button-item div {
    text-align: center;
}

.form-group.field-item > div img {
    margin-bottom: 15px;
}

@media screen and (max-width:767px){
    div#fields-box {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        margin-top: 20px;
    }
    div#fields-box .field-item {
        width: 100%;
    }

    .form-group h4 {
        font-size: 18px;
    }
}