﻿.loading-app {
    background: #000 url(../img/loader.gif);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
   /* background-size: 80px;*/
    background-repeat: no-repeat;
    background-position: center;
    background-color:#fff;
}

.loader {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #111;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.loader-wrpr {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    z-index: 99999;
}

@media (min-width: 576px) {
    .modal-dialog-mod {
        max-width: 650px !important;
        margin: 1.75rem auto;
    }


    .dark-mode .loader-wrpr {
        background: rgba(0,0,0,0.8);
    }



    .fileremove {
        height: 20px;
        line-height: 20px;
        text-align: center;
        border: 0;
        color: #fff;
        padding: 0 10px;
        background: #fb2e41;
        border-radius: 3%;
       width:100%;
        cursor: pointer;
    }

    .uploader-container {
        display: flex;
        flex-wrap: wrap;
        width: fit-content;
        gap: 10px;
    }

    .file-uploader-2 {
        width: 150px;
        height: 150px;
        /* background: rgba(245, 245, 245, 0.41); */
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }

        .file-uploader-2 input {
            display: none;
        }

        .file-uploader-2 img {
            width: 110px !important;
            height: 110px !important;
            border-radius: 5px;
        }

    .uploader-container img {
        width: 150px;
        height: 150px;
        object-fit: contain;
        border-radius: 5px;
    }

    .position-relative {
        position:  relative;
    }