.uld {
    width: 100%;
    height: 100%;
    background: #f7fafc;
    border: 0.5px solid #a3a8b1;
    border-radius: 10px;
    padding: 30px;
    position: relative;
}
.uld .drop {
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 10px;
    position: absolute;
    background-color: #f4f6ff;
    left: 0;
    border: 3px dashed #a3a8b1;
}
.uld .error {
    text-align: center;
    color: red;
    font-size: 15px;
}
.uld .beforeUpload {
    position: relative;
    text-align: center;
}
.uld .beforeUpload input {
    width: 100%;
    margin: auto;
    height: 100%;
    opacity: 0;
    position: absolute;
    background: red;
    display: block;
}
.uld .beforeUpload input:hover {
    cursor: pointer;
}
.uld .beforeUpload .icon {
    width: 150px;
    margin: auto;
    display: block;
}
.uld .imgsPreview .imageHolder {
    width: 150px;
    height: 150px;
    background: #fff;
    position: relative;
    border-radius: 10px;
    margin: 5px 5px;
    display: inline-block;
}
.uld .imgsPreview .imageHolder img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.uld .imgsPreview .imageHolder .delete {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 29px;
    height: 29px;
    color: #fff;
    background: red;
    border-radius: 50%;
}
.uld .imgsPreview .imageHolder .delete:hover {
    cursor: pointer;
}
.uld .imgsPreview .imageHolder .delete .icon {
    width: 66%;
    height: 66%;
    display: block;
    margin: 4px auto;
}
.uld .imgsPreview .imageHolder .plus {
    color: #2d3748;
    background: #f7fafc;
    border-radius: 50%;
    font-size: 21pt;
    height: 30px;
    width: 30px;
    text-align: center;
    border: 1px dashed;
    line-height: 23px;
    position: absolute;
    right: -42px;
    bottom: 43%;
}
.uld .plus:hover {
    cursor: pointer;
}
.uld .clearButton {
    color: #2d3748;
    position: absolute;
    top: 7px;
    right: 7px;
    background: none;
    border: none;
    cursor: pointer;
}
