body {
    margin: 0;
    display: block;
    font-family: "Ubuntu", Verdana, Geneva, Tahoma, sans-serif;
    background: var(--black);
    color:var(--light-grey);
    overflow:hidden auto;
}
/* Bootstrap Grid System */
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
  
 
/* Bootstrap Grid Classes */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
  
.col-1,
.col-2, 
.col-3, 
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
    float: left;
    box-sizing: border-box;
    padding:0 15px 0 15px;
    width: 100%;
}

.col {
    float: left;
    box-sizing: border-box;
    padding: 0 15px 0 15px;
}

.col-auto {
    width: auto;
    float: none;
    margin-right: 15px;
    margin-left: 15px;
}


@media (min-width: 992px) {
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
}

/* Sidebar-Nav */

.nav-menu {
    width: 100%;
    height: 70px;
    z-index: 9;
    background: var(--black);
    position: sticky;
    top:0;
    -webkit-box-shadow: 0 -2px 5px rgba(52, 58, 64, .06);
    box-shadow: 0 -2px 5px rgba(52, 58, 64, .06);
    border-right: 1px solid var(--light-grey);
    -webkit-transition: all .2s;
    transition: all .2s;
    overflow: hidden;
    display:flex;
    flex-wrap: nowrap;
    box-shadow: 0 6px 4px -2px grey;
}

.nav-menu .nav-logo {
    background: var(--black);
    position: sticky;
    top:0;
    display: flex;
    align-items: center;
    width:30%;
}

.nav-menu .nav-logo a {
    width: 200px;
    height:calc(100% - 20px);
}

.nav-menu .nav-logo img {
    width:100%;
    height: auto; /* Set height to auto for responsiveness */
    object-fit: contain;
    filter: brightness(200) drop-shadow(2px 4px 6px black);
}

.nav-menu ul {
    width:70%;
    display:flex;
    justify-content: flex-end;
    align-items: center;
    list-style-type: none;
    padding:0;
    margin:0;
}

.nav-menu ul li {
    height: 100%;
    color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    padding:0 20px;
}

.burger-menu {
    width: 20px;
    height: 14px;
    cursor: pointer;
    position: relative;
    right: 0;
    display: inline-flex;
    margin-left: auto;
}

.burger-menu span {
    background-color: var(--white);
    height: 2px;
    position: absolute;
    width: 100%;
    left: 0;
    transition: all 0.3s ease;
}

.burger-menu span:first-child {
    top: 0;
}

.burger-menu span:nth-child(2) {
    top: 6px;
}

.burger-menu span:last-child {
    top: 12px;
}

.burger-menu:hover span:nth-child(2) {
    opacity: 0;
}

.burger-menu:hover span:first-child,
.burger-menu:hover span:last-child {
    top: 6px;
    background-color: var(--red);
}

.burger-menu:hover span:first-child {
    transform: rotate(45deg);
}

.burger-menu:hover span:last-child {
    transform: rotate(-45deg);
}



.menu-open:hover span:nth-child(2) {
    opacity: 0;
}

.menu-open:hover span:first-child,
.menu-open:hover span:last-child {
    top: 6px;
    background-color: var(--green);
}

.menu-open:hover span:first-child {
    transform: rotate(90deg);
}

.menu-open:hover span:last-child {
    transform: rotate(-180deg);
}

.nav-content {
    top: 0;
    bottom: 50px;
    list-style-type: none;
    padding: 15px 15px 0 15px;
    position: relative;
}

.nav-content .nav-title {
    padding:15px 0;
    font-size:10px;
    letter-spacing: .1rem;
    text-transform: uppercase;
    color:var(--light-grey);
}

.nav-content .nav-item {
    padding:15px 10px;
    color:var(--white);
    cursor: pointer;
    --webkit-transition:.6s ease-in-out;
    transition: .4s ease-in-out;
}

.nav-content .nav-item i {
    font-size:14px;
    width:20px;
    vertical-align: text-top;
}

.nav-content .nav-item span {
    margin-left:15px;
}

.nav-content .nav-item:hover {
    padding-left:20px;
}

.nav-content .active {
    background:var(--grey);
    border-radius: 10px;
}



/*Main*/

main {
    min-height: calc(100vh - 100px);
    padding:15px 15px 50px 15px;
}

.main-header {
    padding:25px 15px;
    font-size: 24px;
    font-weight:500;
}

@media(max-width:992px){
    .main-header {
        padding-top:50px;
    }
}

.widget {
    padding:15px;
    border-radius: 10px;
    background: var(--light-grey);
    
}

/*Footer*/

footer {
    height:48px;
    border-top:1px solid var(--light-grey);
    position: relative;
    bottom:0;
    width: -webkit-fill-available;
    display: flex;
    align-items: center;
    padding:0 15px;
    background: var(--black);
    color:var(--grey);
}

/*text-alignment*/

.text-right {
    text-align: right !important;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.float-right {
    float:right !important;
}

/*margin*/

.margin-top-5 {
    margin-top:5px;
}

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

.margin-top-20 {
    margin-top:20px;
}

.margin-top-30 {
    margin-top:30px;
}

.margin-top-40 {
    margin-top:40px;
}

.margin-top-50 {
    margin-top:50px;
}


.margin-bottom-5 {
    margin-bottom:5px;
}

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

.margin-bottom-20 {
    margin-bottom:20px;
}

.margin-bottom-30 {
    margin-bottom:30px;
}

.margin-bottom-40 {
    margin-bottom:40px;
}

.margin-bottom-50 {
    margin-bottom:50px;
}


.margin-left-10 {
    margin-left:10px;
}

.margin-left-15 {
    margin-left:15px;
}

.margin-left-20 {
    margin-left:20px;
}

.margin-left-30 {
    margin-left:30px;
}

.margin-left-40 {
    margin-left:40px;
}

.margin-left-50 {
    margin-left:50px;
}


.margin-right-10 {
    margin-right:10px;
}

.margin-right-20 {
    margin-right:20px;
}

.margin-right-30 {
    margin-right:30px;
}

.margin-right-40 {
    margin-right:40px;
}

.margin-right-50 {
    margin-right:50px;
}

.no-margin {
    margin: 0 !important;
}

/*padding*/

.padding-top-0 {
    padding-top: 0;
}

.padding-top-10 {
    padding-top:10px;
}

.padding-top-20 {
    padding-top:20px;
}

.padding-top-30 {
    padding-top:30px;
}

.padding-top-40 {
    padding-top:40px;
}

.padding-top-50 {
    padding-top:50px;
}



.padding-bottom-0 {
    padding-bottom: 0;
}

.padding-bottom-10 {
    padding-bottom:10px;
}

.padding-bottom-20 {
    padding-bottom:20px;
}

.padding-bottom-30 {
    padding-bottom:30px;
}

.padding-bottom-40 {
    padding-bottom:40px;
}

.padding-bottom-50 {
    padding-bottom:50px;
}


.padding-left-0 {
    padding-left:0;
}

.padding-left-10 {
    padding-left:10px;
}

.padding-left-20 {
    padding-left:20px;
}

.padding-left-30 {
    padding-left:30px;
}

.padding-left-40 {
    padding-left:40px;
}

.padding-left-50 {
    padding-left:50px;
}


.padding-right-0 {
    padding-right: 0;
}

.padding-right-10 {
    padding-right:10px;
}

.padding-right-20 {
    padding-right:20px;
}

.padding-right-30 {
    padding-right:30px;
}

.padding-right-40 {
    padding-right:40px;
}

.padding-right-50 {
    padding-right:50px;
}


.padding-0 {
    padding: 0 !important;;
}

.padding-10 {
    padding:10px !important;
}

.padding-20 {
    padding:20px !important;
}

.padding-30 {
    padding:30px !important;
}

.padding-40 {
    padding:40px !important;
}

.padding-50 {
    padding:50px !important;
}

.no-padding {
    padding: 0;
}

.gutters {
    padding:0 15px;
}


/*text-color*/

.color-black {
    color:var(--black);
}

.color-gray {
    color:var(--grey);
}

.color-light-grey {
    color:var(--light-grey);
}

.color-blue {
    color:var(--blue);
}

.color-green {
    color:var(--green);
}

.color-red {
    color:var(--red);
}

.color-yellow {
    color:var(--yellow);
}


/*element-width*/

.width-10 {
    width:10% !important;
}

.width-20 {
    width:20% !important;
}

.width-30 {
    width:30% !important;
}

.width-40 {
    width:40% !important;
}

.width-50 {
    width:50% !important;
}

.width-60 {
    width:60% !important;
}

.width-70 {
    width:70% !important;
}

.width-80 {
    width:80% !important;
}

.width-90 {
    width:90% !important;
}

.width-100 {
    width:100% !important;
}

.width-fill {
    width: -webkit-fill-available !important;
}


/*element-height*/

.height-10 {
    height:10% !important;
}

.height-20 {
    height:20% !important;
}

.height-30 {
    height:30% !important;
}

.height-40 {
    height:40% !important;
}

.height-50 {
    height:50% !important;
}

.height-60 {
    height:60% !important;
}

.height-70 {
    height:70% !important;
}

.height-80 {
    height:80% !important;
}

.height-90 {
    height:90% !important;
}

.height-100 {
    height:100% !important;
}


/*border-radius*/

.btlr-0 {
    border-top-left-radius:0 !important;
}

.bblr-0 {
    border-bottom-left-radius:0 !important;
}

.btrr-0 {
    border-top-right-radius:0 !important;
}

.bbrr-0 {
    border-bottom-right-radius:0 !important;
}

.br-0 {
    border-radius:0 !important;
}

.br {
    border-radius: .75rem !important;
}

/*border*/

.bb-light-grey {
    border-bottom: 1px solid var(--light-grey);
}

.bb-grey {
    border-bottom: 1px solid var(--grey);
}

.bb-green {
    border-bottom: 1px solid var(--green);
}

.bb-red {
    border-bottom: 1px solid var(--red);
}

.bb-yellow {
    border-bottom: 1px solid var(--yellow);
}

.bb-black {
    border-bottom: 1px solid var(--black);
}


.br-light-grey {
    border-right: 1px solid var(--light-grey);
}

.br-grey {
    border-right: 1px solid var(--grey);
}

.br-green {
    border-right: 1px solid var(--green);
}

.br-red {
    border-right: 1px solid var(--red);
}

.br-yellow {
    border-right: 1px solid var(--yellow);
}

.br-black {
    border-right: 1px solid var(--black);
}


/*background*/

.bg-light-grey {
    background: var(--light-grey) !important;
}

/*line-break*/

.no-wrap {
    white-space: nowrap !important;
}

/* display-modes*/

.inline-block {
    display: inline-block !important;
}

.hidden {
    display: none !important;
}

.invisible {
    position: fixed !important;
    top:-100000px !important;
    left:-100000px !important;
}

.flex {
    display:flex !important;
}

/* Flex*/

.column-reverse {
    flex-direction: column-reverse;
}

.row-reverse {
    flex-direction: row-reverse;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.justify-start {
    justify-content: flex-start;
}

.align-center {
    align-items:center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

/* position-modes*/

.relative {
    position: relative !important;
}

.absolute {
    position: absolute !important;
}


/*Breadcrumb Navigation*/

.breadcrumbs {
    padding: 0 15px;
    font-size:20px;
}

.breadcrumbs span {
    font-size:16px;
    transition:.5s ease-in-out;
    cursor: pointer;
}

.breadcrumbs span:hover {
    font-size:20px;
    color:var(--blue);
}

.breadcrumbs .current {
    color:var(--yellow);
    cursor: default;
}

.breadcrumbs .current:hover {
    font-size:16px;
    color:var(--yellow);
    cursor: default;
}


/*hr*/

.hr-light-grey {
    border-top:var(--light-grey) !important;
}

.hr-grey {
    border-top: var(--grey) !important;
}

/*Accounting*/

.accounting-bg-neutral {
    background:var(--light-grey);
}

.accounting-bg-positive {
    background:var(--green);
}

.accounting-bg-negative {
    background: var(--red);
}

/*cursor*/

.pointer {
    cursor: pointer;
}

/*overflow*/

.overflow-hidden-auto {
    overflow: hidden auto;
}

.overflow-visible {
    overflow: visible;
}

.overflow-hidden {
    overflow: hidden;
}


/*popover-list*/

.popover-list {
    width: calc(100% - 85px);
    padding: 10px 12px 10px;
    background: var(--grey);
    border-radius: 4px;
    max-height: 180px;
    position: absolute;
    top:100%;
    left:0;
    margin-top:5px;
    display:none;
    z-index: 700;
    list-style-type: none;
    margin-left:30px;
    margin-right:30px;
    overflow: hidden auto;
}

.popover-list li {
    float: left;
    text-align: left;
    width: calc(100% - 20px);
    padding: 5px 10px 6px;
    color: var(--white);
    font-size: 13px;
    border-radius: 2px;
    min-height: 20px;
    line-height: 20px;
}

.popover-list li:last-child {
    border-bottom: none;
}

.popover-list li:hover {
    background:var(--yellow);
    color:var(--white);
    cursor: pointer;
}