.jquery-uploader * {
    box-sizing: border-box;
}

.jquery-uploader {
    display: block;
    box-sizing: border-box;
    position: relative;
}

.jquery-uploader-select-card,
.jquery-uploader-preview-container > img {
    border-radius: 5px;
}

.jquery-uploader-select-card {
    vertical-align: middle;
    width: 140px;
    height: 140px;
    border: 3px dashed rgb(158 167 167);
    padding: 5px;
    margin: 5px;
    display: inline-block;
    border-radius: 5px;
    background-color: #dbdbdb;
    transition: all .2s ease-in-out;
}

/* hover */
.jquery-uploader-select-card:hover {
    border-color: #7eb3d9;
    cursor: pointer;
    background-color: #e4f4ff;
}

.jquery-uploader-select i:hover{
    color: #7eb3d9;
}

/* hover */

.jquery-uploader-img{
    position: relative;
}

.jquery-uploader-img > img{
    width: 100%;
    object-fit: cover;
}

.file-delete{
    position: absolute;
    top: 0;
    right: 5px;
    color: white;
    background-color: rgba(0, 0, 0, 0.36);
    border-radius: 50%;
    padding: 5px 7px;
    cursor: pointer;
    z-index: 2;
}

.file-delete i{
    vertical-align: middle;
}

.file-delete:hover{
    background-color: rgba(0, 0, 0, 0.6);
    transition: all .2s ease-in-out;
}

.jquery-uploader-select {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.jquery-uploader-select  i {
    color: black;
}

.jquery-uploader-select > .upload-button {
    height: 50px;
}

.jquery-uploader-img{
    width: 70%;
    margin-bottom: 3%;
}

@media screen and (max-width: 767px) {
    .package_div.photoService{
        display: block;
    }
    .jquery-uploader-img,
    .jquery-uploader-select-card{
        width: 100%;
    }
}