.single-input {
    display: flex;
    flex-direction: column;
}

.input-normal {
    min-height: 250px;
    justify-content: space-evenly;
}

.single-input-label {
    font-size: 22px;
    font-weight: 600;
}

.input-label {
    display: flex;
    padding: 0 10px;
}

.req_star{
    color: #ec2626;
    font-size: 16px;
    font-weight: bold;
    margin-top: -2px;
    margin-left: 4px;
}

.form-element {
    display: flex;
    flex-direction: column;
    margin: 15px 0;
}

.radio-row, .checkbox-row {
    padding: 4px 20px;
}

.single-radio {
    width: 24px;
    height: 24px;
    float: left;
    margin-right: 10px;
    cursor: pointer;
    border: 2px solid;
    border-radius: 50%;
    content: '';
    transition: 0.28s ease;
}
.radio-unchecked {
    border-color: #9e9e9e;
}

.radio-checked {
    border-color: #fb813f;
}

.radio-checked .single-radio-content::before {
    content: attr(data-labelicon);
}

.radio-checked .single-radio-content {
    text-align: center;
    line-height: 20px;
    color: #fb813f;
    font-weight: bold;
}

.radio-checked.disable {
    opacity: 0.5;
    cursor: not-allowed;
}

.radio-unchecked.disable {
    cursor: not-allowed;
}


.form-element input,
.form-element select {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #9e9e9e;
    border-radius: 0;
    outline: none;
    height: 2em;
    width: 90%;
    font-size: 1em;
    margin: 0;
    padding: 0;
    box-shadow: none;
    box-sizing: content-box;
    color: #001a54;
    position: relative;
    z-index: 2;
    display: flex;
    align-self: center;
}

.input-placeholder {
    z-index: 1;
    margin-top: -27px;
    color: #9e9e9e;
    margin-left: 3px;
    transition: all 0.3s;
    min-height: 30px;
    width: 90%;
    display: flex;
    align-self: center;
}

.input_active {
    font-size: 0.8em;
    transform: translateY(-85%);
    font-weight: 400;
    color: #5cbec0 !important;
    z-index: 1;
}

.input_require {
    float: left;
    color: #f44336;
    font-size: 11px;
    margin-top: -2px;
    display: none;
    width: 90%;
    align-self: center;
}

.input_hint {
    display: flex;
    width: 90%;
    align-self: center;
    align-items: center;
    margin-top: 7px;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    padding: 3px;
    background-color: #ff9e88;
    color: #fff;
    font-weight: 600;
    box-shadow: inset 0 0 7px 0 rgba(252, 73, 73, 0.5);
}

.hint_sign {
    flex: 1;
    padding: 3px 5px;
}

.hint_sign_inner {
    width: 27px;
    height: 27px;
    border-radius: 14px;
    background-color: #fff;
    color: #ff9e88;
    padding: 1px 0 0 9px;
    font-size: 18px;
    font-weight: 600;
}

.hint_text {
    flex: 15;
    line-height: 27px;
    padding: 0 3px;
}

.single-checkbox {
    width: 20px;
    height: 20px;
    float: left;
    margin-right: 10px;
    cursor: pointer;
    border: 2px solid #ff9c66;
    content: '';
    transition: 0.28s ease;
}

.checkbox-checked .single-checkbox-content::before {
    content: attr(data-labelicon);
}

.checkbox-checked .single-checkbox-content {
    text-align: center;
    line-height: 17px;
    color: #fb813f;
    font-weight: bold;
}

.checkbox-description {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.more {
    margin-left: 10px;
    cursor: pointer;
}

.input-last .checkbox-description {
    font-size: 13px;
}

.input-last {
    margin-top: 10px;
}

.input_box {
    display: flex;
    justify-content: center;
}

input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-sublabel {
    padding: 0 20px 0 10px;
    font-size: 14px;
    width: 90%;
    color: #3a3a3a;
}

.label_div {
    font-size: 12px;
    width: 100%;
    padding: 0 20px;
    display: flex;
}

.mdm_agreement_ac {
    cursor: pointer;
}

.mdm_agreement_info {
    flex: 1;
}

.agg_label_not_checked .mdm_agreement {
    color: #ff0000;
}

.agg_label_not_checked .mdm_checbox_div {
    border: 2px solid #ff0000;
    height: 21px;
}