
.tk-custom-label {
 display: inline-block;
 padding: 8px 14px;
 font-size: 12px;
 font-weight: 600;
 line-height: 1;
 letter-spacing: 0.02em;
 text-decoration: none;


 color: var(--tk-label-text);
 background: var(--tk-label-bg);
 border: 1px solid var(--tk-label-border);


 transition:
   background-color 0.18s ease,
   color 0.18s ease,
   border-color 0.18s ease;
}


.tk-custom-label:hover {
 background: var(--tk-label-bg-hover);
}


