        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        /* Стили для popup окна */
        .popup {
            background: white;
            padding: 30px;
            /* border-radius: 10px; */
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            max-width: 500px;
            width: 90%;

            /* Центрирование с помощью Flexbox */
            display: flex;
            flex-direction: column;
            /* align-items: center; */
            /* justify-content: center; */
        }

        /* Кнопка закрытия */
        .close-btn {
            align-self: flex-end;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #666;
            margin-bottom: 15px;
        }

        .close-btn:hover {
            color: #000;
        }

        .feed-1 {
            display: flex;
            justify-content: space-between;

        }

        .feed-1-close {
            cursor: pointer;
            background: white;
            height: 24px;
            width: 24px;
        }

        .feed-title {
            font-size: 24px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .feed-close {
            display: flex;
            align-items: center;
        }

        .feed-2,
        .feed-4 {
            padding: 10px 0px;
            color: #717883;
        }


        .feed-3 INPUT,
        .feed-5 INPUT {
            width: 100%;
            border: 1px solid #A6A8B2;
            padding: 15px;
            margin-bottom: 12px;
        }

        .feed-6 {
            display: flex;
            padding: 10px 0px 15px 0px;
        }

        .feed-6 A {
            color: #000;
            text-decoration: underline;
        }


        .feed-6 A:hover {
            color: #000;
            text-decoration: none;
        }