.admin__menu .item-designtemplates.level-0 > a::before {
  content: '\e608';
}

/* Published product progress bar css */
.sellertemplate-publishedproduct-index .progress-container {
    display: flex;
    justify-content: flex-start;
    width: 500px; /* Increased width for more stores */
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.sellertemplate-publishedproduct-index .progress-block {
    height: 100%;
    background-color: #ccc;
    border-right: 1px solid #fff;
    transition: background-color 0.3s ease;
}

.sellertemplate-publishedproduct-index .progress-block.in-progress {
    background-color: #41362f;
    animation: pulsePublish 1.5s ease-in-out infinite;
}

.sellertemplate-publishedproduct-index .progress-block.pending {
    background-color: #adadadff;
    animation: shimmerPublish 2s linear infinite;
}
.sellertemplate-publishedproduct-index .pp-wrapper .status {
    margin-top: 10px;
    font-size: 16px;
}
@keyframes pulsePublish {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85; /* Slightly less dim for visibility */
    }
}

@keyframes shimmerPublish {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
/* Published product progress bar css */