.filepond--root {
    height: auto;
    max-height: none;
    margin: 0;
    background-color: transparent !important;
}

.filepond--panel-root,
.filepond--drop-label {
    display: none !important;
}

.filepond--root.form-control {
    border: none !important;
}

input[type="file"][data-filepond-target="container"] {
    display: none !important;
}

.filepond--list {
    margin-top: 10px !important;

    display: flex;
    flex-wrap: wrap;
}

.filepond--item {
    margin-left: 2px !important;
    margin-bottom: 2px !important;

    height: 100px;
    min-width: 150px;
    width: calc(25% - 10px);
}

.filepond--drop-label {
    background-color: #FFF;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 2px #5c5c5c20 !important;
}

.filepond--panel-center,
.filepond--panel-bottom {
    background-color: transparent !important;
}

@media (max-width: 768px) {
    .filepond--item {
        width: 90% !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}