

.dash-container {
    padding: 15px;
    max-width: 100%;
/*    min-width: 1140px;*/
    margin-bottom: 65px
}

@media (max-width: 1200px) {
    .dash-container {
        padding-top: 65px;
    }
}

.page-header {
    font-size: 16px;
    color: #000;
    margin-bottom: 15px;
    line-height: 1;
}

.dash-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

    .dash-table td, .dash-table th {
        padding: 0;
        vertical-align: top;
    }

.right-panel {
    width: 620px;
}

@media (max-width: 1399px) {
    .right-panel {
        display: none
    }
}

.right-panel #accordion {
    width: auto !important;
}

.advert {
    width: 170px;
}

.advert-box, .pl-15 {
    padding-left: 15px;
}

.advert img {
    width: 160px;
}

.flex-container {
    width: 100%;
}

@media (min-width: 1400px) {
    .flex-row {
        display: flex;
        margin-bottom: 15px;
        margin-right: -10px;
        margin-left: -10px;
    }
}

.flex-row {
    display: flex;
    margin-bottom: 15px;
    margin-right: -10px;
    margin-left: -10px;
}

.flex-column {
    flex-grow: 1;
    padding-right: 10px;
    padding-left: 10px;
    position: relative;
    width: 100%;
}

.flex-column-chart {
    flex-grow: 0;
    padding-right: 10px;
    padding-left: 10px;
    position: relative;
    width: 50%;
    min-width: 470px;
}

.card {
    padding: 15px;
    background: #fff;
    border: solid 1px #ccc;
    border-radius: 6px;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

@media (min-width: 1400px) {
    .card {
        margin-bottom: 0;
    }
}

.card-header {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.line-graph {
    display: flex;
    align-items: center;
    justify-content: center;
}

.details {
    text-transform: uppercase;
    line-height: 1 !important;
}

.d-number {
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 5px;
}

.d-label {
    font-size: 12px;
    line-height: 1;
    color: #999;
}
/*Tabs*/
.container-tabs {
    margin-bottom: 30px;
}

    .container-tabs .nav-tabs {
        display: flex;
        flex-wrap: wrap;
        column-gap: 10px;
        padding-left: 0;
        margin-bottom: 15px;
        list-style: none;
    }

        .container-tabs .nav-tabs > li > a {
            display: block;
            padding: 10px 45px;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            background-color: #fff;
            font-size: 14px;
            color: #444;
            font-weight: bold;
            text-decoration: none;
        }

            .container-tabs .nav-tabs > li > a:hover {
                background-color: #ccc;
            }

        .container-tabs .nav-tabs > li.active > a, .container-tabs .nav-tabs > li.active > a:hover, .container-tabs .nav-tabs > li.active > a:focus {
            color: #fff;
            background-color: #5d5d5d;
            border: 1px solid #ddd;
        }

    .container-tabs .tab-content {
    }

        .container-tabs .tab-content > .tab-pane {
            display: none;
        }

            .container-tabs .tab-content > .tab-pane.show {
                display: block;
            }

        .container-tabs .tab-content > .show {
            display: block;
        }

/*CH-1867*/

.menubar *, .menubar *::before, .menubar *::after {
    box-sizing: border-box;
}
.menubar {
}
.nav-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    gap: 5px;
    font-size: 14px;
    color: #4c4c4c;
    line-height: 1;
}
.menu-item {
    position: relative;
}
.menu-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    color: inherit!important;
    text-decoration: none;
    border-radius: 6px;transition: color .2s ease-in-out, background-color .2s ease-in-out;
}
.menu-link:visited{
    color: inherit!important;
}
.menu-link:hover, .menu-link:active, .menu-link:focus {
    background-color: rgba(0,0,0,0.75);
    color: #fff!important;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    border: solid 1px #ccc;
    border-radius: 6px;
    top: 100%;
    right: 0;
    padding: 0.75rem;
    margin: 0;
    min-width: 13rem;
    z-index: 1000;
    color: #333;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25); !important;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    letter-spacing: 0.02em;
    clear: both;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: 6px;
    transition: color .2s ease-in-out, background-color .2s ease-in-out;
}
.dropdown-item:visited{
    color: inherit!important;
}
.dropdown-item:hover {
    background-color: #eee;
}
.dropdown-item:active {
    background-color: #333;
    color: #fff;
}
.dropdown-menu.show {
    display: block;
}