@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
body {
    font-family: "Poppins", sans-serif;
    background: #fafafa;
}
#header {
    width: 100%;
    height: 120px;
}
#sup {
    height: 75%;
    background-color: #393836;
}
#botones {
    height: 28%;
    background-color: #f39200;
}
#infocliente {
    height: 25%;
    background-color: #f39200;
    float: right;
    margin-top: 0.3%;
}

#divpreload {
    top: 10em;
    left: 45%;
    position: fixed;
    width: 5rem;
    height: 5rem;
    z-index: 3000;
}
#divpreload .spinner-border {
    width: 5rem;
    height: 5rem;
}
a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}
.navbar {
    padding: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}
.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}
/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}
#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #393836;
    color: #fff;
    transition: all 0.3s;
}
#sidebar.active {
    margin-left: -250px;
}
#sidebar .sidebar-header {
    padding: 20px;
    background: #393836;
}
#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #47748b;
}
#sidebar ul p {
    color: #fff;
    padding: 10px;
}
#sidebar ul li a {
    padding: 10px;
    font-size: 0.9em;
    display: block;
}
#sidebar ul li a:hover {
    color: #00217c;
    background: #f39200;
}
#sidebar ul li.active>a, a[aria-expanded="true"] {
    color: #00217c;
    background: #f39200;
}
.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #f39200;
}
/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
    width: calc(100vw - 250px);
    transition: all 0.3s;
}
#content .content {
    min-height: 100vh;
    padding: 20px;
}