/* Основной стиль */
.underButton {
    text-decoration: underline !important;
    text-decoration-color: #25334F !important;
    transition: text-decoration-color 0.3s ease !important;
}

/* При наведении */
.underButton:hover {
    text-decoration-color: #DEE2E3 !important; 
}

/* Основной стиль */
.underButtonRed {
    text-decoration: underline !important;
    text-decoration-color: #EC5E4C !important; 
    transition: text-decoration-color 0.3s ease !important;
}

/* При наведении */
.underButtonRed:hover {
    text-decoration-color: #DEE2E3 !important; 
}

/* Скрываем ТОЛЬКО uc-desktop, uc-tablet и uc-mobile по умолчанию */
.uc-desktop,
.uc-tablet,
.uc-mobile {
  display: none !important;
}

/* Десктоп (1920px+) */
@media (min-width: 1920px) {
  .uc-desktop {
    display: block !important;
  }
}

/* Планшет (1200px-1919px) */
@media (min-width: 1200px) and (max-width: 1919px) {
  .uc-tablet {
    display: block !important;
  }
}

/* Мобильный (0-1199px) */
@media (max-width: 1199px) {
  .uc-mobile {
    display: block !important;
  }
}