.random-sale-products {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    align-items: stretch;
}
.sale-product {
    border: 1px solid #0B4BAB;
    border-radius: 15px;
    width: 32%;
    padding: 25px;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
.sale_product_info a {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    text-align: center;
    min-height: 50px;
}
.sale_product_img {
    width: 30%;
}
.sale_product_img img {
    max-height: 150px!important;
    width: auto!important;
}
.sale_product_info h2, .sale_product_info a {
    font-size: 20px;
    text-align: center;
    color: #000;
    font-weight: 400;
    margin-bottom: 10px;
}
.sale_product_info {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sale_product_info .price {
    color: #000;
    font-weight: 700;
    font-size: 20px;
}
.sale-product .home_sale-countdown_outer div.sale-countdown {
    margin-top: 15px;
}
.product-categories {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 0px;
    justify-content: center;
}

.collector a.category-button {
    width: fit-content;
    background: #9EBEE5;
    padding: 1px 10px;
    border-radius: 15px;
    font-size: 13px;
    text-align: center;
    min-height: 0;
}
.more-items-text {
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}
span.cross_price {
    color: #888;
    font-weight: 400;
    font-size: 16px;
    text-decoration: line-through;
}
@media(max-width:500px){
    .collector a.category-button {
        font-size: 12px;
        font-weight: 700;
    }
    .product-categories {
        max-height: 25px;
        overflow: hidden;
    }
    .random-sale-products {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: flex-start;
        align-content: center;
        align-items: stretch;
    }
    .sale-product {
        flex: 0 0 auto;
        width: 80% !important;
        margin-bottom: 10px;
        margin-left: 10px;
        padding: 10px!important;
    }
    .sale_product_img {
        width: 40%;
    }
    .sale_product_info {
        width: 60%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}