﻿html,
body {
    height: 100%;
    min-height: 100%;
}

body {
    background: #e0e0e0;
    font-family: Montserrat, sans-serif;
}

.app_hidden {
    position: absolute;
    visibility: hidden;
}

.app_visible {
    position: inherit!important;
    visibility: visible!important;
}

.card {
    border-radius: 0!important;
}

.logo-row {
    background: linear-gradient(180deg, rgba(101,0,1,1) 0%, rgba(146,4,0,1) 100%);
    height: 75px;
    line-height: 75px;
    color: #fff;
}

.custom-table th {
    background: #f5f5f5;
    border: 1px solid #ccc;
    font-size: 14px;
}

div.loading {
    position: relative;
}

div.loading:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}

    /*
.custom-table td {
    background: #fff;
}
    */
#sidebar {
    padding-top: 10px;
    display: block;
    float: left;
    position: fixed;
    width: 180px;
    z-index: 16;
    font-size: 14px;
    top: 75px;
    padding-left: 5px;
    padding-right: 5px;
    margin-left: 0;
    /*
    -webkit-animation: slideNav .3s cubic-bezier(0,0,.2,1);
    animation: slideNav .3s cubic-bezier(0,0,.2,1);
    */
    height: calc(100vh - 75px);
    overflow-y: hidden;
}

#sidebar i {
    vertical-align: middle;
}

#sidebar a {
    color: #555;
    font-weight: bold;
    display: block;
    padding: 8px 5px;
    border-radius: 3px;
}

#sidebar a:hover {
    text-decoration: none;
    color: rgba(146,4,0,1);
    background: rgba(0, 0, 0, 0.1);
}

#main {
    float: left;
    width: calc(100% - 230px);
    margin-bottom: 50px;
    /* margin-top: -5px; */
    margin-left: 180px;
    margin-right: 50px;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
    min-height: 300px;
}

.table-sm th,
.table-sm td {
    font-size: 14px;
    vertical-align: middle;
}

.table-sm th span {
    white-space: nowrap;
}

.table-striped tr:hover td {
    background: rgba(0, 0, 0, 0.15);
}


.modal {
    background: rgba(0, 0, 0, 0.35);
}