 .wr_transferContent{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
       }
       #transferContent{
            flex-grow: 1;
            max-width: 650px;

       }
        /* Контейнер формы */
        .tf-form-container {
            max-width: 300px;
            background-color: #ffffff;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            padding: 20px;
            position: relative;
            overflow: hidden;
            box-sizing: border-box;
            flex-grow: 1;
        }

        /* Декоративная линия */
        .tf-top-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(to right, #357ebd, #e3007b);
        }

        /* Шапка с переключателем языка */
        .tf-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
            margin-top: 8px;
        }
        .tf-title {
            font-size: 18px;
            font-weight: 700;
            color: #1f2937;
            margin: 0;
        }
          .tf-lang-switch {
            display: flex;
            gap: 8px;
            background-color: #f3f4f6;
            padding: 4px;
            border-radius: 9999px;
        }
        #transferForm .tf-lang-img {
            width: 24px !important;
            height: 24px !important;
            cursor: pointer;
            object-fit: cover;
            border-radius: 50%;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
            transition: transform 0.2s;
        }
        .tf-lang-img:hover { transform: scale(1.1); }

        /* Базовые стили полей ввода */
        .tf-input-modern {
            width: 100% !important;
            background-color: #f8fafc !important;
            border: 1px solid #e2e8f0 !important;
            border-radius: 12px !important;
            padding: 10px 14px !important;
            font-size: 14px !important;
            color: #0f172a !important;
            transition: all 0.3s ease !important;
            outline: none !important;
            box-sizing: border-box !important;
            font-family: inherit !important;
        }
        .tf-input-modern:focus {
            background-color: #ffffff !important;
            border-color: #e3007b !important;
            box-shadow: 0 0 0 3px rgba(227, 0, 123, 0.1) !important;
        }
        .tf-input-modern::placeholder {
            color: #94a3b8 !important;
        }

        /* Заголовки полей */
        .tf-label-modern {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #334155;
            margin-bottom: 6px;
            margin-top: 16px;
        }
        .tf-label-tight {
            line-height: 1.2;
            height: 32px;
            display: flex;
            align-items: flex-end;
            margin-bottom: 6px;
        }

        /* Сетка для рядов (пассажиры, телефоны) */
        .tf-flex-row {
            display: flex;
            gap: 12px;
        }
        .tf-w-half { width: 50%; }
        .tf-w-35 { width: 35% !important; padding-left: 4px !important; padding-right: 4px !important; cursor: pointer;}
        .tf-w-65 { width: 65%; }

        /* Контрол счетчика (+ / -) */
        .tf-counter-wrapper {
            display: flex;
            align-items: center;
            background-color: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            overflow: hidden;
            height: 40px;
        }
        .tf-counter-btn {
            width: 32px;
            height: 100%;
            background: transparent;
            border: none;
            color: #e3007b;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .tf-counter-btn:hover { background-color: #f1f5f9; }
        .tf-counter-btn:active { background-color: #e2e8f0; }
        .tf-counter-input {
            flex: 1;
            width: 100%;
            border: none !important;
            background: transparent !important;
            text-align: center;
            font-size: 14px !important;
            font-weight: 600;
            color: #0f172a !important;
            padding: 0 !important;
            outline: none !important;
        }
        .tf-counter-input:focus {
            box-shadow: none !important;
        }

        /* Блок детей */
        .tf-child-box {
            display: flex;
            gap: 8px;
            padding: 8px;
            background-color: rgba(253, 242, 248, 0.5); /* pink-50/50 */
            border: 1px solid #fce7f3; /* pink-100 */
            border-radius: 12px;
            margin-top: 8px;
        }
        .tf-child-age { width: 33.333%; text-align: center; padding: 8px !important; font-size: 14px !important;}
        .tf-child-seat { width: 66.666%; padding: 8px !important; font-size: 14px !important; cursor: pointer;}

        /* Чекбоксы */
        .tf-cb-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-top: 12px;
            cursor: pointer;
            user-select: none;
        }
        .tf-cb-hidden {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }
        .tf-cb-custom {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            background-color: #f8fafc;
            border: 2px solid #cbd5e1;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            margin-top: 2px;
        }
        .tf-cb-hidden:checked ~ .tf-cb-custom {
            background-color: #e3007b !important;
            border-color: #e3007b !important;
        }
        .tf-cb-custom::after {
            content: "";
            display: none !important;
            width: 5px !important;
            height: 10px !important;
            border: solid white !important;
            border-width: 0 2px 2px 0 !important;
            transform: rotate(45deg) !important;
            margin-bottom: 2px !important;
        }
        .tf-cb-hidden:checked ~ .tf-cb-custom::after {
            display: block !important;
        }
        .tf-cb-text {
            font-size: 13px;
            color: #475569;
            line-height: 1.4;
            margin-top: 3px;
        }

        /* Блок политик */
        .tf-policies-box {
            margin-top: 16px;
            background-color: #f9fafb;
            padding: 12px;
            border-radius: 12px;
            border: 1px solid #f3f4f6;
        }
        .tf-policies-box .tf-cb-wrapper { margin-top: 8px; }
        .tf-policies-box .tf-cb-wrapper:first-child { margin-top: 0; }
        .tf-policies-box .tf-cb-text { font-size: 11px; }

        /* Ошибки */
        .tf-error-shadow {
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3) !important;
            border-color: #ef4444 !important;
        }
        .tf-cb-error {
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3) !important;
            border-color: #ef4444 !important;
        }
        .tf-error-text {
            font-size: 11px;
            color: #ef4444;
            margin-top: 4px;
            margin-bottom: 0;
            font-weight: 500;
            display: none;
        }

        /* Утилиты */
        .tf-hidden { display: none !important; }
        .tf-mt-2 { margin-top: 8px; }
        textarea.tf-input-modern { resize: none; }
        textarea.tf-input-modern::-webkit-scrollbar { width: 6px; }
        textarea.tf-input-modern::-webkit-scrollbar-track { background: transparent; }
        textarea.tf-input-modern::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }

        /* Кнопка отправки */
        .tf-submit-btn {
            width: 100%;
            margin-top: 24px;
            color: #fff;
            background-color: #e3007b;
            padding: 15px 0 17px 0;
            border-radius: 94px;
            font-size: 18px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.3);
            transition: all 0.3s ease;
            font-family: inherit;
        }
        .tf-submit-btn:hover {
            box-shadow: 0 10px 25px -3px rgba(236, 72, 153, 0.5);
            transform: translateY(-2px);
        }

        /* Honeypot - скрытое поле */
        .hp-hidden {
            position: absolute;
            left: -9999px;
            opacity: 0;
            pointer-events: none;
        }

        /* Contenteditable div для телефонов */
        .tf-phone-edit {
            width: 100% !important;
            background-color: #f8fafc !important;
            border: 1px solid #e2e8f0 !important;
            border-radius: 12px !important;
            padding: 10px 14px !important;
            font-size: 14px !important;
            color: #0f172a !important;
            transition: all 0.3s ease !important;
            outline: none !important;
            box-sizing: border-box !important;
            font-family: inherit !important;
            min-height: 40px;
            display: flex;
            align-items: center;
        }
        .tf-phone-edit:focus {
            background-color: #ffffff !important;
            border-color: #e3007b !important;
            box-shadow: 0 0 0 3px rgba(227, 0, 123, 0.1) !important;
        }
        .tf-phone-edit:empty::before {
            content: attr(data-placeholder);
            color: #94a3b8;
        }

        /* Анимация */
        .tf-fade-in { animation: tfFadeIn 0.3s ease-in-out; }
        @keyframes tfFadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
        
            .wr-chekbox.consent-error .podskazka-title {
    color: #d32f2f !important;
    border-bottom: 2px solid rgba(211, 47, 47, 0.6) !important;
    padding-bottom: 4px !important;
    transition: all 0.2s ease;
}
.wr-chekbox:not(.consent-error) .podskazka-title {
    border-bottom-color: transparent !important;
}
.form-error-global {
    color: #b71c1c !important;
    background: #ffebee !important;
    padding: 10px 14px !important;
    margin: 10px 0 !important;
    border-left: 3px solid #d32f2f !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    display: none !important;
    border-radius: 4px;
}





          

   /* Контейнер блока */
  .vdl-container {
    max-width: 500px;
    margin: 20px auto;
    font-family: sans-serif;
    padding-left: 30px;
  }

  /* Ряд согласия */
  .vdl-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
    cursor: pointer; /* Делаем всю строку кликабельной */
  }

  /* Кастомный чекбокс (без розового) */
  .vdl-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid #ffffff; /* Нейтральный серый цвет */
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
  }

  /* Цвет при активации (синий) */
  .vdl-checkbox[aria-checked="true"] {
    background-color: #0066cc;
    border-color: #0066cc;
  }

  /* Галочка */
  .vdl-svg {
    width: 14px;
    height: 14px;
    color: white;
    display: none;
  }
  .vdl-checkbox[aria-checked="true"] .vdl-svg {
    display: block;
  }

  /* Текст согласия */
  .vdl-label {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.4;
    user-select: none; /* Чтобы текст не выделялся при частых кликах */
  }
  .vdl-label a {
    color: #ffffff;
    text-decoration: underline;
  }

  /* Стили вашей кнопки в заблокированном состоянии */
  .button-disable {
    background-color: #cccccc !important;
    color: #777777 !important;
    cursor: not-allowed !important;
    pointer-events: none !important; /* Полная блокировка кликов */
    opacity: 0.8;
  }













/* Контейнер: сдвигаем вправо через padding */
  .dl-section {
    max-width: 320px;
    margin: 20px auto;
    padding-left: 35px; 
    font-family: sans-serif;
  }

  .dl-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
    cursor: pointer;
  }

  /* Чекбокс: белый внутри, темная рамка (без розового) */
  .dl-box {
    width: 20px;
    height: 20px;
    border: 2px solid #444;
    border-radius: 3px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    margin-left: -33px;
  }

  .dl-box[aria-checked="true"] { background-color: #444; }
  .dl-svg { width: 14px; height: 14px; color: white; display: none; pointer-events: none; }
  .dl-box[aria-checked="true"] .dl-svg { display: block; }

  /* Текст согласия: ЗАЩИТА от "розовых овалов" */
  .dl-label, .dl-label a {
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: #333 !important;
    background: none !important; /* Убираем розовый фон */
    padding: 0 !important;
    border-radius: 0 !important;
    display: inline !important;
    text-decoration: underline;
  }

  /* ВАША КНОПКА (стилизуем класс .download) */
  .download {
    display: block;
    width: 100%;
    background-color: #f531a5; /* Розовый */
    color: #fff !important;
    text-align: center;
    padding: 15px 0;
    border-radius: 30px;
    text-decoration: none !important;
    font-weight: bold;
    margin-top: 20px;
    transition: 0.3s;
  }

  /* СОСТОЯНИЕ БЛОКИРОВКИ */
  /* Мы добавляем этот класс, когда галочки не стоят */
  .dl-blocked {
    background-color: #ccc !important;
    color: #888 !important;
    pointer-events: none !important; /* ЗАПРЕЩАЕТ КЛИК ДЛЯ ВСЕХ СКРИПТОВ САЙТА */
    cursor: not-allowed;
    opacity: 0.8;
  }
