/*Checkout live user*/
.wc_user_count {
    color: #383d41;
    line-height: 1.625;
    padding: 15px;
    margin-bottom: 10px;
}
.wc_user_count .woocommerce-info-user-count {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
}

.wc_user_count .live-customer-count-pill {
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    box-sizing: border-box;
}

.wc_user_count .live-customer-count-pill:before {
    content: '';
    position: relative;
    display: block;
    width: 150%;
    height: 150%;
    margin-left: -4px;
    margin-top: -4px;
    border-radius: 45px;
    background-color: #000;
    animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}  
.wc_user_count .live-customer-count-pill:after {
    content: '';
    position: absolute;
    left: 0; 
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 15px;
    box-shadow: 0 0 8px rgba(0,0,0,.3);
    animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -.4s infinite;
}


@keyframes pulse-ring {
  0% {
    transform: scale(.33);
  }
  80%, 100% {
    opacity: 0;
  }
}

@keyframes pulse-dot {
  0% {
    transform: scale(.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(.8);
  }
}

.single-product #stamped-main-widget .stamped-container .stamped-header, 
.single-product #stamped-main-widget .stamped-container #stamped-reviews-tab .stamped-review {
    border-radius: 1rem;
    background: #ffffff;
    width: 100%;
    padding: 40px 40px !important;
}

/**Place order button - checkout**/
div#cfw-payment-action {
    display: block;
}
button#place_order {
    width: 100%;
    margin-top: 10px;
}
.cfw-alert {
    text-align: center;
}

.single-product span.wc-points-rewards-product-message,
.single-product p.points.hide-on-price-available {
    background: #f2f2f2;
    display: table;
    clear: both;
    padding: 10px 20px;
    border-radius: 8px;
    margin: 15px 0;
}
.single-product .smk-qty-price-wrapper .woocommerce-variation-price br{
    display: none;
}

/** START - The radiant dot**/
.radiant-orb {
    width: 5px;
    height: 5px;
    background-color: #6b8e23;
    border-radius: 50%;
    position: relative;
    animation: radiant-orb 1.5s infinite ease-in-out;
}

/* Keyframes for the radiant effect */
@keyframes radiant-orb {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Optional: Add an outer ring effect */
.radiant-orb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #6b8e23;
    opacity: 0.7;
    animation: pulse-ring 1.5s infinite ease-in-out;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}
.single-product .radiant-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}
.single-product .radiant-wrap .radiant-txt {
    margin-left: 10px;
}
/** END - The radiant dot**/

.single-product .review-box-wrap{
    position: absolute;
    right: 0;
    top: 0;
}

.single-product .review-box-wrap a.wooc-product-rating{
    display: flex;
    top: 0;
    right: 0;
    padding: 0.125rem 0.55rem;
    border: 2px solid #e4e2e2;
    border-radius: 5px;
    color: rgba(18, 20, 22, .65);
    font-size: .9rem;
    font-weight: 500;    
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}
.single-product .review-box-wrap a.wooc-product-rating span.star {
    padding: 0 5px 0 0;
    display: inline-flex;
    align-items: center;
}
.single-product .review-box-wrap a.wooc-product-rating span.star i {
    margin-left: 6px;
}
a.wooc-product-rating .stamped-fa-star:before{
    font-size: 14px;
}

/*PDP Gallery*/
.woocommerce-product-gallery .flex-direction-nav {
    display: block !important;
}
.woocommerce-product-gallery .flex-direction-nav a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff !important;
    font-size: 28px;
    padding: 10px 14px;
    border-radius: 50%;
    text-indent: -9999px;
}

.woocommerce-product-gallery .flex-direction-nav .flex-prev::after {
    content: "‹";
    text-indent: 0;
}

.woocommerce-product-gallery .flex-direction-nav .flex-next::after {
    content: "›";
    text-indent: 0;
    right: 0;
}

.woocommerce-product-gallery .flex-direction-nav .flex-prev { left: 10px; }
.woocommerce-product-gallery .flex-direction-nav .flex-next { right: 10px; }
.woocommerce-product-gallery.woocommerce-product-gallery--with-images ul.flex-direction-nav {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 100%;
}
.woocommerce-product-gallery.woocommerce-product-gallery--with-images ul.flex-direction-nav li {
    list-style: none;
}
.woocommerce-product-gallery.woocommerce-product-gallery--with-images ul.flex-direction-nav li a {
    font-size: 0;
}
.woocommerce-product-gallery.woocommerce-product-gallery--with-images ul.flex-direction-nav li.flex-nav-prev a {
    font-size: 0;
    position: absolute;
    background-color: #fff;
    opacity: .65;
    backdrop-filter: blur(6px);
    cursor: pointer;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    padding: 10px;
    left: 0;
    padding-right: 5px;
    border-radius: 0 32px 32px 0;
    min-height: 40px;
    width: 40px;
}
.woocommerce-product-gallery.woocommerce-product-gallery--with-images ul.flex-direction-nav li.flex-nav-next a {
    font-size: 0;
    position: absolute;
    background-color: #fff;
    opacity: .65;
    backdrop-filter: blur(6px);
    cursor: pointer;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    padding: 10px;
    right: 0;
    padding-right: 5px;
    border-radius: 32px 0 0 32px;
    min-height: 40px;
    width: 40px;
    left: unset;
}
.woocommerce-product-gallery.woocommerce-product-gallery--with-images ul.flex-direction-nav li.flex-nav-next a:before {
    content: "";
    width: 5px;
    height: 5px;
    border: solid #3d3c3c;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(-45deg);
    position: absolute;
    left: 16px;
    top: 15px;
}
.woocommerce-product-gallery.woocommerce-product-gallery--with-images ul.flex-direction-nav li.flex-nav-prev a:before {
    content: "";
    width: 5px;
    height: 5px;
    border: solid #3d3c3c;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(-225deg);
    position: absolute;
    left: 15px;
    top: 15px;
}
.woocommerce-product-gallery.woocommerce-product-gallery--with-images ul.flex-direction-nav li a:hover {
    background: #46de46;
    opacity: 1;
}
/*END - PDP Gallery*/

@media only screen and (max-width: 767px) { 
    .single-product .review-box-wrap{
        position: static;
        width: auto;
        display: inline-flex;
        margin: 0 0 12px 0px !important;
    }
    .single-product .review-box-wrap a.wooc-product-rating{
        margin-top: 0;
    }

    .woocommerce-product-gallery.woocommerce-product-gallery--with-images ul.flex-direction-nav li.flex-nav-prev a {
        left: -25px;
    }
    .woocommerce-product-gallery.woocommerce-product-gallery--with-images ul.flex-direction-nav li.flex-nav-next a {
        right: -25px;
    }
}