/**
 * TBC WooCommerce Calendar - Progress Bar Frontend CSS
 */

.tbc-wc-progress-above-text h5 {
    text-align: center;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.tbc-wc-progress-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);
}

.tbc-wc-progress-wrapper {
    position: relative;
}

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

.tbc-wc-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;
}

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

.tbc-wc-progress-current {
    float: left;
    margin-right: 10px;
    font-weight: bold;
    font-size: 13px;
}

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

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