.sub-wrapper .center-side {
    overflow: visible;
}

.tab-content {
    border: 0 !important;
    outline: 0 !important;
}

.nav-tabs {
    border: 0;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link {
    min-width: 100px;
    background-color: transparent;
    color: #fff;
    border: 0;
    border-bottom: 2px solid transparent;
    font-family: 'BeaufortForLoL', 'Inter';
    font-weight: 600;
    font-size: 18px;
}

.nav-tabs .nav-link.active {
    border-color: #9cbbde;
}

.item-content-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.pus-item-card {
    width: calc((100% - 3rem) / 4);
    padding: 0.5rem;
    color: #c6d4df;
    position: relative;
    border-radius: 3px;
    background: radial-gradient(circle at top left, #323e53 10%, #2f343f 90%);
    box-shadow: 2px 2px 12px 2px rgba(0, 0, 0, 0);
    transition: box-shadow .24s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pus-item-card:hover {
    background: radial-gradient(circle at top left, #445470 10%, #2f343f 90%);
    box-shadow: 2px 2px 12px 2px rgb(0 0 0 / 23%);
}

.pus-item-card.premium {
    background: radial-gradient(circle at top left, #4e3737a3 13%, #2b323f 50%);
}

.pus-item-card.premium:hover {
    background: radial-gradient(circle at top left, #705050a3 13%, #2b323f 50%);
}

.pus-item-card .item-body {
    height: 100%;
}

.pus-item-card .price {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #0000005e;
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    font-size: 12px;
}

.pus-item-card .item-header {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1rem;
    padding-right: 6rem;
}

.pus-item-card .item-header h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 0px 4px #0000008a;
}

.pus-item-card .item-body span {
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.pus-item-card {
    position: relative;
}

.pus-tooltip {
    display: none;
    position: absolute;
    left: 0;
    margin-top: -8px;
    background: #2d2e2e94;
    color: #fff;
    padding: 8px;
    border-radius: 12px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    pointer-events: none;
}

.pus-item-card:hover .pus-tooltip {
    display: block;
}

@media only screen and (max-width: 992px) {
    .pus-item-card {
        width: 100%;
    }
}