uploadhtml * {
    box-sizing: border-box;
}

p {
    margin: 0;
}

.upload__box {
    padding: 40px 0px 40px;
    display: flex;
    gap: 1.5rem;
}

.upload__file {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.upload__btn {
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 12px;
    border: 2px dashed #85858585;
    width: 175px;
    height: 175px;
    font-size: 36px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #85858585;
}

.help-block {
    display: none;
}

.upload__btn:hover {
    border: 2px dashed #858585;
    color: #858585;
}

.upload__img-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.upload__img-box {
    width: 175px;
    margin: 0 10px;
}

.upload__img-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
}

.upload__img-close:after {
    content: '\2716';
    font-size: 14px;
    color: white;
}

.img-bg {
    border-radius: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100%;
}