.lwc-listing {
    padding: 8px 0;
    margin-top: 12px;
    text-align: center;
}

.lwc-listing a {
    text-decoration: none !important;
}

.lwc-listing .product-name {
    font-size: 16px;
}

.lwc-listing .product-price span {
    flex-grow: 1;
}

.product-price strike {
    color: #898989;
}

.product-action {
    margin: 8px 0 6px 0;
}

.product-action button {
    font-weight: 600;
}

td.product-item-detail strike {
    margin-left: 6px;
}

.lwp-cart-content {
    padding: 0 8px;
}

.lwc-pre-order-badge {
    position: absolute;
    padding: 4px 8px;
    background: #ddd;
    bottom: 14px;
    left: 6px;
    background: var(--lokuswp-secondary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
}

/* Single */

.lwp-product h2 {
    color: #282828;
    font-weight: 600;
    margin-bottom: 2px;
}

.lwp-product .product-price small {
    margin-left: 8px;
}


/* Product Listing */

.lwc-product-item {
    /*border: 1px solid #E5E8EB;*/
    padding: 8px !important;
}

.lwc-product-item h3.product-title {
    margin: 0.3em 0;
}

.lwc-product-item .product-name {
    margin-top: 4px;
    color: #1d1f1a;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    text-align: left;
    line-height: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}


/* Product Price */

.product-price {
    display: flex;
    padding: 0;
}

.product-price small {
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.product-price span {
    display: flex;
    font-weight: 600;
    color: var(--lokuswp-secondary-color);
}


/* Cart Icon */

.cart-icon {
    position: relative;
    text-decoration: none;
}

.cart-icon .cart-qty {
    font-size: 14px;
    color: var(--lokuswp-secondary-color);
    text-decoration: none;
}


/* Invoice */

.copy-input a {
    color: var(--lokuswp-secondary-color);
}


/* Single Product  */

.single-product .product-title {
    padding: 0px 12px 0 0;
    width: 100%;

}

/*Loading*/

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading {
    color: transparent !important;
    min-height: .8rem;
    pointer-events: none;
    position: relative;
}

.loading::after {
    animation: loading 500ms infinite linear;
    background: transparent;
    border: .1rem solid var(--lokuswp-secondary-color);
    border-radius: 50%;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    display: block;
    height: .8rem;
    left: 50%;
    margin-left: -.4rem;
    margin-top: -.4rem;
    opacity: 1;
    padding: 0;
    position: absolute;
    top: 50%;
    width: .8rem;
    z-index: 1;
}

.loading.loading-lg {
    min-height: 2rem;
}

.loading.loading-lg::after {
    height: 1.6rem;
    margin-left: -.8rem;
    margin-top: -.8rem;
    width: 1.6rem;
}