.t-store__card__mark {
    padding: 10px 20px;
	font-size: 14px;
	font-weight: 600;
	font-family: 'Montserrat', Arial, sans-serif;
	color: #333f19;
	background: linear-gradient(45deg, #ff4e50, #f9d423, #42e695, #3bb2b8);
	background-size: 200% 200%;
	border-radius: 20px;
	text-transform: uppercase;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	animation: gradient-animation 3s ease infinite !important;
	height: unset;
	width: 100%;
	display: inline-block;
}
@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}