/* Скрываем стандартную иконку (плюс) */
.t1119__icon {
  display: none;
}

/* Добавляем стрелку */
.t1119__trigger-button::after {
  content: '▾';
  font-size: 20px;
  color: #C9A84C;
  transition: transform 0.3s ease;
  display: inline-block;
}

/* Поворачиваем стрелку когда открыто */
.t1119__header_opened .t1119__trigger-button::after {
  transform: rotate(180deg);
}



/* Разделитель */
.t1119__header {
  border-bottom: 1px solid rgba(201, 168, 76, 0.2) !important;
  border-top: none !important;
}


body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 99999;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}