.num > a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    border: 1px solid #E5E5E7;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.04);
    min-width: 40px;
    height: 40px;
    color: #858C95;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.1px;
    cursor: pointer;
    transition: 0.15s;
    text-decoration: none;
    padding: 10px;

    &:hover{
        color: white;
        background: #fe902f;
        border: 1px solid #fe902f;
    }
}

.num.active > a {
    color: white;
    background: #fe902f;
    border: 1px solid #fe902f;
    pointer-events: none;
}

.banlist-form {
    border-radius: 17px;
    background: #FFF;
    padding: 50px;
}


tr {
    position: relative;
}

tr.inactive > td {
    opacity: 50%;
    transition-duration: 0.2s;
}

tr.inactive:hover > td {
    opacity: 100%;
}

td.slice {
    max-width: 250px;
}

tr:not(:last-child)::after {
    content: "";
    display: block;
    height: 1px;
    background-color: #C3C3C3;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    opacity: 0.5;
    bottom: -20px;
}

svg.search-ico {
    position: absolute;
    top: 16px;
    left: 19px;
}

.object-search {
    position: relative;
    color: #858C95;
}

input#banlist {
    padding-left: 63px;
}

.top-banlist {
    margin-bottom: 40px;
}



h1.h1-text {
    color: #3A3A3A;
    font-size: 24px;
    font-weight: 600;
    line-height: 48px;
}

p.p-text {
    color: #858C95;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    max-width: 1044.879px;
}



.nums {
    display: flex;
    align-items: center;
    gap: 14px;
}

th {
    color: #858C95;
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
}

.image-link {
    position: relative;
    color: #2979C9;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-decoration: none;
}

.tooltip {
    display: none;
    position: absolute;
    border: 1px solid #ccc;
    background-color: #fff;
    z-index: 1000;
    max-width: 90%; /* Ограничиваем ширину всплывающего изображения */
    max-height: 90%; /* Ограничиваем высоту всплывающего изображения */
    overflow: auto; /* Добавляем прокрутку, если изображение слишком большое */
}
.tooltip img {
    max-width: 100%; /* Изображение не будет выходить за пределы всплывающего окна */
    max-height: 100%;
}
.image-link {
    position: relative;
}

td.number_id {
    color: #858C95;
}

td {
    color: #313335;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
}

img.avatar-user-banlist {
    width: 30px;
    height: 30px;
}

table.table-banlist {
    width: 100%;
    text-align: left;
    border-collapse: separate;
    border-spacing: 20px 40px;
    margin-left: -20px;
}

.list-pages {
    margin-top: 40px;
    margin-bottom: 0px;
}

.mobi {
    display: none;
}

.user-info {
    & a {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #313335;
        font-size: 12px;
        font-weight: 500;
        text-decoration: none;
        transition-duration: 0.2s;
        letter-spacing: 1px;
        &:hover {
            letter-spacing: 0;
        }
    }
}

.mobi {
    color: #858C95;
    font-size: 12px;
    font-weight: 400;
    margin-right: auto;
}

img.img_absolute {
    position: absolute;
    /* display: none; */
    left: 50%;
    opacity: 0;
    top: 25px;
    pointer-events: none;
    transform: translate(-50%, 0);
    max-width: 500px;
    border-radius: 5px;
    transition-duration: 0.3s;
    overflow: auto;
    z-index: 1000;
}

a.image-link:hover > img {
    opacity: 1;
}

.reason {
    color: #313335;
    font-size: 12px !important;
    font-weight: 500;
    line-height: 18px;
}

.group-objects {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.group-buttons-banlist {
    display: flex;
    gap: 15px;
    width: 100%;
}

.banlist-main {
    margin-bottom: 24px;
}

@media (max-width: 1150px) {
    button.custom-button-1.search {
        display: flex !important;
        width: 100%;
    }
}

@media (max-width: 1100px) {
    thead {
        display: none;
    }
    .mobi {
        display: flex;
    }
    img.img_absolute {
        transform: unset;
        right: 0;
        left: unset;
    }
    table.table-banlist {
        display: grid;
    }
    table.table-banlist {
        margin-left: 0px;
    }
    .nums {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    p.p-text {
        font-size: 12px;
    }
    
    h1.h1-text {
        font-size: 17px;
    }

    .banlist-form {
        /* width: calc(100% + 40px);
        margin-left: -20px;
        border-radius: 0px; */
    }
    
    tbody {
        display: grid;
        gap: 37px;
    }
    
    tr {
        display: grid;
        gap: 10px;
    }

    .banlist-main {
        margin-top: 40px;
    }

    .banlist-form {
        padding: 20px;
    }

    td {
        display: flex;
        justify-content: space-between;
        text-align: right;
        gap: 25px;
    }
    td.slice {
        max-width: 100%;
    }
    
    .avatar-user-banlist {
        display: none;
    }
}