/** Panel*/
.panel {
    border-radius: 0px;
    padding:0px;
    box-shadow:none;
}
.panel-heading {
    background-image:none;
    font-weight: bold;
    padding:0px;
    border-radius: 0px;
    font-size:0.9em;
}
.panel-title {
    font-size: 14px;
    padding:1px;
}
.panel-title > .ui-elements-label {
    padding: 8px;
    display:inline-block;
}
.panel-title > .fa {
    border-right:2px solid #fff;
    padding-right:7px;
    margin-right:4px;
    margin-left:8px;
}
.panel-title > .btn-xs {
    margin-right: 3px;
    margin-top: 4px;
}
.panel-footer {
    background-color: #f7f7f7;
    border-radius: 0px;
    border-top: 1px solid #ddd;
    padding: 10px 25px;
    padding-top:0px;
}
.panel-body > .row {
    padding:0px;
}

/**Card*/
.card {
    box-shadow: 0 0 0 1px rgba(0,0,0,.15),0 2px 3px rgba(0,0,0,.2);
    transition: box-shadow 83ms;
    border-radius: 2px;
    position: relative;
    border:0px;
}
.card-title {
    font-weight:500;
}
.card.no-body .card-title {
    margin-bottom:0px;
}
.card-header {
    font-weight:500;
}
.card.colored-top .card-header:before,
.card.colored-top:before {
    background: linear-gradient(45deg,rgb(34,124,62) 0,rgb(99,173,39) 100%);
    border-radius: 2px 2px 0 0;
    content: " ";
    display: block;
    height: 4px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.card.content-no-spacing .card-body {
    padding:4px;
}
.card.content-no-spacing .card-title {
    margin-bottom:0.05rem;
}

.card.card-primary {
    box-shadow: 0 0 0 1px #FFA300,0 2px 3px #FFA300;
}

/** Button Danger **/
.card-danger {
    border:1px solid #eb4949;
    color:#7b0000;
}
.card-danger .inner {
    background-image: linear-gradient(to bottom, #fde9e9 0px, #f9caca 100%);
    text-shadow: 0 1px 0 #fff;
}
.card-danger:focus,
.card-danger:hover {
    background-color: #f9caca;
    color:#7b0000;
}

/** Button Success **/
.card-success {
    border:1px solid #3dba00;
    color:#186e00;
}
.card-success, .card-success .inner {
    background-image: linear-gradient(to bottom, #e9fae5 0px, #cdf3c1 100%);
    text-shadow: 0 1px 0 #fff;
}
.card-success:focus,
.card-success:hover {
    background-color: #cdf3c1;
    color:#186e00;
}

/** XS modification*/
@media screen and (max-width: 767px) {
    .card-body {
        padding: 0.55rem;
    }
    .card-footer {
        padding: 0.55rem;
        padding-top:0px;
    }
    .ui-application-page-content {
        padding:6px;
    }
}
/**MD modifications*/
@media screen and (min-width: 768px) and (max-width: 992px) {
    .card-body {
        padding: 0.85rem;
    }
    .card-footer {
        padding: 0.85rem;
        padding-top:0px;
    }
}
/**LG modifications*/
@media screen and (min-width: 993px) and (max-width: 1200px) {
    .card-body {
        padding: 0.85rem;
    }
    .card-footer {
        padding: 0.85rem;
        padding-top:0px;
    }
}

/**Card states*/
.card.card-danger {
    box-shadow:0 0 0 1px #dc3545,0 2px 3px #dc3545;
}
.card.card-danger .card-footer {
    background-color:#f4e7e7;
}
.card.card-danger .card-title {
    color:#dc3545 !important;
}

.card.card-warning {
    box-shadow: 0 0 0 1px #dcaa00,0 2px 3px #dcaa00;
}
.card.card-warning .card-footer {
    background-color:#fff1c0;
}
.card.card-warning .card-title {
    color:#dcaa00 !important;
}


/** Panel default*/
.panel-default {
    border: 1px solid #a9c6e3;
    background-color: #fff;
}
.panel-default > .panel-heading {
    background-image:none;
    background-color: #f1f7ff;
    border-bottom: 1px solid #cddeed;
    color: #333;
    text-shadow: 0 1px 0 #fff;
}

/**Panel muted*/
.panel-muted {
    border: 1px solid #e0e0e0;
    background-color: #fff;
    box-shadow:none;
}
.panel-muted > .panel-heading {
    background-image:none;
    background-color: #f7f7f7;
    color: #666;
    text-shadow: 0 1px 0 #fff;
}
.panel-muted > .panel-heading > .panel-title {
    font-weight:normal;
    font-size:12px;
}
.panel-muted > .panel-heading > .panel-title > .ui-elements-label {
    padding:9px;
}

/**Frame*/
.frame {
    border-radius: 0px;
    position: relative;
    padding:2px;
}
.frame.frame-default {
    border:1px solid #00959E;
    background-color:#eaf2f3;
}
.frame.frame-muted {
    border:1px solid #ccc;
    background-color:#f7f7f7;
}
@media screen and (max-width: 576px) {
    .frame.xs-reduced {
        border:0px !important;
        padding:0px !important;
        background-color:none;
        background:none;
    }
    .frame.xs-reduced strong {
        font-weight:normal;
        font-size:10px;
    }
}

/** Navigation Bar*/
.navbar {
    min-height: 0px;
    padding: 0.5rem 0rem;
}
.navbar-default {
    box-shadow:none;
    border-radius:0;
    margin-bottom:0px;
    border-bottom: 1px solid #d2d5d8;
    border-top: 1px solid #c7cbcd;
    background-color:#e3eefb;
    background-image: linear-gradient(to bottom, #f4f8fd 40px, #e3eefb 100%);
}
.navbar-nav > li > a {
    color: #333;
    cursor: pointer;
    display: block;
    font-size: 13px;
    padding: 7px 24px;
    position: relative;
    text-shadow: 1px 1px #f7f7f7;
    border:1px solid #fff;
    border-right:1px solid #fff;
    border-left:1px solid #ccc;
}
.navbar-nav > li > a:hover {
    background-image: none;
    background-color: none;
}
.navbar-default .navbar-nav > li > a {
    color: #333;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav a.highlighted {
    background-image: linear-gradient(to bottom, #ECECF4 0px, #C5D1DD 100%);
    background-repeat: repeat-x;
    text-shadow: none;
    font-weight:bold;
    box-shadow:none;
    text-decoration: none;
}
.navbar-collapse {
    padding:0px;
}
.navbar-nav > li .fa {
    font-weight:bold;
    margin-right:17px;
}

/**XS View*/
@media screen and (max-width: 767px) {
    .navbar-nav > li > a {
        background-image: none;
        padding: 11px 39px;
    }
    .navbar-nav {
        margin: -0.5px 12px;
    }
    .navbar-default .navbar-nav > li.block {
        display: inline-block;
        margin-right: -5px;
        text-align: center;
    }
}

/**Label*/
.ui-elements-label > .fa.left,
.ui-elements-label > .caret.left{
    margin-right:8px;
    display:inline-block;
}
.ui-elements-label > .fa.right,
.ui-elements-label > .caret.right {
    margin-left:8px;
    display:inline-block;
}
.ui-elements-label.highlighted {
    color: #f09a00;
    text-decoration: underline;
}
.ui-elements-label.block {
    display:block;
}
.ui-elements-label.primary {
    font-family: Trebuchet MS, roboto, ubuntu, sans-serif;
    font-size: 20px;
    font-weight: 400;
}
.ui-elements-label.no-wrap {
    white-space: nowrap;
    overflow-x:hidden;
    text-overflow: ellipsis;
}
.ui-elements-label.oneline {
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    display:block;
}

/**Messages*/
.alert {
    background-image: none;
    color:#fff;
    border:0px;
    box-shadow: none;
    border:0px;
    padding:10px;
    margin:0px;
}
.alert > div {
    border: 0px solid #fff;
    font-size: 13px;
}
.alert > div > .fa {
    margin-right:4px;
    display:inline-block;
}
.alert > div > .ui-message-tooltip {
    display:inline-block;
    margin-top:4px;
}
.alert > div > .ui-message-cta {
    float:right;
    margin-top:-6px;
    margin-left:15px;
}
.alert > div > .ui-message-cta > .ui-controls-button {
    border-radius:10px;
}
.alert.alert-xs {
    padding:3px;
    padding-left:5px;
    padding-right:5px;
}

.alert.alert-danger {
    background-color: #c9252c;
}
.alert.alert-success {
    background-color: #27a500;
}
.alert.alert-warning {
    background-color: #e3a000;
}
.alert.alert-info {
    background-color: #31a8ff;
}
.alert.alert-mute {
    background-color: #aaaaaa;
}
.alert-list {
    margin-bottom:15px;
}
.alert-list > .alert {
    margin-bottom:1px;
}
.alert-list > .alert:last-child {
    margin-bottom:0px;
}

/** Table */
.table {
    margin:0px !important;
}
.table-responsive {
    /*overflow-x:visible !important;
    overflow-y:visible !important;*/
}
.table-bordered {
    border: 1px solid #e7d1e7;
}
.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > td,
.table-bordered > tfoot > tr > th {
    border:1px solid #e0e9f1;
    border-right:1px solid #f7f7f7;
    border-left:0px;
}

.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
    border-bottom:0px;
    padding:0px;
}

.table-bordered > thead .th-outer {
    display:table;
    width:100%;
}
.table-bordered > thead .th-inner {
    background-color: #fff;
    border-bottom: 4px solid #fff;
    font-weight: 600;
    color:rgba(0,0,0,.54);
    font-size: 13px;
    padding: 8px;
    padding-bottom:6px;
    text-overflow:ellipsis;
}
.table-bordered > thead .th-inner a {
    color:rgba(0,0,0,.54);
    text-decoration:none;
}
.table-bordered > thead .th-inner.optioned {
    width:80%;
    display:inline-block;
    float:left;
}
.table-bordered > thead .th-inner.option {
    padding:0px;
    padding-bottom:2px;
    width:20%;
    display:inline-block;
    float:left;
    text-align:center;
    position:relative;
}
.table-bordered > thead .th-inner.option .dropdown-toggle {
    padding: 6px 4px;
    display:block;
}
.table-bordered > thead .th-inner.option .dropdown-menu {
    z-index:9999;
    margin-left:-350%;
    max-height: 700%;
    overflow-y: auto;
    color:#000
}
.table-bordered > thead .th-inner.option .dropdown-menu .ui-elements-label {
    color:#000;
    display:block;
    padding-left:4px;
    font-size:12px;
}

.table-bordered > thead .th-inner:hover {
    background-color: #f7f7f7;
    border-bottom: 4px solid #e0e0e0;
}
.table-bordered > thead .th-inner.active {
    background-color: rgba(99,173,39,1);
    border-bottom: 4px solid rgba(34,124,62,1);
    color:#fff;
}
.table-bordered > thead .th-inner.active a {
    color:#fff;
}

.table-hover > tbody > tr:hover {
    /*background-color: #fffde8;*/
}

.table-bordered .line-numbers-top {
    background-color: #fff;
    width:35px;
}
.table-bordered .line-numbers {
    background-color: #fff;
    border-bottom: 1px solid #c1d3e4;
    border-right: 1px solid #c1d3e4;
    width:35px;
    font-size: 10px;
    padding: 8px;
    text-align:center;
}
.table-bordered tfoot {
    background-color:#f1f7ff;
}
.table-bordered tfoot > tr > th {
    padding:4px;
}
.table-bordered .btn-group-xs > .btn,
.table-bordered .btn-xs {
    line-height:1;
    padding: 0px;
}
.table-title {
    background-color: #f1f7ff;
    border: 1px solid #cddeed;
    color: #333;
    font-weight: bold;
    padding: 8px;
    text-shadow: 0 1px 0 #fff;
    border-bottom:0px;
}
.table-title .fa {
    border-right: 2px solid #fff;
    padding-right:8px;
    margin-right:4px;
}
.table td.offset-1 {
    padding-left:15px;
}
.table td.offset-2 {
    padding-left:30px;
}
.table td.offset-3 {
    padding-left:40px;
}
.table td.offset-4 {
    padding-left:50px;
}
.table td.offset-5 {
    padding-left:58px;
}
.table td.offset-6 {
    padding-left:65px;
}
.table .aggregates {
    background-color:#f6f8fb;
    border-bottom:1px solid #fff;
}
.table .aggregates .aggregate {
    border-right:1px solid #c1d3e4;
}
.table .aggregates .aggregate:last-child {
    border-right:0px;
}

/**Table muted modification*/
.table .table-muted,
.table .table-muted>td,
.table .table-muted>th {
    background-color:#f7f7f7;
    color:#ccc;
}
.table .table-muted tbody+tbody,
.table .table-muted td,
.table .table-muted th,
.table .table-muted thead th {
    border-color:#e0e0e0
}
.table .table-hover .table-muted:hover,
.table .table-hover .table-muted:hover>td,
.table .table-hover .table-muted:hover>th {
    background-color:#e0e0e0
}

/**XS, SM*/
@media screen and (max-width: 767px) {
    .table td {
        padding: 0.1rem !important;
    }
    .table th {
        padding:0 !important;
    }
}
/**MD*/
@media screen and (min-width: 768px) and (max-width: 960px) {
    .table td,
    .table th {
        padding: 0.45rem !important;
    }
}

/**ListGroup*/
.list-group-title {
    background-color: #f1f7ff;
    border-top: 1px solid #cddeed;
    border-bottom: 1px solid #cddeed;
    color: #333;
    font-weight: bold;
    font-size:13px;
    padding: 8px;
    text-shadow: 0 1px 0 #fff;
}
.list-group-title > .fa {
    border-right: 2px solid #fff;
    display: inline-block;
    margin-right: 7px;
    padding-right: 7px;
}
.list-group-item.active,
.list-group-item.active:focus,
.list-group-item.active:hover {
    background-image: linear-gradient(to bottom, #ffd535 0px, #ffa801 100%);
    color: #000;
    text-shadow: none;
}
.list-group-item-children {
    padding-left:10px;
}

.ui-application-page-left > .list-group:first-child,
.ui-application-page-right > .list-group:first-child {
    margin-top:29px;
}
.ui-application-page-left .list-group-title {
    border-left: 1px solid #cddeed;
}
.ui-application-page-right .list-group-title {
    border-right: 1px solid #cddeed;
}
.ui-application-page-left > .list-group,
.ui-application-page-right > .list-group {
    margin-bottom:20px;
    box-shadow:none;
    border-radius:0px;
}
.ui-application-page-left > .list-group {
    margin-left:5px;
}
.ui-application-page-right > .list-group {
    margin-right:5px;
}
.ui-application-page-left .list-group-item,
.ui-application-page-right .list-group-item {
    border-bottom:2px solid #e0e0e0;
}
.ui-application-page-left .list-group-item:last-child,
.ui-application-page-right .list-group-item:last-child {
    border-bottom:1px solid #e0e0e0;
}
.ui-application-page-left .list-group-item,
.ui-application-page-left .list-group-item h4 {
    border-top:0px;
    border-right:0px;
    font-size:12px;
}
.ui-application-page-right .list-group-item,
.ui-application-page-right .list-group-item h4 {
    border-top:0px;
    border-left:0px;
    font-size:12px;
}
.ui-application-page-left .list-group-item:last-child,
.ui-application-page-right .list-group-item:last-child {
    border-radius:0;
}
.ui-application-page-left .list-group-item .fa,
.ui-application-page-right .list-group-item .fa {
    margin-right: 7px;
}

/**Breadcrumb*/
.breadcrumb {
    border-radius: 2px;
    border:0px solid #e0e0e0;
    list-style: outside none none;
    margin-bottom: 20px;
    padding: 0px;
    font-size:1em;
    background-color:none;
    background:none;
}
.breadcrumb li {
    padding:8px;
    padding-left:12px;
    position: relative;
}
.breadcrumb li:first-child,
.breadcrumb li:first-child a {
    padding-left:0px;
}
.breadcrumb > li.flat {
    padding:3px 2px 0;
}
.breadcrumb > li + li::before {
    content:"";
}
.breadcrumb li::after {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: rgba(34, 36, 38, 0.15);
    border-image: none;
    border-style: solid;
    border-width: 0 1px 1px 0;
    content: "";
    height: 1.14286em;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(50%) rotate(-45deg);
    width: 1.14286em;
    z-index: 2;
}
.breadcrumb li:last-child::after {
    content:"";
    display:none;
}
.breadcrumb li .ui-controls-button {
    margin-left:25px;
}

/*xs view*/
@media screen and (max-width: 767px) {
    .breadcrumb li::after {
        border: 0 none;
        display: none;
        transition: none 0s ease 0s ;
    }
    .breadcrumb li {
        display:block;
        padding: 2px 4px;
    }
    .breadcrumb > li + li::before {
        padding:0px;
    }
    .breadcrumb .pull-right {
        display: block;
        margin-top: 5px;
        width: 100%;
        margin-bottom:10px;
    }
    .breadcrumb .pull-right button {
        width:100%;
    }
}

/**Image Thumbnail*/
.img-thumbnail {
    box-shadow:none;
    padding:0;
    border-radius:0px;
    text-align:center;
}

/**Dropdown*/
.dropdown-menu {
    border-radius:0px;
    box-shadow:0 3px 3px rgba(0, 0, 0, 0.156);
    padding:0px;
}
.dropdown-menu .ui-elements-label {
    color:#000;
    display:block;
    padding:4px;
    padding-left:6px;
    font-size:14px;
}
.dropdown-menu .ui-elements-label img {
    display:inline-block;
    margin-right:4px;
}
.dropdown-item.active, .dropdown-item.active {
    text-decoration: none;
    background-color: #333;
}
.dropdown-item.active, .dropdown-item.active a {
    color:#fff;
}

/**Tiles*/
.ui-elements-tiles {}
.ui-elements-tiles.row {
    margin-right: -30px;
    margin-left: -30px;
    margin-bottom: -1.5rem !important;
    overflow:hidden;
}
.ui-elements-tiles-tile {
    text-align:center;
    font-family:system-ui,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Fira Sans,Ubuntu,Oxygen,Oxygen Sans,Cantarell,Droid Sans,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Lucida Grande,Helvetica,Arial,sans-serif;
    font-size: 12px;
    line-height: 1.5;
}
.ui-elements-tiles-tile .inner {
    margin-bottom:24px;
}
/**screens smaller md*/
@media screen and (max-width: 768px) {
    .ui-elements-tiles-tile .inner {
        margin-bottom:10px;
    }
    .ui-elements-tiles.row {
        margin-bottom:-10px !important;
    }
}

.ui-elements-tiles-tile .metric {
    font-weight: 600;
    font-size: 1.2rem;
}
.ui-elements-tiles-tile.spaced .inner {
    padding:8px;
}
.ui-elements-tiles-tile.success .inner {
    background-color:#97D700;
}
.ui-elements-tiles-tile.danger .inner {
    background-color:#EF3354;
}
.ui-elements-tiles-tile.muted .inner {
    background-color:#e0e0e0;
}

/** Block label*/
.ui-elements-blocklabel {
    border: 1px solid #f3f3f3;
    padding: 5px 5px 5px 8px;
}
.ui-elements-blocklabel:hover {
    background: transparent url("data:image/gif;base64,R0lGODlhCgAeALMAAPv7+/j4+Pz8/Pr6+v7+/vn5+f39/ff39/b29v///wAAAAAAAAAAAAAAAAAAAAAAACH5BAAAAAAALAAAAAAKAB4AAARUMMlJq72Ykk0S/5wHfiJhnKiRpKzappIgz3RC0wCQ5Hyv+4CBcJAYGofFYWHJTDCfTSjUGaharZKr9pA4eL/gLngsBiPOiAR6jVaz1+73OS6nvxMRADs=") repeat-x scroll center bottom;
}
.ui-elements-blocklabel > label {
    margin:0px;
    width:30%;
    min-width:150px;
    text-overflow:ellipsis;
}

/**XS View*/
@media screen and (max-width: 767px) {
    .ui-elements-blocklabel > span {
        overflow:hidden;
        text-overflow:ellipsis;
    }
}

/**Tabs*/
.nav-tabs {}
.nav-tabs > li {}
.nav-tabs > li > a {
    border:0px;
    border-radius:0px;
    font-size: 1em;
    padding:12px 40px 10px 40px;
    background-color:#e0e0e0;
    color:#666;
    margin:0px;
    border-bottom:2px solid #4a0723;
}

/**Modification within card headetr */
.card-header .nav-tabs > li > a {
    background-color: transparent;
    border-bottom:2px solid transparent;
}
.card-header .nav-tabs > li {
    border-right:1px solid #ccc;
}
.card-header .nav-tabs > li:last-child {
    border-right:0px;
}
.card-header .nav-tabs {
    border-bottom:1px solid transparent;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    color:#fff;
    border:0px;
    background-color:#7d7d7d;
    border-bottom:2px solid #666;
}
.nav-tabs .nav-link {
    border-radius: 0px !important;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    /*border:0px !important;*/
}

/** ListBox*/
.ui-elements-listbox {

}
.ui-elements-listbox-item {
    border:1px solid #fff;
    border-bottom:1px solid #f3f3f3;
    padding:5px;
    display: inline-block;
    vertical-align: middle;
    width:100%;
}
.ui-elements-listbox-item:hover,.ui-elements-listbox-item.highlighted {
    border-color:#b2ddf2;
    background-color:#f1f7ff;
}
.ui-elements-listbox-item > .form-control {
    display:inline-block !important;
    height:auto;
    cursor:pointer;
}
.ui-elements-listbox-item > .checkbox {
    margin-right:5px;
}
.ui-elements-listbox-item > .ui-elements-label {
    display:inline-block;
    line-height: normal;
}

/**toolips*/
.ui-elements-tooltip {
    cursor:pointer;
}

/**helpbar*/
.ui-elements-helpbar {
    padding:8px;
}
.ui-elements-helpbar-item {
    background-color:#fffde3;
    padding:6px;
    font-size:0.9em;
}
.ui-elements-helpbar-item-title {
    font-weight:bold;
}
.ui-elements-helpbar-item-text {
    margin-top:4px;
}
.ui-elements-helpbar-item-topics,
.ui-elements-helpbar-item-group {
    font-style:italic;
    color:#666;
    margin-top:5px;
}

/**Accordion*/
.ui-elements-accordion .card-header .btn {
    background-color:unset;
    background:none;
}
