/*DROPZONE - Image upload*/
.bd-image-form-upload{
    width: 100%;
}

#bd-dropzone{
    /*transition: max-height 0.5s, overflow 0.5s 0.5s;*/
    /*display: none;*/
}

.dropzone {
    border: 2px dashed #0087F7 !important;
    height: 100%;
    width: 100%;
    /*border-radius: 5px;*/
    /*background: white;*/
    /*min-height: 150px;*/
    /*padding: 54px 54px;*/
}

.dropzone-container{
    /*background: #E8E9EC;*/
    /*padding: 2.8rem;*/
    /*width: 15em;*/
    /*height: 15em;*/
    padding: 12px;
    width: 100%;
    height: 100%;
}

#dropzone-images {
    width: 100%;
    height: 100%;
}

.dropzone-container > * {
    /*margin-left: auto;*/
    /*margin-right: auto;*/
}

.dropzone .dz-preview .dz-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.dropzone-count{
    font-size: 1.3em;
    padding: 5px;
    letter-spacing: 5px;
    margin-left: 5px;
    color: #8e8d8d;
}

.edit-image-popup {
    max-height: 90%;
}

.no-height-calc{
    height: auto !important;
}

.bd-thumbnail img:hover {
    /*transition: transform 0.7s ease;*/
    /*transform: translate(-50%, -50%) scale(1.2);*/
}


.bd-thumbnail img {
    opacity: 1;
    display: block;
    left: 50%;
    top: 50%;
    height: 100%;
    transition: .5s ease;
    backface-visibility: hidden;
    padding: 12px;
    object-fit: cover;
    width: 100%;
}

.bd-thumbnail .success-mark, .bd-thumbnail .error-mark{
    pointer-events: none;
    opacity: 0;
    z-index: 500;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -27px;
    margin-top: -27px;
}
.bd-thumbnail .error-mark{
    color: red;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    z-index: 600;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%)
}

.deleted {
    opacity: 0.7;
}


.bd-thumbnail:hover img {
    opacity: 0.3;
}

.bd-thumbnail:hover .middle {
    opacity: 1;
}
/*END: DROPZONE - Image upload*/
