/**
* 2025 6UVES.COM
*
* NOTICE OF LICENSE
*
* This file is licenced under the Software License Agreement.
* With the purchase or the installation of the software in your application
* you accept the licence agreement
*
* @author    6UVES.COM <info@6uves.com>
* @copyright 2025 6UVES.COM
* @license   Commercial license (You can not resell or redistribute this software.)
*
*/

.shipping-countdown-container {
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin: 5px 0;
    padding: 15px;
    box-shadow: 0 2px 4px #04252229, 0 0 4px #0425221f;
}
.countdown-timer {
    display: none;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}
.countdown-timer.initialized {
    display: flex;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.countdown-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}
.countdown-item {
    .countdown-days, 
    .countdown-hours, 
    .countdown-minutes, 
    .countdown-seconds {
        font-size: 1.4em;
        font-weight: bold;
        line-height: 0.8;
    }
}
.next-shipping-info {
    font-size: 1rem;
}
@media (max-width: 768px) {
   
}