.content {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    top: 24px;
    margin-bottom: 25px;
    min-height: calc(100vh - 145px);
}

.totalOnlineCont {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0 24px 0;
}

.btnUpd {
    width: 60px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 8px 14px 8px 14px;
    cursor: pointer;
    transition: all .3s;
    user-select: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btnUpd:hover {
    scale: 1.1;
}

.zagolovok {
    margin: 24px 0 24px 0;
}

/* Карточки с онлайном */
.onlineCont {
    min-width: 128px;
    padding: 8px 12px;
    border-radius: 100px;
    background: #FFFFFF0D;
    display: flex;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
    align-items: center;
}

.online-txt {
    font-weight: 500;
    font-size: 14px;
    color: #a5acc7;
}

.online-count {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
}

.onlineCont span {
    width: 8px;
    height: 8px;
    border-radius: 100px;
    margin-left: 4px;
}

span.month {
    background: #4D70EF;
}

span.days {
    background: #ef4d4d;
}

.onlineCont span::after {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background-color: inherit;
    animation: signal 2.5s ease-out infinite;
    opacity: 1;
}

@keyframes signal {

    20%,
    to {
        opacity: 0;
        transform: scale(2.5)
    }
}

.transBox {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 500px;
}

.margin30 {
    margin: 30px 20px 30px 20px;
}

.marginBot30 {
    margin-bottom: 30px;
}

.sInput {
    margin-bottom: 24px;
    position: relative;
    width: 250px;
    transition: all .3s ease;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    border-radius: 6px;
    border: 0;
    font-family: inherit;
}

/* Таблица */

table {
    border-spacing: 0;
}

.pzdxTable td:first-of-type {
    border-radius: 4px 0 0 4px;
}

.pzdxTable td:last-of-type {
    border-radius: 0 4px 4px 0;
}

.pzdxTable tr:first-of-type {
    font-weight: 600;
    background: rgb(0 0 0 / 20%);
}

.pzdxTable tr:nth-of-type(odd):not(:first-of-type) {
    background-color: rgb(0 0 0 / 10%);
}

.pzdxTable td {
    padding: 15px 20px;
    vertical-align: middle;
    position: relative;
    text-align: center;
    transition: .3s all;
}


td a {
    display: block;
    /* Для скрытых ников */
}

.srvTable {
    border-top: 2px solid;
}

.srvTable td {
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
}

.srvTable td:nth-child(2) {
    text-align: center;
}

.playersLine p {
    color: var(--red-color);
    font-weight: 600;
}

.tdPlayers {
    padding: 0;
    background: rgb(0 0 0 / 30%);
}

.srvPlayers {
    height: 0;
    overflow: hidden;
    transition: all .2s;
}

.srvPlayers.opened {
    height: 100px;
}



.playersTable {
    position: relative;
    left: 30px;
    top: -1px;
}

.playersTable td {
    padding: 8px 16px;
}

.conCont {
    display: flex;
    position: absolute;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    align-items: center;
}

.conTD {
    position: relative;
    height: 50px;
    width: 180px;
}

.transBox img {
    transition: all .2s;
}

img.animBtn:hover {
    transform: scale(.95);
}

a img {
    cursor: pointer;
    border-radius: 10px;
}

.bigPic {
    border-radius: 30px;
    margin-bottom: 30px;
}

.queCont {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.que {
    margin-bottom: 30px;
    font-weight: 500;
    max-width: 600px;
    position: relative;
    left: 0;
}

.loader {
    position: absolute;
    top: 11px;
    left: 27px;
    width: 28px;
    height: 28px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--red-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 767px) {
    .totalOnlineCont {
        flex-direction: column;
    }
}

@media (max-width: 1279px) {
    .searchH1 {
        text-align: center;
    }

    .transBox {
        min-width: 300px;
    }

    table {
        border-collapse: separate;
        -webkit-border-vertical-spacing: 10px;
        min-width: 250px;
    }

    .playersTable tbody {
        width: 100%;
    }


    .pzdxTable td {
        display: block;
        padding: 10px 15px;
        text-align: center;
        width: 100%;
        word-wrap: break-word;
        max-width: 260px;
    }

    .srvTable {
        -webkit-border-vertical-spacing: 0px;
        border-collapse: collapse;
    }

    .playersTable {
        border-collapse: collapse;
        -webkit-border-vertical-spacing: 0;
        left: 0;
        display: flex;
        justify-content: center;
    }

    .playersTable td {
        display: table-cell;
    }

    .conTD {
        width: 100%;
    }

    img {
        max-width: 100%;
    }

    .bigPic {
        border-radius: 10px;
        padding: 14px;
    }
}

@media (min-width: 767px) and (max-width: 1280px) {
    .transBox {
        min-width: 700px;
    }
}

/* Карточки с серверами */
.playersBox {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 700px;
}

.playerCont {
    width: 300px;
    height: 110px;
    border-radius: 16px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: row;
    cursor: pointer;
    transition: .3s all;
    justify-content: space-between;
    overflow: hidden;
    -webkit-user-select: none;
    position: relative;
}

.playerCont:hover {
    background: rgb(255 255 255 / 10%);
}

.playerCont.open {
    border-radius: 16px 16px 0 0;
}

.load {
    width: 20px;
    height: 5px;
    border-radius: 16px;
    margin-bottom: 4px;
}

.srvName {
    font-weight: 600;
    color: white;
}

.mapName {
    font-size: 14px;
    margin-bottom: 10px;
    height: 17px;
    width: 230px;
}

.pLine {
    font-size: 14px;
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 10px;
}

.pConnect {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.conBtn {
    width: 28px;
    height: 28px;
    position: relative;
}

.conBtn img {
    width: 28px;
}

.conBtn::after {
    transition: all .3s;
    background: white;
    opacity: 0;
    content: '';
    width: 56px;
    height: 55px;
    position: absolute;
    left: -14px;
}

.conBtn:hover::after {
    opacity: 0.2;
}

.conBtn.cF::after {
    top: -14px;
}

.conBtn.cS::after {
    bottom: -14px;
}

/* Выпадающий список игроков */

.playersList {
    width: 300px;
    height: 0px;
    border-radius: 0 0 16px 16px;
    padding: 0px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: .5s all;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.plHeader {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    width: 230px;
    background: rgb(24 24 24);
    padding: 6px;
    border-radius: 10px;
    margin-bottom: 14px;
}

.plList {
    display: flex;
    flex-direction: column;
    width: 250px;
}

.plUser {
    display: flex;
    justify-content: space-between;
    background: rgb(32, 32, 32);
    padding: 10px;
}

.plUser:only-child {
    border-radius: 10px !important;
}

.plUser:first-child {
    border-radius: 10px 10px 0 0;
}

.plUser:last-child {
    border-radius: 0 0 10px 10px;
}

.plUser:nth-child(even) {
    background: rgb(19, 19, 19);
}

.userName {
    width: 65%;
}

.userName a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.userTime {
    font-family: "Roboto";
    font-weight: 500;
    display: flex;
    justify-content: flex-end;
}