.btn-primary {
    background-color: #019CBB;
    border-color: #019CBB;
}

.pagination .active a {
    background-color: #019CBB;
}

.pagination li a {
    color: #019CBB;
}

.panel-info > .panel-heading {
    color: #FFFFFF;
}

.nav > li > a {
    color: #019CBB;
}

.breadcrumb > .active {
    color: #FFFFFF;
}

.breadcrumb > li + li::before {
    color: #FFFFFF;
}

.panel-info {
    border-color: #A6A8AB; 
    border: none; 
   /* padding: 0px 15px 0px 15px; */
}

.panel-info > .panel-heading {
    background-color: #A6A8AB;
/*    border-color: #A6A8AB; */
    border: none; 
}






.logged_as {
    text-align: right;
    color: #019CBB;
    font-weight: bold;
}





/* NO-MORE-TABLES */
@media only screen and (max-width: 800px) {

/* Force table to not be like tables anymore */
    #no-more-tables table,
    #no-more-tables thead,
    #no-more-tables tbody,
    #no-more-tables th,
    #no-more-tables td,
    #no-more-tables tr {
    display: block;
}

/* Hide table headers (but not display: none;, for accessibility) */
#no-more-tables thead tr {
position: absolute;
top: -9999px;
left: -9999px;
}

#no-more-tables tr { border: 1px solid #ccc; }

#no-more-tables td {
/* Behave  like a "row" */
border: none;
border-bottom: 1px solid #eee;
position: relative;
padding-left: 35%;
white-space: normal;
text-align:left;
}

#no-more-tables td:before {
/* Now like a table header */
position: absolute;
/* Top/left values mimic padding */
top: 6px;
left: 6px;
width: 45%;
padding-right: 10px;
white-space: nowrap;
text-align:left;
font-weight: bold;
}

/* Label the data */
#no-more-tables td:before { content: attr(data-title); }
}
/* NO-MORE-TABLES */




/* funkyradio */
.funkyradio div {
    clear: both;
    overflow: hidden;
}

.funkyradio label {
    width: 100%;
    border-radius: 3px;
    border: 1px solid #D1D3D4;
    font-weight: normal;
}

.funkyradio input[type="radio"]:empty,
.funkyradio input[type="checkbox"]:empty {
    display: none;
}

.funkyradio input[type="radio"]:empty ~ label,
.funkyradio input[type="checkbox"]:empty ~ label {
    position: relative;
    line-height: 2.5em;
    text-indent: 3.25em;
    margin-top: 2em;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.funkyradio input[type="radio"]:empty ~ label:before,
.funkyradio input[type="checkbox"]:empty ~ label:before {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    content: '';
    width: 2.5em;
    background: #D1D3D4;
    border-radius: 3px 0 0 3px;
}

.funkyradio input[type="radio"]:hover:not(:checked) ~ label,
.funkyradio input[type="checkbox"]:hover:not(:checked) ~ label {
    color: #888;
}

.funkyradio input[type="radio"]:hover:not(:checked) ~ label:before,
.funkyradio input[type="checkbox"]:hover:not(:checked) ~ label:before {
    content: '\2714';
    text-indent: .9em;
    color: #C2C2C2;
}

.funkyradio input[type="radio"]:checked ~ label,
.funkyradio input[type="checkbox"]:checked ~ label {
    color: #777;
}

.funkyradio input[type="radio"]:checked ~ label:before,
.funkyradio input[type="checkbox"]:checked ~ label:before {
    content: '\2714';
    text-indent: .9em;
    color: #333;
    background-color: #ccc;
}

.funkyradio input[type="radio"]:focus ~ label:before,
.funkyradio input[type="checkbox"]:focus ~ label:before {
    box-shadow: 0 0 0 3px #999;
}

.funkyradio-default input[type="radio"]:checked ~ label:before,
.funkyradio-default input[type="checkbox"]:checked ~ label:before {
    color: #333;
    background-color: #ccc;
}

.funkyradio-primary input[type="radio"]:checked ~ label:before,
.funkyradio-primary input[type="checkbox"]:checked ~ label:before {
    color: #fff;
    background-color: #337ab7;
}

.funkyradio-success input[type="radio"]:checked ~ label:before,
.funkyradio-success input[type="checkbox"]:checked ~ label:before {
    color: #fff;
    background-color: #5cb85c;
}

.funkyradio-danger input[type="radio"]:checked ~ label:before,
.funkyradio-danger input[type="checkbox"]:checked ~ label:before {
    color: #fff;
    background-color: #d9534f;
}

.funkyradio-warning input[type="radio"]:checked ~ label:before,
.funkyradio-warning input[type="checkbox"]:checked ~ label:before {
    color: #fff;
    background-color: #f0ad4e;
}

.funkyradio-info input[type="radio"]:checked ~ label:before,
.funkyradio-info input[type="checkbox"]:checked ~ label:before {
    color: #fff;
    background-color: #5bc0de;
}
/* funkyradio */


/* DROPDOWN SUBMENU */

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}
/* DROPDOWN SUBMENU */

/* TABS */

.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
    font-weight: bold;
    background-color:  #F5F5F5;
        border-radius: 2px;

}  

.nav-tabs>li>a:hover {
    background-color: #FFFFFF;
            border-radius: 2px;

}

/* TABS */
/*
.tabs-container{
    border: 1px solid #DCDCDC;
    padding: 5px;
    border-radius: 5px;
}
*/
/* TABS */

/* TABLES */
.table-striped tbody tr:nth-of-type(odd) {
    background-color:  #F0F8FF;
} 
.table-hover tbody tr:hover {
  background-color: #F5F5F5; /* $table-bg-hover */
}
/* TABLES */

/* UNIT-NAME */
.form-control.unit-name{
    background: transparent;
    border: none;
    outline: none;
    text-align: center;
    box-shadow: none;
}
/* UNIT-NAME */	

.form-control.filter{
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: 0px;
    border-bottom: 1px solid #A6A8AB;
}

.form-control.select-list{
    background: transparent;
    outline: none;
    box-shadow: none;
    border-radius: 2px;
    border: 1px solid #A6A8AB;
}

.form-control.select-box{
    background: transparent;
    outline: none;
    box-shadow: none;
    border-radius: 2px;
    border: 1px solid #A6A8AB;
}

.main-container{
     padding: 0px 15px 0px 15px;
}

.div-list{
    background: transparent;
    outline: none;
    box-shadow: none;
    border-radius: 2px;
    border: 1px solid #A6A8AB;
}