html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}
body {}

strong {
    font-weight: bold;
}

/**
 * Menu Top
 */
.col.menu-top-container {
    padding: 0;
}
.col.menu-top-container nav {
    /* position: relative; */
    z-index: 1;
}
.menu-top {
    margin-left: 45px;
}

.col-sidebar {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    padding-top: 80px;
    width: 145px;
    height: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
}
.col-sidebar:hover {
    overflow-y: auto;
}
.col-content {
    margin-left: 155px;
}

/**
 * Content
 */
#content {
    margin: 30px 0;
}

/**
 * Breadcrumb
 */
.breadcrumb {
    margin: 0;
    padding: 10px 15px;
    border-radius: 0 0 5px 5px;
    background-color: #f5f5f5;
}
.breadcrumb li {
    display: inline-block;
    line-height: 26px;
    color: #7b7b7b;
}
.breadcrumb li::before {
    content: '/';
    padding: 0 5px 0 2px;
}
.breadcrumb li:first-child::before {
    display: none;
}
.breadcrumb li a {
    color: #007ebb;
    border-bottom: 1px dotted #007ebb;
}
.breadcrumb li a:hover {
    border-bottom: none;
}

/**
 * Sidebar
 */
.sidebar {
    width: 130px;
    border: none;
}
.sidebar a.collection-item {
    margin-bottom: 15px;
    padding: 10px 0;
    color: #969696;
    line-height: 15px;
    border: none;
    background-color: transparent;
    text-align: center;
}
.sidebar a.collection-item.active,
.sidebar a.collection-item:not(.active):hover {
    color: #26a69a;
    background-color: transparent;
}
.sidebar a.collection-item i {
    display: block;
    margin-bottom: 10px;
    font-size: 35px;
}
.sidebar a.collection-item span {
    font-size: 13px;
}

/**
 * Titles
 */
h5 {
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

/**
 * Ace Editor
 */
.ace_editor:-webkit-full-screen {/*WebKit, Opera 15+*/
    height: 100%;
}
.ace_editor:-moz-full-screen {/*FireFox*/
    height: 100%;
}
.ace_editor:full-screen {/*Opera 12.15-, Blink, w3c standard*/
    height: 100%;
}

/**
 * Buttons
 */
.btn-small {
    padding: 0 .5em;
    height: 30px;
    line-height: 30px;
}
.btn-small i {
    font-size: 1.1rem;
}
.btn-text a:hover {
    color: #0071a8;
}
.btn.right {
    margin-left: 5px !important;
}

/**
 * Forms
 */
.form-footer {
    position: fixed;
    z-index: 99;
    left: 0;
    bottom: -20px;
    padding-top:10px;
    padding-bottom:10px;
    margin-left: 130px;
    padding-left: 30px;
    padding-right: 150px;
    width: 100%;
    background-color: #f5f5f5;
}

/**
 * Inputs
 */
/* label and input color */
.input-field label,
.input-field input {
    color: rgba(0, 0, 0, 0.87);
}
/* error label color */
.input-field.has-error label {
    color: #ef5350;
}
/* error label focus color */
.input-field.has-error input:focus + label {
    color: #ef5350;
}
/* error label underline focus color */
.input-field.has-error input:focus {
    border-bottom: 1px solid #ef5350;
    box-shadow: 0 1px 0 0 #ef5350;
}
/* error color */
.input-field.has-error input {
    border-bottom: 1px solid #ef5350;
    box-shadow: 0 1px 0 0 #ef5350;
}
/* error icon prefix focus color */
.input-field.has-error .prefix.active {
    color: #ef5350;
}
.dropdown-content {
    z-index: 100;
}

/**
 * Table
 */
table {
    margin-top: 20px;
}
td,
th {
    padding: 0px 5px;
}
table tbody td {
    padding: 8px 5px;
}
table.condensed tbody td {
    padding: 0 5px;
}

/**
 * Card
 */
.card .card-content p.checkbox-field {
    position: relative;
    margin-top: 1rem;
}

/**
 * Pagination
 */
.pagination .prev {
    margin-left: 0;
}
.pagination .next {
    margin-right: 0;
}

/**
 * Grid View
 */
.grid-view {}
.grid-view .toolbar {
    margin-bottom: 30px;
}
.grid-view .row.top,
.grid-view .row.bottom {}
.grid-view .row.top {
    margin-bottom: 20px;
}
.grid-view .row.bottom {
    margin-top: 30px;
}
.grid-view .summary {
    float: left;
}
.grid-view .pagination {
    float: right;
    margin: 0;
}
.grid-view table {}
.grid-view select.browser-default {
    height: initial;
    border: none;
    border-bottom: 1px solid #9e9e9e;
    outline: none;
}
.grid-view select.browser-default:active {
    border-bottom: 1px solid #26a69a;
    box-shadow: 0 1px 0 0 #26a69a;
}

/**
 * Tabs
 */
.tab-container {}
.tab-container ul.tabs {}
.tab-container .tab-item {
    margin-top: 20px;
}
.tabs .tab a {
    color: #969696;
}
.tabs .tab a:hover,
.tabs .tab a.active {
    color: #26a69a;
}
.tabs .indicator {
    background-color: #26a69a;
}

/**
 * Other
 */
hr {
    border: none;
    border-top: 1px solid #ccc;
}

dl.horizontal {}
dl.horizontal dt {
    float: left;
}
dl.horizontal dt:after {
    content: " - ";
    margin: 0 10px;
}
dl.horizontal dd {}

span.label {
    display: inline-block;
    margin: 2px 0 2px 0;
    padding: 3px 5px;
    border-radius: 2px;
}

.has-error .xdsoft_datetimepicker {
    border-color: #ef5350;
}

.cursor-help {
    cursor: help;
}
