/* ==========================================================================
   FILEPOND - CARESTREAM STYLE
   ========================================================================== */

/* Root */
.filepond--root {
    width: 100%;
    margin: 0;
    font-family: "Open Sans", sans-serif;
    border: 1px solid #d7dde5;
    border-radius: 4px;
    background: #f6f6f6;
    overflow: hidden;
    transition: border-color .2s ease;
}

.filepond--root:hover {
    border-color: #f28c28;
}

/* Remove default FilePond panels */
.filepond--panel-root,
.filepond--panel-top,
.filepond--panel-center,
.filepond--panel-bottom {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* ==========================================================================
   DROP AREA
   ========================================================================== */

.filepond--drop-label {
    min-height: 92px;
}

.filepond--drop-label label {
    font-family: "Open Sans", sans-serif;
    font-size: 16px !important;
    font-weight: 400;
    line-height: 1.5;
    color: #555;
}

.filepond--label-action {
    display: inline !important;
    margin: 0 !important;
    color: #1565c0 !important;
    text-decoration: underline;
    cursor: pointer !important;
}

form span.filepond--label-action {
    display: inline !important;
    margin: 0 !important;
}

.filepond--root,
.filepond--browser,
.filepond--drop-label,
.filepond--drop-label label {
    cursor: pointer !important;
}

.filepond--credits {
    display: none !important;
}

.filepond--drip {
    opacity: 0 !important;
}

/* ==========================================================================
   FILE LIST
   ========================================================================== */

.filepond--list-scroller {
    background: #fff;
    padding: 12px 18px;
}

.filepond--list {
    margin: 0;
}

/* White background behind uploaded files */

.filepond--item-panel,
.filepond--item-panel .filepond--panel-top,
.filepond--item-panel .filepond--panel-center,
.filepond--item-panel .filepond--panel-bottom {
    background: #fff !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.filepond--item {
    margin: 0 !important;
    padding: 0 !important;
}

.filepond--file {
    display: flex;
    align-items: center;

    height: 52px;
    min-height: 52px;

    padding: 0 16px;

    background: transparent !important;
    box-shadow: none !important;
    color: #333;
}

.filepond--file-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 12px;
}

.filepond--file-info-main {
    color: #333 !important;
    font-size: 16px;
    font-weight: 400;
}

.filepond--file-info-sub {
    color: #8b8b8b !important;
    font-size: 13px;
}

.filepond--file-info-main,
.filepond--file-info-sub {
    white-space: nowrap;
}

/* Remove button */

.filepond--action-remove-item {
    width: 24px;
    height: 24px;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;

    color: #666;
    cursor: pointer;
}

.filepond--action-remove-item:hover {
    color: #333;
}

.filepond--action-remove-item svg {
    width: 18px;
    height: 18px;
}

/* Hide unused controls */

.filepond--action-abort-item-load,
.filepond--action-retry-item-load,
.filepond--processing-complete-indicator,
.filepond--progress-indicator,
.filepond--file-status {
    display: none !important;
}