﻿#statistics-panel {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 370px;
    height: 100vh;
    background: #ffffff;
    border-right: 1px solid rgb(221 221 221);
    transition: transform 0.5s;
    z-index: 1000;
    box-shadow: var(--bs-box-shadow) !important;
}

    #statistics-panel.hidden {
        transform: translateX(-100%);
    }

    #statistics-panel .header {
        height: 40px;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px 0px 0px 0px;
        font-weight:500;
    }

.statistics-inner {
    height: 100%;
    overflow-y: auto;
    padding: 20px;
}

.stat-block {
    margin-bottom: 30px;
}

    .stat-block ul, .stat-block ol {
        margin: 0px 0px 0px -42px;
    }

        .stat-block ul li, .stat-block ol li {
            line-height: 16px;
            margin-bottom: 12px;
        }
        .stat-block ul li::marker, .stat-block ol li::marker {
            list-style: disc;
            color: #aaaaaa; /* меняет цвет маркера */
        }

    .stat-block h2 img {
        height: 24px;
    }

.stat-item {
    font-size: 13px;
    margin-bottom: 6px;
}

    .stat-item a {
        color: #515151;
    }

.stat-item a:hover {
    text-decoration: underline;
}

#statistics-toggle {
    position: absolute;
    right: -26px;
    top: 45%;
    width: 26px;
    height: 80px;
    background: #fff;
    border: 1px solid #ddd;
    border-left: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--bs-box-shadow) !important;
}

.arrow {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #6c757d;
    transform: rotate(180deg);
    transition: transform 0.5s ease;
}

.statistics-inner h2 {
    font-size: 14px;
    margin: 30px 0px 15px -5px;
}

#statistics-panel.hidden .arrow {
    transform: rotate(0deg);
}

.rotate_180 {
    transform: rotate(180deg);
}