.ember-movenium-file-upload {
    .file-icon {
        font-size: 48px;
        padding-top: 29px;
        color: grey;
    }

    .queue-filename {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;

        font-size: 12px;

        text-align: center;
        color: grey;
    }

    .file-container {
        position: relative;
        //background-color: grey;
        display: inline-block;
        width: 106px;
        margin-bottom: 12px;
        padding: 3px;

        text-align: center;
        //margin-top: 29px;
        & .ember-movenium-close-icon {
            position: absolute;
            top: 5%;
            right: 10%;
            color: #000;
        }
    }

    .thumb-container {
        width: 100px;
        height: 100px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 4px;
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
    }

    .delete {
        display:none;
        float: right;
        text-shadow: 0px 0px 15px #fff;
        font-size: 1.5em;
        margin-top: -6px;
        margin-right: -6px;
    }

    @media(max-width: 720px) {
        .file-container:hover {
            cursor: pointer;
        }
    }
    .file-container:hover .delete {
        display: inline;
    }
    .file-preview {
        color: #000;
        text-decoration: none;
    }
}
