.xybox-title-badge {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    border: 1.5px solid #ccc;
    align-items: center;
    border-radius: 5px;
    padding: 0px 4px;
    margin-right: 3px;
    height: 19px;
    font-size: 12px;
    margin-top: 0px;
    top: -1px;
}

.xybox-title-badge:before {
position:absolute;
content:" ";
display:block;
left:-100%;
top:-5px;
width:15px;
height:145%;
background-image:linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,0.5),rgba(255,255,255,0));
animation:sweepTitle 3s ease-in-out infinite;
transform:rotate(28deg);
}
@keyframes sweepTitle {
0% {
left:-100%;
}
100% {
left:100%;
}
}