/*
   - Разработчик модуля FORZE
   - Discord: forze1712
*/
.statistics_main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    background-color: var(--card);
    padding: 10px 35px;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
}
.text_container {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.text_container h1{
    font-weight: 800;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--text-default);
}
.text_container h2{
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    color: var(--text-custom);
    margin-left: 15px;
}
.prev_btn {
    position: absolute;
    left: 0;
    top: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}
.next_btn {
    position: absolute;
    right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.04);
    top: 0;
}
.next_btn, .prev_btn {
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    width: 30px;
    height: 100%;
    cursor: pointer;
}
.next_btn svg, .prev_btn svg {
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: auto;
}
.stats_block {
    margin-left: 15px;
    display: none;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}
.stats_block.visible {
    opacity: 1;
}
.stats_block.hidden {
    animation: none;
    opacity: 0;
}
.stats_block {
    background-color: transparent;
    border: 1px solid var(--bottom-line-table);
    padding: 5px 15px;
    border-radius: 15px;
    animation: scroll 10s;
    height: 52px;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s, opacity 0.5s ease, transform 0.5s ease;
}
.stats_block:hover {
    background-color: rgba(39, 39, 51, 0.5);
    transform: scale(1.075);
}
.svg_container {
    box-sizing: border-box;
    width: 43px;
    height: 38px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 7px;
    float: right;
    margin-left: 18px;
    overflow: hidden;
    text-align: center;
}
.svg_container svg {
    width: 27px;
    height: 27px;
    margin-top: 4px;
}
@media only screen and (max-width: 375px),
only screen and (max-width: 414px),
only screen and (max-width: 430px),
only screen and (max-width: 540px),
only screen and (max-width: 768px) {
    .statistics_main {
        display: none !important;
    }
}
@media only screen and (max-width: 820px),
only screen and (max-width: 912px) {
    .svg_container {
        display: none;
    }
}