.customer-type-radio-group {
    display: flex;
}
input.customer-type-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #000; /* Border of the custom radio button */
    border-radius: 10%; /* Make it circular */
    background-color: #fff; /* Background color */
    cursor: pointer;
    float: left;
    box-shadow: none;
}
.customer-type-label {
    padding-left: 10px;
    padding-top: 3px;
    margin-right: 14px;
}
.customer-type-radio-company {
    margin-right: 32px;
}
.customer_uuid_type[disabled] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

input.customer-type-radio:focus {
    box-shadow: none;
}
.terms_condition {
    width: 65%;
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    margin-bottom: 8px;
}
.terms_condition_label {
    margin-left: 10px;
    font-weight: normal;
}
.order-ref-info {
    color: grey;
    margin-left: 8px;
}
.order_ref_sample_image_div {
    width: 65%;
    display: none;
    border: 1px solid #337ab7;
    padding: 4px;
    padding-bottom: 16px;
    background-color: white;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 8px;
}
.order_ref_sample_image {
    width: 100%;
}