.phx-btn-upload-image {
    width: 200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.phx-upload-message {
    display: block;
}

.phx-upload-message.success {
    color: #29c229;
}

.phx-upload-message.error {
    color: #ff2828;
}

.phx-change-image-container {
    position: relative;
    display: flex;
    justify-content: flex-start;
}

.phx-change-image-wrap {
    width: 100%;
    height: 100%;
    background-color: #00000083;
    position: absolute;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    opacity: 0;
    color: #ffffff;
    cursor: pointer;
    transition: all .5s;
}

.phx-change-image-wrap:hover {
    opacity: 1;
}

.phx-change-image-wrap i {
    font-size: 2rem;
    color: #ffffff;
}

.phx-change-image-wrap svg {
    width: 2rem;
    fill: #ffffff
}

.phx-change-image-wrap .fas.fa-trash {
    position: absolute;
    font-size: 1.6rem;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.phx-description-text {
    font-size: .9rem;
    color: #818181;
    font-style: italic;
}