/* ItemShopSys custom shop css */
.main-banner {
    position: relative !important;
    min-height: 315px;

    background-image: url("https://i.imgur.com/y1y8wV3.jpeg") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;

    background-color: #0b0c12 !important;

    border-radius: 18px !important;
    overflow: hidden !important;
    isolation: isolate;
}

.main-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: rgba(5, 6, 10, 0.52);

    pointer-events: none;
}

.main-banner > .row {
    position: relative;
    z-index: 2;

    min-height: 315px;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin-left: 0 !important;
    margin-right: 0 !important;
}

.main-banner .col-xl-7.col-lg-6 {
    display: none !important;
}

.main-banner .col-xl-5.col-lg-6 {
    flex: 0 0 100% !important;

    width: 100% !important;
    max-width: 100% !important;

    padding-left: 15px !important;
    padding-right: 15px !important;
}

.main-banner-content {
    width: 100% !important;
    max-width: 800px !important;

    margin: 0 auto !important;
    padding: 40px 20px !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;
}

.main-banner-content .main-title {
    width: 100% !important;

    margin: 0 auto 12px !important;

    color: #fff8eb !important;

    text-align: center !important;
}

.main-banner-content .text-primary {
    color: #feb73f !important;
}

.main-banner-content p {
    display: block !important;

    width: 100% !important;
    max-width: 600px !important;

    margin: 0 auto 20px !important;

    color: #fff8eb !important;

    text-align: center !important;
}

.main-banner-content .btn {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    max-width: max-content !important;

    margin: 0 auto !important;

    align-self: center !important;
}


/* =========================================
   OSTATNIO KUPUJĄCY
   ========================================= */

.shop-list.nerp-last-buyers {
    margin: 38px 0 30px !important;
    padding: 0 !important;

    background: transparent !important;

    border: none !important;
}

.shop-list.nerp-last-buyers .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.shop-list.nerp-last-buyers .nerp-last-buyers-title {
    margin: 0 0 22px !important;

    color: #fff8eb !important;

    line-height: 1.2 !important;
}

.shop-list.nerp-last-buyers .nerp-buyers-accent {
    color: #feb73f !important;

    font-weight: 600 !important;
}

.shop-list.nerp-last-buyers .grid-list {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;

    gap: 20px !important;
}

.shop-list.nerp-last-buyers .user-list {
    width: auto !important;
    min-width: 75px !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: flex-start !important;
}

.shop-list.nerp-last-buyers .avatar--60 {
    width: 54px !important;
    height: 54px !important;

    margin-bottom: 8px !important;

    object-fit: cover !important;

    border-radius: 8px !important;
}

.shop-list.nerp-last-buyers .user-list span {
    color: #fff8eb !important;

    text-align: center !important;
}


/* =========================================
   RANGI / PRODUKTY
   ========================================= */

.nerp-shop-tabs {
    width: 100%;
    max-width: 560px;

    margin: 26px auto 34px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}

.nerp-shop-tab {
    min-height: 52px;

    padding: 13px 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff8eb !important;

    background: #15161d;

    border: 1px solid #252731;
    border-radius: 0 !important;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
    line-height: 1;

    text-transform: uppercase;

    cursor: pointer;

    box-shadow: none !important;
    outline: none !important;

    transition:
        background-color 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}

.nerp-shop-tab:hover {
    color: #fff8eb !important;

    background: #1b1c24;

    border-color: #343641;
}

.nerp-shop-tab.is-active {
    color: #0b0c12 !important;

    background: #feb73f;

    border-color: #feb73f;

    box-shadow:
        0 0 0 5px rgba(254, 183, 63, 0.08) !important;
}

.nerp-shop-tab.is-active:hover {
    color: #0b0c12 !important;

    background: #feb73f;

    border-color: #feb73f;
}


/* =========================================
   ROLLE
   ========================================= */

.product-value-roll {
    position: relative;

    width: 100%;
    height: 31px;

    overflow: hidden;

    display: flex;
    align-items: center;
}

.product-value-roll::before,
.product-value-roll::after {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    z-index: 3;

    width: 22px;

    pointer-events: none;
}

.product-value-roll::before {
    left: 0;

    background: linear-gradient(
        90deg,
        #0d0e14 0%,
        rgba(13, 14, 20, 0) 100%
    );
}

.product-value-roll::after {
    right: 0;

    background: linear-gradient(
        270deg,
        #0d0e14 0%,
        rgba(13, 14, 20, 0) 100%
    );
}

.product-value-roll--saving {
    background: rgba(217, 38, 37, 0.08);

    border-top: 1px solid rgba(217, 38, 37, 0.25);
    border-bottom: 1px solid rgba(217, 38, 37, 0.25);
}

.product-value-roll--battlepass {
    background: rgba(254, 183, 63, 0.08);

    border-top: 1px solid rgba(254, 183, 63, 0.28);
    border-bottom: 1px solid rgba(254, 183, 63, 0.28);
}

.product-value-roll--bundle-value {
    background: rgba(75, 221, 26, 0.07);

    border-top: 1px solid rgba(75, 221, 26, 0.36);
    border-bottom: 1px solid rgba(75, 221, 26, 0.36);
}

.product-value-roll-track {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    width: max-content;
    min-width: max-content;

    animation: nerp-product-roll 16s linear infinite;

    will-change: transform;
}

.product-value-roll-group {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.product-value-roll-item {
    flex-shrink: 0;

    padding: 0 30px;

    font-size: 11px;
    font-weight: 600;

    line-height: 31px;

    letter-spacing: 0.2px;

    text-transform: uppercase;

    white-space: nowrap;
}

.product-value-roll-item::after {
    content: "•";

    margin-left: 30px;

    opacity: 0.5;
}

.product-value-roll--saving .product-value-roll-item {
    color: #fff8eb !important;
}

.product-value-roll--saving .product-value-roll-item strong {
    color: #d92625 !important;

    font-weight: 700;
}

.product-value-roll--battlepass .product-value-roll-item {
    color: #fff8eb !important;
}

.product-value-roll--battlepass .product-value-roll-item strong {
    color: #feb73f !important;

    font-weight: 700;
}

.product-value-roll--bundle-value .product-value-roll-item {
    color: #fff8eb !important;
}

.product-value-roll--bundle-value .product-value-roll-item strong {
    color: #4BDD1A !important;

    font-weight: 700;
}

.card-server.nerp-featured-saving {
    border-color: rgba(217, 38, 37, 0.34) !important;
}

.card-server.nerp-featured-battlepass {
    border-color: rgba(254, 183, 63, 0.38) !important;
}

.card-server.nerp-featured-bundle-value {
    border-color: rgba(75, 221, 26, 0.52) !important;
}

.card-server:hover .product-value-roll-track {
    animation-play-state: paused;
}

@keyframes nerp-product-roll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}


/* =========================================
   UKRYWANIE ORYGINALNYCH RANG
   ========================================= */

.nerp-hidden-rank-column {
    display: none !important;
}

.nerp-hidden-rank-card {
    display: none !important;
}


/* =========================================
   PORÓWNANIE RANG
   ========================================= */

.nerp-ranks-comparison {
    width: 100%;

    margin: 0 0 45px !important;
}

.nerp-ranks-scroll {
    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;
}

.nerp-ranks-table {
    width: 100%;

    min-width: 0;

    border-collapse: separate;

    border-spacing: 0 8px;

    table-layout: fixed;
}

.nerp-ranks-table th,
.nerp-ranks-table td {
    border: none !important;
}

.nerp-ranks-table thead th {
    padding: 0 8px 20px;

    vertical-align: top;

    background: transparent !important;
}

.nerp-ranks-table thead th:first-child {
    width: 31%;

    padding: 0 12px 20px 0;
}


/* =========================================
   KARTY RANG
   ========================================= */

.nerp-rank-head {
    min-height: 150px;

    padding: 22px 14px 14px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    background: #121319;

    border: 1px solid #20222b;
    border-radius: 14px;

    overflow: hidden;
}

.nerp-rank-name {
    margin-bottom: 10px;

    font-size: 22px !important;
    font-weight: 700 !important;

    line-height: 1 !important;
}

.nerp-rank-name--vip {
    color: #14d3cf !important;
}

.nerp-rank-name--elita {
    color: #f955da !important;
}

.nerp-rank-name--premium {
    color: #ffd500 !important;
}


/* =========================================
   CENY RANG
   ========================================= */

.nerp-rank-price {
    min-height: 21px;

    margin-bottom: 14px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;
}

.nerp-rank-current-price {
    color: #fff8eb !important;

    font-size: 14px !important;
    font-weight: 700 !important;

    white-space: nowrap;
}

.nerp-rank-old-price {
    color: #898186 !important;

    font-size: 10px !important;
    font-weight: 600 !important;

    white-space: nowrap;

    text-decoration: line-through !important;
}


/* =========================================
   PRZYCISK RANGI
   ========================================= */

.nerp-rank-buy {
    width: 100%;

    min-height: 42px;

    margin-top: auto;

    padding: 10px 12px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 5px;

    color: #111218 !important;

    background: #feb73f !important;

    border: 0 !important;
    border-radius: 0 !important;

    font-size: 12px !important;
    font-weight: 700 !important;

    cursor: pointer;

    box-shadow: none !important;

    white-space: nowrap;
}

.nerp-rank-buy:hover {
    filter: brightness(1.06);
}

.nerp-rank-buy-current {
    color: #111218 !important;

    font-weight: 700 !important;
}

.nerp-rank-buy-old {
    color: rgba(11, 12, 18, 0.48) !important;

    font-size: 9px !important;
    font-weight: 600 !important;

    text-decoration: line-through !important;
}


/* =========================================
   BENEFITY
   ========================================= */

.nerp-ranks-table tbody tr td {
    height: 62px;

    padding: 13px 18px;

    text-align: center;

    vertical-align: middle;

    color: #fff8eb !important;

    background: #101117;
}

.nerp-ranks-table tbody tr:nth-child(odd) td {
    background: #15161d;
}

.nerp-ranks-table tbody tr td:first-child {
    padding-left: 22px;

    text-align: left;

    border-radius: 10px 0 0 10px !important;
}

.nerp-ranks-table tbody tr td:last-child {
    border-radius: 0 10px 10px 0 !important;
}

.nerp-ranks-table tbody tr:hover td {
    background: #191a22;
}

.nerp-feature-name {
    color: #fff8eb !important;

    font-size: 13px !important;
    font-weight: 600 !important;
}

.nerp-rank-value {
    color: #fff8eb !important;

    font-size: 13px !important;
    font-weight: 600 !important;
}


/* =========================================
   CHECK / X
   ========================================= */

.nerp-rank-icon {
    width: 18px;
    height: 18px;

    display: inline-flex;

    align-items: center;
    justify-content: center;
}

.nerp-rank-icon svg {
    display: block;

    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2.6;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.nerp-rank-yes {
    color: #4BDD1A !important;
}

.nerp-rank-no {
    color: #d92625 !important;
}


/* =========================================
   DISCORD
   ========================================= */

.nerp-discord-section {
    width: 100%;

    margin: 0 !important;

    padding: 42px 0 52px !important;

    background: transparent !important;

    border: none !important;
}

.nerp-discord-section .container {
    background: transparent !important;
}

.nerp-discord-banner {
    position: relative;

    width: 100%;
    min-height: 205px;

    padding: 32px 48px;

    display: flex;

    align-items: center;

    gap: 42px;

    overflow: hidden;

    background: linear-gradient(
        125deg,
        #5865f2 0%,
        #515dd8 48%,
        #414bb6 100%
    );

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nerp-discord-decoration {
    position: absolute;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.045);

    pointer-events: none;
}

.nerp-circle-one {
    width: 280px;
    height: 280px;

    top: -165px;
    right: -45px;
}

.nerp-circle-two {
    width: 180px;
    height: 180px;

    bottom: -125px;
    left: 280px;
}

.nerp-discord-icon {
    position: relative;
    z-index: 2;

    flex: 0 0 180px;

    width: 180px;
    height: 145px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: rgba(10, 14, 45, 0.16);

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;

    transform: rotate(-3deg);

    box-shadow:
        0 14px 30px rgba(22, 25, 75, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nerp-discord-icon > svg {
    width: 88px;

    height: auto;
}

.nerp-discord-content {
    position: relative;
    z-index: 2;

    max-width: 650px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
}

.nerp-discord-label {
    display: block;

    margin-bottom: 7px;

    color: rgba(255, 255, 255, 0.82) !important;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.3;

    letter-spacing: 0.7px;
}

.nerp-discord-content h2 {
    margin: 0 0 8px !important;

    color: #ffffff !important;

    font-size: 28px;
    font-weight: 700;

    line-height: 1.12;
}

.nerp-discord-content p {
    max-width: 590px;

    margin: 0 0 18px !important;

    color: rgba(255, 255, 255, 0.82) !important;

    font-size: 13px;

    line-height: 1.55;
}


/* ZWYKŁY PRZYCISK DISCORDA */

.nerp-discord-button {
    min-height: 44px;

    padding: 11px 20px;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 0 !important;

    color: #ffffff !important;

    text-decoration: none !important;

    font-size: 13px;
    font-weight: 700;

    line-height: 1;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.nerp-discord-button svg,
.nerp-discord-button img,
.nerp-discord-button i {
    display: none !important;
}

.nerp-discord-button:hover {
    color: #ffffff !important;

    background: rgba(255, 255, 255, 0.20);

    border-color: rgba(255, 255, 255, 0.42);
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 991px) {
    .main-banner,
    .main-banner > .row {
        min-height: 330px;
    }

    .main-banner-content {
        padding: 35px 20px !important;
    }

    .nerp-discord-banner {
        min-height: 210px;

        padding: 32px;

        gap: 30px;
    }

    .nerp-discord-icon {
        flex-basis: 150px;

        width: 150px;
        height: 130px;
    }

    .nerp-discord-icon > svg {
        width: 75px;
    }

    .nerp-discord-content h2 {
        font-size: 25px;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {
    .main-banner {
        min-height: 350px;

        border-radius: 12px !important;
    }

    .main-banner > .row {
        min-height: 350px;
    }

    .main-banner-content {
        padding: 30px 15px !important;
    }

    .main-banner-content .main-title {
        font-size: 30px !important;

        line-height: 1.15 !important;
    }

    .shop-list.nerp-last-buyers {
        margin: 27px 0 25px !important;
    }

    .shop-list.nerp-last-buyers .nerp-last-buyers-title {
        margin-bottom: 18px !important;
    }

    .shop-list.nerp-last-buyers .grid-list {
        gap: 14px !important;
    }

    .shop-list.nerp-last-buyers .avatar--60 {
        width: 48px !important;
        height: 48px !important;
    }

    .nerp-shop-tabs {
        max-width: none;

        margin: 20px 0 28px;

        gap: 8px;
    }

    .nerp-shop-tab {
        min-height: 48px;

        padding: 11px 10px;

        font-size: 11px;
    }

    .product-value-roll {
        height: 29px;
    }

    .product-value-roll-item {
        padding: 0 22px;

        font-size: 10px;

        line-height: 29px;
    }

    .product-value-roll-item::after {
        margin-left: 22px;
    }

    .nerp-ranks-table {
        min-width: 780px;
    }

    .nerp-rank-head {
        min-height: 140px;

        padding: 18px 12px 14px;
    }

    .nerp-rank-name {
        font-size: 20px !important;
    }

    .nerp-discord-section {
        padding: 32px 0 42px !important;
    }

    .nerp-discord-banner {
        min-height: auto;

        padding: 28px 20px;

        flex-direction: column;

        gap: 20px;

        text-align: center;

        border-radius: 14px;
    }

    .nerp-discord-icon {
        flex: none;

        width: 110px;
        height: 95px;

        border-radius: 13px;
    }

    .nerp-discord-icon > svg {
        width: 57px;
    }

    .nerp-discord-content {
        width: 100%;

        align-items: center;
    }

    .nerp-discord-label,
    .nerp-discord-content h2,
    .nerp-discord-content p {
        text-align: center;
    }

    .nerp-discord-content h2 {
        font-size: 24px;
    }

    .nerp-circle-two {
        left: -90px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-value-roll-track {
        animation: none;
    }
}