.news-marquee {
    width: 100%;
    overflow: hidden;
    background: #fffae0e5;
    white-space: nowrap;
    position: relative;
}

.news-track {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 120s linear infinite; /* Slower scroll */
}

.news-marquee span {
    font-size: 15px;
    color: #222;
    padding:4px 4px 4px 0px;
    display: inline-block;
    white-space: nowrap;
    font-weight: bold;
}
.svg_reg{
    color: #ff0000 !important
}

.bd_red_brand{
    background: #212529;
}
.social_mobile{
    background: #212529;
}

.mag_pad{
    padding-top: 5px;
    padding-bottom: 5px;
    color: #fff;
    font-size: 15px;
}

/* Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pause on hover */
.news-marquee:hover .news-track {
    animation-play-state: paused;
}

/* 💡 Slow it down even more on mobile */
@media (max-width: 768px) {
    .news-marquee span {
        font-size: 13px;
        padding: 4px 16px;
    }
    .news-track {
        animation-duration: 200s; /* Much slower on mobile */
    }
    .mag_pad{
        padding-top: 4px;
        padding-bottom: 4px;
        color: #fff;
        font-size: 12px;
    }
}

.breaking-news-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #ff0000;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: "StarNews","Work Sans","IBM Plex Sans Arabic",sans-serif;
    gap: 15px;
}

/* Softer blinking arrow */
.arrow {
    font-size: 23px;
    animation: arrowBlink 1.2s ease-in-out infinite;
    color: yellow;;
}

@keyframes arrowBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Pulse + color change for text */
.breaking-label {
    animation: pulseColor 3s ease-in-out infinite;
    font-size: 16px;
}

@keyframes pulseColor {
    0%, 100% {
        font-size: 16px;
        color: #fff;
    }
    50% {
        font-size: 18px;
        color: #fff;
    }
}


.star {
    font-size: 24px;
    cursor: pointer;
    color: #FFD700;
}

.star.selected {
    color: #FFD700; /* Yellow for selected stars */
}

.rates_stars {
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
}

.rating-container {
    direction: rtl;
    unicode-bidi: bidi-override;
}

.rating-container .rates_stars:hover,
.rating-container .rates_stars:hover ~ .rates_stars {
    color: #f5c518;
}

.rates_stars.selected {
    color: #f5c518;
}
.logo_images{
    height: 15px;
    width: 15px;
    margin-top: -2px;
}











.bn-breaking-news {
    display: block;
    width: 100%;
    border-bottom: solid 1px #e0e0e0;
    background: #FFF;
    height: 40px;
    box-sizing: border-box;
    position: relative;
    line-height: 40px;
    overflow: hidden;
    border-radius: 2px;
    text-align: auto;

}

@media (max-width: 576px) {

    .bn-news ul li a {
        font-size: 11px !important;
    }

    .bn-label {
        font-size: 11px !important;
    }

}




.bn-breaking-news * {
    box-sizing: border-box;
}
.bn-breaking-news.bn-fixed-top {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
}
.bn-breaking-news.bn-fixed-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
}
.bn-label {
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    position: absolute;
    background-color: #ff0000;
    text-align: center;
    color: #FFF;
    font-weight: 700;
    z-index: 4;
    padding: 0 15px;
    white-space: nowrap;
}
.bn-news {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    right: 0;
    overflow: hidden;
    padding-left: 10px;
}
.bn-news ul {

    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    left: 0;



}
.bn-news ul li {
    white-space: nowrap;

    text-overflow: ellipsis;
    text-decoration: none;
    -webkit-transition: color .5s linear;
    -moz-transition: color .5s linear;
    -o-transition: color .5s linear;
    transition: color .5s linear;

    width: 100%;
    display: block;
    color: #333;
}
.bn-news ul li a {
    white-space: nowrap;
    text-overflow: ellipsis;
    text-decoration: none;
    padding: 0 7px;
    color: #333;
    font-weight: 700;
    display: block;
    overflow: hidden;
    font-size: 13px;
    z-index: 3;
}
.bn-news ul li a:hover {
    color: #ff0000;
}
.bn-loader-text {
    padding: 0 10px;
}
.bn-seperator {
    display: inline-block;
    float: left;
    margin-right: 1px;
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}
.bn-seperator.bn-news-dot {
    margin-right: 0;
}
.bn-seperator.bn-news-dot:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    top: 50%;
    margin-top: -4px;
    left: 50%;
    margin-left: -4px;
}
.bn-prefix {
    color: #d65d7a;
    margin-right: 15px;
    padding-left: 10px;
}
.bn-positive {
    color: #0b8457;
    font-weight: 700;
}
.bn-negative {
    color: #dc2f2f;
    font-weight: 700;
}
.bn-controls {
    width: auto;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    position: absolute;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.bn-controls button {
    width: 30px;
    float: left;
    height: 100%;
    cursor: pointer;
    border: none;
    border-left: solid 1px #EEE;
    text-align: center;
    background-color: #f6f6f6;
    outline: none;
}
.bn-controls button:hover {
    background-color: #EEE;
}
.bn-arrow {
    margin: 0;
    display: inline-block;
    height: 8px;
    position: relative;
    width: 8px;
    top: -2px;
}
.bn-arrow::after {
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-right-style: solid;
    border-right-width: 2px;
    content: '';
    display: inline-block;
    height: 8px;
    left: 0;
    position: absolute;
    top: 0;
    width: 8px;
}
.bn-arrow.bn-next {
    -moz-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
    left: -3px;
}
.bn-arrow.bn-prev {
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    left: 3px;
}
.bn-arrow::after {
    border-color: #999;
}
.bn-arrow::before {
    background-color: #999;
}
.bn-play {
    position: relative;
    background: #999;
    width: 0;
    height: 12px;
    display: inline-block;
    margin-left: -5px;
}
.bn-play::after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-left-color: #999;
    border-width: 8px;
    margin-top: -8px;
}
.bn-pause {
    position: relative;
    width: 0;
    height: 14px;
    display: inline-block;
    top: 1px;
    left: -1px;
}
.bn-pause::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    left: 3px;
    background-color: #999;
}
.bn-pause::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    left: -3px;
    background-color: #999;
}
.bn-direction-rtl {
    direction: rtl;
}
.bn-direction-rtl .bn-label {
    left: auto;
    right: 0;
}
.bn-direction-rtl .bn-controls {
    right: auto;
    left: 0;
}
.bn-direction-rtl .bn-seperator {
    margin-left: 5px;
    margin-right: 0;
    float: right;
}
.bn-direction-rtl .bn-prefix {
    margin-left: 15px;
    margin-right: 0;
    padding-left: 0;
    padding-right: 10px;
}
.bn-direction-rtl .bn-controls button {
    border-left: none;
    border-right: solid 1px #EEE;
}
.bn-effect-scroll .bn-news ul {
    display: block;
    width: 100%;
    position: relative;

}
.bn-effect-scroll .bn-news ul li {
    display: list-item;
    float: left;
    position: relative;
    width: auto;

}
.bn-effect-scroll.bn-direction-rtl .bn-news ul li {
    float: left;

}

