.newtons-cradle {
    --uib-size: 66px;
    --uib-speed: 1.2s;
    --uib-color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--uib-size);
    height: var(--uib-size);
}

.newtons-cradle__dot {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    width: 25%;
    transform-origin: center top;
}

.newtons-cradle__dot::after {
    content: '';
    display: block;
    width: 100%;
    height: 25%;
    border-radius: 50%;
    background-color: var(--uib-color);
}

.newtons-cradle__dot:first-child {
    animation: swing var(--uib-speed) linear infinite;
}

.newtons-cradle__dot:last-child {
    animation: swing2 var(--uib-speed) linear infinite;
}

@keyframes swing {
    0% {
        transform: rotate(0deg);
        animation-timing-function: ease-out;
    }

    25% {
        transform: rotate(70deg);
        animation-timing-function: ease-in;
    }

    50% {
        transform: rotate(0deg);
        animation-timing-function: linear;
    }
}

@keyframes swing2 {
    0% {
        transform: rotate(0deg);
        animation-timing-function: linear;
    }

    50% {
        transform: rotate(0deg);
        animation-timing-function: ease-out;
    }

    75% {
        transform: rotate(-70deg);
        animation-timing-function: ease-in;
    }
}

@media screen and (max-width: 500px) {
    .newtons-cradle {
        --uib-size: 62px;
    }
}
.svg-property {
    width: 70px;
    height: 70px;
}


.mobile-cart-view {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.mobile-cart-view h4 {
    font-weight: 400;
    color: #e2e9e1;
}

.mobile-cart-view p {
    margin-bottom: 0;
}

.mobile-cart-view .btn {
    width: 100%;
}

.cart-bottom {
    width: 24px;
    height: auto;
}


.mt-custom-marging {
    margin-top: 18px;
}

.custom-display-ratting-lg {
    display: none;
}

.containts-for-mobile {
    display: none;
}

.custom-line {
    border-bottom: 1px solid #e2e9e1;
    border-top: 1px solid #e2e9e1;
}

.banner-bg-custom {
    background-position: center;
    background-size: cover;
    padding: 10px;
}


.text-justify {
    text-align: justify;
}

.custom-font{
color: rgb(0, 0, 0);
font-size: 19px;
}
.modal-dialog-bg {
    /* background-image: url(../imgs/banner/8533430.jpg); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.detail-qty-container {
    padding: 2px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: fit-content;
}

.qty-title {
    margin-right: 5px;
    font-size: 13px;
    font-weight: 500;
}

.checkout-heading {
    color: #b12704 !important;
    font-size: 20px;
    cursor: pointer;
    text-decoration: underline;
}

.form-select-custom {
    padding: 1px 34px 1px 10px !important;
}

.qty-select:focus {
    outline: none;
}

.svg-text {
    font-size: 13px;
}

.order-img {
    width: 55%;
}

.star-rating {
    direction: rtl;
    display: inline-flex;
    justify-content: flex-start;
    font-size: 24px;
}

.star-rating input {
    display: none;
}



.star-rating label {
    color: #ddd;
    cursor: pointer;
}

.star-rating input:checked~label {
    color: #ffcc00;
}

.star-rating input:hover~label,
.star-rating input:focus~label {
    color: #ffcc00;
}

.iziToast-wrapper{
    z-index: 100000;
}
@media only screen and (max-width: 768px) {

    .mobile-hide {
        display: none;
    }

    .order-img {
        width: 65%;
    }

    .card-text {
        font-size: 13px;
        font-weight: 400;
        line-height: 21px;
        margin-bottom: 0px;
        color: #465b52;

    }


    .deal {
        padding: 10px;
        background-size: contain;
        border-radius: 6px;
        min-height: 120px;
    }

    .svg-text {
        font-size: 9px;
    }

    .qty-title {
        font-size: 12px;
    }

    .detail-qty-container {
        padding: 3px;
    }

    .custom-card {
        height: 105px;
    }

    .containts-for-mobile {
        display: flex;
    }

    .detail-info .product-price ins {
        font-size: 25px;
    }

    .detail-gallery .slick-slider {
        margin-bottom: 8px;
    }

    .insta-text {
        font-size: 20px;
    }

    table td,
    table th {
        padding: 7px 8px !important;
    }

    .toggle_info {
        padding: 3px;
        background-color: #faf4ab;
        border-radius: 10px;
        border: 1px solid #e2e9e1;
    }

    .title-detail {
        font-size: 18px;
    }

    .detail-info .product-price-cover {
        border-top: 1px solid #e2e9e1;
        border-bottom: 1px solid #e2e9e1;
        padding: 9px 0;
    }

    .custom-display-ratting-lg {
        display: flex;
    }

    .custom-display-ratting-sm {
        display: none;
    }

    .svg-property {
        width: 40px;
        height: 40px;
    }

    .deal h2 {
        font-size: 12px;
    }

    .deal h5 {
        font-size: 8px;
    }

    .deal .btn {
        background: none;
        border: 2px solid var(--textcolor1);
        color: #000000;
        border-radius: 4px;
        font-size: 14px;
        padding: 0px 4px;
    }

    .section-padding {
        padding: 15px 0;
    }

    .banner-bg {
        padding: 3px;
    }



    .mb-sm-10 {
        margin-bottom: 10px !important;
    }

    .w-button-100 {
        width: 48%;
    }

    .mt-custom-marging {
        margin-top: 10px;
    }

    .product-detail .section-title.style-1 {
        font-size: 17px;
    }

    .button.button-add-to-cart {
        padding: 8px 26px;
    }

    .product-cart-wrap .product-img-action-wrap {
        padding: 5px 5px;
    }

    .product-cart-wrap .product-content-wrap h2 a {
        font-size: 12px;
    }

    .product-cart-wrap .product-content-wrap .product-category {
        margin-bottom: 0px;
    }

    .product-cart-wrap .product-content-wrap .rating-result::before {
        font-size: 9px;
    }

    .product-cart-wrap .product-content-wrap {
        padding: 0 8px 5px 8px;
    }

    .product-cart-wrap .product-content-wrap .product-price {
        padding-top: 0px;
    }

    .product-cart-wrap .product-content-wrap .product-price span {
        font-size: 15px;
    }

    .product-cart-wrap .product-content-wrap .product-price span.old-price {
        font-size: 10px;
    }

    .product-cart-wrap .product-action-1.show {
        right: 5px;
    }

    .product-cart-wrap .product-badges.product-badges-position {
        left: 11px;
        top: 11px;
    }

    .product-cart-wrap .product-badges span {
        font-size: 11px;
    }

    .product-cart-wrap .product-action-1 a.action-btn {
        width: 25px;
        height: 25px;
        line-height: 30px;
    }

    .shop-product-fillter {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: wrap !important;
    }

    .shop-product-fillter .totall-product {
        margin-bottom: 0px;
    }

    .shop-product-fillter .totall-product p {
        font-size: 14px;
    }

    .shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by-dropdown-wrap span {
        font-size: 11px;
    }

    .shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by span {
        font-size: 11px;

    }

    .shop-product-fillter .sort-by-product-area .sort-by-product-wrap {
        padding: 4px 7px;
    }

    .empty-cart-alert img {
        width: 70%;
      }
}

.wishlist-added {
    background-color: #104210 !important;
    color: white !important;
}


.product-price span {
    font-size: 18px;
    font-weight: bold;
    color: var(--textcolor1);
}

.product-price span.old-price {
    font-size: 12px;
    font-weight: 400;
    color: #90908e;
    margin: 0 0 0 7px;
    text-decoration: line-through;
}

.empty-cart-alert {
    background-color: #00ffae0d;
    color: #053300;
    border: 1px solid #b3bcff85;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.2rem;
}

.empty-cart-alert img {
  width: 20%;
}

.empty-cart-alert span {
    font-weight: bold;
    display: block;
}

.caption{
    color: #6e0800;
}



.whatsapp-icon {
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-icon img {
    width: 50px;  /* Adjust size as needed */
    height: auto; /* Keeps aspect ratio */
    border-radius: 50%; /* Optional: for a circular icon */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Optional: for a shadow effect */
    transition: opacity 0.3s ease; /* Optional: smooth transition effect */
}

.whatsapp-icon:hover img {
    opacity: 0.8; /* Optional: changes icon opacity on hover */
}

@media only screen and (max-width: 768px) {
    .empty-cart-alert img {
        width: 70%;
      }

      .whatsapp-icon {
        position: fixed;
        bottom: 105px;
        right: 5px;
      }
      .whatsapp-icon img {
    width: 45px;
      }
      
        .product-cart-wrap .product-action-1.show {
        bottom: 5px;
        right:10px;
    }
   
}

