@charset "utf-8";

.forum-footer-counter {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
    width: min(100%, 590px);
    margin: 18px 0 0 auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}
.forum-footer-counter__online,
.forum-footer-visit {
    border: 1px solid rgba(148, 163, 184, .32);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(15, 23, 42, .92), rgba(15, 118, 110, .28));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 16px 34px rgba(0, 0, 0, .22);
}
.forum-footer-counter__online {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 82px;
    padding: 14px;
}
.forum-footer-counter__online:before {
    content: "";
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #ecfdf5 url("../../../img/forum/board-server.svg") no-repeat center / 26px 26px;
    box-shadow: 0 0 0 1px rgba(94, 234, 212, .36), 0 8px 22px rgba(15, 118, 110, .20);
}
.forum-footer-counter__online span {
    color: #d9f8f1;
    font-size: 12px;
    font-weight: 900;
}
.forum-footer-counter__online strong {
    display: inline-grid;
    min-width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 8px;
    background: #f8fafc;
    color: #0f766e;
    font-size: 20px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .65);
}
.forum-footer-connect-count {
    display: block;
    color: inherit;
    font: inherit;
}
.forum-footer-visit {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 82px;
    padding: 14px;
}
.forum-footer-visit h2 {
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}
.forum-footer-visit dl {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
}
.forum-footer-visit dl div {
    min-width: 0;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(248, 250, 252, .96);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .55);
}
.forum-footer-visit dt,
.forum-footer-visit dd {
    margin: 0;
    text-align: center;
    white-space: nowrap;
}
.forum-footer-visit dt {
    color: #475569;
    font-size: 11px;
    font-weight: 900;
}
.forum-footer-visit dd {
    margin-top: 4px;
    color: #0f766e;
    font-size: 16px;
    font-weight: 900;
}
.forum-footer-visit__admin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(94, 234, 212, .38);
    border-radius: 8px;
    background: rgba(15, 118, 110, .16);
    color: #d9f8f1;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}
@media (max-width: 860px) {
    .forum-footer-counter {
        grid-template-columns: 1fr;
        width: 100%;
        margin-left: 0;
    }
    .forum-footer-visit {
        grid-template-columns: 1fr;
    }
    .forum-footer-visit dl {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
