
.image-container {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    background-color: white;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.image-container input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    opacity: 0;
    cursor: pointer;

}

.image-container .questionmark {
    font-size: 96px;
    font-weight: bold;
    color: #777;
}

.image-container .upload-text {
    color: #fff;
    border: 1px solid #e7e7e7;
    font-size: 14px;
    padding: 8px;
    line-height: 1;
    background-color: var(--bgGreen);
    font-weight: bold;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#imagePreview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

#ajax-response {
    background: #089A47;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: solid black;
    padding: 4rem;
}

#ajax-response {
    display: none;
}

#ajax-response .image-container {
    margin-bottom: 10rem;
}

.upload-label {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container-content {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.hp-field {
    display: none;
}

.checkbox-wrap {
    display: flex;
    padding-left: 2px;
}

.checkbox-wrap input {
    margin-right: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}