.group-buying-discount-card {
    background-color: #fff;
    box-shadow: 0 2px 10px #0000000f;
    border-radius: 15px;
    padding: 20px;
    max-width: 540px;
    border: 1px solid #eee;
    width: 100%;
}
.group-buying-discount-card .user-joined {
    display: flex;
    align-items: center;
    column-gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}
ul.user-joined-images {
    padding: 0;
    margin: 0 0 0 15px;
    list-style: none;
    display: flex;
    align-items: center;
}
.user-joined-images li.user-joined-img {
    margin-left: -15px;
}
.user-joined-images li.user-joined-img img {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    border: 2px solid #fff;
}
.user-joined p {
    color: #333;
    margin: 0;
}
.group-buying-discount-card h4 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 500;
    color: #d11d1d;
}
.group-buying-discount-card p {
    color: #333;
    font-size: 16px;
    margin: 0;
}
.group-buying-discount-card h2.title {
    text-align: left;
    margin-bottom: 25px;
    color: #000;
    font-size: 30px;
    line-height: 1;
}
.buyers-discount {
    min-height: 90px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 10px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin: 20px 0;
    background-color: #fff;
}
.buyers-discount:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    transform: translate(0, -50%);
    z-index: 0;
}
.buyers-discount ul {
    display: flex;
    list-style: none;
    padding: 0 25px;
    margin: 0;
    justify-content: space-between;
    width: 100%;
    column-gap: 10px;
}
.buyers-discount .button02 {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}
.buyers-discount .button02 button.btn.buyers-discount-btn {
    padding: 8px 14px;
    background-color: #ddd;
    min-height: unset;
    line-height: 1;
    border: none;
    border-radius: 4px;
}
.buyers-discount ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    align-items: center;
}
.buyers-discount ul li span.join_num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50px;
    background-color: #eee;
    font-size: 14px;
    font-weight: 600;
}
.buyers-discount ul li span.discount_pars {
    font-size: 14px;
    font-weight: 500;
    min-height: 21px;
}
.buyers-discount ul li:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 7px;
    background-color: #eee;
    transform: translate(-50%, -50%);
}
.buyers-discount ul li.active:after {
    background-color: #8acbff;
}
.buyers-discount ul li.active .join_num {
    background-color: #8acbff;
    color: #fff;
}
.buyers-discount ul li.active .discount_pars {
    color: #8acbff;
}
 


/* popup login css */

#ModalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: #0000007a;
    z-index: 99;
}
.custom-modal-login-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    background-color: #fff;
    z-index: 999;
    max-width: 575px;
    transform: translate(-50%, -50%);
    overflow: auto;
    border-radius: 12px;
    padding: 20px;
}
.modal-close-btn {
    position: absolute;
    right: 9px;
    top: 8px;
    padding: 5px;
    font-size: 18px;
    line-height: 1;
    border: none;
    background-color: transparent;
}
.submit-btn {
    background-color: #00B0B5;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: #ffff;
    border-style: none;
    border-radius: 10px;
    padding: 11px 36px 11px 36px;
    box-shadow: 0 2px 8px #00000014;
}
.form-group {
    margin-bottom: 15px;
}
 


 /* Other CSS */

 .entry-summary > p.price {
    display: none;
}

.single-product .price,
.single-product form.cart {
    display: none !important;
}

/*.wc-block-cart-item__quantity .wc-block-components-quantity-selector {
    display: none;
}*/


.quantity-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  .qty-btn {
    background-color: #444;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 18px;
    cursor: pointer;
  }

  .qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  input[type="number"] {
    width: 60px;
    text-align: center;
  }