/* Required Label */
div.required label:after {
    content: " *"; 
    color: red;
}

input[type="radio"] + label:after {
    content: ''; 
    color: unset;
  }

input[type="checkbox"] + label:after {
    content: ''; 
    color: unset;
}

/* Fieldset */
fieldset.scheduler-border {
    border: 1px groove #ddd !important;
    padding: 0 1.4em 1.4em 1.4em !important;
    margin: 0 0 1.5em 0 !important;
    -webkit-box-shadow:  0px 0px 0px 0px #000 !important;
            box-shadow:  0px 0px 0px 0px #000 !important;
}

legend.scheduler-border {
    font-size: 1.3em !important;
    font-weight: bold !important;
    text-align: left !important;
    width: auto !important;
    margin-top: -15px;
    padding: 0 10px !important;
    background-color: antiquewhite;
    border-bottom: none !important;
}

legend {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin-bottom: 0.5rem !important;
    font-size: 1.5rem !important;
    line-height: inherit !important;
    color: inherit !important;
    white-space: normal !important;
}

/* ================== Photo ======================== */
.pds-profile-pic-div{
    height: 180px;
    width: 180px;
    position: absolute;
    top: 68%;
    left: 50%;
    transform: translate(-50%,-50%);
    /* border-radius: 50%; */
    /* overflow: hidden; */
    border: 1px solid grey;
}

#pds-photo{
    height: 100%;
    width: 100%;
}

#pds-file{
    display: none;
}

#pds-uploadBtn{
    height: 40px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    color: wheat;
    line-height: 30px;
    font-family: sans-serif;
    font-size: 15px;
    cursor: pointer;
    display: none;
}