/*
Theme Name: insteria
Theme URI: https://itgalaxy.company
Description: Insteria is a WordPress starter theme. <a href="https://itgalaxy.company/">Write if you are interested.</a>
Version: 0.0.4
Author: itgalaxy
Author URI: https://itgalaxy.company
Text Domain: insteria
Copyright: [(c) (2014-present) (itgalaxy)]

License: MIT License
License URI: http://opensource.org/licenses/MIT
Tags: html5, css3, responsible, webpack, ecmascript 8, supertheme
*/

.cookie-popup {
  position: fixed;
  bottom: 60px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px;
  background: #fff;
  border: 1px solid #ccc; /* светло-серая рамка */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* мягкая тень */
  display: none;
  z-index: 1000000000;
  box-sizing: border-box;
  border-radius: 6px; /* чуть скруглим углы (по желанию) */
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  text-align: left;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-text a {
  color: rgb(97, 97, 107);
  text-decoration: underline;
}

.cookie-btn {
  padding: 8px 20px;
  background: #096592;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

/* Мобильная версия */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .cookie-text {
    text-align: center;
  }
  
  .cookie-btn {
    width: 100%;
  }
}