#purchase {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 12px;
}
.btn-add-bundle {
    display: block;
    margin: auto;
    width: 270px;
    background: #659A40;
    margin-top: -25px;
    margin-bottom: 15px;
    color: #fff;
    height: 43px;
    text-transform: uppercase;
    border-radius: .25rem;
    padding: .375rem .75rem;
    border: 2px solid transparent;
    font-size: 18px;
    font-weight: 500;
    margin-top: 15px;
}
.best {
    position: absolute;
    right: 12px;
    padding: 2px 10px;
    margin: 0;
    font-size: 12px;
    color: #fff;
    background: #000;
    border-radius: 10px;
    line-height: 2;
    text-transform: uppercase;
    top: -13px;
    font-family: unset;
}
.pBox {
    border: 2px solid var(--custom-border-form-color);;
    border-radius: 6px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    gap: 15px;
}
.add2.pBox {
    padding-left: 5px;
}
.pBoxActive {
    background: var(--custom-background-form-color);;
}
.pBox p {
    margin: 0;
}
.pBox p img {
    max-width: 120px;
    width: 100%;
    height: 100px;
}
.row-title {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.row-title span:nth-child(1) {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}
.row-title span:nth-child(2) {
    font-weight: 500;
}
.row-price {
    display: flex;
    flex-direction: column;
    width: 18%;
    text-align: center;
    font-size: 20px;
    line-height: 21px;
}
.row-price span:nth-child(1) {
    font-weight: 700;
}
.row-price span:nth-child(2) {
    text-decoration: line-through;
}
@media (max-width: 500px) {
    .pBox {
        gap: 10px;
    }
    .pBox p {
        line-height: 18px;
    }
    .pBox p img {
        max-width: 80px;
        height: auto;
    }
    .row-title span:nth-child(1) {
        font-size: 14px;
    }
    .row-price {
        width: 20%;
        font-size: 16px;
    }
    .best {
        font-size: 10px;
    }
}
@media (max-width: 320px) {
    .pBox p img {
        max-width: 65px;
    }
    .row-title span:nth-child(1) {
        font-size: 12px;
    }
    .row-title span:nth-child(2) {
        font-size: 14px;
    }
    .row-price {
        font-size: 14px;
    }
    .best {
        font-size: 8px;
    }
}