/* === Event Countdown Widget Styles === */

.ecw-hero {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.ecw-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.ecw-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.ecw-content h2 {
    font-size: 5rem;
    margin-bottom: 25px;
    color: #fff;
}

.ecw-content h2 span {
    line-height: 75px;
    ;
}

.ecw-countdown {
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
    margin-top: 75px;
}

.ecw-live-btn {
    display: inline-block;
    background: #df0039;
    color: #fff;
    width: max-content;
    margin: 0 auto;
    margin-top: -15px;
    padding: 22px 22px;
    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    opacity: 0;
    transition: opacity 1s ease;
}

.ecw-live-btn:hover {
    color: #fff;
    background: #003690;
}

.ecw-live-btn.show {
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}