
/* ====== Start Header ====== */

.container {
    max-width: 800px;
    padding: 15px;
    display:block;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
}

.form-content {
    padding-left: 20px;
    border-left: 1.4px dashed #888388;   /* dash border */
    margin: 10px 0 10px 0;
}

.dash-border {
    margin-left: 15px;
    border-left: 1px dashed #888388;  /* dash border for the childs */
    padding-left: 20px;
}

.form-content label {
    display: block;
    color: #7c7c7c;     /* label color */
    font-size: 13px;  /* label font-size */
    margin-bottom: 8px;
}

.form-content .form-group {
    display: flex;
    padding-top: 25px;
}

.form-content .form-group div {
    display: inline-block;
}

.form-content .array-num {
    width: 11.5%;        /* array-num container width */
}

.form-content input,
.form-content button {      /* button (dropdown type) and input style */
    width: 100%;
    border: 1px solid #eaeaea;
    outline: none;
    background-color: #ffffff;
    padding: 5px 10px;
    text-align: left;
}

.form-content .array-num {      /* array-num container style */
    width: 15%;
    position: relative;
    outline: none;
    background-color: #ffffff;
    padding: 3px 8px 4px;
    text-align: center;
}

.form-content .array-num span {   /* number container in array-num */
    display: block;
    position: absolute;
    top: -14px;   /* top position.. you can change position from top,left and right */
    left: 0;
    right: -2px;
    padding: 5px 8px;
    font-size: 13.2px;
    border: 1px solid #eaeaea;
    border-right-color: transparent;
}

.form-content button {
    position: relative;
    cursor: pointer;
}

.form-content .content2 button {
    border-right-color: transparent;
}

.form-content button::before {       /* button (type dropdown) arrow */
    content: " ";
    position: absolute;
    top: 12px;
    right: 10px;
    border: 5px solid;
    border-color: #686469 transparent transparent transparent;  /* arrow color.. replace #686469 with color you want */
}

button.arrow::before {      /* arrow color on Actice/Focus */
    border-color: #30aaf8 transparent transparent transparent!important;
}

.form-content .remove-field .icon,
.form-content .add-field .icon {     /* add and remove icon  style */
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    color: #6e6e6e;    /* icon color */
    border: 1px solid #6e6e6e;  /* border color */
    border-radius: 50%;
    background-color: #ffffff;
}

.active-icon {     /* icon and background color on active/click */
    color: #ffffff!important;
    background-color: #6e6e6e!important;
}

.form-content .add-field .icon { /* add icon position */
    top: 11px;
    left: 0;
}

.form-content .remove-field .icon span,
.form-content .add-field .icon span {     /*  add sign */
    /* ( + , - ) sign style.. you can change add sign position from here top and left */
    position: absolute;
    top: -2px;
    left: 3.5px;
    font-size: 18px;
    cursor: pointer;
}

.form-content .remove-field .icon span {  /* remove sign */
    /* ( - ) sign style.. you can change remove sign position from here top and left */
    top: -10px;
    left: 4.6px;
    font-size: 20px; /* font size */
}

.form-content .field .remove-field {  /* remove container */
    display: block;
    padding-top: 28px;
    margin-left: 10px;
}

.form-content .add-field {  /* add container */
    position: relative;
    height: 35px;
    padding-top: 14px;
}

.form-content .array-field .form-group .array-content::before,
.form-content .form-group .content1:first-child::before,
.form-content .add-field::before {  /* line border attached to the parent dash border */
    content: " ";
    position: absolute;
    display: block;
    width: 17px;
    height: 2px;
    left: -20px;  /* border position */
    top: 36.5px;
    background-color: transparent;
    border-top: 1.4px dashed #888388;  /* border color */
}

.form-content .add-field::before {  /* add container line border position */
    top: 34.5px;
}

.form-content .sign {
    padding: 0 5px;
}

.form-content .sign span {
    height: 100%;
    display: block;
    padding-top: 28px;
}

.form-content ul {   /* drop menu style */
    display: none;
    position: absolute;
    list-style: none;
    background-color: white;
    font-size: 14px;
    width: 120px;
    margin-top: -33px;
    padding: 0;
    box-shadow: 0 3px 22px -2px #bfbfbf;
    margin-left: 19px;
    z-index: 999999;
}

.form-content ul li {
    padding: 12px 10px 12px 10px;
    cursor: pointer;
}

.form-content ul li:hover { /* type background color and text color on mouse over */
    color: #48b2ea;
    background-color: #f3f3f3;
}

.form-content .content-group {  /* content group style */
    position: relative;
    width: 40%;
    height: 51px;
    max-width: 400px;
    max-height: 100px;
}

.form-content .content-group .content2 {
    position: absolute;
    left: 0;
    width: 40%;
}

.form-content .content-group .content3 {
    position: absolute;
    right: 0;
    width: 60%;
}

.form-content .form-group .content1:first-child {
    position: relative;
}

.form-content .content-group .array-content1 {
    position: relative;
    width: 42.5%;
}

.form-content .content-group .array-content2 {
    position: absolute;
    right: 0;
    width: 42.5%;
}

.active-line {   /* active line style */
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #30aaf8;
    z-index: 999;
}

.error {   /* error line style */
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #c0392b;
    z-index: 999;
    font-size: 12px;
    color: #c0392b;

}

.form-content input[type='number']::-webkit-outer-spin-button,
.form-content input[type='number']::-webkit-inner-spin-button {  /* remove default arrow in input number */
    -webkit-appearance: none;
    margin: 0;
}
/* ====== End Header ====== */

.CodeMirror{
 height: 100%;
 z-index: 0;

}
