    #wrap-politic {
           width: 100%;
            height: 100%;
            max-width: 1920px;
            
            background-color: white;
            
            position: relative;
            left: 0;
            top: 0;
            
            margin: 0 auto;
            
            
            -webkit-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            
            overflow-y: auto; /* прокрутка  */
                
            z-index:0;

            background-image: url('../images/flr-collage-1920.png');
            background-size: cover;
            background-position: center;   /* Центрирует изображение */
            background-repeat: repeat-y;            
        }

   


    /* ПОЛИТИКА КОНФИДЕНЦИАЛЬНОСТИ БЛОК */

    .politic {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;

        width: 100%;
        height: 95vh;
        padding: 20px;

        background-color: rgba(255, 255, 255, 95%);

        border-radius: 10px;
        margin-top: 2.5vh;
        margin-bottom: 2.5vh;
    }

    .politic__title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 16px;
    }

    .politic__title p {
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        font-weight: 500;
        font-style: normal;
        text-align: left;
        line-height: 1.2;
        letter-spacing: 0;
        margin: 0;

        
    }

    .politic__text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        
        -webkit-box-orient: vertical;
        
        -webkit-box-direction: normal;
        
            -ms-flex-direction: column;
        
                flex-direction: column;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;

        
    }

    .politic__text p {
        font-family: "Roboto", sans-serif;
        font-size: 12px;
        font-weight: lighter;
        font-weight: 300;
        
       
        line-height: 1.2;
        
        text-align: left;
        margin-bottom: 7px;
        padding-right: 1px;

        color: #58595b;
    }

    .politic__text p a:hover {
        color: red;
    }

    @media (min-width:576px) {
        .politic__title {
            
            margin-bottom: 24px;
        }
        .politic__title p {
            text-align: center;
            font-size: 24px;
        }
        .politic__text p {
             font-size: 16px;
        }
    }

    @media (min-width:768px) {
        .politic {
            width: 540px;
            margin-left: auto;
            margin-right: auto;
        }
    }

    /* КУКИ-БАННЕР*/

    .cookie-banner-overlay,
    .cookie-banner-overlay * {
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
    }

    .cookie-banner-overlay {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 99999;

        display: -webkit-box;

        display: -ms-flexbox;

        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;

        padding: 12px 16px;

        pointer-events: none;

        -webkit-animation:
            cookieSlideUp
            0.45s
            cubic-bezier(0.22, 1, 0.36, 1)
            forwards;

                animation:
            cookieSlideUp
            0.45s
            cubic-bezier(0.22, 1, 0.36, 1)
            forwards;
    }

    @-webkit-keyframes cookieSlideUp {
        from {
            opacity: 0;
            -webkit-transform: translateY(30px);
                    transform: translateY(30px);
        }

        to {
            opacity: 1;
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }
    }

    @keyframes cookieSlideUp {
        from {
            opacity: 0;
            -webkit-transform: translateY(30px);
                    transform: translateY(30px);
        }

        to {
            opacity: 1;
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }
    }

    @-webkit-keyframes cookieFadeOut {
        from {
            opacity: 1;
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }

        to {
            opacity: 0;
            -webkit-transform: translateY(20px);
                    transform: translateY(20px);
        }
    }

    @keyframes cookieFadeOut {
        from {
            opacity: 1;
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }

        to {
            opacity: 0;
            -webkit-transform: translateY(20px);
                    transform: translateY(20px);
        }
    }

    .cookie-banner-wrapper {
        position: relative;

        width: 100%;
        max-width: 560px;

        pointer-events: auto;
    }

    .cookie-banner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 14px;

        width: 100%;
        padding: 14px 20px;

        background: #fffde5;
        border: 1px solid #e6e6e6;
        border-radius: 16px;

        -webkit-box-shadow:
            0 4px 24px rgba(0, 0, 0, 0.08),
            0 1px 4px rgba(0, 0, 0, 0.04);

                box-shadow:
            0 4px 24px rgba(0, 0, 0, 0.08),
            0 1px 4px rgba(0, 0, 0, 0.04);

        font-family:
            -apple-system,
            BlinkMacSystemFont,
            "Segoe UI",
            Roboto,
            Helvetica,
            Arial,
            sans-serif;

        cursor: default;
        outline: none;

        -webkit-transition:
            -webkit-box-shadow 0.2s ease,
            -webkit-transform 0.15s ease;

        transition:
            -webkit-box-shadow 0.2s ease,
            -webkit-transform 0.15s ease;

        transition:
            box-shadow 0.2s ease,
            transform 0.15s ease;

        transition:
            box-shadow 0.2s ease,
            transform 0.15s ease,
            -webkit-box-shadow 0.2s ease,
            -webkit-transform 0.15s ease;
    }

    .cookie-banner:hover {
        -webkit-box-shadow:
            0 6px 28px rgba(0, 0, 0, 0.1),
            0 2px 6px rgba(0, 0, 0, 0.05);
                box-shadow:
            0 6px 28px rgba(0, 0, 0, 0.1),
            0 2px 6px rgba(0, 0, 0, 0.05);

        -webkit-transform: translateY(-1px);

            -ms-transform: translateY(-1px);

                transform: translateY(-1px);
    }

    .cookie-banner:focus-visible {
        outline: 3px solid rgba(255, 171, 0, 0.4);
        outline-offset: 3px;
    }

    .cookie-banner-icon {
        -ms-flex-negative: 0;
            flex-shrink: 0;

        width: 38px;
        height: 38px;
    }

    .cookie-banner-text {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;

        margin: 0;

        color: #333333;
        font-size: 13px;
        line-height: 1.45;
    }

    .cookie-banner-text a {
        color: #d88f00;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .cookie-banner-btn {
        -ms-flex-negative: 0;
            flex-shrink: 0;

        padding: 9px 18px;

        background: #ffdd2d;
        color: #333333;

        border: none;
        border-radius: 10px;

        font-family: inherit;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;

        cursor: pointer;

        -webkit-transition:
            background 0.15s ease,
            -webkit-transform 0.15s ease;

        transition:
            background 0.15s ease,
            -webkit-transform 0.15s ease;

        transition:
            background 0.15s ease,
            transform 0.15s ease;

        transition:
            background 0.15s ease,
            transform 0.15s ease,
            -webkit-transform 0.15s ease;
        
            -webkit-animation: cookieButtonAttention 3s ease-in-out infinite;
        
                    animation: cookieButtonAttention 3s ease-in-out infinite;
    }

    @-webkit-keyframes cookieButtonAttention {

        0%, 88%, 100% {
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }

        91% {
            -webkit-transform: translateY(-2px);
                    transform: translateY(-2px);
        }

        94% {
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }

        96% {
            -webkit-transform: translateY(-1px);
                    transform: translateY(-1px);
        }

        98% {
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }
    }

    @keyframes cookieButtonAttention {

        0%, 88%, 100% {
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }

        91% {
            -webkit-transform: translateY(-2px);
                    transform: translateY(-2px);
        }

        94% {
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }

        96% {
            -webkit-transform: translateY(-1px);
                    transform: translateY(-1px);
        }

        98% {
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }
    }

    .cookie-banner-btn:hover {
        background: #ffd319;
    }

    .cookie-banner-btn:active {
        -webkit-transform: scale(0.97);
            -ms-transform: scale(0.97);
                transform: scale(0.97);
    }

    .cookie-banner-btn:focus-visible,
    .cookie-banner-close:focus-visible {
        outline: 3px solid rgba(255, 171, 0, 0.45);
        outline-offset: 2px;
    }

    .cookie-banner-close {
        position: absolute;
        top: -6px;
        right: -6px;
        z-index: 2;

        display: -webkit-box;

        display: -ms-flexbox;

        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;

        width: 22px;
        height: 22px;
        padding: 0;

        background: #f0f0f0;
        border: none;
        border-radius: 50%;

        line-height: 1;
        cursor: pointer;

        -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);

                box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);

        -webkit-transition:
            background 0.15s ease,
            -webkit-transform 0.15s ease;

        transition:
            background 0.15s ease,
            -webkit-transform 0.15s ease;

        transition:
            background 0.15s ease,
            transform 0.15s ease;

        transition:
            background 0.15s ease,
            transform 0.15s ease,
            -webkit-transform 0.15s ease;
    }

    .cookie-banner-close:hover {
        background: #e0e0e0;
        -webkit-transform: scale(1.06);
            -ms-transform: scale(1.06);
                transform: scale(1.06);
    }

    .cookie-banner-close svg {
        width: 10px;
        height: 10px;
    }

    /* Мобильная адаптация */
    @media (max-width: 600px) {
        .cookie-banner-overlay {
            max-height: 20vh;
            padding: 8px 10px;
        }

        .cookie-banner {
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
            gap: 10px;

            max-height: 20vh;
            padding: 10px 14px;

            overflow: hidden;

            border-radius: 12px;
        }

        .cookie-banner-icon {
            width: 28px;
            height: 28px;
        }

        .cookie-banner-text {
            -ms-flex-preferred-size: calc(100% - 42px);
                flex-basis: calc(100% - 42px);

            font-size: 11.5px;
            line-height: 1.35;
        }

        .cookie-banner-btn {
            width: auto;
            margin: 0 auto;
            padding: 8px 24px;

            border-radius: 8px;

            font-size: 12.5px;
        }
    }

    /* Совсем маленькие экраны */
    @media (max-width: 380px) {
        .cookie-banner-text {
            font-size: 11px;
        }

        .cookie-banner-btn {
            padding: 7px 12px;
            font-size: 12px;
        }
    }

    /* Отключение анимации для пользователей,
       предпочитающих уменьшенное движение */
    @media (prefers-reduced-motion: reduce) {
        .cookie-banner-overlay,
        .cookie-banner,
        .cookie-banner-btn,
        .cookie-banner-close {
            -webkit-animation: none;
                    animation: none;
            -webkit-transition: none;
            transition: none;
        }
    }
