<style>
    @import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&display=swap');

    * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

    .black_friday {
        width: 250px;
        height: 140px;
        background: url("assets/images/counter-bg.jpg");
        color: #fff;
        position: fixed;
        bottom: 30px;
        left: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border: 2px solid #fff;
        border-radius: 15px;
        box-shadow: 0px 0px 1px 2px violet, 0px 0px 1px 2px violet inset;
        filter: drop-shadow(0px 0px 5px violet);
        z-index: 9999;
        cursor: pointer;
        background-blend-mode: overlay;
        background-color: #0000008f;
        animation: bf-animate 1s linear infinite;
    }

    @keyframes bf-animate {
        0% {
            filter: drop-shadow(0px 0px 5px purple);
            transform: translateY(-5px);
        }

        50% {
            /* filter: unset; */
            filter: drop-shadow(0px 0px 5px #000);
            box-shadow: 0px 0px 1px 2px #000, 0px 0px 1px 2px #000 inset;
            border-color: purple;
            transform: translateY(0px);
        }

        80% {
            /* filter: unset; */
            filter: drop-shadow(0px 0px 5px #000);
            box-shadow: 0px 0px 1px 2px #000, 0px 0px 1px 2px #000 inset;
            border-color: purple;
        }

        100% {
            filter: drop-shadow(0px 0px 5px purple);
            transform: translateY(-5px);
        }
    }

    .black_friday h2 {
        font-size: 25px;
        font-weight: 200;
        font-weight: 500;
        color: #fff;
        margin: 0;
        padding: 0;
        font-family: 'Yantramanav', sans-serif;
    }

    .black_friday h2 span {
        padding-left: 5px;
        color: #fff;
        font-family: 'Yantramanav', sans-serif;
    }

    .black_friday .black_friday_top {
        width: 80px;
        height: 34px;
        background: transparent;
        color: #fff;
        border: 2px solid #fcffeb;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        box-shadow: 0px 0px 1px 2px #eabb17, 0px 0px 1px 2px #eabb17 inset;
        filter: drop-shadow(0px 0px 5px #000);
        margin-bottom: 5px;
        animation: bf-animate-2 1s linear infinite;
    }

    @keyframes bf-animate-2 {
        0% {
            filter: drop-shadow(0px 0px 5px #eabb17);
        }

        50% {
            /* filter: unset; */
            filter: drop-shadow(0px 0px 5px #e50b48);
            box-shadow: 0px 0px 1px 2px #e50b48, 0px 0px 1px 2px #e50b48 inset;
            border-color: purple;
            transform: translateX(0px);
        }

        80% {
            /* filter: unset; */
            filter: drop-shadow(0px 0px 5px #e50b48);
            box-shadow: 0px 0px 1px 2px #e50b48, 0px 0px 1px 2px #e50b48 inset;
            border-color: purple;
        }

        100% {
            filter: drop-shadow(0px 0px 5px #eabb17);
        }
    }

    .black_friday .black_friday_top p {
        font-size: 20px;
        color: #fff;
        margin: 0;
        padding: 0;
        font-family: 'Yantramanav', sans-serif;
    }

    .black_friday #veteran-countdown {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        width: 80%;
        margin-top: 6px;
        padding: 5px 0;
        color: #fff;
        font-weight: 800;
        border: 2px solid #fff;
        border-right: 0;
        border-left: 0;
        border-radius: 6px;
    }

    .black_friday #veteran-countdown .veteran-counter {
        text-align: center;
    }

    .black_friday #veteran-countdown .veteran-counter span.ping {
        font-size: 18px;
        font-weight: 600;
        font-family: 'Montserrat', sans-serif;
        color: #fff;
        margin: 0;
        padding: 0;
        display: flex;
        border-radius: 4px;
        justify-content: center;
        align-items: center;
        font-family: 'Yantramanav', sans-serif;
    }

    @keyframes ping {
        0% {
            filter: drop-shadow(1px 1px 10px #e50b48);
        }

        50% {
            filter: unset;
        }

        100% {
            filter: drop-shadow(1px 1px 10px #fff);
        }
    }

    .black_friday #veteran-countdown .veteran-counter span::before {
        content: attr(b);
        display: block;
        text-shadow: 0 0 12px rgb(238 238 238 / 50%), 0 0 32px rgb(238 238 238 / 30%), 0 24px 48px rgb(238 238 238 / 10%), 0 -24px 48px rgb(238 238 238 / 10%);
    }

    .black_friday #veteran-countdown .veteran-counter b {
        font-size: 14px !important;
        font-weight: 800;
        letter-spacing: 1px;
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        padding: 0;
    }

    @media screen and (max-width: 1024px) {
        .black_friday {
            width: 200px;
            height: 129px;
        }

        .black_friday .black_friday_top {
            width: 72px;
            height: 30px;
        }

        .black_friday .black_friday_top p {
            font-size: 18px;
        }

        .black_friday h2 {
            font-size: 22px;
        }
    }

    @media screen and (max-width: 767px) {
        .black_friday {
            width: 200px;
            height: 132px;
        }

        .black_friday h2 {
            font-size: 20px;
        }

        .black_friday #veteran-countdown .veteran-counter span.ping {
            font-size: 16px;
        }

        .black_friday .black_friday_top {
            width: 60px;
            height: 28px;
        }
    }
</style>