

.uploader {
    width: 98%;
    margin: 0px auto 0px auto;
   /* background-color: #fff;*/
    padding: 10px;
    border-radius: 5px;
    text-align: start;
}
    .uploader #addImageButton {
        margin-bottom: 10px;
        border: none;
        background: #373373;
        color: #fff;
        font-size: 12px;
        padding: 3px 15px;
        border-radius: 4px;
        transition: .3s;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
        .uploader #addImageButton:hover {
            background: #1a183c;
        }
        .uploader #addImageButton span i{
            font-size: 13px;
            margin-left: 5px;
        }
        .uploader .sortable-list {
            list-style-type: none;
            padding: 0;
            width: 100%;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
        }

        .uploader .sortable-list li {
            border: 3px dashed #7c7a7a;
            margin: 5px 20px 5px 0px;
            padding: 1px;
            background-color: #fff;
            /* border-radius: 5px; */
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            position: relative;
            width: 115px;
            height: 115px;
        }

            .uploader .sortable-list li img {
                object-fit: cover;
                width: 100%;
                height: 100%;
                position: relative;
            }

    .uploader .delete-button {
        cursor: pointer;
        color: #e74c3c;
        font-size: 35px !important;
        position: absolute;
        top: -12px;
        right: 5px;
        font-weight: 800;
    }









/**********************dashboard image uploader***********************************/

.dashboard_uploader {
    width: 100%;
    margin: 0px auto 0px auto;
    border-radius: 5px;
    text-align: start;
}

    .dashboard_uploader #addImageButton {     
        border: none;
        color: gray;
        font-size: 12px;   
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        cursor:pointer;
    }



.addsocial_bottom .sortable-list {
    list-style-type: none;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

    .addsocial_bottom .sortable-list li {
        margin: 5px 20px 5px 0px;
        padding: 1px;
        background-color: #fff;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        position: relative;
        width: 50px;
        height: 50px;
    }

        .addsocial_bottom .sortable-list li img {
            object-fit: cover;
            width: 100%;
            height: 100%;
            position: relative;
        }

.addsocial_bottom .delete-button {
    cursor: pointer;
    color: #EE2522;
    font-size: 20px !important;
    position: absolute;
    top: -8px;
    right: 2px;
    font-weight: 800;
}
