﻿
.timer-display {
    display: none;
    position: relative;
    text-align: center;
}

.circle-canvas {
    margin: 20px 0;
    position: relative;
}

.timer-content {
    position: absolute;
    text-align: center;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    pointer-events: none; /* Prevent interaction */
}

.timer-title {
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    width: 70%;
    margin: 0 15%;
}

.timer-text {
    font-weight: 900;
    font-size: 32px;
    color: #fff;
}

.timer-section.timer {
    width: 50%;
}

@media (max-width: 777px) {
    .timer-section.timer {
        width: 100%;
    }
}
@media (max-width: 500px) {

    .timer-title {
        width: 100%;
        margin: 0 auto;
    }
}

