/*=================================================================================
    Basic
====================================================================================*/
* {
    font-family: Roboto, serif !important;
}

body {
    padding-top: 56px;
    min-height: 100vh;
}

/*=================================================================================
    Colors
====================================================================================*/
.bg-yellow-linear-gradient {
    background: linear-gradient(90deg, #B88400 0%, #D6A21E 100%);
}

.bg-light-grey {
    background: rgb(73 73 98) !important;
}

.bg-dark-grey {
    background: rgb(46, 46, 61) !important;
}

.bg-dark-yellow {
    background: rgb(191, 139, 7) !important;
}


.border-bottom-pegasus-yellow {
    border-bottom: 2px solid rgb(191, 139, 7) !important;
}

.border-pegasus-yellow {
    border-style: solid;
    border-color: rgb(191, 139, 7) !important;
}

.border-pegasus-input {
    border-width: 3px;
}

.border-pegasus-input {
    border-color: rgb(122, 122, 137) !important;
}

.border-pegasus-input:focus {
    box-shadow: 0 0 0 .25rem rgba(191, 139, 7, .25);
    border-color: rgb(191, 139, 7) !important;
}

.text-pegasus-yellow-label {
    color: #d19d19;
}

.text-pegasus-yellow {
    color: #d19d19 !important;
}

.text-pegasus-gray {
    color: #9d9da8 !important;
}

.breadcrumb-item::before {
    color: #e1e1e3 !important;
}

/*=================================================================================
    Header
====================================================================================*/
#header .nav-item:hover {
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.1);
}

#sidebar-toggle {
    width: 37px;
    height: 37px;
    background: #d19d19 !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

#sidebar-toggle:hover {
    background: #494962 !important;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}


/*=================================================================================
    Sidebar
====================================================================================*/
#left-sidebar-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    opacity: 0;
    display: none;
    transition: opacity 0.25s;
}

#left-sidebar-overlay.open {
    opacity: 0.4;
    display: block;
}

@media (min-width: 992px) {
    #left-sidebar-overlay.open {
        opacity: 0;
        display: none;
    }
}

#left-sidebar {
    position: fixed;
    overflow-y: auto;
    height: calc(100vh - 56px);
    left: 0;
    width: 240px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    z-index: 1001;
    transition: left 0.25s;
}

#left-sidebar.open {
    left: 0 !important;
}

@media (max-width: 992px) {
    #left-sidebar {
        left: -240px;
    }
}

#left-sidebar .logo {
    width: 120px;
    height: 120px;
}

#left-sidebar .nav-link {
    border: 1px solid transparent !important;
}

#left-sidebar .nav-item.active .nav-link {
    background-color: rgb(57, 57, 70) !important;
    border: 1px solid rgb(191, 139, 7) !important;
}

#left-sidebar .active * {
    color: rgb(191, 139, 7) !important;
}

#left-sidebar .nav-item .nav-link:hover {
    background-color: rgb(57, 57, 70) !important;
    border: 1px solid rgb(191, 139, 7) !important;
    color: rgb(191, 139, 7) !important;
}


/*=================================================================================
    Main
====================================================================================*/

#main-basic {
    min-height: 100vh;
}

#main {
    min-height: calc(100vh - 56px);
    padding-left: 240px;
}

@media (max-width: 992px) {
    #main {
        padding-left: 0;
    }
}

.underline-none {
    text-decoration: none;
}


.shadow-custom:hover {
    -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.border-custom {
    border-top: 3px solid rgb(191, 139, 7) !important;
}

.sort-icon {
    padding: 3px 10px;
    border-radius: 2px;
}

.sort-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

