

    /* =========== COOKIES BAR =========== */
    /* =========== COOKIES BAR =========== */
    /* =========== COOKIES BAR =========== */

.cookies_bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #000;
  box-shadow: 0px 2px 3px rgba(0,0,0,0.06);
  z-index: 500;

  /* Скрываем бар вниз за экран */
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}

/* Когда нужно показать — класс visible */
.cookies_bar.visible {
  transform: translateY(0);
}

    
    .cookies_bar_inner {
      display: flex;
      justify-content: space-between;  /* Размещение элементов по краям */
      align-items: center;
      max-width: 1154px;  /* Максимальная ширина */
      height: 117.5px;
      margin: 0 auto;  /* Центрируем по горизонтали */
      box-sizing: border-box;  /* Включаем отступы в расчет размера */
      gap: 20px;
    }
    
    /* Добавляем отступы слева и справа, но не изменяем ширину */
    @media (max-width: 1154px) {
      .cookies_bar_inner {
        margin-left: 40px;  /* Отступ слева */
        margin-right: 40px;  /* Отступ справа */
      }
    }

    @media (max-width: 1000px) {
    .cookies_bar_inner {
      height: 130px;
    }
    }
    
    a:link { text-decoration: none; }
    a:visited { text-decoration: none; }
    a:hover { text-decoration: none; }
    a:active { text-decoration: none; }
    




    .cookies_bar_left {
      display: flex;
      flex-direction: row; 
      align-items: center; /* Центрируем элементы по вертикали */
      gap: 26px;
    }
    


    .cookies_ico_cont {
    }

    .cookies_ico {
      display: flex;
      align-items: center; /* Центрируем элементы по вертикали */
    }
    
    .cookies_ico img {
      width: 58px;
      height: 58px;
    }

    

    .cookies_bar_info {
      display: flex;
      flex-direction: column; 
      max-width: 700px;
      margin-top: -3px;
    }
    

    .cookies_bar_descr {
      text-align: left;
      font-family: Helvetica, sans-serif; 
      font-weight: bold;
      font-size: 13.3px;
      color: #ffffff;
      line-height: 21px;
      margin-bottom: 5px;
                display: -webkit-box; /* Используем flex-контейнер для обрезки */
                -webkit-line-clamp: 3; /* Ограничиваем текст 2 строками */
                -webkit-box-orient: vertical; /* Указываем направление потока */
                overflow: hidden; /* Скрываем лишний текст */
                text-overflow: ellipsis; /* Добавляем многоточие */
    }

    .cookies_bar_descr_link {
      text-align: left;
      font-family: Helvetica, sans-serif; 
      font-weight: bold;
      font-size: 13.5px;
      color: #ffffff;
      text-decoration: underline;
    }

    .cookies_bar_descr_link:hover {
      text-decoration: none;
    }







    .cookies_bar_right {
      display: flex;
      flex-direction: raw; 
      align-items: center; /* Центрируем элементы по вертикали */
      gap: 18px;
    }

    @media (max-width: 1000px) {
    .cookies_bar_right {
      flex-direction: column; 
      gap: 10px;
    }
    }
    
    .btn_reject {
      display: flex;
      justify-content: center; /* Горизонтальное центрирование */
      align-items: center; /* Вертикальное центрирование */
      width: 115px;
      height: 36px;
      background-color: #000000;
      color: #ffffff;
      font-family: Helvetica, sans-serif;
      font-size: 14px;
      font-weight: bold;
      border-radius: 11px;
      text-decoration: underline;
      transition: background-color 0.3s ease; /* Плавный переход ховера */
    }
    
    .btn_reject:hover {
      text-decoration: none;
    }


    .btn_accept {
      display: flex;
      justify-content: center; /* Горизонтальное центрирование */
      align-items: center; /* Вертикальное центрирование */
      width: 146px;
      height: 42px;
      background-color: #df0000;
      color: #ffffff;
      font-family: Helvetica, sans-serif;
      font-size: 13px;
      font-weight: bold;
      border-radius: 11px;
      text-decoration: none;
      transition: background-color 0.3s ease; /* Плавный переход ховера */
    }
    
    .btn_accept:hover {
      background-color: #f50a0a; /* Более темный красный оттенок */
    }
    


