:root{
    --default-text-color: #ffffff;
    --green-color: #85f479;
 
  
 
    --modal-bg: rgb(22 22 22 / 80%);
    --card-color1: #162231;
 
 
   
    
    --purple-color: #b379ff;
    --top-one-color: #ffdb5c;
    --top-two-color: #bfe0ff;
    --top-three-color: #f8a785;
 
	

 --bg-color: #0d1118;
--span-color: #00d0ff;
--bottom-line-table: rgb(255 255 255 / 2%);
--navbar-first-color: hsla(0,0%,100%,.02);
--button-color : #0b1727;
--button-color1 : #172231;
--button-color-hover : #0e1d30;
 --custom-text-color: #9dedff;
--span-color-low: rgb(0 208 255 / 5%);
--default-text-color: #ffffff;
--grey-color: #0b1727;
--card-color: #162231;
 --orange-color: #f6b949;
--red-color: #f6b949;
--yellow-color: #eb645d

}


.servers_flex_block,
.rating_flex_block {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

 

body {
    background: #0b1727 url("../img/background.jpg") ;
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    background-size: cover;
}

/* On screens that are 820px or less, set the background color to olive */
@media screen and (max-width: 820px) {
  body {
     background: #0b1727 ;
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    background-size: cover;
  }
}

.general_online {
    display: flex;
    background-color: var(--card-color1);
    border-radius: 6px;
    justify-content: space-between;
    align-items: center;
    padding: 6px 15px 6px 0;
	box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.general_online span {
 
 
    color: var(--custom-text-color);
    align-items: center;
}

.general_online span svg{
    width: 12px;
    height: auto;
    fill: var(--custom-text-color);
}

.general_online_count {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 12px;
    border-radius: 4px;
    background-color: var(--bottom-line-table);
    padding: 5px 10px;
}

.general_online_count span {
    font-weight: 700;
    font-size: 12px;
    color: var(--default-text-color);
}

.first_circle {
    display: block;
    position: absolute;
}

.second_circle {
    display: block;
    position: absolute;
    border-radius: 50px;
}

.first_circle svg {
    width: 5px;
    height: 5px;
    fill: var(--green-color);
    opacity: 1;
    border-radius: 50px;
    animation: infinite 2s linear online_dot;
}

@keyframes online_dot {
    0% {
        box-shadow: 0 0 0 0 transparent;
    }

    50% {
        box-shadow: 0 0 0 4px rgb(133 244 121 / 10%);
    }

    100% {
        box-shadow: 0 0 0 7px transparent;
    }
}

@-webkit-keyframes online_dot {
    0% {
        box-shadow: 0 0 0 0 transparent;
    }

    50% {
        box-shadow: 0 0 0 4px rgb(133 244 121 / 10%);
    }

    100% {
        box-shadow: 0 0 0 7px transparent;
    }
}

.second_circle svg {
    width: 13px;
    height: 13px;
    fill: var(--green-color);
    opacity: .05;
}

.general_online_signal {
    display: flex;
    height: 35px;
    width: 35px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.server_block {
    display: flex;
    width: auto;
    height: 52px;
    position: relative;
    transition: .3s linear;
    background-color: var(--card-color);
    border-radius: 6px;
    overflow: hidden;
    align-items: center;
    margin-bottom: 3px;
}

.server_block:last-child {
    margin-bottom: 0;
}

.servers_block,
.ratings_block {
    display: block;box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    max-height: 200px;
    overflow: hidden;
    overflow-y: scroll;
}

.server_block:hover .map {
    opacity: .6;
    transition: .3s linear;
}

.server_info_block {
    display: flex;
    z-index: 1;
    width: 100%;
    padding: 5px 10px 5px 30px;
    justify-content: space-between;
    align-items: center;
}

.server_map_image {
    position: absolute;
    z-index: 0;
    left: 0;
    top: -16px;
}

.server_map_image:after {
    content: '';
    display: block;
    position: absolute;
    width: 228px;
    height: 100%;
    right: 0;
    top: 0;
    background: linear-gradient(-90deg, var(--card-color), transparent);
}

.map {
    height: auto;
    width: 300px;
    opacity: .3;
    transition: .3s linear;
}

svg.online_bar {
    position: absolute;
    transform: rotate(-90deg);
    left: -5px;
    transition: .3s;
    margin-bottom: 4px;
}

.server_players_block {
    display: flex;
    flex-direction: column;
    width: 50px;
    align-items: center;
}

.server_players_block>div {
    font-size: 17px;
    font-weight: 700;
    color: var(--default-text-color);
    transition: .3s;
}

.server_players_block span {
    font-weight: 700;
    font-size: 10px;
    color: var(--default-text-color);
    opacity: .5;
    text-transform: uppercase;
    transition: .3s;
}

.server_name_map_content {
    display: flex;
    flex-direction: column;
}

@media (min-width:1385px) {
    .server_name_custom {
        font-size: 17px;
        font-weight: 700;
        color: var(--span-color);
        transition: .3s;
        max-width: 300px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (min-width:768px) and (max-width:1384px) {
    .server_name_custom {
        font-size: 14px;
        font-weight: 700;
        color: var(--span-color);
        transition: .3s;
        max-width: 88px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width:767px) {
    .server_name_custom {
        font-size: 14px;
        font-weight: 700;
        color: var(--span-color);
        transition: .3s;
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width:940px) {
    .play {
        display: none !important;
    }
}

.server_map_name {
    font-weight: 700;
    font-size: 10px;
    color: var(--default-text-color);
    opacity: .5;
    /* text-transform: uppercase; */
    transition: .3s;
}

.server_left_block {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 5px;
}

.partition {
    content: '';
    display: block;
    height: 30px;
    width: 1px;
    background-color: rgb(255 255 255 / 10%);
}

.server_button {
    display: flex;
    height: 40px;
    width: 40px;
    border-radius: 4px;
    background-color: var(--bottom-line-table);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.server_button:hover {
    background-color: var(--button-color);
    transition: .3s;
}

.server_button svg {
    fill: var(--default-text-color);
    opacity: .6;
    width: 12px;
    height: 12px;
    transition: .3s;
}

.server_button:hover svg {
    fill: var(--span-color);
    opacity: 1;
    transition: .3s;
}

.server_right_block {
    display: flex;
    gap: 5px;
}

@media (max-width: 768px) {

    /* modal window */
    .modal-window-server {
        position: fixed;
        display: flex;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 500;
        transition: all 0.3s;
        pointer-events: auto;
        background: var(--modal-bg);
        opacity: 0;
        justify-content: center;
        align-items: center;
    }

    .modal-window-server>div {
        width: 30%;
    }

    .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 {
        position: absolute;
        width: 350px;
        margin: 0 auto;
        padding: 0 5px;
        transform: translate(-50%, -50%);
        background: linear-gradient(1turn, var(--card-color) -67.25%, var(--card-color) 195.71%);
        border-radius: 12px;
        border-bottom: 1px solid var(--bottom-line-table);
        box-shadow: 0px 0px 20px 20px rgb(0 0 0 / 16%);
        z-index: 5000;
    }

    .modal_players_online {
        visibility: hidden;
    }

    .modal_players_online.modal_show {
        opacity: 1;
        visibility: visible;
        transition: .3s;
    }

    .modal_players_online>.modal-card {
        transform: scale(0.95);
        transition: .3s;
        overflow: hidden;
    }

    .modal_players_online.modal_show>.modal-card {
        transform: scale(1);
        transition: .3s;
        overflow: hidden;
    }

    .modal-card__header {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 10px 10px 20px;
        font-size: 12px;
        text-transform: uppercase;
        overflow: hidden;
    }

    .modal-card__header svg {
        width: 17px;
        height: 17px;
        fill: var(--custom-text-color);
        transition: .3s;
    }

    .modal-card__header svg:hover {
        fill: var(--default-text-color);
        transition: .3s;
    }

    .server-modal__bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }

    .cover {
        height: 135px;
        overflow: hidden;
        background-size: contain;
        margin: 0 0 24px;
        border-radius: 12px 12px 0 0;
        box-shadow: 0 0 0 4px var(--bottom-line-table);
    }

    .server-modal__bg img {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 100%;
        height: 100%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .server-modal__bg .shadow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 147px;
        background: var(--modal-bg);
    }

    .server-modal__header {
        height: 120px;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }

    .modal-card__badge {
        padding: 8px 12px;
        margin: 0;
    }

    .modal-btn__close {
        position: absolute;
        top: 0;
        background-color: var(--modal-bg);
        right: 0;
        padding: 10px;
        border-radius: 0 0 0 12px;
        transition: .3s;
        display: flex;
        z-index: 1;
        opacity: .8;
    }

    .modal-btn__close:hover {
        color: var(--default-text-color);
        cursor: pointer;
        transition: .3s;
    }

    .modal-table {
        padding: 5px;
    }

    .modal-card__footer {
        display: flex;
        gap: 5px;
        align-items: center;
        justify-content: space-between;
        padding: 5px 0;
        border-top: 1px solid var(--bottom-line-table);
    }

    .modal-btn {
        display: none;
    }

    .modal-btn_copy {
        width: 100%;
        padding: 10px;
        color: var(--default-text-color);
        border-radius: 4px;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 11px;
        transition: .3s;
        cursor: pointer;
        display: flex;
        gap: 10px;
        background-color: var(--grey-color);
        justify-content: center;
    }

    .modal-btn_copy:hover {
        background-color: var(--button-color);
        color: var(--span-color);
        transition: .3s;
    }

    .modal-btn_copy svg {
        width: 10px;
        margin-bottom: 1px;
        height: auto;
        fill: var(--default-text-color);
        transition: .3s;
    }

    .modal-btn_copy:hover svg {
        fill: var(--span-color);
        transition: .3s;
    }

    .server_map_name_second {
        position: relative;
        font-size: 20px;
        font-weight: 800;
        color: var(--span-color);
        z-index: 2;
        user-select: none;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 250px;
    }

    .server_map_now_play_text {
        position: relative;
        font-size: 10px;
        font-weight: 700;
        margin-bottom: -5px;
        color: var(--custom-text-color);
        user-select: none;
    }

    .map_name_block {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        z-index: 1;
        border-left: 2px solid rgb(255 255 255 / 12%);
        padding-left: 10px;
        height: 33px;
    }

    .map_pins {
        position: relative;
        width: 33px;
        height: auto;
    }
}

@media (min-width: 769px) and (max-width: 1499px) {
    /* modal window */

    .modal-window-server {
        position: fixed;
        display: flex;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 500;
        transition: all 0.3s;
        pointer-events: auto;
        background: var(--modal-bg);
        opacity: 0;
        justify-content: center;
        align-items: center;
    }

    .modal-window-server>div {
        width: 30%;
    }

    .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 {
        position: absolute;
        width: 500px;
        margin: 0 auto;
        padding: 0 5px;
        transform: translate(-50%, -50%);
        background: linear-gradient(1turn, var(--card-color) -67.25%, var(--card-color) 195.71%);
        border-radius: 12px;
        border-bottom: 1px solid var(--bottom-line-table);
        box-shadow: 0px 0px 20px 20px rgb(0 0 0 / 16%);
        z-index: 5000;
    }

    .modal_players_online {
        visibility: hidden;
    }

    .modal_players_online.modal_show {
        opacity: 1;
        visibility: visible;
        transition: .3s;
    }

    .modal_players_online>.modal-card {
        transform: scale(0.95);
        transition: .3s;
        overflow: hidden;
    }

    .modal_players_online.modal_show>.modal-card {
        transform: scale(1);
        transition: .3s;
        overflow: hidden;
    }

    .modal-card__header {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 10px 10px 20px;
        font-size: 12px;
        text-transform: uppercase;
        overflow: hidden;
    }

    .modal-card__header svg {
        width: 20px;
        height: 20px;
        fill: var(--custom-text-color);
        transition: .3s;
    }

    .modal-card__header svg:hover {
        fill: var(--default-text-color);
        transition: .3s;
    }

    .server-modal__bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }

    .cover {
        height: 135px;
        overflow: hidden;
        background-size: contain;
        margin: 0 0 24px;
        border-radius: 12px 12px 0 0;
        box-shadow: 0 0 0 4px var(--bottom-line-table);
    }

    .server-modal__bg img {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 100%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .server-modal__bg .shadow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 147px;
        background: var(--modal-bg);
    }

    .server-modal__header {
        height: 120px;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }

    .modal-card__badge {
        padding: 8px 12px;
        margin: 0;
    }

    .modal-btn__close {
        position: absolute;
        top: 0;
        background-color: var(--modal-bg);
        right: 0;
        padding: 10px;
        border-radius: 0 0 0 12px;
        transition: .3s;
        display: flex;
        z-index: 1;
        opacity: .8;
    }

    .modal-btn__close:hover {
        color: var(--default-text-color);
        cursor: pointer;
        transition: .3s;
    }

    .modal-table {
        padding: 5px;
    }

    .modal-card__footer {
        display: flex;
        gap: 5px;
        align-items: center;
        justify-content: space-between;
        padding: 5px 0;
        border-top: 1px solid var(--bottom-line-table);
    }

    .modal-btn {
        width: 100%;
        padding: 10px;
        color: var(--default-text-color);
        border-radius: 4px;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 11px;
        transition: .3s;
        cursor: pointer;
        display: flex;
        gap: 10px;
        background-color: var(--grey-color);
        justify-content: center;
    }

    .modal-btn:hover {
        transition: .3s;
        color: var(--grey-color);
        background-color: var(--span-color);
    }

    .modal-btn svg {
        width: 10px;
        margin-bottom: 1px;
        height: auto;
        fill: var(--default-text-color);
        transition: .3s;
    }

    .modal-btn:hover svg {
        fill: var(--grey-color);
        transition: .3s;
    }

    .modal-btn_copy {
        width: 100%;
        padding: 10px;
        color: var(--default-text-color);
        border-radius: 4px;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 11px;
        transition: .3s;
        cursor: pointer;
        display: flex;
        gap: 10px;
        background-color: var(--grey-color);
        justify-content: center;
    }

    .modal-btn_copy:hover {
        background-color: var(--button-color);
        color: var(--span-color);
        transition: .3s;
    }

    .modal-btn_copy svg {
        width: 10px;
        margin-bottom: 1px;
        height: auto;
        fill: var(--default-text-color);
        transition: .3s;
    }

    .modal-btn_copy:hover svg {
        fill: var(--span-color);
        transition: .3s;
    }

    .server_map_name_second {
        position: relative;
        font-size: 20px;
        font-weight: 800;
        color: var(--span-color);
        z-index: 2;
        user-select: none;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 350px;
    }

    .server_map_now_play_text {
        position: relative;
        font-size: 10px;
        font-weight: 700;
        margin-bottom: -5px;
        color: var(--custom-text-color);
        user-select: none;
    }

    .map_name_block {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        z-index: 1;
        border-left: 2px solid rgb(255 255 255 / 12%);
        padding-left: 10px;
        height: 33px;
    }

    .map_pins {
        position: relative;
        width: 33px;
        height: auto;
    }
}

@media (min-width: 1500px) {

    /* modal window */

    .modal-window-server {
        position: fixed;
        display: flex;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 500;
        transition: all 0.3s;
        pointer-events: auto;
        background: var(--modal-bg);
        opacity: 0;
        justify-content: center;
        align-items: center;
    }

    .modal-window-server>div {
        width: 30%;
    }

    .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 {
        position: absolute;
        width: 500px;
        margin: 0 auto;
        padding: 0 5px;
        transform: translate(-50%, -50%);
        background: linear-gradient(1turn, var(--card-color) -67.25%, var(--card-color) 195.71%);
        border-radius: 12px;
        border-bottom: 1px solid var(--bottom-line-table);
        box-shadow: 0px 0px 20px 20px rgb(0 0 0 / 16%);
        z-index: 5000;
    }

    .modal_players_online {
        visibility: hidden;
    }

    .modal_players_online.modal_show {
        opacity: 1;
        visibility: visible;
        transition: .3s;
    }

    .modal_players_online>.modal-card {
        transform: scale(0.95);
        transition: .3s;
        overflow: hidden;
    }

    .modal_players_online.modal_show>.modal-card {
        transform: scale(1);
        transition: .3s;
        overflow: hidden;
    }

    .modal-card__header {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 10px 10px 20px;
        font-size: 12px;
        text-transform: uppercase;
        overflow: hidden;
    }

    .modal-card__header svg {
        width: 20px;
        height: 20px;
        fill: var(--custom-text-color);
        transition: .3s;
    }

    .modal-card__header svg:hover {
        fill: var(--default-text-color);
        transition: .3s;
    }

    .server-modal__bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }

    .cover {
        height: 135px;
        overflow: hidden;
        background-size: contain;
        margin: 0 0 24px;
        border-radius: 12px 12px 0 0;
        box-shadow: 0 0 0 4px var(--bottom-line-table);
    }

    .server-modal__bg img {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 100%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .server-modal__bg .shadow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 147px;
        background: var(--modal-bg);
    }

    .server-modal__header {
        height: 120px;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }

    .modal-card__badge {
        padding: 8px 12px;
        margin: 0;
    }

    .modal-btn__close {
        position: absolute;
        top: 0;
        background-color: var(--modal-bg);
        right: 0;
        padding: 10px;
        border-radius: 0 0 0 12px;
        transition: .3s;
        display: flex;
        z-index: 1;
        opacity: .8;
    }

    .modal-btn__close:hover {
        color: var(--default-text-color);
        cursor: pointer;
        transition: .3s;
    }

    .modal-table {
        padding: 5px;
    }

    .modal-card__footer {
        display: flex;
        gap: 5px;
        align-items: center;
        justify-content: space-between;
        padding: 5px 0;
        border-top: 1px solid var(--bottom-line-table);
    }

    .modal-btn {
        width: 100%;
        padding: 10px;
        color: var(--default-text-color);
        border-radius: 4px;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 11px;
        transition: .3s;
        cursor: pointer;
        display: flex;
        gap: 10px;
        background-color: var(--grey-color);
        justify-content: center;
    }

    .modal-btn:hover {
        transition: .3s;
        color: var(--grey-color);
        background-color: var(--span-color);
    }

    .modal-btn svg {
        width: 10px;
        margin-bottom: 1px;
        height: auto;
        fill: var(--default-text-color);
        transition: .3s;
    }

    .modal-btn:hover svg {
        fill: var(--grey-color);
        transition: .3s;
    }

    .modal-btn_copy {
        width: 100%;
        padding: 10px;
        color: var(--default-text-color);
        border-radius: 4px;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 11px;
        transition: .3s;
        cursor: pointer;
        display: flex;
        gap: 10px;
        background-color: var(--grey-color);
        justify-content: center;
    }

    .modal-btn_copy:hover {
        background-color: var(--button-color);
        color: var(--span-color);
        transition: .3s;
    }

    .modal-btn_copy svg {
        width: 10px;
        margin-bottom: 1px;
        height: auto;
        fill: var(--default-text-color);
        transition: .3s;
    }

    .modal-btn_copy:hover svg {
        fill: var(--span-color);
        transition: .3s;
    }

    .server_map_name_second {
        position: relative;
        font-size: 20px;
        font-weight: 800;
        color: var(--span-color);
        z-index: 2;
        user-select: none;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 350px;
    }

    .server_map_now_play_text {
        position: relative;
        font-size: 10px;
        font-weight: 700;
        margin-bottom: -5px;
        color: var(--custom-text-color);
        user-select: none;
    }

    .map_name_block {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        z-index: 1;
        border-left: 2px solid rgb(255 255 255 / 12%);
        padding-left: 10px;
        height: 33px;
    }

    .map_pins {
        position: relative;
        width: 33px;
        height: auto;
    }
}

@media (max-width:768px) {
    .mon_header {
        padding: 10px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        background-color: var(--bottom-line-table);
        border-radius: 4px;
        margin: 5px 0;
        user-select: none;
        justify-items: center;
        width: 100%;
    }

    .mon_list_body li {
        height: 45px;
        background: var(--bg-table-color);
        border-radius: 4px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 0 10px;
        margin: 0;
        transition: .3s;
        position: relative;
        justify-items: center;
        align-content: center;
    }

    .mon_none {
        display: none !important;
    }
}

@media (min-width:769px) {
    .mon_header {
        padding: 15px 0px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        background-color: var(--bottom-line-table);
        border-radius: 4px;
        margin: 5px 0;
        user-select: none;
        width: 100%;
        justify-items: center;
    }

    .mon_list_body li {
        height: 45px;
        background: var(--bg-table-color);
        border-radius: 4px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 0px;
        margin: 0;
        transition: .3s;
        position: relative;
        justify-items: center;
        align-content: center;
    }

    .mon_none {
        display: block;
    }
}

.mon_header span {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--span-color);
    display: flex;
    gap: 12px;
    align-items: center;
}

.mon_header svg {
    width: 12px;
    height: 12px;
    fill: var(--span-color);
}

.mon_list_scroll {
    max-height: 250px;
    overflow: hidden;
    overflow-y: scroll;
    width: 100%;
    margin-bottom: 5px;
}

.mon_list_body li:not(:last-child) {
    margin-bottom: 3px;
}

.mon_list_body li:hover {
    transition: .3s;
    background-color: var(--button-color);
}

.mon_list_body li span {
    font-size: 11px;
    font-weight: 500;
    color: var(--custom-text-color);
    user-select: none;
    -webkit-user-drag: none;
    transition: .3s;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mon_list_body li a {
    color: var(--default-text-color);
    cursor: pointer;
    transition: .3s;
    font-weight: 700;
}

.hover_mon:hover span a {
    color: var(--span-color);
    transition: .3s;
}

.hover_mon:hover span {
    color: var(--default-text-color);
    transition: .3s;
}

.hover_mon span svg {
    display: inline-flex;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    border-radius: 50px;
    fill: var(--custom-text-color);
    transition: .3s;
    opacity: .2;
}

.hover_mon:hover span svg {
    fill: var(--span-color);
    transition: .3s;
    opacity: 1;
}

.mon_player_name {
    font-weight: 700 !important;
    color: var(--span-color) !important;
    white-space: nowrap;
    width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: center !important;
}

/* RATING */

.rating_title {
    display: flex;
    background-color: var(--card-color);
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    height: 47px;
	box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.rating_title span {
    display: flex;
    gap: 5px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    color: var(--custom-text-color);
    align-items: center;
	 
}

.rating_title span svg{
    width: 12px;
    height: auto;
    fill: var(--custom-text-color);
}

.rating_block {
    display: flex;
    height: 60px;
    width: auto;
    gap: 10px;
    overflow: hidden;
    transition: .3s;
    border-radius: 6px;
    background-color: var(--card-color);
    margin-bottom: 5px;
    align-items: center;
    justify-content: space-between;
    padding: 5px 5px 5px 15px;
	box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.rating_block:last-child {
    margin-bottom: 0;
}

.rating_server_name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}

@media (min-width:901px) {
    .rating_player_card {
        display: flex;
        flex-direction: row;
        gap: 5px;
        transition: .3s;
    }

    .rating_server_name_count {
        font-size: 12px;
        font-weight: 700;
        padding-top: 3px;
        border-top: 1px solid var(--bottom-line-table);
        white-space: nowrap;
        overflow: hidden;
        max-width: 170px;
        text-overflow: ellipsis;
    }

    .rating_server_name_title {
        font-size: 10px;
        color: var(--custom-text-color);
        opacity: .5;
    }
}

@media (max-width:900px) {
    .rating_player_card {
        display: flex;
        flex-direction: row;
        overflow: hidden;
        overflow-x: scroll;
        gap: 5px;
        transition: .3s;
    }

    .rating_server_name_count {
        font-size: 9px;
        font-weight: 700;
        padding-top: 3px;
        border-top: 1px solid var(--bottom-line-table);
        white-space: nowrap;
        overflow: hidden;
        max-width: 130px;
        text-overflow: ellipsis;
    }

    .rating_server_name_title {
        font-size: 8px;
        color: var(--custom-text-color);
        opacity: .5;
    }
}

.rating_player_info {
    display: flex;
    gap: 5px;
    position: relative;
    flex-direction: row;
    align-items: center;
    background-color: var(--grey-color);
    border-radius: 4px;
    padding: 5px;
    cursor: pointer;
    transition: .3s;
}

.rating_player_info:hover {
    background-color: var(--button-color);
    transition: .3s;
}

.rating_player_info:hover .rating_value {
    color: var(--default-text-color);
    transition: .3s;
}

.first_place {
    background: linear-gradient(45deg, rgb(255 219 92 / 13%), var(--grey-color));
}

.second_place {
    background: linear-gradient(45deg, rgb(191 224 255 / 13%), var(--grey-color));
}

.third_place {
    background: linear-gradient(45deg, rgb(248 167 133 / 13%), var(--grey-color));
}

.rating_avatar {
    border-radius: 2px;
}

.rating_info_right {
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media (min-width: 1321px) {
    .rating_rank {
        height: 20px;
        width: auto;
        -webkit-user-drag: none;
    }
}

@media (max-width: 1320px) {
    .rating_rank {
        display: none;
    }
}

.rating_nick_value {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    overflow: hidden;
    width: 110px;
}

.rating_nick {
    font-size: 12px;
    font-weight: 700;
    color: var(--span-color);
}

.rating_value {
    font-size: 10px;
    color: var(--custom-text-color);
    transition: .3s;
}

@media (min-width:1068px) {
    .rating_place {
        width: 35px;
        height: 35px;
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        margin: 0 7px;
    }
}

@media (max-width:1067px) {
    .rating_place {
        display: none;
    }
}

.rating_place span {
    font-weight: 800;
    font-size: 13px;
    position: absolute;
    top: 3px;
    z-index: 1;
    color: var(--default-text-color);
}

.rating_place svg {
    position: absolute;
    width: 31px;
    height: auto;
    fill: var(--custom-text-color);
    opacity: .2;
}

svg.one {
    fill: var(--top-one-color);
    opacity: .5;
}

svg.two {
    fill: var(--top-two-color);
    opacity: .5;
}

svg.three {
    fill: var(--top-three-color);
    opacity: .5;
}

html.hidescroll {
    overflow: hidden;
}

@media (max-width:767px) {
    .fix_mobile {
        flex-direction: column-reverse;
    }
}

@media (min-width:768px) {
    .fix_mobile {
        flex-direction: row;
    }
}
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    scrollbar-width: none;
}

.scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
}
.srvPage-playHeader {
font-size : 13px;
line-height : 13px;
color : #dfdfdf;
text-align : center;
}
.body-Black .srvPage-playHeader {
color : #666;
}
.body-WideDesktop .srvPage-playHeader {
font-size : 14px;
line-height : 14px;
}
.popup .srvPage-playHeader {
font-weight : 600;
}
.srvPage-playList {
margin : 10px 10px 10px 10px;
font-size : 12px;
line-height : 12px;
text-align : left;
}
.body-WideDesktop .srvPage-playList {
font-size : 13px;
line-height : 13px;
}
.srvPage-playI {
/*! padding : 3px 10px; */
box-sizing : border-box;
text-align : right;
display: flex;
align-items: center;
justify-content: center;
height: 30px;
}
.body-WideDesktop .srvPage-playI {
padding : 4px 10px;
}
.body-Game .srvPage-playI {
border-radius : 0 !important ;
}
.srvPage-playI:nth-child(6n+1) {
background: linear-gradient(25deg, #f2da52 -150%, #121e2d 50%);
}
.body-Black .srvPage-playI:nth-child(6n+1) {
background : rgb(255, 255, 255, 0.05);
}
.srvPage-playI:nth-child(6n+3) {
background: linear-gradient(25deg, #aec4d0 -150%, #121e2d 50%);
}
.body-Black .srvPage-playI:nth-child(6n+3) {
background : rgb(32, 117, 246, 0.05);
}
.srvPage-playI:nth-child(6n+5) {
background: linear-gradient(25deg, #edb8a7 -150%, #121e2d 50%);
}
.body-Black .srvPage-playI:nth-child(6n+5) {
background : rgb(52, 168, 83, 0.05);
}
.srvPage-playIIndex {
display : inline-block;
text-align : center;
width: 8%;
color: #aaa;
font-size: 12px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
}
.body-Black .srvPage-playIIndex {
color : #777;
}
.srvPage-playIName {
display : inline-block;
width : 58%;
color : #333;
text-align : left;
font-weight : 700;
letter-spacing : -0.25px;
}
.srvPage-playIName > a {
display: block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-decoration: none;
transition: opacity 0.1s linear;
}
.body-Black .srvPage-playIName > a {
color : #000;
}
.srvPage-playIName > a:hover {
opacity : 0.75;
}
.srvPage-playI-Online .srvPage-playIName > a {
position : relative;
padding-left : 10px;
}
.srvPage-playI-Online .srvPage-playIName > a:before {
position : absolute;
content : '';
left : 0;
top : 50%;
margin : -2px 0 0 0;
width : 4px;
height : 4px;
background : #1a6dea;
border-radius : 4px;
}
.body-Game .srvPage-playI-Online .srvPage-playIName > a:before {
border-radius : 0 !important ;
}
.srvPage-playIName > a > i {
position : relative;
margin : 0 0 0 1px;
padding : 0 0 0 15px;
font-style : normal;
font-size : 10px;
color : #bbb;
font-weight : 600;
text-transform : uppercase;
}
.body-Black .srvPage-playIName > a > i {
color : #555;
}
.srvPage-playIName > a > i:before {
display : block;
position : absolute;
content : '';
 
background-repeat : no-repeat;
background-size : contain;
background-position : center;
width : 12px;
height : 12px;
left : 0;
top : 50%;
margin : -6px 0 0 0;
opacity : 0.5;
}
.body-Black .srvPage-playIName > a > i:before {
 
}
.srvPage-playIScore {
display : inline-block;
width : 12%;
text-align : center;
font-weight : 700;
font-size : 11px;
color : #333;
}
.body-Black .srvPage-playIScore {
color : #aaa;
}
.srvPage-playITime {
display : inline-block;
width : 22%;
text-align : right;
color : #aaa;
font-size : 11px;
}
.body-Black .srvPage-playITime {
color : #666;
}
.srvPage-contFoot {
margin : 10px 0 0 0;
padding : 10px 0 0 0;
font-size : 12.5px;
line-height : 16px;
color : #555;
border-top : 1px solid #eee;
letter-spacing : -0.25px;
text-align : justify;
}
.body-Black .srvPage-contFoot {
color : #aaa;
border-top-color : #222;
}
 
.srvPage-contLabel {
position : relative;
display : block;
margin : 0 0 10px 0;
text-align : center;
text-decoration : none;
}

 @media (min-width: 800px) {
.banner-container {
justify-content : space-between;
}
.banner-container-img {
top : -50px;
right : -90px;
}
.banner-container-info {
flex : 1 1;
justify-content : start;
}
.banner-container-countdown {
flex : 1 1;
justify-content : flex-end;
}
.banner-container-info-top {
margin-top : 30px;
}
.banner-container-info > div {
margin-left : 5px;
}
.banner-container-info-top > div#top1 {
order : 2;
transform : translateY(-30px);
}
}
@media (max-width: 800px) {
.banner-container, .banner-container-countdown {
justify-content : center;
}
.banner-container-img {
height : 100%;
}
.banner-container-info {
text-align : center;
}
}

.banner-container {
display : flex;
gap : 30px;
min-height : 250px;
flex-wrap : wrap;
align-items : center;
margin-bottom : 20px;
padding : 30px;
border-radius : 6px;
position : relative;
box-shadow : 0 0 10px rgb(0 0 0 / 50%);
overflow : hidden;
}
.banner-container-img {
position : absolute;
width : 100%;
opacity : 0.1;
z-index : 1;
object-fit : cover;
}
.banner-container-info {
display : grid;
gap : 15px;
justify-content : start;
}
.banner-container-info > button {
display : flex;
height : 36px;
padding : 0 30px;
font-weight : 600;
cursor : pointer;
transition : 0.5s;
box-shadow : 0 0 10px rgb(0 0 0 / 50%);
border-radius : 6px;
justify-content : center;
align-items : center;
}
.banner-container-info-top {
display : flex;
gap : 30px;
flex-wrap : wrap;
align-items : center;
justify-content : center;
}
.banner-container-info-top > div {
display : flex;
height : 40px;
width : 150px;
border-radius : 6px;
background:  rgb(23 34 49 / 100%);
box-shadow : 0 0 10px rgb(0 0 0 / 50%);
justify-items : center;
align-items : center;
overflow : hidden;
}
.banner-container-info-top > div#top1 {
color : #f3ce96;
}
.banner-container-info-top > div#top2 {
color : #c4c4cd;
order : 1;
}
.banner-container-info-top > div#top3 {
color : #e8947c;
order : 2;
}
.banner-container-info-top > div > img {
height : 40px;
}
.banner-container-countdown {
gap : 15px;
display : grid;
text-align : center;
}
.banner-container-countdown #countdown {
display : flex;
gap : 15px;
}
.countdown-new {
display : grid;
gap : 30px;
text-align : center;
margin-bottom : 30px;
padding : 30px;
border-radius : 6px;
justify-content : center;
background:  rgb(23 34 49 / 100%);
box-shadow : 0 0 10px rgb(0 0 0 / 50%);
}
.countdown-new-flex {
display : flex;
gap : 30px;
}
.countdown-number {
display : flex;
position : relative;
justify-content : center;
align-items : center;
}
.countdown-time {
display : flex;
min-width : 60px;
max-width : 60px;
min-height : 60px;
max-height : 60px;
border-radius : 6px;
font-weight : 600;
font-size : 25px;
padding-bottom : 10px;
background:  rgb(23 34 49 / 100%);
box-shadow : 0 0 10px rgb(0 0 0 / 50%);
align-items : center;
justify-content : center;
}
.countdown-text {
display : block;
bottom : 10px;
font-size : 8px;
font-weight : 600;
position : absolute;
} 

/*pok4 pagination*/
.toggle-pagination {
  visibility: hidden;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
  background: #0b1727;
  box-shadow:0 0 20px rgba(0,0,0,1.0);
  color: #2c7be5;
}

.pagination-lg>li>a,
.pagination-lg>li>span {
  padding: 8px 15px 8px 15px;
  font-size: 15px;
}

@media (max-width: 768px) {

  .pagination-lg>li>a,
  .pagination-lg>li>span {
    padding: 6px 10px 6px 10px;
    font-size: 10px;
    border-radius: 5px !important;
  }
}

.pagination-lg>li>a,
.pagination-lg>li>span {
  border-radius: 5px;
}

.pagination {
  text-align: center;
  margin: 15px auto 30px auto;
  color: #fff;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span,
.pagination>li:last-child>a,
.pagination>li:last-child>span {}

.pagination>li>a {
  background: #0b1727;
  box-shadow:0 0 20px rgba(0,0,0,.5);
  color: #fff;
  margin-left: 5px;
  margin-right: 5px;
}

.pagination>li>a:hover {
  background: #0b1727;
  box-shadow:0 0 20px rgba(0,0,0,1.0);
  color: #2c7be5;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {}



.menu-modules-knopka.active-modules::after, .menu-modules-knopka:hover::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 50%;
  bottom: -2px;
  border-radius: 6px;
  background-color: var(--span-color);
  box-shadow: 0 0 10px;
}

.menu-modules-knopka.active-modules {
  color: var(--span-color);
}
.menu-modules-knopka {
  white-space: nowrap;
  font-weight: 600;
  color: var(--color-dark);
  position: relative;
  display: flex;
  gap: 10px;
  height: 40px;
  text-transform: uppercase;
  flex: 1 1;
  align-items: center;
  justify-content: center;
}

.pagination .inactive {
  color: #2c7be5;
  margin-left: 5px;
  margin-right: 5px;
  background: #0b1727;
  box-shadow:0 0 20px rgba(0,0,0,.5);
  border-radius: 5px;
}

.pagination .current a {
  color: #2c7be5 !important;
}
