#dropDiv {
    z-index: 1;
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    background: transparent;
}

#dropDiv.active123 {
    background: #aaa;
    z-index: 9;
}

* {
    z-index: 2;
}
.rm-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px 3px #ccc;
    width: 400px;

    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.responseDiv {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px 3px #ccc;
    width: 90%;
    padding-top: 30px;
    padding-bottom: 30px;
    min-height: 400px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 10px;
    border: 1px solid #ddd;
}
.resultImgDiv {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}
.resultImg {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999;
}
.resultLocalDiv {
    background-size: cover;
}
.resultLocalImg {
    width: auto;
    max-width: 400px !important;
    height: auto;
    max-height: 50vh;
    object-fit: scale-down;
}
.downloadBtn {
    font-size: 25px;
    border-radius: 10px;
}
.downloadBtn.disabled {
    pointer-events: none;
    background: #ccc;
    border-color: #bbb;
}
.loadingDiv {
    background: rgba(230, 230, 230, 0.35);
    z-index: 9999;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loadingDiv img {
    width: 150px;
    height: auto;
}

@keyframes slideOut {
    0% {
        width: 100%;
    }
    100% {
        width: 0px;
    }
}

@media only screen and (max-width: 991px) {
    .rm-container {
        transform: translate(-50%, -40%);
        width: 50%;
        height: 60vh;
    }
}

@media only screen and (max-width: 767px) {
    .rm-container {
        width: 80%;
    }
    .resultImg {
        width: auto;
        max-width: 100%;
        height: 50vh;
        border: 1px solid #ddd;
        border-radius: 5px;
    }
    .responseDiv {
        flex-direction: column;
    }
}
