.OnlineCounter {
    color: #37423b;
    margin: 20px 0;
}

.OnlineCounter .OnlineContainer {
    padding: 0 !important;
}

.OnlineCounter ul {
    color: #fff;
    /* display: flex;
    justify-content: end;
    flex-wrap: wrap;
    margin: 0;
    padding: 0; */
    list-style: outside none none;
}

.OnlineCounter ul li {
    display: flex;
    justify-content: space-between;
}

.OnlineCounter ul li span {
    font-size: 14px;
}

.OnlineCounter ul li:not(:last-of-type) {
    margin-bottom: 15px;
}

.OnlineCounter ul span:first-child {
    display: inline-block;
    /* padding: 0 0 0 10px; */
}

.OnlineCounter .Header {
    background: #e79a10;
    border-radius: 0;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.OnlineCounter .Header span {
    color: #fff;
    font: bold 12px/26px arial;
    padding-left: 15px;
    text-shadow: 0 1px 0 #000;
    text-transform: uppercase;
    white-space: nowrap;
}

@media only screen and (max-width: 992px) {

    .OnlineCounter ul li {
        flex-direction: row !important;
        justify-content: space-between;
        margin-bottom: 15px !important;
        z-index: 99;
    }

    .OnlineCounter ul li:last-child {
        margin-bottom: 0 !important;
    }

    .OnlineCounter ul li span {
        display: flex;
        flex-direction: row !important;
        width: unset !important;
    }
}