/* ============================= */
/* 1. ВСЕГДА ПОДЧЕРКНУТАЯ КНОПКА */
/* ============================= */
.btn-underline .tn-atom {
  text-decoration: underline !important;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}


/* ===================================== */
/* 2. ПОДЧЕРКИВАНИЕ ТОЛЬКО ПРИ НАВЕДЕНИИ */
/* ===================================== */

/* убираем стандартное */
.btn-underline-hover .tn-atom {
  text-decoration: none !important;
  transition: all 0.2s ease;
}

/* подчёркивание только текста при hover */
.btn-underline-hover:hover .tn-atom {
  text-decoration: underline !important;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}


/* Checkbox — прозрачность только обводки и галочки */
.t-checkbox__indicator {
  border-radius: 4px !important;
  border-color: rgba(255,255,255,0.5) !important;
  background-color: transparent !important;
}

/* Галочка */
.t-checkbox__indicator:after {
  border-color: rgba(255,255,255,0.5) !important;
}