#collectiveBuying_showAll .productsPart {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 4%;
    row-gap: 6%;
}

#collectiveBuying_showAll .productsPart figure .imgPart {
    position: relative;
    width: 100%;
    padding-bottom: 116%;
    background-color: #d8d8d8;
}

#collectiveBuying_showAll .productsPart figure .imgPart img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#collectiveBuying_showAll .productsPart .productTitle {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

#collectiveBuying_showAll .productsPart p {
    font-size: .8em;
}

#collectiveBuying_showAll .productsPart p:not(.skuff) {
    font-weight: 400;
}

#collectiveBuying_showAll .collectiveBuyingModule01 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 1vmax;
}

#collectiveBuying_showAll .collectiveBuyingModule01 p {
    margin: unset;
    line-height: 2;
}

#collectiveBuying_showAll .collectiveBuyingModule01 .productTitle,
#collectiveBuying_showAll .collectiveBuyingModule01 .skuff {
    width: 70%;
}

#collectiveBuying_showAll .collectiveBuyingModule01 .skuff,
#collectiveBuying_showAll .collectiveBuyingModule01 .percentage {
    font-size: .7em;
}

#collectiveBuying_showAll .progressFrame {
    width: 100%;
    height: 4px;
    background-color: #bcbcbc;
    border-radius: 10em;
    overflow: hidden;
    margin: 0.4vmax 0;
}

#collectiveBuying_showAll .progressFrame .progressBar {
    width: 50%;
    height: 100%;
    background-color: #ff7f41;
}


@media screen and (max-width:700px) {
    #collectiveBuying_showAll .productsPart {
        grid-template-columns: 1fr;
        column-gap: unset;
        row-gap: 3%;
        padding-bottom: 12vmax;
    }
}