/*------------------------
Defaults
-------------------------*/

html, body, #topnav, #titlebar {
    min-width: 500px;
}

html {
    overflow-x: hidden !important;
}

body {
    background: #e5e5e5;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    width: auto !important;
}

@media (max-width: 1536px) {

    body {
        font-size: 14px;
    }
}

textarea {
    resize: none;
}

ul {
    list-style: none;
}

/*------------------------
Common
-------------------------*/
.icon {
    color: #fff;
    font-size: 18px;
    height: 50px;
    width: 50px;
    display: inline-block;
    padding: 12px 16px;
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}

    .icon:hover {
        color: #fff;
    }

.title {
    display: inline-block;
    padding: 12px 14px 12px 0px;
    color: #fff;
    margin-left: -15px;
    text-decoration: none;
}
/*------------------------
Controls
-------------------------*/
#menu {
    background: #424242;
}

#page.topnav #menu {
    display: none;
}

#options {
    background: #757575;
}

#home {
    background: #616161;
}

#filters {
    background: #616161;
}

#section {
    background: #9e9e9e;
    display: none;
}

#filters .title {
    padding-right: 15px;
    color: #fff;
}

#page.minimal #filters .title {
    display: none;
}


/*------------------------
Header
-------------------------*/
#header {
    top: 0px;
    left: 0px;
    background: #333;
    color: #fff;
    margin: 0;
    border: 0;
    max-height: 50px;
    z-index: 1000;
}

    #header .navbar-brand {
        font-size: 28px;
    }

    #header a {
        color: #fff;
    }

    #header .dropdown > ul > li a {
        color: #333;
    }

    #header .dropdown-menu > .active > a {
        color: #fff;
        background: #333;
    }

    #header .nav > li {
        display: inline-block;
    }


/*@media (max-width: 768px) {
    .collapse {
        display: none !important;
    }
}*/

/*------------------------
Side Navigation
-------------------------*/
#nav {
    position: fixed;
    font-family: 'Roboto', sans-serif;
    z-index: 1000;
    -moz-box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    -ms-box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

    #nav li {
        height: 50px;
        overflow: hidden;
    }

    #nav a {
        color: #fff;
    }

    #nav span {
        height: 50px;
    }



#sidenav {
    position: absolute;
    top: 24px;
    left: 0px;
    width: 250px;
    float: left;
    font-size: 18px;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
         -moz-box-shadow: 0 1px 6px rgba(0,0,0,0.1);
        -ms-box-shadow: 0 1px 6px rgba(0,0,0,0.1);
        -webkit-box-shadow: 0 1px 6px rgba(0,0,0,0.1);
        box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

    #sidenav .icon {
        float: left;
    }

    #sidenav .title {
        width: 200px;
        background-color: rgba(245, 245, 245, 0.90);
        color: #333;
        margin-left: 0;
        padding-left:10px;
    }

        #sidenav .title:hover, #nav a.active .title {
            background-color: inherit;
            color: #fff;
        }

#topnav {
    top: 0px;
    left: 200px;
    font-size: 16px;
}

    #topnav .icon {
    }

    #topnav .title {
        margin-left: -15px;
        padding: 12px 16px 12px 0px;
    }

    #topnav a {
        background-color: #333 !important;
        padding: 0;
    }

        #topnav a:hover, #topnav a.active {
            background-color: inherit !important;
        }

#page.topnav.minimal #topnav .title {
    display: none;
}

#page.sidenav #topnav {
    display: none !important;
}

@media (max-width: 991px) {
    #topnav .title {
        display:none;
    }    
}

/*Media Queries*/
@media (max-width: 991px) {
    #sidenav {
        width: 50px;
    }

        #sidenav li:hover {
            width: 250px;
            /*-moz-box-shadow: 0 1px 6px rgba(0,0,0,0.1);
            -ms-box-shadow: 0 1px 6px rgba(0,0,0,0.1);
            -webkit-box-shadow: 0 1px 6px rgba(0,0,0,0.1);
            box-shadow: 0 1px 6px rgba(0,0,0,0.1);*/
        }

            #sidenav li:hover .title {
                background-color: inherit;
                color: #fff;
            }
}


/*Topnav*/
#page.topnav #sidenav {
    width: 0px !important;
}

/*Minimal*/
#page.minimal #sidenav {
    width: 50px;
}

    #page.minimal #sidenav li:hover {
        width: 250px;
        -moz-box-shadow: 0 1px 6px rgba(0,0,0,0.1);
        -ms-box-shadow: 0 1px 6px rgba(0,0,0,0.1);
        -webkit-box-shadow: 0 1px 6px rgba(0,0,0,0.1);
        box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    }

        #page.minimal #sidenav li:hover .title {
            background-color: inherit;
            color: #fff;
        }

/*Collapsed*/
#page.collapsed #sidenav {
    width: 0px;
}

#page.collapsed #sidenav {
    width: 0px;
}


/*------------------------
Titlebar
-------------------------*/
#titlebar {
    max-height: 50px;
    top: 50px;
    left: 0px;
    border: 0;
    background: #333;
    /*-moz-box-shadow: 0 5px 5px rgba(0,0,0,0.18);
    -ms-box-shadow: 0 5x 5px rgba(0,0,0,0.18);
    -webkit-box-shadow: 0 5px 5px rgba(0,0,0,0.18);*/
    box-shadow: 0 5px 5px rgba(0,0,0,0.18);
    z-index: 1001;
    padding: 0;
}

    #titlebar .breadcrumbs a {
        color: #fff;
        margin: 0;
        padding: 0;
    }

    #titlebar .divider {
        font-size: 12px;
    }

    #titlebar .breadcrumbs span {
        display: inline-block;
        margin: 0;
    }

    #titlebar .breadcrumbs .icon {
        height: 50px;
        color: #fff;
        padding: 12px 0px 12px 16px;
        width: 40px;
    }

    #titlebar .breadcrumbs .title {
        color: #fff;
        padding: 12px 16px 12px 0px;
    }

/*------------------------
Footer
-------------------------*/
#footer .nav > li > a:hover, .nav > li > a:focus {
    background-color: inherit;
}


/*------------------------
Side Navigation
-------------------------*/
.toolbar {
    height: 50px;
    left: 250px;
    position: fixed;
    width: 100%;
    top: 48px;
    padding: 0;
    background-color: #eee;
    z-index: 999;
    box-shadow: 0 5px 5px rgba(0,0,0,0.18);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    min-width: 600px;
}

    .toolbar .dtx-dropdown {
        font-size: 14px;
    }

    .toolbar .navbar-brand {
        color: #fff !important;
    }

@media screen (max-width: 991px) {
    .toolbar {
        left: 250px;
    }
}

.toolbar-container {
    padding: 0px 10px;
}

.toolbar-control {
    display: inline-block;
    padding: 8px 15px;
}

.toolbar-controls {
    display: inline-block;
    margin: 0px;
    padding: 0;
    height:50px;
}


#page.minimal .toolbar {
    left: 50px;
}


#page.collapsed .toolbar, #page.topnav .toolbar {
    left: 0px;
}

#page.filter .toolbar {
    top: 100px;
}

@media(max-width: 1142px) {
    .toolbar {
        top: -2px;
        height:auto;
    }

        .toolbar .dtx-dropdown {
            /*font-size:12px;*/
        }

    .toolbar-controls {
        width:100%;
    }
}










.panel-toolbar-container {
    padding: 6px 15px;
}

.panel-toolbar {
    background-color: #f8f8f8;
    font-size: 14px;
    font-weight: normal;
}

    .panel-toolbar .nav-tabs {
        background-color: #f8f8f8;
    }

/*------------------------
Content
-------------------------*/
#content {
    padding-top: 50px;
    margin-left: 250px;
    padding-bottom: 50px;
    min-height: 600px;
}

@media(max-width: 991px) {
    #content {
        margin-left: 50px;
    }
}
@media(max-width: 1142px) {
    #page.filter #content {
        padding-top: 150px !important;
    }
}

#page.sidenav.minimal #content {
    margin-left: 50px;
}

#page.topnav #content {
    margin-left: 0px !important;
}

#page.sidenav.collapsed #content {
    margin-left: 0px;
}

#page.filter #content {
    padding-top: 95px;
}

/*------------------------
Panels
-------------------------*/
.panel {
    margin: 20px;
    -moz-box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    -ms-box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

.panel-footer {
    background: #f8f8f8;
}

/*----------------------------
MISC
-----------------------------*/
.cursor:hover {
    cursor: pointer;
}

.avatar {
    width: 36px;
    height: 36px;
}

.dropdown-avatar {
    padding: 8px 15px 8px !important;
}

/*----------------------------
Validation 
-----------------------------*/

.validate {
    padding: 7px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

/*------Hide input number spinners----*/
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/*------------------------
Bootstrap Overrides
-------------------------*/
h3, .h3 {
    font-size: 20px !important;
}

.navbar-btn {
    margin-left: 15px;
    margin-right: 15px;
}

.navbar-nav {
    margin: 0px;
}

.navbar .btn-group {
    padding-top: 8px;
}

.nav-tabs {
    background-color: #f5f5f5;
    cursor: pointer;
    padding-top: 8px;
}

.panel-heading {
    position:relative;

}
.navbar-form {
    margin-left: 0;
    margin-right: 0;
}

    .navbar-form .form-group {
        padding: 0 5px !important;
    }

.panel-table thead, .panel-table tfoot {
    background-color: #f8f8f8;
    border-color: #e7e7e7;
}

@media (max-width: 767px) {
    .navbar-form {
        padding: 0 0 0 0 !important;
        border-top: 0px !important;
        border-bottom: 0px !important;
    }
}
@media (max-width: 1142px) {
    .table-mobile-hidden {
        display: none;
    }
}

.sidetab {
    /*//border:1px red solid;*/
    width: 30px;
    height: 30px;
   right:-30px;
   position:absolute;

    margin-top: 10px;
    background-color: #888; /*rgb(206, 80, 67);*/
    text-align: center;
    cursor: pointer;
    opacity: 0.5;
    padding-top: 3px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    -webkit-transition: width 0.25s, opacity 0.25s;
    transition: width 0.25s, opacity 0.25s;
    color: white;
}

    .sidetab:hover {
        opacity: 1;
        width: 30px;
    }

    .sidetab > * {
        width: 100%;
        height: 100%;
    }

.activeBox {
    opacity: 1;
    width: 30px;
}

.table {
    margin-bottom: 0px !important;
}

.table>tbody>tr>td {
padding: 8px 10px 8px 10px !important;
line-height: 1.42857143;
vertical-align: top;
border-top: 1px solid #ddd;

/*----------------------------
AngularStrap Overrides
-----------------------------*/
.modal-header, .modal-footer {
    background: #f5f5f5;
}


/*----------------------------
Hide on Mobile
-----------------------------*/

@media (max-width: 767px) {
    #mobilehide {
        display: none !important;
    }
}



#page.topnav #loader, #page.sidenav.collapsed #loader {
    left: 0;
}

#page.sidenav.minimal #loader {
    left: 50;
}


/*----------------------------
Labels and Text Formatting
-----------------------------*/

.dtx-label {
    font-weight: bold !important;
    text-align: right;
}

.currency {
    text-align: right;
}

.sortable {
    color: black !important;
}

.google-visualization-table-table {
  font-family: arial,helvetica;
  font-size: 10pt;
  cursor: default;
  width: 100% !important;
  margin: 0;
  background: white;
  border-spacing: 0;
}