/* Делает скругление окна всех попапов BF503 */
.t-popup[data-block-type="bf503"] .t-popup__container,
.t-popup[data-block-name="bf503"] .t-popup__container,
.t-popup .t-popup__container[data-block-type="bf503"],
/* универсальный вариант на случай, если точный атрибут отсутствует */
.t-popup .t-popup__container {
  border-radius: 20px !important;
  overflow: hidden; /* чтобы содержимое тоже подчинялось скруглению */
}

.uc-custom-links-bloc a {
  position: relative;
  text-decoration: none;
  color: inherit;
}

.uc-custom-links-bloc a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #ffbb00; /* Цвет линии */
  transition: width 0.3s ease-in-out;
}

.uc-custom-links-bloc a:hover::after {
  width: 100%;
}