.t171 {
    z-index: 99999999999 !important;
}
#rec1160100796 .t395__wrapper_mobile
 {
    z-index: 9999999;
}

/* Стили плавающей кнопки В ПРАВОМ УГЛУ */
.floating-btn {
  position: fixed;
  bottom: 120px;          /* Отступ сверху */
  right: 15px;        /* Отступ справа */
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px); /* Анимация появления сверху */
  transition: all 0.3s ease;
}

.floating-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #ff3366; /* Ваш цвет */
  color: white !important;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  font-size: 21px;
  box-shadow: 0 4px 20px rgba(255, 51, 102, 0.3);
  transition: all 0.3s ease;
  font-family: 'TildaSans', Arial, sans-serif;
  border: none;
  text-transform: uppercase;
}

.floating-btn-link:hover {
  background: #e62e5c;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 51, 102, 0.4);
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
  .floating-btn {
    top: 120px;
    right: 15px;
  }
  
  .floating-btn-link {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* Стили плавающей кнопки 2 В ПРАВОМ УГЛУ */
.floating-btn1 {
    display:none;
  position: fixed;
  bottom: 320px;          /* Отступ сверху */
  right: 15px;        /* Отступ справа */
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px); /* Анимация появления сверху */
  transition: all 0.3s ease;
}

.floating-btn1.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-btn-link1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #00468c; /* Ваш цвет */
  color: white !important;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  font-size: 21px;
  box-shadow: 0 4px 20px rgba(255, 51, 102, 0.3);
  transition: all 0.3s ease;
  font-family: 'TildaSans', Arial, sans-serif;
  border: none;
  text-transform: uppercase;
}

.floating-btn-link1:hover {
  background: #e62e5c;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 51, 102, 0.4);
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
  .floating-btn1 {
    top: 180px;
    right: 15px;
    display:block;
  }
  
  .floating-btn-link1 {
    padding: 10px 16px;
    font-size: 13px;
  }
}