/* CMTT Counter - Circular Progress Widget Styles */

.cmtt-progress-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cmtt-circular-progress {
    position: relative;
    display: inline-block;
}

.cmtt-progress-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.cmtt-progress-bg,
.cmtt-progress-circle {
    fill: none;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.3s ease;
}

.cmtt-progress-bg {
    stroke: #cccccc;
}

.cmtt-progress-circle {
    stroke: #000000;
    stroke-dasharray: 565.48;
    stroke-dashoffset: 565.48;
}

.cmtt-percentage-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    font-weight: 600;
    color: #000000;
    line-height: 1;
}

.cmtt-counter {
    display: inline-block;
}

.cmtt-title {
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
    color: #000000;
}

.cmtt-description {
    font-size: 0.95em;
    color: #666666;
    margin-top: 10px;
    max-width: 300px;
    line-height: 1.6;
}

/* Animation classes */
.cmtt-circular-progress.animating .cmtt-progress-circle {
    transition: stroke-dashoffset 1.5s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cmtt-percentage-text {
        font-size: 1.5em;
    }
    
    .cmtt-title {
        font-size: 1em;
        margin-top: 15px;
    }
    
    .cmtt-description {
        font-size: 0.9em;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .cmtt-percentage-text {
        font-size: 1.2em;
    }
    
    .cmtt-title {
        font-size: 0.9em;
        margin-top: 10px;
        letter-spacing: 1px;
    }
    
    .cmtt-description {
        font-size: 0.85em;
        max-width: 200px;
    }
}
