.product-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.product-cards ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    width: 100%;
    margin-top: 1rem;
    padding: 0;
}

.product-cards li {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 205px;
    gap: 5px;
}

.product-cards input[type="checkbox"] {
    display: none;
}

.product-cards input[type="checkbox"]:checked + label .selected {
    display: flex;
}

.product-cards label {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-height: 205px;
    border: 1px solid transparent;
    border-radius: 10px;
    transition: border-color 0.3s;
}

.product-cards label:hover {
    border-color: #007bff;
}

.product-cards img {
    width: 100%;
    border-radius: 10px;
}

.product-cards .text-primary {
    color: var(--e-global-color-primary);
    font-weight: 600;
}

.product-cards .amount {
    color: var(--e-global-color-secondary);
    font-weight: 600;
}

.product-card {
    border-radius: 10px;
}

.product-check, .product-cards .feature {    
    position: absolute;
    font-weight: 600;
    padding: 0 10px;
    border-radius: 6px;
    align-self: center;
}
.product-cards .feature {
    top: -13px;
}
.product-check {
    top: -7px;   
    display: none;
    color: white;
    background: var(--e-global-color-primary);
}

#popup-content ::-webkit-scrollbar {
    width: 0px;
}
.selected .product-check {
    display: block;
}
.product-info {
    padding: 0 5px;
}

.line-through {
    text-decoration: line-through;
    padding: 1px 4px;
    background-color: #1cd04c49;
    border-radius: 5px
}
.text-secondary {
    color: var(--e-global-color-primary);
    font-weight: 600;
}
.product-card .product-check {
    display: none;
}

@media (min-width: 750px) {
    .elementor-widget-gmmadj-product-cards.block-brawlpass .product-cards-list {
        display: flex;
        justify-content: center;
        gap: clamp(20px, calc((100% - 205px * 6) / 5), 36px);
    }
}
@media (max-width: 1079px) and (min-width: 750px) {
    .elementor-widget-gmmadj-product-cards.block-brawlpass .product-cards-list {
        gap: clamp(20px, calc((100% - 205px * 5) / 4), 45px);
    }
}
@media (max-width: 909px) and (min-width: 750px) {
    .elementor-widget-gmmadj-product-cards.block-brawlpass .product-cards-list {
        gap: clamp(20px, calc((100% - 205px * 4) / 3), 50px);
    }
}

@media (max-width: 400px) {
    .product-cards ul {
        grid-template-columns: repeat(auto-fill,minmax(calc(50% - 10px),1fr));
    }
}