﻿
.english-ticker .title {
    float: left;
}

@font-face {
    font-family: 'NafeesWebNaskh';
    src: url('../fonts/NafeesWebNaskh.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'NafeesWebNaskh', 'Source Sans Pro', 'Arial', 'sans-serif' !important;
}

.customNewsThumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
@media (max-width: 768px) {
    .customNewsThumbList {
        height: 300px;
    }
}
.customNewsThumbList {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* For small screens (e.g., mobile) */
@media (max-width: 768px) {
    .customNewsThumbList {
        height: auto;
    }
}

/* On small screens, make it taller */
@media (max-width: 768px) {
    .customNewsThumb {
        min-height: 250px;
    }
}

.echo-live-btn {
    background-color: #da0000;
    color: #fff !important;
    font-weight: 600;
    border-radius: 20px;
    padding: 0px 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .echo-live-btn:hover {
        background-color: #ff4962;
        text-decoration: none;
    }
.blink-dot::before {
    content: "●";
    color: #fff;
    font-size: 12px;
    animation: blink 1s infinite;
}
.echo-live-btn2:hover {
    background-color: #da0000;
    color: #fff !important;
    text-decoration: none;
    border: none;
}

.echo-live-btn2 {
    background-color: #fff;
    color: #da0000 !important;
    font-weight: bolder;
    border-radius: 20px;
    padding: 5px 20px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: x-large;
}
    .echo-live-btn2:hover .blink-dot2::before {
        color: #fff !important;
    }

.blink-dot2::before {
    content: "●";
    color: #ff0033;
    font-size: 24px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

