.data-updated-span {
	width: 100%;
	margin-top: 0px;
    margin-bottom: 12px;
    text-align: center;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 4px 8px 4px 4px;
	top: 7%;
	position: relative;
	border-radius: 4px;
	background: linear-gradient(115deg,#00AA19 45%,#00aa1966 50%,#00AA19 55%);
	background-size: 220% 100%;
	animation: shine 2s infinite;
}
.data-text-wrapper {
    position: relative;
    width: fit-content;
    background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 100%);
    -webkit-background-clip: text !important;
    background-clip: text;
    -webkit-text-fill-color: #FFFFFF;
    font-weight: 500;
    color: transparent;
    font-size: 12px !important;
    letter-spacing: 0%;
    line-height: 100%;
    white-space: nowrap;
    margin-bottom: 0px;
}
@keyframes shine {
	0% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@media (min-width:768px) {
    .data-updated-container {
        display: flex;
        margin-bottom: 20px;
    }
    .data-updated-span {
        width: fit-content;
        margin: 0px;
    }
}