.cookie-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 7px 20px;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  display: none;
  min-height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  z-index: 10000;
  border-radius: 10px;
}

.cookie-container p {
  font-size: 13pt !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  text-align: left;
}

.cookie-container button {
  background-color: #ef4a3d;
  color: #fff;
  border: 1px solid #ef4a3d;  
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 13pt;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
  min-height: 30pt;
  min-width: 122pt;
  /* font-weight: bold; */
}
/* Overlay под модалкой */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10005;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cookie-modal-overlay.active {
  display: flex;
  opacity: 1;
}

/* Само окно */
.cookie-modal {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  max-width: 80%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}
.cookie-modal-overlay.active .cookie-modal {
  border-color: rgba(12,11,11,0.2);
  transform: translateY(0);
}

/* Кнопка-крестик */
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 8px;
  background: transparent;
  border: none;
  font-size: 46px;
  cursor: pointer;
  color: #666;
  /* transition: color 0.2s; */

}
.cookie-modal-close:hover {
  color: #000;
}

/* Контент внутри модалки */
.cookie-modal-content {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 17px;
  color: #333;
  line-height: 1.5;
}

/* Адаптив */
@media (max-width: 480px) {
  .cookie-modal { width: 90%; height: 80vh; padding: 15px; }
  .cookie-modal-content { font-size: 13px; }
  .cookie-container p {font-size: 14px !important;}
  #cookie-container {
    flex-direction: column;
  }
  #cookie-container div:last-child {
    align-self: end !important;
    margin-top: auto !important;
  }

}

