@media (min-width: 1500px) {

    .modal-window-server > div {
        width: 30%;
    }
}
.custom-server {
    width: 100%;
    height: 96px;
}
.custom-server > img {
    position: relative;
    height: 100%;
    width: 100%;
    top: 0;
    object-fit: cover;
    transition: 0.5s;
    opacity: .4;
}
.custom-server:hover > img {
    transition: 0.5s;
    opacity: 1;
}
.data-name {
    position: absolute;
    left: 25px;
    top: 26px;
    color: var(--default-text-color);
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.data-players {
    display: flex;
    gap: 1px;
    margin-top: 4px;
}
.data-players i {
    font-size: 18px;
}
.data-players__online {
    font-size: 13px;
    font-weight: 700;
    transition: .5s;
}
.data-map {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 4px;
}
.data-play__btn {
    display: flex;
    font-size: 10px;
    position: absolute;
    top: 2px;
    left: 548px;
    background: var(--bg-table-color);
    width: 130px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: .3s;
}
.data-play__btn:hover {
    background: var(--border-bottom-line);
    cursor: pointer;
    transition: .3s;
}
.data_copy_btn {
    display: flex;
    font-size: 10px;
    position: absolute;
    left: 559px;
    top: -34px;
    background: var(--bg-table-color);
    width: 119px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: .3s;
}
.data_copy_btn:hover {
    background: var(--border-bottom-line);
    cursor: pointer;
    transition: .3s;
}
.server-play__btn {
    color: rgb(192, 192, 192);
}
.server-copy__btn {
    color: rgb(192, 192, 192);
}
.server-copy__btn:hover {
    cursor: pointer;
}
.modal-window-server {
    position: fixed;
    display: flex;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999999999999999999999;
    transition: all 0.3s;
    pointer-events: auto;
    background: #0000008a;
    opacity: 0;
    justify-content: center;
    align-items: center;
}
.modal-window-server .card {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    border-radius: 2px;
}
.modal-window-server > div {
    color: var(--custom-text-color);
    position: absolute;
    width: 29%;
    margin: 0 auto;
    -webkit-transform: translate(-50%, -50%);
    background: var(--bg-table-color);
    border-radius: 8px;
    z-index: 999999999999999999999;
}
.server_block_scroll {
    margin: 9px 0px;
    max-height: 400px;
    overflow-y: scroll;
}
.modal-card {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.modal-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-size: 10px;
    text-transform: uppercase;
}
.modal-card__badge {
    padding: 8px 12px;
    margin: 0;
}
.modal-btn__close {
    background-color: hsla(0,0%,100%,.05);
    padding: 5px 8px;
    border-radius: 5px;
    transition: .3s;
}
.modal-btn__close:hover {
    background-color: hsla(0,0%,100%,.1);
    color: var(--span-color-button);
    cursor: pointer;
    transform: scale(0.8);
    transition: .3s;
}
.modal-table {
    padding: 5px;
}
.table-thead tr th{
    background-color: var(--bg-table-color);
}
.modal-card__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-top: 1px solid var(--border-bottom-line);
}
.modal-btn {
    padding: 8px 12px;
    background-color: var(--span-color);
    color: var(--default-text-color);
    border-radius: 8px;
    margin: 1px auto;
}
.modal-btn:hover {
    cursor: pointer;
}
.servers-card-block{
    padding: 10px 15px;
    display: flex;
    flex-direction: row;
}
.button-now-online {
    background-color: hsla(0,0%,100%,.05);
    color: var(--custom-text-color);
    height: 34px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 34px;
    padding: 0 15px;
    cursor: default;
    border-radius: 8px;
    transition: .3s;
    margin-left: 27px;
}
.button-24h-online {
    background-color: hsla(0,0%,100%,.05);
    color: var(--custom-text-color);
    position: absolute;
    height: 34px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 34px;
    padding: 0 15px;
    cursor: default;
    border-radius: 8px;
    transition: .3s;
    right: 14px;
}
.circle-pulse,.circle-pulse:after {
    visibility: visible;
    border-radius: 50%;
}
.circle-pulse {
    display: inline-block;
    position: absolute;
    left: 9px;
    top: 45%;
    z-index: 10;
    background: rgb(96 128 255);
    box-shadow: 0 0 0 3px rgb(96 128 255 / 26%);
    height: 5px;
    width: 5px;
    opacity: 1;
    pointer-events: none;
    margin-left: 10px;
}
.circle-pulse:after {
    content: "";
    height: 15px;
    width: 15px;
    position: absolute;
    margin: -6px 0px 0px -8px;
    -webkit-animation: pulsate 2s ease-out;
    animation: pulsate 2s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    opacity: 0;
    -webkit-box-shadow: 0 0 0 3px rgb(96 128 255 / 40%);
    box-shadow: 0 0 0 3px rgb(96 128 255 / 40%);
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
}
.modal_players_online {
    visibility: hidden;
}
.modal_players_online.modal_show {
    opacity: 1;
    visibility: visible;
    transition: .3s;
}
.modal_players_online > .modal-card {
    transform: scale(.9);
    transition: .3s;
}
.modal_players_online.modal_show > .modal-card {
    transform: scale(1);
    transition: .3s;
}
@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}
@media (min-width: 1200px) and (max-width: 1499.98px){
    .data-name {
        position: absolute;
        left: 14px;
        top: 26px;
        color: var(--default-text-color);
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 335px;
    }
    .data-play__btn {
        display: flex;
        font-size: 8px;
        position: absolute;
        top: 56px;
        left: 138px;
        background: var(--bg-table-color);
        width: 107px;
        padding: 5px 10px;
        border-radius: 5px;
        transition: .3s;
    }
    .data-play__btn:hover {
        background: var(--border-bottom-line);
        cursor: pointer;
        transition: .3s;
    }
    .data_copy_btn {
        display: flex;
        font-size: 8px;
        position: absolute;
        left: 250px;
        top: 56px;
        background: var(--bg-table-color);
        width: 100px;
        padding: 5px 10px;
        border-radius: 5px;
        transition: .3s;
    }
    .data_copy_btn:hover {
        background: var(--border-bottom-line);
        cursor: pointer;
        transition: .3s;
    }
    .data-players {
        display: flex;
        gap: 1px;
        margin-top: 4px;
        margin-left: 0px;
    }
    .data-players i {
        font-size: 18px;
    }
    .data-players__online {
        font-size: 10px;
        font-weight: 700;
        transition: .5s;
    }
    .data-map {
        font-size: 10px;
        font-weight: 700;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-top: 4px;
    }
    .circle-pulse,.circle-pulse:after {
        visibility: visible;
        border-radius: 50%;
    }
    .circle-pulse {
        display: inline-block;
        position: absolute;
        left: 9px;
        top: 45%;
        z-index: 99;
        background: rgb(96 128 255);
        box-shadow: 0 0 0 3px rgb(96 128 255 / 26%);
        height: 5px;
        width: 5px;
        opacity: 1;
        pointer-events: none;
        margin-left: 10px;
    }
    .circle-pulse:after {
        content: "";
        height: 15px;
        width: 15px;
        position: absolute;
        margin: -5px 0px 0px -8px;
        -webkit-animation: pulsate 2s ease-out;
        animation: pulsate 2s ease-out;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        opacity: 0;
        -webkit-box-shadow: 0 0 0 3px rgb(96 128 255 / 40%);
        box-shadow: 0 0 0 3px rgb(96 128 255 / 40%);
        -webkit-animation-delay: 1.1s;
        animation-delay: 1.1s;
    }
    @-webkit-keyframes pulsate {
        0% {
            -webkit-transform: scale(0.1, 0.1);
            transform: scale(0.1, 0.1);
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
            opacity: 0;
        }
    }
}

@media (min-width: 992px) and (max-width: 1199px) {   
    .custom-server {
        height: 90px;
    }
    .data-name {
        position: absolute;
        left: 14px;
        top: 26px;
        color: var(--default-text-color);
        font-size: 12px;
        font-weight: bold;
        text-transform: uppercase;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 301px;
    }
    .data-play__btn {
        display: flex;
        font-size: 8px;
        position: absolute;
        top: 56px;
        left: 110px;
        background: var(--bg-table-color);
        width: 106px;
        padding: 5px 10px;
        border-radius: 5px;
        transition: .3s;
    }
    .data-play__btn:hover {
        background: var(--border-bottom-line);
        cursor: pointer;
        transition: .3s;
    }
    .data_copy_btn {
        display: flex;
        font-size: 8px;
        position: absolute;
        left: 220px;
        top: 56px;
        background: var(--bg-table-color);
        width: 100px;
        padding: 5px 10px;
        border-radius: 5px;
        transition: .3s;
    }
    .data_copy_btn:hover {
        background: var(--border-bottom-line);
        cursor: pointer;
        transition: .3s;
    }
    .data-players {
        display: flex;
        gap: 1px;
        margin-top: 4px;
        margin-left: 0px;
    }
    .data-players i {
        font-size: 18px;
    }
    .data-players__online {
        font-size: 8px;
        font-weight: 700;
        transition: .5s;
    }
    .data-map {
        font-size: 8px;
        font-weight: 700;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-top: 4px;
    }
    .modal-window-server > div {
        width: 38%;
        top: 50%;
    }
    .server_block_scroll {
        max-height: 300px;
    }
    .button-now-online {
        background-color: hsla(0,0%,100%,.05);
        color: var(--custom-text-color);
        height: 34px;
        font-size: 10px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 34px;
        padding: 0 15px;
        cursor: default;
        border-radius: 8px;
        transition: .3s;
        margin-left: 27px;
    }
    .button-24h-online {
        background-color: hsla(0,0%,100%,.05);
        color: var(--custom-text-color);
        position: absolute;
        height: 34px;
        font-size: 10px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 34px;
        padding: 0 15px;
        cursor: default;
        border-radius: 8px;
        transition: .3s;
        right: 14px;
    }
    .circle-pulse,.circle-pulse:after {
        visibility: visible;
        border-radius: 50%;
    }
    .circle-pulse {
        display: inline-block;
        position: absolute;
        left: 9px;
        top: 45%;
        z-index: 99;
        background: rgb(96 128 255);
        box-shadow: 0 0 0 3px rgb(96 128 255 / 26%);
        height: 5px;
        width: 5px;
        opacity: 1;
        pointer-events: none;
        margin-left: 10px;
    }
    .circle-pulse:after {
        content: "";
        height: 15px;
        width: 15px;
        position: absolute;
        margin: -5px 0px 0px -8px;
        -webkit-animation: pulsate 2s ease-out;
        animation: pulsate 2s ease-out;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        opacity: 0;
        -webkit-box-shadow: 0 0 0 3px rgb(96 128 255 / 40%);
        box-shadow: 0 0 0 3px rgb(96 128 255 / 40%);
        -webkit-animation-delay: 1.1s;
        animation-delay: 1.1s;
    }
    @-webkit-keyframes pulsate {
        0% {
            -webkit-transform: scale(0.1, 0.1);
            transform: scale(0.1, 0.1);
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
            opacity: 0;
        }
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .custom-server {
        height: 90px;
    }
    .data-name {
        position: absolute;
        left: 13px;
        top: 26px;
        color: var(--default-text-color);
        font-size: 12px;
        font-weight: bold;
        text-transform: uppercase;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 283px;
    }
    .data-players i {
        font-size: 15px;
    }
    .data-players__online {
        font-size: 13px;
    }
    .data-play__btn {
        display: flex;
        font-size: 8px;
        position: absolute;
        top: 49px;
        left: 156px;
        background: var(--bg-table-color);
        width: 106px;
        padding: 5px 10px;
        border-radius: 5px;
        transition: .3s;
    }
    .data-play__btn:hover {
        background: var(--border-bottom-line);
        cursor: pointer;
        transition: .3s;
    }
    .data_copy_btn {
        display: flex;
        font-size: 8px;
        position: absolute;
        left: 267px;
        top: 49px;
        background: var(--bg-table-color);
        width: 100px;
        padding: 5px 10px;
        border-radius: 5px;
        transition: .3s;
    }
    .data_copy_btn:hover {
        background: var(--border-bottom-line);
        cursor: pointer;
        transition: .3s;
    }
    .data-map {
        font-size: 12px;
    }
    .modal-window-server > div {
        width: 50%;
        top: 50%;
    }
    .server_block_scroll {
        max-height: 300px;
    }
    .widthall
    {
        max-width: 50% !important;
        flex: 100 !important;
    }
    .show_her {
        /* display: none; */
    }
    .button-now-online {
        background-color: hsla(0,0%,100%,.05);
        color: var(--custom-text-color);
        height: 34px;
        font-size: 10px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 34px;
        padding: 0 15px;
        cursor: default;
        border-radius: 8px;
        transition: .3s;
        margin-left: 27px;
    }
    .button-24h-online {
        background-color: hsla(0,0%,100%,.05);
        color: var(--custom-text-color);
        position: absolute;
        height: 34px;
        font-size: 10px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 34px;
        padding: 0 15px;
        cursor: default;
        border-radius: 8px;
        transition: .3s;
        right: 14px;
    }
    .circle-pulse,.circle-pulse:after {
        visibility: visible;
        border-radius: 50%;
    }
    .circle-pulse {
        display: inline-block;
        position: absolute;
        left: 9px;
        top: 45%;
        z-index: 99;
        background: rgb(96 128 255);
        box-shadow: 0 0 0 3px rgb(96 128 255 / 26%);
        height: 5px;
        width: 5px;
        opacity: 1;
        pointer-events: none;
        margin-left: 10px;
    }
    .circle-pulse:after {
        content: "";
        height: 15px;
        width: 15px;
        position: absolute;
        margin: -5px 0px 0px -8px;
        -webkit-animation: pulsate 2s ease-out;
        animation: pulsate 2s ease-out;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        opacity: 0;
        -webkit-box-shadow: 0 0 0 3px rgb(96 128 255 / 40%);
        box-shadow: 0 0 0 3px rgb(96 128 255 / 40%);
        -webkit-animation-delay: 1.1s;
        animation-delay: 1.1s;
    }
    @-webkit-keyframes pulsate {
        0% {
            -webkit-transform: scale(0.1, 0.1);
            transform: scale(0.1, 0.1);
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
            opacity: 0;
        }
    }
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .custom-server {
        height: 85px;
    }
    .data-name {
        position: absolute;
        left: 14px;
        top: 20px;
        color: var(--default-text-color);
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 435px;
    }
    .data-players i {
        font-size: 15px;
    }
    .data-players__online {
        font-size: 14px;
    }
    .data-play__btn {
        display: flex;
        font-size: 10px;
        position: absolute;
        top: 46px;
        left: 173px;
        background: var(--bg-table-color);
        width: 130px;
        padding: 5px 10px;
        border-radius: 5px;
        transition: .3s;
    }
    .data-play__btn:hover {
        background: var(--border-bottom-line);
        cursor: pointer;
        transition: .3s;
    }
    .data_copy_btn {
        display: flex;
        font-size: 10px;
        position: absolute;
        left: 315px;
        top: 46px;
        background: var(--bg-table-color);
        width: 119px;
        padding: 5px 10px;
        border-radius: 5px;
        transition: .3s;
    }
    .data_copy_btn:hover {
        background: var(--border-bottom-line);
        cursor: pointer;
        transition: .3s;
    }
    .data-map {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-top: 4px;
    }
    .modal-window-server > div {
        width: 70%;
        top: 40%;
    }
    .server_block_scroll {
        max-height: 300px;
    }
    .button-now-online {
        background-color: hsla(0,0%,100%,.05);
        color: var(--custom-text-color);
        height: 34px;
        font-size: 8px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 34px;
        padding: 0 15px;
        cursor: default;
        border-radius: 8px;
        transition: .3s;
        margin-left: 27px;
    }
    .button-24h-online {
        background-color: hsla(0,0%,100%,.05);
        color: var(--custom-text-color);
        position: absolute;
        height: 34px;
        font-size: 7px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 34px;
        padding: 0 15px;
        cursor: default;
        border-radius: 8px;
        transition: .3s;
        right: 14px;
    }
    .circle-pulse,.circle-pulse:after {
        visibility: visible;
        border-radius: 50%;
    }
    .circle-pulse {
        display: inline-block;
        position: absolute;
        left: 9px;
        top: 45%;
        z-index: 99;
        background: rgb(96 128 255);
        box-shadow: 0 0 0 3px rgb(96 128 255 / 26%);
        height: 5px;
        width: 5px;
        opacity: 1;
        pointer-events: none;
        margin-left: 10px;
    }
    .circle-pulse:after {
        content: "";
        height: 15px;
        width: 15px;
        position: absolute;
        margin: -5px 0px 0px -8px;
        -webkit-animation: pulsate 2s ease-out;
        animation: pulsate 2s ease-out;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        opacity: 0;
        -webkit-box-shadow: 0 0 0 3px rgb(96 128 255 / 40%);
        box-shadow: 0 0 0 3px rgb(96 128 255 / 40%);
        -webkit-animation-delay: 1.1s;
        animation-delay: 1.1s;
    }
    @-webkit-keyframes pulsate {
        0% {
            -webkit-transform: scale(0.1, 0.1);
            transform: scale(0.1, 0.1);
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
            opacity: 0;
        }
    }
}
@media (max-width: 575.98px){
    .data-name {
        position: absolute;
        left: 11px;
        top: 20px;
        color: var(--default-text-color);
        font-size: 10px;
        font-weight: bold;
        text-transform: uppercase;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 300px;
    }
    .data-players i {
        font-size: 15px;
    }
    .data-players__online {
        font-size: 8px;
    }
    .data-play__btn {
        display: flex;
        font-size: 10px;
        position: absolute;
        top: 46px;
        left: 169px;
        background: var(--bg-table-color);
        padding: 5px 10px;
        border-radius: 5px;
        transition: .3s;
    }
    .data-play__btn:hover {
        background: var(--border-bottom-line);
        cursor: pointer;
        transition: .3s;
    }
    .data_copy_btn {
        display: none;
    }
    .data_copy_btn:hover {
        background: var(--border-bottom-line);
        cursor: pointer;
        transition: .3s;
    }
    .data-map {
        font-size: 8px;
        font-weight: 700;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-top: 4px;
    }
    .custom-server {
        height: 85px;
    }
    .modal-window-server > div {
        width: 70%;
        top: 40%;
    }
    .modal-window-server .input-form{
        display: none;
    }
    .server_block_scroll {
        max-height: 300px;
    }
    .table-point {
        display: none;
    }
    .button-now-online {
        background-color: hsla(0,0%,100%,.05);
        color: var(--custom-text-color);
        height: 34px;
        font-size: 8px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 34px;
        padding: 0 15px;
        cursor: default;
        border-radius: 8px;
        transition: .3s;
        margin-left: 27px;
    }
    .button-24h-online {
        display: none;
    }
    .circle-pulse,.circle-pulse:after {
        visibility: visible;
        border-radius: 50%;
    }
    .circle-pulse {
        display: inline-block;
        position: absolute;
        left: 9px;
        top: 45%;
        z-index: 1;
        background: rgb(96 128 255);
        box-shadow: 0 0 0 3px rgb(96 128 255 / 26%);
        height: 5px;
        width: 5px;
        opacity: 1;
        pointer-events: none;
        margin-left: 10px;
    }
    .circle-pulse:after {
        content: "";
        height: 15px;
        width: 15px;
        position: absolute;
        margin: -5px 0px 0px -8px;
        -webkit-animation: pulsate 2s ease-out;
        animation: pulsate 2s ease-out;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        opacity: 0;
        -webkit-box-shadow: 0 0 0 3px rgb(96 128 255 / 40%);
        box-shadow: 0 0 0 3px rgb(96 128 255 / 40%);
        -webkit-animation-delay: 1.1s;
        animation-delay: 1.1s;
    }
    @-webkit-keyframes pulsate {
        0% {
            -webkit-transform: scale(0.1, 0.1);
            transform: scale(0.1, 0.1);
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
            opacity: 0;
        }
    }
}