[data-field-name="privacy"] {
    display: flex!important;
    flex-direction: row-reverse;
    gap: 7px;
}

[data-field-name="privacy"] .t-input-title {
    font-size: 12px!important;
    width: 100%;
    flex-grow: 1;
}

[data-field-name="privacy"] .t-input-block {
    width: auto!important;
    flex-shrink: 0;
}

.video-wrapper {
    background-color: #d9d6cc;
}

#rec3767102401 .t3112__burger_container  {
    display: none!important;
}


.t868__code-wrap {
    padding: 20px;
}

.t868__code-wrap h3 {
    font-size: 24px;
    color: #204873;
    margin-bottom: 20px;
}

.t868__code-wrap p {
    font-size: 14px;
    line-height: 1.55;
    color: #282e34;
    font-family: var(--t-text-font);
    padding: 10px 0;
}









.shine-button {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.shine-button:hover {
  transform: translateY(-2px);
}

/* Сам блик */
.shine-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}