/*=========================================================
 DP Breaking Popup
=========================================================*/

/* Overlay */
#dp-breaking-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(3px);
    z-index:99998;
}

/* Popup Box */
#dp-breaking-popup{
    display:none;
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%) scale(.8);
    width:520px;
    max-width:92%;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 25px 70px rgba(0,0,0,.35);
    z-index:99999;
    transition:.35s ease;
}

/* Show Animation */
#dp-breaking-popup.dp-popup-show{
    transform:translate(-50%,-50%) scale(1);
}

/* Header */
.dp-popup-header{
    background:#d60000;
    color:#fff;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    text-align:center;
    padding:14px;
    letter-spacing:1px;
    position:relative;
}

/* Live Dot */
.dp-live-dot{
    width:11px;
    height:11px;
    background:#fff;
    border-radius:50%;
    display:inline-block;
    margin-right:8px;
    animation:blink 1s infinite;
}

@keyframes blink{
    0%{opacity:1;}
    50%{opacity:.2;}
    100%{opacity:1;}
}

/* Close */
#dp-popup-close{
    position:absolute;
    top:12px;
    right:16px;
    color:#fff;
    font-size:30px;
    font-weight:bold;
    cursor:pointer;
    z-index:2;
    transition:.2s;
}

#dp-popup-close:hover{
    transform:rotate(90deg);
}

/* Image */
.dp-popup-image{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
}

/* Content */
.dp-popup-content{
    padding:22px;
}

/* Title */
.dp-popup-content h2{
    margin:0 0 12px;
    font-size:26px;
    line-height:1.35;
}

.dp-popup-content h2 a{
    color:#111;
    text-decoration:none;
}

.dp-popup-content h2 a:hover{
    color:#d60000;
}

/* Excerpt */
.dp-popup-content p{
    color:#555;
    font-size:16px;
    line-height:1.7;
    margin-bottom:22px;
}

/* Button */
.dp-read-more{
    display:inline-block;
    background:#d60000;
    color:#fff;
    padding:12px 22px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.dp-read-more:hover{
    background:#000;
    color:#fff;
}

/* Responsive */

@media(max-width:768px){

#dp-breaking-popup{

    width:95%;
    border-radius:14px;

}

.dp-popup-image{

    height:210px;

}

.dp-popup-content{

    padding:18px;

}

.dp-popup-content h2{

    font-size:20px;

}

.dp-popup-content p{

    font-size:15px;

}

.dp-read-more{

    width:100%;
    text-align:center;

}

}

@media(max-width:480px){

.dp-popup-image{

    height:180px;

}

.dp-popup-header{

    font-size:15px;

    padding:12px;

}

#dp-popup-close{

    font-size:26px;

    top:10px;

    right:14px;

}

.dp-popup-content h2{

    font-size:18px;

}

.dp-popup-content p{

    font-size:14px;

}

}

#dp-popup-close{
    position:absolute;
    top:12px;
    right:16px;
    width:40px;
    height:40px;
    border:none;
    background:transparent;
    color:#fff;
    font-size:30px;
    font-weight:bold;
    cursor:pointer;
    z-index:999999;
    line-height:40px;
    transition:.2s;
}