
@media (max-width: 767px) {
    .countdown-container {
        text-align: center;
    }
    
    .countdown-item {
        display: inline-block;
        
    }
    .countdown-item:not(:last-child) {
        margin-right: 4px;
    }
    
    .countdown-item span {
        width: 26px;
        width: 26px;
        display: block;
        font-size: 15px;
        color: #333;
        background-color: var(--title-accent-color);
        border-radius: 50% 50%;
        padding: 10px;
    }
    
    .countdown-item:last-child span{
        background-color: var(--accent-color);
    }
    
    .countdown-label {
        text-align: center;
        font-size: 14px;
        color: #666;
        padding-bottom: 10px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    
    .countdown-item {
        display: inline-block;
        
    }
    .countdown-item:not(:last-child) {
        margin-right: 4px;
    }
    
    .countdown-item span {
        width: 26px;
        
        display: block;
        text-align: center;
        font-size: 15px;
        color: #333;
        background-color: var(--title-accent-color);
        border-radius: 50% 50%;
        padding: 10px;
    }
    
    .countdown-item:last-child span{
        background-color: var(--accent-color);
    }
    
    .countdown-label {
        text-align: center;
        font-size: 14px;
        color: #666;
        padding-bottom: 10px;
    }
}
@media (min-width: 1024px){.countdown-container{
    .countdown-item {
        display: inline-block;
        
    }
    .countdown-item:not(:last-child) {
        margin-right: 4px;
    }
    
    .countdown-item span {
        width: 26px;
        
        display: block;
        text-align: center;
        font-size: 15px;
        color: #333;
        background-color: var(--title-accent-color);
        border-radius: 50% 50%;
        padding: 10px;
    }
    
    .countdown-item:last-child span{
        background-color: #FCDE00;
    }
    
    .countdown-label {
        text-align: center;
        font-size: 14px;
        color: #666;
        padding-bottom: 10px;
    }
}
}

