.uc-call-btn {
  position: fixed;       /* закрепляем на экране */
  bottom: 15px;          /* отступ снизу */
  right: 15px;           /* отступ справа */
  width: 54px;           
  height: 54px;
  border-radius: 50%;    
  background: #f0a406;   
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* легкая тень */
  z-index: 999999;       
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.uc-call-btn svg {
  width: 24px;
  height: 24px;
  fill: black;
}

.uc-call-btn:hover {
  opacity: 0.85;
}


