.jsonform-container {
    max-width: 900px;
}
form.jsonform {
    display: block;
} 
.jsonform fieldset {
    border: 1px solid silver;
    padding: 0;
    margin: 0;
    border: 0;
    min-width: 0;
}
.jsonform fieldset legend {
    display: block;
    width: 100%;
    padding: 8px 0 0;
    font-size: 18px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}
.jsonform fieldset.custom-fieldset .legend-holder {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
}
.jsonform fieldset.custom-fieldset legend {
    border: 0;
    flex: 1;
}
.jsonform fieldset .legend-holder:hover {
    background-color:#f1f1f1;
}
.jsonform fieldset > fieldset > legend {
    font-size: 16px;
}
.jsonform fieldset > fieldset > fieldset > legend {
    font-size: 13px;
}
.jsonform .expandable > legend {
    cursor:pointer;
}
.jsonform .custom-expandable > .legend-holder > legend {
    cursor:pointer;
    display: inline-block;
}

.jsonform .expandable > legend:after,
.jsonform .custom-expandable > .legend-holder > legend:after {
    content: '\25BE';
    padding-right: 5px;
}
.jsonform .expandable.expanded > legend:after,
.jsonform .custom-expandable.expanded > .legend-holder > legend:after {
    content: '\25B8';
}
.jsonform fieldset.form-group>div.form-group {
    margin-top: 8px;
    margin-left: 15px;
    margin-right: 15px;
}
.jsonform .checkbox label {
    font-weight: normal;
}
.jsonform .form-control {
    margin:8px 0;
}

.fieldset-chb-toggle {
    cursor: pointer;
}
.jsonform-comp-chb {
    display: none;
}
label.fieldset-control {
    display: none;
    cursor: pointer;
    text-indent: -9999px;
    width: 50px;
    height: 26px;
    background: #ccc;
    border-radius: 100px;
    position: relative;
    flex: 0 0 50px;
    top: 2px;
}

label.fieldset-control:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

label.fieldset-control.active {
    background: #5bc0c0;
}

label.fieldset-control.active:after {
    left: calc(100% - 2px);
    transform: translateX(-100%);
}

label.fieldset-control.active:active:after {
/*    width: 40px;*/
}
fieldset.fs-disabled label.fieldset-control {
    cursor: not-allowed;
    pointer-events: none;
    opacity:0.5;
}

.jsonform-section-header {
    font-size: 14px;
    font-weight: bold;
    color: #555;
    border-bottom: solid 0.5px #f0f0f0;
    margin-bottom: 6px;
}
table.jsonform-term-table {
    width: 100%;
}
table.jsonform-term-table td,
table.jsonform-term-table th {
    text-align: left;
}
table.jsonform-term-table th.term-field {
    text-align: center;
    width:1%;
}

.jsonform-container .checkbox label {
    font-weight: bold;
}

span.help-block.jsonform-errortext {
    font-weight: bold;
    font-style: italic;
    color: #9d0000;
}
.jsonform-container .jsonform-required.error input {
    background-color: #f1e1e1;
}
.jsonform-container .tab-content > .tab-pane {
  display: none;
}
.jsonform-container .tab-content > .active {
  display: block;
}

._jsonform-array-buttons .mdi {
    font-size: 16px;
    line-height: 16px;
    vertical-align: bottom;
}
ul._jsonform-array-ul.ui-sortable {
    padding-left: 10px;
}
ul._jsonform-array-ul.ui-sortable li {
    display: flex;
}
ul._jsonform-array-ul.ui-sortable li .draggable {
    flex:0 0 25px;
    align-self: flex-end;
    padding-bottom: 5px;
}
ul._jsonform-array-ul.ui-sortable li .draggable [class^="sr-icon-"] {
    font-size:20px;
}
ul._jsonform-array-ul.ui-sortable li>div {
    flex:1;
    display: flex;
}
ul._jsonform-array-ul.ui-sortable li ._jsonform-array-buttons {
    flex:0 0 50px;
    align-self: flex-end;
    text-align: right;
}
ul._jsonform-array-ul.ui-sortable li div.form-group .form-control {
    margin-bottom:0;
}
ul._jsonform-array-ul.ui-sortable li:not(:first-child) div.form-group label {
    display: inline-block;
    margin-top:8px;
}
.form-group.jsonform-flex-grow {
    flex: 1;
}
.form-group.jsonform-flex-mandatory-chb-col {
    flex: 0 0 90px;
    text-align: center;
}
.jsonform-flex-array-list .form-group.jsonform-flex-grow input[type="text"] {
    box-sizing: border-box;
    padding: 6px 8px;
    display: block;
    height: 29px;
}