body,
html {
    height: 100%;
    width: 100%;
    font-family: “Roboto”, -apple-system, BlinkMacSystemFont, “Segoe UI”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
    font-size: 16px;
    padding: 0px;
    margin: 0px;
}


/*LOGIN*/
.cp-layout-login {
    height: 100%;
    width: 100%;
    background-color: #F2F4F4;
    color: #828D99;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-layout-login-container {
    width: 432px;
    height: 442px;
    background-color: #fff;
    border-radius: 4px;
    border: none;
    -webkit-box-shadow: -8px 12px 18px 0 rgb(25 42 70 / 13%);
    box-shadow: -8px 12px 18px 0 rgb(25 42 70 / 13%);
}

.cp-layout-login-logo {
    padding: 20px;
    height: 50px;
    background-image: url('/images/syncbuilder_logo_final.png');
    background-position: center;
    background-size: 85%;
    background-repeat: no-repeat;
}

.cp-layout-login-form {
    padding: 20px;
}

.cp-layout-login-form input {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-bottom: 20px;
}

.cp-layout-login-form button {
    color: #fff;
    display: inline-block;
    font-weight: 400;
    /* color: #212529; */
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    background-color: #2C6DE9;
    border-color: #2C6DE9;
    width: 100%;
}

.cp-layout-login-forgot {
    padding: 20px;
}


.cp-layout-page {
    height: 100%;
}

/*LEFT MENU NAVI*/
.cp-layout-main-menu {
    /*min-width: clamp(240px,14.8vw,320px);
    max-width: clamp(240px,14.8vw,320px);*/
    min-width: 300px;
    border-right: 0;
    z-index: 1032;
    /*background-color: #08193e;*/
    background-color: #1A233A;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.cp-layout-main-logo {
    width: 100%;
    height: 60px;
    background-image: url('/images/syncbuilder_final_white.png');
    background-position: center;
    background-size: 85%;
    background-repeat: no-repeat;
}

/*SEARCH MAIN*/
.cp-layout-main-search {
    text-align: center;
    width: auto;
    height: 60px;
    padding: 5px;
}

.cp-layout-main-search input {
    padding: 5px;
    width: 156px;
}

.cp-layout-main-search button {
    padding: 5px;
}


/*PARENT MENU*/
.cp-layout-main-holder-menuitems {
    clear: both;
    display: block;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}
.cp-layout-main-menuitems {
    height: 110%;
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    color: #b3bccf;
    overflow: hidden;
}

/* config project */
.cp-layout-main-menuitem-footer {
    position: absolute;
    width: auto;
    bottom: 10px;
    right: 10px;
    text-align: right;

}

.cp-layout-main-menuitem-footer a {
    padding: 5px;
    color: #b3bccf;
    text-decoration: none;
    font-size: 30px;
}

.cp-layout-main-menuitem-footer a:visited {
    text-decoration: inherit;
    color: #b3bccf;
    cursor: pointer;
}

.cp-layout-main-menuitem-footer a:hover {
    background-color: #3a8cff;
}


.cp-layout-main-menuitems>li {
    margin-bottom: 20px;
}

.cp-layout-main-menuitems>li>a {
    border-left: 2px solid transparent;
    color: #b3bccf;
    text-decoration: none;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 0rem 1.25rem;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

.cp-layout-main-menuitems>li>a:hover,
.cp-layout-main-menuitems>li>a.ui-state-active {
    border-left: 2px solid #0773ba;
    background-color: #1f2c48;
    width: 90%;
}

.cp-layout-main-menuitems>li>a>i:nth-of-type(1) {
    width: 20px;
    margin-right: 10px;
}

.cp-layout-main-menuitems>li>a>span {
    font-weight: 400;
}

/* CREATE Button*/
.cp-layout-main-menuitems > li > a > .add_project_item {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s linear;
    right: 10px;
    top: 4px;
    z-index: +1;
    position: absolute;
    border-radius: 12px;
    padding: 6px;
}

.cp-layout-main-menuitems > li > a.ui-state-active .add_project_item{
    visibility: visible;
    opacity: 1;
}

.cp-layout-main-menuitems > li > a.ui-state-active .add_project_item:hover {
    color: #3087d9;
    cursor: pointer;
    background-color: #cccccc1f;
}
/*-------------*/

.cp-layout-main-menuitems > li > div.ui-accordion-content {
    padding: 0px !important;
    padding-left: 15px !important;
    padding-top: 15px !important;
    overflow: hidden;
}

.class_datatable_menu_holder, 
.class_connection_menu_holder {
    padding: 0px !important;
    overflow: hidden;
}
.class_datatable_menu_holder > div, 
.class_connection_menu_holder > div {
    padding: 0px;
    padding-left: 0px;
    margin-top: 5px !important;
    margin-bottom: 20px !important;
}
.class_datatable_menu_holder > div > span, 
.class_connection_menu_holder > div > span {
    display: block;
    font-size: 11px;
    color: #f0f8ff40;
    cursor: unset;
    margin-bottom: 5px;
    border-left: 1px solid #0a72bb;
    padding-left: 5px;
}




/*SUB MENU*/
.cp-layout-main-menuitems-sub {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    color: #b3bccf;
    overflow: hidden;
    padding-left: 10px;
}

.cp-layout-main-menuitems-sub li {
    padding: 0px;
}

.cp-layout-main-menuitems-sub li a {
    color: #b3bccf;
    text-decoration: none;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 0rem 1.25rem;
    font-size: 13px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 10px;
    border-left: 3px solid transparent;
}

.cp-layout-main-menuitems-sub li a:hover,
.cp-layout-main-menuitems-sub li a.active {
    border-left: 3px solid rgb(49, 135, 25);
    background-color: #1f2c48;
}





/*
//////////////////////////////////////////////////////////////////////////////////////

FROM HERE the MAIN body 

//////////////////////////////////////////////////////////////////////////////////////

*/
.cp-layout-wrapper {
    background-color: #F2F4F4;
    margin-left: 300px;
    min-width: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* HEADER*/
.cp-layout-header {
    position: sticky;
    z-index: +1;
    top: 0;
    height: 30px;
    background: rgb(241 243 244);
    ;
    padding: 10px;
}

.cp-layout-header-left-section {
    font-size: 11px;
    width: 45%;
    float: left;
    padding: 10px;
}

.cp-layout-header-right-section {
    width: auto;
    text-align: right;
    float: right;
    padding: 10px;
}

.cp-layout-header-topmenu {
    float: right;
}

.cp-layout-header-topmenu-account {
    font-weight: 700;
    font-size: 20px;
    padding: 7px;
    border: 1px solid #979797;
    color: #979797;
}

.cp-layout-header-topmenu-ul {
    display: none;
    padding: 10px !important;
    margin-top: 10px !important;
    background-color: #fff;
    border: 1px solid rgb(170, 170, 170);
}

.cp-layout-header-topmenu-ul li {
    padding: 10px;
}

.cp-layout-header-topmenu-ul a {
    color: #3a8cff;
    text-decoration: none;
}

.cp-layout-header-topmenu-ul a:hover {
    background-color: #393939;
    color: #fff;
}



/*MAIN CONTENT CONTAINER */
.cp-layout-content {
    height: 100%;
    padding: 25px;
}

.cp-layout-content-header {
    width: auto;
    height: auto;
    padding: 10px;
    background-color: white;
    border: 1px solid #e0dddd;
    margin-bottom: 20px;
    overflow: hidden;
}

.cp-layout-content-header-left {
    float: left;
    padding: 5px;
}

.cp-layout-content-header-title {
    padding: 5px;
    clear: both;
}

.cp-layout-content-header-subtitle {
    padding: 5px;
    clear: both;
    margin-left: 47px;
}

.cp-layout-content-header-title span:nth-child(1) {
    font-weight: 500;
    padding-right: 5px;
}

.cp-layout-content-header-title span:nth-child(2) {
    font-weight: 400;
    text-decoration: none;
}

.cp-layout-content-header-title span:nth-child(2) a {
    color: #3a8cff !important;
    font-weight: 500;
    padding-right: 5px;
    text-decoration: none;
}

.cp-layout-content-header-title span:nth-child(2) a:visited {
    text-decoration: inherit;
    color: inherit;
    cursor: pointer;
}

.cp-layout-content-header-subtitle span:nth-child(1) {
    font-weight: 700;
    padding-right: 5px;
}

.cp-layout-content-header-subtitle span:nth-child(2) {
    float: inherit;
    font-weight: 400;
}

.cp-layout-content-header-right {
    margin-top: 0.3%;
    width: auto;
    float: right;
}



/* TABS */
.content-tab-holder {
    overflow: hidden;
    min-height: 400px;
    padding: 10px !important;
    border-radius: 4px;
    border: none;
    background-color: #fff;
    border: 1px solid #e0dddd;
}

.content-tab-holder ul.ui-tabs-nav {
    display: flex;
}

.content-tab-holder li.ui-tabs-tab {
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
}

.content-tab-holder li {
    margin: 0px !important;
}

.content-tab-holder li.ui-tabs-tab a {
    width: -webkit-fill-available;
    padding: 20px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    border-radius: 4px 4px 0px 0px;
    color: #393939;
    border-bottom: 2px solid #d7d7d7;
}

.content-tab-holder li.ui-tabs-active a {
    font-weight: 600;
    background-color: #ffffff;
    cursor: default !important;
    border-bottom: 2px solid #2673BE;
}

.content-tab-holder div.ui-tabs-panel {
    border-top: none;
    margin-top: 20px;
}





/*ACTIVITY HOLDER*/
.cp-layout-activity-variables-holder {
    overflow: hidden;
    display: none;
    padding: 20px;
    padding-top: 30px;
    margin: 0px;
    background-color: #fff;
    border: 1px solid #e0dddd !important;
}
.cp-layout-activity-variables-holder .cp-layout-activity-variables {
    overflow: hidden;
    list-style-type: none;
    padding:0px;
    margin: 0px;
}

.cp-layout-activity-variables-holder .cp-layout-activity-variables li {
    float: none;
    width: 100%;
    border-radius: 2px;
    margin-bottom: 10px;
}


.cp-layout-activity-variables-holder .cp-layout-activity-variables li.newholder {
    float: none;
    width: 100%;
    border-radius: 2px;
    margin-bottom: 10px;
}
.cp-layout-activity-variables-holder .cp-layout-activity-variables li.newholder span {
    color: #E4E4E5;
}
.cp-layout-activity-variables-holder .cp-layout-activity-variables li.newholder input,
.cp-layout-activity-variables-holder .cp-layout-activity-variables li.newholder select  {
    border:1px dashed #CED4DC;
    color: #E4E4E5;
}
.cp-layout-activity-variables-holder .cp-layout-activity-variables li.newholder input::placeholder,
.cp-layout-activity-variables-holder .cp-layout-activity-variables li.newholder select  {
    color: #E4E4E5;
}
.cp-layout-activity-variables-holder .cp-layout-activity-variables li.newholder .remove_variable {
    display: none;
}


.cp-layout-activity-variables-holder .cp-layout-activity-variables-save-holder {
    text-align: right;
    padding: 45px;
    padding-bottom: 30px;

}


.cp-layout-activity-container {
    clear: both;
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.cp-layout-activity-container li {
    float: left;
    width: 325px;
    height: 180px;
    background-color: #fff;
    border: 1px solid #e0dddd !important;
    border-radius: 2px;
    border: none;
    margin: 30px;
    margin-left: 0px;
}

.cp-layout-activity-container li a:link {
    text-decoration: inherit;
    color: inherit;
    cursor: pointer;
}

.cp-layout-activity-container li a:visited {
    text-decoration: inherit;
    color: inherit;
    cursor: pointer;
}
.cp-layout-activity-container li.create {
    background-color: #f2f4f4;
    border: 1px dashed #bfbaba !important;
    cursor: pointer;
}
.cp-layout-activity-container li.create div {
    position: relative;
    left: 43%;
    top: 25%;
    width: 40px;
    height: 40px;
    font-size: 60px;
    color: #dfdddd;
}
.cp-layout-activity-container .seq-activity-card {
    float: left;
    margin-left: -3px;
    margin-top: -3px;
    background-color: #2e3e6b;
    width: 40px;
    height: 21px;
    color: #cfcccc;
    padding-top: 6px;
    padding-bottom: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    border-radius: 3px 3px 3px 4px;
}

.cp-layout-activity-container .type-activity-card {
    overflow: hidden;
    width: auto;
    height: 16px;
    color: #cfcccc;
    padding-top: 6px;
    padding-bottom: 10px;
    padding-left: 5px;
    font-weight: 500;
    color: #2e3e6b;
}

.cp-layout-activity-container .title-activity-card {
    clear: both;
    padding: 3px;
    margin-top: 5px;
    font-size: 12px;
}

.cp-layout-activity-container .stats-activity-card {
    padding: 3px;
    margin-top: 5px;
    font-size: 12px;
    float: left;
    width: 47%;
}

.cp-layout-activity-container .stats-activity-card span:nth-child(1) {
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
    display: block;
}

.cp-layout-activity-container .stats-activity-card span:nth-child(2) {
    display: block;
    text-align: center;
    width: 100%;
    font-size: 18px;
}

.cp-layout-activity-container .stats-activity-card .stats_success {
    color: green;
}

.cp-layout-activity-container .stats-activity-card .stats_warning {
    color: rgb(167, 159, 16);
}

.cp-layout-activity-container .stats-activity-card .stats_error {
    color: rgb(193, 26, 11);
}

.cp-layout-activity-container li:hover {
    cursor: pointer;
    background-color: #3087d9;
}



/* DATATABLE*/
.datatable_field_list {
    width: 100%;
}

.datatable_field_list tbody tr td {
    text-align: center;
    padding: 10px;
}

.datatable_field_footer {
    padding: 15px;
}



/* ACTION */
.content-tab-action-container {
    padding: 0px !important;
    margin: 0px !important;
}

.content-tab-action-container .ui-tabs-nav {
    padding: 0px !important;
}

.content-tab-action-container .ui-tabs-panel {
    padding: 0px !important;
}

.content-tab-action-container>ul li.ui-tabs-tab a,
.content-tab-action-container>ul li.ui-tabs-tab a:visited {
    text-decoration: inherit;
    color: inherit;
    cursor: pointer;
}

.content-tab-action-container>ul li.ui-tabs-tab a {
    position: inherit;
    bottom: -2px;
    padding: 20px;
    padding-bottom: 20px !important;
    background-color: rgb(240 240 240);
    border: 1px solid #e0dddd;
    border-bottom: none;
    width: 300px;
    text-align: center;
    margin-bottom: 0px;
}

.content-tab-action-container>ul li.ui-tabs-active a {
    position: inherit;
    bottom: -2px;
    padding: 20px;
    padding-bottom: 20px !important;
    background-color: white;
    border: 1px solid #e0dddd;
    border-bottom: none;
    width: 300px;
    text-align: center;
    margin-bottom: 0px;
    z-index: +1;
}









/* CREATE PROJECT ELEMENTS*/
.createActionType {
    clear: both;
    padding: 0px;
    margin: 0px;
    margin-bottom: 30px;
    min-height: 300px;
    height: auto;
    overflow: hidden;
    list-style-type: none;
}

.createActionType>li {
    float: left;
    margin: 10px;
    padding: 0px;
}

.createActionType>li>label {
    display: block;
    border: 2px solid #e9f5ff;
    background-color: #f1f3f4;
    padding: 10px;
    width: 199px;
    text-align: center;
    cursor: pointer;
}

.createActionType>li>label>i {
    font-size: 36px;
    margin-top: 20px;
    display: block;
    margin-bottom: 20px;
}

.createActionType .createActionTypeRadioButton {
    display: contents;
    width: 0px;
    height: 0px;
}

.createActionType .createActionTypeRadioButton:checked {
    cursor: unset;
}

.createActionType>li>label:hover {
    cursor: pointer;
    border: 2px solid #1a5bff;
}

.createActionType>li>label:has(> .createActionTypeRadioButton:checked) {
    border: 2px solid #232a3c;
    cursor: unset;
}

/* CREATE PROJECT ELEMENTS TABS */
.connectiontype_tabholder {
    overflow: hidden;
    min-height: 400px;
    border: none;
}

.connectiontype_tabholder ul.ui-tabs-nav {
    display: flex;
}

.connectiontype_tabholder li.ui-tabs-tab {
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
}

.connectiontype_tabholder li {
    margin: 0px !important;
}

.connectiontype_tabholder li.ui-tabs-tab a {
    width: -webkit-fill-available;
    background-color: #fbfbfb;
    padding: 20px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    border-radius: 4px 4px 0px 0px;
    color: #393939;
    border-bottom: 2px solid #d7d7d7;
}

.connectiontype_tabholder li.ui-tabs-active a {
    background-color: #ffffff;
    cursor: default !important;
    border-bottom: 2px solid #2673BE;
}

.connectiontype_tabholder div.ui-tabs-panel {
    border-top: none;
    padding: 0px;
    padding-top: 20px;
}



/*SAVE button for all elements*/
.saveProjectElement {
    clear: both;
    text-align: right;
    margin-top: 30px;
    padding: 20px;
}




.cp-layout-homepage-holder {
    width: 100%;
    height: 100%;
}
.cp-layout-homepage-holder ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    margin-left: 20px;
}
.cp-layout-homepage-holder ul li {
    width: 665px;
    height: 320px;
    float: left;
    background-color: #fff;
    border: 1px solid #ced4da;
    padding:5px;
    margin-bottom: 50px;
    margin-left: 0px;
    margin-right: 34px;
}
.cp-layout-homepage-holder ul li.half {
    width: auto !important;
}
.cp-layout-homepage-holder ul li canvas {

}




/*loggin*/
.content-log-holder {
    padding: 10px;
}
.logs_list.dataTable tbody tr.odd {
    background-color: #fafafa;
}
.logs_list.dataTable thead th, 
.logs_list.dataTable thead td,
.logs_list.dataTable tbody th,
.logs_list.dataTable tbody td  {
    font-size: 13px;
    color: #535455;
}

.logs_list.dataTable thead th:nth-child(1),
.logs_list.dataTable tbody td:nth-child(1)  {
    text-align: left;
    width: 200px;
}
.logs_list.dataTable thead th:nth-child(2),
.logs_list.dataTable tbody td:nth-child(2)  {
    text-align: left;
    width: 150px;
}
.logs_list.dataTable thead th:nth-child(3),
.logs_list.dataTable tbody td:nth-child(3)  {
    text-align: left;
    width: auto;
}
.logs_list.dataTable thead th:nth-child(4),
.logs_list.dataTable tbody td:nth-child(4)  {
    text-align: right;
    width: 250px;
}

.content-log-holder .dataTables_length {
    margin-bottom: 20px;
}
.content-log-holder .dataTables_filter {
    margin-bottom: 20px;

}
.content-log-holder  .dataTables_info {

}
.content-log-holder  .dataTables_paginate {

}




.cp-layout-action-element {
    padding-left: 20px;
    margin-top: 5px;
    overflow: hidden;
    background-color: #1b233a03;
}

.activity-variable-body {
    color: rgb(13, 166, 21);
    display: unset !important;
    font-weight: 600;
}
.activity-variable-body-notfound {
    color: orangered;
    display: unset !important;
    font-weight: 600;
}

/*ACTIONS MAPPINGS*/
.cp-layout-action-mappings-holder {
    overflow: hidden;
    padding-top: 30px;
}
.cp-layout-action-mappings {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    overflow: hidden;
}
.cp-layout-action-mappings li { 
    float: none;
}
.cp-layout-action-mappings li  label { 
    display: none;
}
.cp-layout-action-mappings li:first-of-type label { 
    display: block;
}
.cp-layout-action-mappings li .remove_mapping {
    cursor: pointer;
}
.cp-layout-action-mappings-save-holder {
    text-align: right;
    padding-top: 30px;
    padding-right: 30px;
}
.cp-layout-action-mappings-save-holder .mapping-conditions {
 display: none;
}

.cp-layout-action-mappings li.newholder input, 
.cp-layout-action-mappings li.newholder select {

}
.cp-layout-action-mappings li.newholder {
    float: none;
    width: 100%;
    border-radius: 2px;
    margin-bottom: 10px;
}
.cp-layout-action-mappings li.newholder span, .cp-layout-action-mappings li.newholder i {
    color: #E4E4E5;
}
.cp-layout-action-mappings li.newholder input,
.cp-layout-action-mappings li.newholder select  {
    border:1px dashed #CED4DC;
    color: #E4E4E5;
}
.cp-layout-action-mappings li.newholder input::placeholder,
.cp-layout-action-mappings li.newholder select  {
    color: #E4E4E5;
}
.cp-layout-action-mappings li.newholder .remove_mapping {
    display: none;
}

/*AUTOCOMPLETER VARIABLES*/

.ui-autocomplete {
    position: absolute;
    top: 0;
    left: 0;
    cursor: default;
    background-color: white;
    border: 1px solid #e0dddd;
}
.ui-autocomplete .ui-state-active {
    background-color: #0a72bb;
    color: #fff;
}


/*ACTIONS MAPPINGS*/
.cp-layout-records-holder {
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #e0dddd;
    padding: 20px;
    padding-top: 30px;
}
.cp-layout-records {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    overflow: hidden;
}
.cp-layout-records li { 
    float: none;
}
.cp-layout-records li  label { 
    display: none;
}
.cp-layout-records li:first-of-type label { 
    display: block;
}
.cp-layout-records li .remove_mapping {
    cursor: pointer;
}
.cp-layout-records-save-holder {
    text-align: right;
    padding-top: 30px;
    padding-right: 30px;
}
.cp-layout-records-save-holder .subrow {
 display: none;
}

.cp-layout-records li.newholder input, 
.cp-layout-records li.newholder select {

}
.cp-layout-records li.newholder {
    float: none;
    width: 100%;
    border-radius: 2px;
    margin-bottom: 10px;
}
.cp-layout-records li.newholder span, .cp-layout-records li.newholder i {
    color: #E4E4E5;
}
.cp-layout-records li.newholder input,
.cp-layout-records li.newholder select  {
    border:1px dashed #CED4DC;
    color: #E4E4E5;
}
.cp-layout-records li.newholder input::placeholder,
.cp-layout-records li.newholder select  {
    color: #E4E4E5;
}
.cp-layout-records li.newholder .remove_record {
    display: none;
}

































/* GLOBAL SETTINGS */

#configMenuProjectElements {
    display: none;
    position: absolute;
    width: 200px;
    background-color: #FFF;
    border: 1px solid #e0dddd;
    top: 110.2578px;
    left: 1431px;
    list-style-type: none;
    z-index: +1;
    padding: 0px;
    margin: 0px;
}
#configMenuProjectElements li a {
    text-decoration: inherit;
    color: inherit;
    cursor: pointer;
    display: block;
    padding: 10;
    width: auto;
}
#configMenuProjectElements li a:hover {
    text-decoration: inherit;
    color: inherit;
    cursor: pointer;
}
#configMenuProjectElements li a:hover {
    padding: 10;
    background-color: #1a5bff;
    color: #fff;
}

.col-auto {
    width: auto;
    float: left;
}
.col-1 {
    width: 9%;
    float: left;
}

.col-2 {
    width: 19%;
    float: left;
}

.col-3 {
    width: 29%;
    float: left;
}

.col-4 {
    width: 39%;
    float: left;
}

.col-5 {
    width: 49%;
    float: left;
}

.col-6 {
    width: 59%;
    float: left;
}

.col-8 {
    width: 79%;
    float: left;
}

.col-8 {
    width: 89%;
    float: left;
}

.col-10 {
    width: 99%;
    float: left;
}

.form-row {
    overflow: hidden;
    float: none;
    width: 100%;
}

.form-group {
    padding: 5px;
    padding-left: 0;
    padding-right: 10px;
    margin-bottom: 10px;
}

.form-group label {
    font-size: 0.874rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.form-group span {
    padding-top: 8px;
    display: block;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
pre.form-control {
    margin: 0px;
    width:auto;  
    overflow: auto; 
    height:385px; 
    border: 1px solid #e0dddd; 
    padding:20px;
}
input[type="checkbox"].form-control {
    width: 20px !important;
    height: 20px !important;
}


.cp-layout-button {
    background-color: #2f87d9;
    color: #fff;
    min-width: 120px;
    border: none;
    /*box-shadow: 1px 1px 4px 1px #b9adad;*/
    padding: 5px;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 3px;
    cursor: pointer;
    margin-left: 5px;
    margin-right: 5px;
}
.cp-layout-button:disabled, .cp-layout-button:disabled:hover {
    background-color: #c5c5c5;
    color: #fff;
    box-shadow: none;
}

.cp-layout-button.create {
    background-color: #17b85fe8;
}
.cp-layout-button.light {
    background-color: #f1f3f4;
    color: #000;
}
.cp-layout-button.remove {
    background-color: #d14242;
}
.cp-layout-button:hover {
    box-shadow: 1px 1px 4px 1px #0b0b0b;
}


.error {
    /*background-color: #f40808b5;*/
    color: #fff !important;
    background: linear-gradient(9deg, #ff2200, #e89c9c);
    background-size: 1800% 1800%;
    -webkit-animation: rainbow 18s ease infinite;
    -z-animation: rainbow 1s ease infinite;
    -o-animation: rainbow 1s ease infinite;
    animation: rainbow 1s ease infinite;
}

@-webkit-keyframes rainbow {
    0% {
        background-position: 0% 82%
    }

    50% {
        background-position: 100% 19%
    }

    100% {
        background-position: 0% 82%
    }
}

@-moz-keyframes rainbow {
    0% {
        background-position: 0% 82%
    }

    50% {
        background-position: 100% 19%
    }

    100% {
        background-position: 0% 82%
    }
}

@-o-keyframes rainbow {
    0% {
        background-position: 0% 82%
    }

    50% {
        background-position: 100% 19%
    }

    100% {
        background-position: 0% 82%
    }
}

@keyframes rainbow {
    0% {
        background-position: 0% 82%
    }

    50% {
        background-position: 100% 19%
    }

    100% {
        background-position: 0% 82%
    }
}





/* ACTION */
.darf-holder {
    min-height: 600px;
}
.darf-loading {
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: url(/images/loading_blue.gif);
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    display: block;

}
.darf-count {
    position: absolute;
    top: 46%;
    left: 48%;
    font-size: 40px;
}
.darf-response-holder {
    width: 1045px !important; 
}
.darf-response-header-title {
    padding: 10px;
}
.darf-response-header {
    padding: 10px;
    height: 100px;
    overflow: scroll;
    border: 1px solid #ced4da;
    margin-bottom: 20px;
}
.darf-response-body-title {
    padding: 10px;
}
.darf-response-body-title-type {
    float: right;
    font-weight: 500;
}
.darf-response-body-title-type span { 
    color: #377abc;
    text-transform: uppercase;
}
.darf-response-body {
    padding: 10px;
    overflow: scroll;
    height: 475px;
    border: 1px solid #ced4da;
    margin: 0px;
    margin-bottom: 40px;
}

/*PRETTY VIEW*/
.darf-pretty-holder {
    width: 1045px !important;
    height: 745px;
    overflow: hidden;
}
.darf-pretty-title {
    padding: 10px; 
}
.darf-pretty-body {
    border: 1px solid #ced4da;
    height: 655px;
    padding: 10px;
    margin: 0px;
    overflow: scroll;
    white-space: initial;
}

/*DECALARATION*/
.darf-declaration-holder {
    width: 1045px !important;
    height: 745px;
    overflow: hidden;
}
.darf-declaration-title {
    padding: 10px; 
}
.darf-declaration-body {
    border: 1px solid #ced4da;
    height: 655px;
    padding: 10px;
    background-color: aliceblue;
    margin: 0px;
    overflow: scroll;
    white-space: initial;
}

.darf-scroll-frame::-webkit-scrollbar {
    -webkit-appearance: none;
}

.darf-scroll-frame::-webkit-scrollbar:vertical {
    width: 11px;
}

.darf-scroll-frame::-webkit-scrollbar:horizontal {
    height: 11px;
}

.darf-scroll-frame::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid white; /* should match background, can't be transparent */
    background-color: rgba(0, 0, 0, .5);
}
