.imageuploadify {
    border: 2px dashed #d2d2d2;
    position: relative;
    
    min-width: 250px;
    max-width: 100%;
    margin: auto;
    display: flex;
    padding: 5px;
    flex-direction: column;
    text-align: center;
    background-color: #fff;
    color: #cacfd8;
    border-radius:3px;
}
    .imageuploadify .progress {
        position:relative;
        z-index:50;
        top:50%;
        background:none !important;
    }
    .imageuploadify .imageuploadify-overlay {
        z-index: 10;
        width: 100%;
        height: 100%;
        position: absolute;
        flex-direction: column;
        top: 0;
        left: 0;
        display: none;
        font-size: 7em;
        background-color: rgba(242,242,242,.7);
        text-align: center;
        pointer-events: none
    }

        .imageuploadify .imageuploadify-overlay i {
            z-index: 10;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            pointer-events: none
        }

    .imageuploadify .imageuploadify-images-list {
        display: inline-block
    }

        .imageuploadify .imageuploadify-images-list .d-flex.align-items-center.justify-content-center i{
        margin-right:20px;
        }
    .imageuploadify .imageuploadify-images-list i {
        display: block;
        font-size: 3em;
        text-align: center;
        margin-top: 20px;
        margin-right: 0px;
        padding-bottom: 12px
    }

        .imageuploadify .imageuploadify-images-list span.imageuploadify-message {
            font-size: 18px;
            /*border-top: 1px solid #cacfd8;
            border-bottom: 1px solid #cacfd8;*/
            padding: 0px;
            display: block;
        }

        .imageuploadify .imageuploadify-images-list button.btn-theme-reverse {
            /*display: block;
            color: #3AA0FF;
            border-color: #3AA0FF;*/
            margin: 0px auto 25px;
        }

        .imageuploadify .imageuploadify-images-list .imageuploadify-container {
            width: 103px;
            height: 103px;
            padding:3px;
            position: relative;
            overflow: hidden;
            margin-bottom: 1em;
            float: left;
            border-radius: 3px;
            /*box-shadow: 0 0 4px 0 #888;*/
            border: 2px dashed var(--dashed-border-color);
            margin-bottom:10px;
            margin-left:10px !important;
            display:flex;
            justify-content:center;
            align-items:center;
        }
        .imageuploadify .imageuploadify-images-list .imageuploadify-container img{
            position:absolute;
            top:0px;
            left:0px;
            right:0px;
            bottom:0px;
            display:block;
            margin:auto;
            max-width:100%;
            max-height:100%;
        }
            .imageuploadify .imageuploadify-images-list .imageuploadify-container button.btn-danger {
                position: absolute;
                top: 3px;
                right: 3px;
                width: 20px;
                height: 20px;
                border-radius: 15px;
                font-size: 10px;
                line-height: 1.42;
                padding: 0px 0 !important;
                text-align: center;
                z-index: 3
            }

            .imageuploadify .imageuploadify-images-list .imageuploadify-container img {
                height: 100px;
                left: 50%;
                position: absolute;
                top: 50%;
                transform: translate(-50%,-50%);
                width: auto
            }

            .imageuploadify .imageuploadify-images-list .imageuploadify-container .imageuploadify-details {
                position: absolute;
                top: 0;
                padding-top: 20px;
                width: 100%;
                height: 100%;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                background: rgba(255,255,255,.9);
                z-index: 2;
                opacity: 0;
                display:none;
            }

                .imageuploadify .imageuploadify-images-list .imageuploadify-container .imageuploadify-details span {
                    display: none
                }
