/**
 * Progress Bar Frontend CSS
 */

.progress-above-text h5 {
    text-align: center;
    padding-bottom: 0 !important; /* Remove any bottom padding */
    margin-bottom: 0 !important;  /* Remove any bottom margin */
}

.wc-category-sales-percentage {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    color: #f0f0f0;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.wc-category-sales-progress-wrapper {
    position: relative;
}

.wc-category-sales-amounts {
    margin-bottom: 40px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.wc-category-sales-progress-bar {
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 1px 1px 5px #888888;
    height: 25px;
    padding: 5px;
    width: 100%;
    background-color: #e5e5e5;
    border-radius: 20px;
    overflow: hidden;
}

.wc-category-sales-progress {
    position: relative;
    height: 100%;
    background-color: #79b9e9;
    float: left;
    padding: 5px;
    border-radius: 20px;
    padding-left: 12px;
}

.wc-category-sales-sales {
    float: left;
    margin-right: 10px;
    font-weight: bold;
    font-size: 13px;
}

.wc-category-sales-goal {
    float: right;
    margin-left: 5px;
    font-weight: bold;
    font-size: 13px;
}

@media only screen and (max-width: 480px) {
    .wc-category-sales-goal,
    .wc-category-sales-sales {
        font-size: 13px !important;
    }
}