body {
    background: #f1f4f6;
    margin-top: 80px;
    color: #5a5c69;
    font-size: 14px;
    line-height: 1.5;
}

a {
    color: #4e73df;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

small{
    font-size: 12px;
}

label {
    font-weight: 600;
}

.dropdown-item:hover {
    color: #fbfbfb;
    background: #4e73df;
}

.header{
    margin-top: 10px;
    margin-bottom: 10px;
}

/*
* feather
*/

.feather {
    width: 20px;
    height: 20px
}


.dropdown-menu {
    font-size: 0.875rem;
}


/**********************************
* Buttons                         *
**********************************/

.btn-success {
    color: white !important;
    background-color: #1cc88a;
    border-color: #1cc88a;
}

.btn-success:hover {
    background-color: #17a673;
    border-color: #169b6b;
}

.btn-outline-success {
    border-color: #1cc88a;
}

.btn-outline-success:hover {
    background-color: #1cc88a;
    border-color: #1cc88a;
}

.btn-secondary {
    color: white !important;
    background-color: #858796  !important;
    border-color: #858796;
}

.btn-secondary:hover {
    color: white !important;
    background-color: #626472  !important;
    border-color: #626472;
}

.btn-outline-secondary {
    color: #858796  !important;
    border-color: #858796 !important;
}

.btn-outline-secondary:hover {
    color: white !important;
    background-color: #858796 !important;
    border-color: #858796 !important;
}

.btn-primary {
    color: #fff;
    background-color: #4e73df;
    border-color: #4e73df;
}

.btn-outline-primary {
    border-color: #4e73df;
    color: #4e73df;
}

.btn-outline-primary:hover {
    background-color: #4e73df;
    border-color: #4e73df;
}

.btn-primary:hover {
    color: #fff;
    background-color: #2e59d9;
    border-color: #2653d4;
}

.btn-info {
    color: #fff;
    background-color: #36b9cc;
    border-color: #36b9cc;
}

.btn-info:hover {
    color: #fff;
    background-color: #2c9faf;
    border-color: #2a96a5;
}

.btn-danger {
    color: #fff;
    background-color: #e74a3b;
    border-color: #e74a3b;
}

.btn-danger:hover {
    color: #fff;
    background-color: #e02d1b;
    border-color: #d52a1a;
}

.btn-outline-danger {
    border-color: #d52a1a;
}

.btn-outline-danger:hover {
    background-color: #e74a3b;
    border-color: #d52a1a;
}

.btn-warning {
    color: #fff;
    background-color: #f6c23e;
    border-color: #f6c23e;
}

.btn-warning:hover {
    color: #fff;
    background-color: #f4b619;
    border-color: #f4b30d;
}

.btn-outline-warning:hover {
    color: #fff;
    background-color: #f6c23e;
    border-color: #f6c23e;
}

/**********************************
* Navbar                          *
**********************************/

.navbar{
    color: #d5d7d8 !important;
    background-color: #00274c;
}


.navbar .navbar-brand-name{
    position: absolute;
    margin-top: 3px;
    margin-left: 10px;
}

.navbar .navbar-toggler-icon {
    color: white !important;
    cursor: pointer;
}

.navbar .navbar-brand-name{
    color: white !important;
    text-decoration: none;
}

.navbar .nav-link{
    color: #d5d7d8 !important;
}

.navbar .nav-link:hover{
    color: #ffffff !important;
}

/**********************************
* Card                            *
**********************************/

.card {
    border: none;
    -webkit-box-shadow: 0 0 35px 0 rgba(154,161,171,.15);
    box-shadow: 0 0 35px 0 rgba(154,161,171,.15);
    margin-bottom: 24px;
}

.card-header {
    background-color: #f8f9fc !important;
    color: #4e73df !important;
}

/**********************************
* Sidebar                         *
**********************************/

.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    overflow-y: scroll;
    padding-top: 60px;
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: white;
    box-shadow: 0 .125rem 1.375rem rgba(90,97,105,.1),0 .25rem .5rem rgba(90,97,105,.12),0 .9375rem 1.375rem rgba(90,97,105,.1),0 .4375rem 2.1875rem rgba(165,182,201,.1);
}

#sidebar .nav {
    -ms-flex-direction: column!important;
    flex-direction: column!important;
}

#sidebar .nav-item .nav-title {
    display: block;
    padding: .5rem 1rem;
    color: #00274c !important;
    font-weight: bold;
}

#sidebar .nav-item .nav-link {
    color: #858796;
    padding: .5rem 1rem;
}

#sidebar .nav-item .nav-link:hover {
    color: #4e73df;
    background: #fbfbfb;
    box-shadow: inset .1875rem 0 0 #007bff;
}

#sidebar .nav-item .nav-link.active {
    color: #4e73df;
    background: #fbfbfb;
    box-shadow: inset .1875rem 0 0 #007bff;
}

#sidebar .nav-item .nav-link .feather {
    margin-right: 5px;
    margin-bottom: 5px;
}

#sidebar .sidebar-submenu {
    margin-left: 0em;
    padding-left: 0em;
    list-style-type: none;
}

#sidebar .sidebar-submenu .nav-link{
    padding-left: 2.8rem;
}

#sidebar.active {
    margin-left: -250px;
}

@media (max-width: 768px) {

    #sidebar {
        margin-left: -250px;
    }

    #sidebar.active {
        margin-left: 0;
    }

    #content {
        width: 100% !important;
    }
}

#content {
    padding-top: 60px;
    width: calc(100% - 250px);
    min-height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
}

#content.active {
    width: 100%;
}

.slide{
    transition: all 0.3s;
}

