/* Липкая кнопка на всю ширину с закруглёнными углами */
.uc-fixed-buy {
  position: fixed !important;   /* кнопка всегда видна */
  bottom: 0 !important;         /* у самой нижней границы экрана */
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  width: 100% !important;       /* на всю ширину */
  text-align: center !important;
  background: transparent;
  padding: 0 !important;
}

/* сама кнопка внутри блока */
.uc-fixed-buy .t-btn,
.uc-fixed-buy a {
  width: 90% !important;        /* кнопка чуть уже блока, чтобы было красиво */
  margin: 10px auto !important; /* отступ сверху/снизу */
  border-radius: 15px !important; /* закруглённые углы */
  display: block !important;
  padding: 15px 0 !important;   /* высота кнопки */
  font-size: 18px !important;
}

/* мобильная версия */
@media screen and (max-width: 768px) {
  .uc-fixed-buy .t-btn {
    width: 95% !important;
    margin: 10px auto !important;
    padding: 12px 0 !important;
    font-size: 16px !important;
  }
}