.sunpics-extra-upload-field-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 20px 0;
}

.sunpics-extra-upload-field-wrap label {
    margin: 5px 0;
}

.sunpics-extra-upload-field-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.sunpics-extra-upload-field-wrap span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
}

.sunpics-extra-upload-file {
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    opacity: 0;
    cursor: pointer;
}

.sunpics-extra-upload-field-messages {
    margin: 5px 0;
    font-size: 14px;
}

.sunpics-extra-upload-field-error {
    color: red;
}

.sunpics-extra-upload-field-success {
    color: #0A875A;
}

.sunpics-extra-upload-file-name {
    display: none;
    font-size: 14px;
}

.sunpics-extra-validator-progress-container {
    display: none;
    margin: 5px auto;
    width: 95%;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 4px;
    position: relative;
}

.sunpics-extra-validator-progress-bar {
    height: 100%;
    width: 0;
    background-color: #0A875A;
    border-radius: 5px;
    transition: width 0.4s ease;
}

.sunpics-extra-validator-progress-message {
    display: none;
    padding: 5px;
    font-size: 14px;
    text-align: center;
}