/* hack to hide timer default */
.wd-timer {
    display: none !important;
}

.custom-countdown-box {
    background: linear-gradient(135deg, #3b8df5, #4cc0f6);
    color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 340px;
    font-family: Arial, sans-serif;
    position: relative;
}

.custom-countdown-box .custom-heading {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.custom-countdown-box .custom-subheading {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: white;
}

.custom-countdown-box .ends-in {
    margin: 0 0 10px 0;
    font-weight: bold;
    color: white;
}

.custom-countdown {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}

.custom-countdown .time-part {
    display: flex;
    align-items: center;
}

.custom-countdown .number {
    background: white;
    color: #3b8df5;
    padding: 2px 14px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
}

.custom-countdown .label {
    margin-left: 4px;
    font-size: 12px;
    color: white;
}

.clock-icon {
    position: absolute;
    top: 10px;
    right: 10px;
}

.custom-countdown {
    flex-wrap: wrap;
}

@media (max-width: 768px) {

    .custom-countdown-box {
        max-width: 100%;
    }

    .custom-countdown .number {
        background: white;
        color: #3b8df5;
        padding: 2px 8px;
        border-radius: 5px;
        font-weight: bold;
        font-size: 16px;
        display: inline-block;
    }

    .custom-countdown .time-part {
        margin: 0;
    }
}