.imageuploadify {
    position: relative;
    display: flex;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.imageupbox {
    display: flex;
    justify-content: center;
}

.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 {}

.imageuploadify .imageuploadify-images-list span.imageuploadify-message {
    display: inline-block
}

.imageuploadify .imageuploadify-images-list button.btn-default {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 212px;
    height: 48px;
    color: #000 !important;
    box-shadow: 0px 12px 13px -6px #0000000a;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    background: #FCFCFC !important;
    border: 2px solid #EFEFEF;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    padding: 8px 16px;
}

.imageuploadify .imageuploadify-images-list button.btn-default svg {
    width: 20px;
    margin-right: 4px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.imageuploadify .imageuploadify-images-list button.btn-default:hover {
    background: #0075bf !important;
    color: #fff !important;
}

.imageuploadify .imageuploadify-images-list button.btn-default:hover svg {
    fill: #fff !important;
}

.imageuploadify .imageuploadify-images-list .imageuploadify-container {
    display: inline-block;
    width: 99px;
    height: 99px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
    margin: 15px 10px 0px 10px !important;
    box-shadow: 0 0 4px 0 #888;
}

.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: 2px 0;
    text-align: center;
    z-index: 3
}

.imageuploadify .imageuploadify-images-list .imageuploadify-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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: #00000080;
    z-index: 2;
    opacity: 0;
}

.imageuploadify .imageuploadify-images-list .imageuploadify-container .imageuploadify-details span {
    display: block;
    color: #fff;
    line-height: 20px;
}