.news-tickers {
    /* background-color: #333; */
       padding: 10px 0;
    height: 200px; /* Set height to make scrolling visible */
    overflow: hidden;
    position: relative;
	color:white;

}

.news-tickers .ticker-items {
    display: inline-block;
   animation: scrollUp 10s linear infinite;

}

.news-tickers:hover .ticker-items {
    animation-play-state: paused;
}

.news-tickers .ticker-item {
    display: block;
    padding: 10px 0;
    text-align: left;
	color: white;
}

/* Keyframes for bottom to top scrolling */
@keyframes scrollUp {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

/* OVERLAY (background) */
.popup-overlays {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 0;
}

/* Overlay fade-in */
.popup-overlays.show {
    display: flex;
    animation: fadeIn 0.4s ease forwards;
}

/* Overlay fade-out */
.popup-overlays.hide {
    animation: fadeOut 0.4s ease forwards;
}

/* Fade animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

/* POPUP BOX (with animation) */
.popup-boxs {
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    max-width: 90%;
    max-height: 90%;
    opacity: 0;
    transform: scale(0.7);
}

/* Popup open animation */
.popup-boxs.animate-in {
    animation: popupShow 0.4s ease forwards;
}

/* Popup close animation */
.popup-boxs.animate-out {
    animation: popupHide 0.4s ease forwards;
}

/* Zoom in animation */
@keyframes popupShow {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Zoom out animation */
@keyframes popupHide {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.7);
    }
}

/* Popup Image */
.popup-boxs img {
    width: 100%;
    border-radius: 10px;
}

/* X Close Button */
.close-x {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #1b4965;
    color: #fff;
    font-size: 22px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px #000;
    z-index: 999;
}

        /* Popup box */
/*
.popup-overlays {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.popup-boxs {
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    max-width: 90%;
    max-height: 90%;
}
*/

/*
.popup-boxs img {
    width: 100%;
    border-radius: 10px;
}
*/

/* X close button */
/*
.close-x {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff0000;
    color: #fff;
    font-size: 22px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px #000;
}
*/

