.election-countdown-card {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.98),
            rgba(250, 250, 250, 0.98)
        );

    border: 1px solid #f1f1f1;
    border-radius: 12px;

    padding: 38px 45px;

    /* box-shadow: 0 4px 22px rgba(0, 0, 0, 0.03); */
    box-shadow: 0 4px 22px rgb(63 61 61 / 14%);
}


/* =========================
   BRAND
========================= */

.election-brand {
    position: relative;
    z-index: 2;
}

.election-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 115px;
    height: 115px;

    flex: 0 0 115px;

    font-size: 4.2rem;

    color: #111;

    /* border-bottom: 3px solid #a6282f; */
}

.election-brand-title {
    font-size: 2.5rem;
    font-weight: 900;

    line-height: 0.95;

    letter-spacing: -1px;
}

.election-brand-title span {
    display: block;
}

.election-brand-title .text-danger {
    color: #b2262d !important;
}

.election-brand-line {
    display: flex;

    margin-top: 14px;

    width: 100%;
    height: 3px;
}

.election-brand-line span {
    flex: 1;
}

.election-brand-line span:nth-child(1) {
    background: #111;
}

.election-brand-line span:nth-child(2) {
    background: #b2262d;
}

.election-brand-line span:nth-child(3) {
    background: #087636;
}


/* =========================
   COUNTDOWN
========================= */

.countdown-heading {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;
}

.countdown-heading h6 {
    font-size: 1rem;
    font-weight: 800;

    color: #171717;

    white-space: nowrap;
}

.countdown-heading span {
    display: block;

    width: 60px;
    height: 1px;

    background: #df777b;
}


.election-countdown {
    max-width: 620px;
    margin: auto;
}

.countdown-item {
    border-right: 1px solid #d9d9d9;

    padding: 0 15px;
}

.countdown-number {
    color: #b2262d;

    font-size: 3.8rem;
    font-weight: 800;

    line-height: 1;

    letter-spacing: -2px;
}

.countdown-label {
    margin-top: 12px;

    color: #222;

    font-size: 1rem;
    font-weight: 600;
}


/* =========================
   BUTTON
========================= */

.election-btn {
    padding: 12px 28px;

    border: 0;

    background: #b2262d;
    color: #fff;

    font-size: 0.95rem;
    font-weight: 700;

    border-radius: 5px;

    transition: all 0.2s ease;
}

.election-btn:hover {
    background: #8f1e24;
    color: #fff;

    transform: translateY(-1px);
}


/* =========================
   RIGHT META
========================= */

.election-meta {
    border-left: 1px solid #d9d9d9;

    padding-left: 28px;
}

.election-date {
    color: #111;

    font-size: 0.9rem;
    font-weight: 700;
}

.election-date i {
    color: #b2262d;

    font-size: 1.5rem;
}

.election-meta-line {
    width: 100%;

    height: 1px;

    margin: 10px 0 16px;

    background: #df777b;
}

.election-tagline {
    color: #111;

    font-size: 1.1rem;
    font-weight: 700;

    line-height: 1.45;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199.98px) {

    .election-countdown-card {
        padding: 30px;
    }

    .election-brand-title {
        font-size: 2rem;
    }

    .countdown-number {
        font-size: 3rem;
    }

    .election-icon {
        width: 90px;
        height: 90px;

        flex-basis: 90px;

        font-size: 3rem;
    }

}


@media (max-width: 991.98px) {

    .election-countdown-card {
        padding: 30px 24px;
    }

    .election-brand {
        justify-content: center;
    }

    .election-brand-title {
        font-size: 2.3rem;
    }

    .election-meta {
        border-left: 0;

        padding-left: 0;

        text-align: center;
    }

    .election-date {
        justify-content: center;
    }

    .election-meta-line {
        width: 160px;

        margin-left: auto;
        margin-right: auto;
    }

}


@media (max-width: 575.98px) {

    .election-icon img {
        width: 80px;
        height: auto;
    }

    .election-countdown-card {
        padding: 24px 16px;
    }

    .election-brand {
        align-items: center;
    }

    .election-icon {
        width: 75px;
        height: 75px;

        flex-basis: 75px;

        font-size: 2.6rem;
    }

    .election-brand-title {
        font-size: 1.9rem;
    }

    .countdown-heading {
        gap: 8px;
    }

    .countdown-heading h6 {
        font-size: 0.78rem;
    }

    .countdown-heading span {
        width: 28px;
    }

    .countdown-item {
        padding: 0 7px;
    }

    .countdown-number {
        font-size: 2.0rem;
    }

    .countdown-label {
        margin-top: 8px;
        font-size: 0.72rem;
    }

    .election-tagline {
        font-size: 1rem;
    }

    .election-btn {
        width: 100%;
        padding: 12px 15px;
    }

    .mb-small-3 {
        margin-bottom: 1rem !important;
    }

    .px-sm-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

}