/* Cookies плашка стили */

.wrap-cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
}

.wrap-cookies.show {
  display: block;
}

.cookies {
  background-color: #fff;
  padding: 16px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookies p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #2b2b2b;
  flex: 1;
}

.cookies a {
  color: #0073aa;
  text-decoration: underline;
}

.cookies a:hover {
  color: #005a87;
}

.cookies button {
  background-color: #0073aa;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.cookies button:hover {
  background-color: #005a87;
}

.cookies button:active {
  background-color: #004a6f;
}

/* Мобильная версия */
.mobile-hidden {
  display: none;
}

@media (min-width: 768px) {
  .mobile-hidden {
    display: flex;
  }
  
  .pc-hidden {
    display: none;
  }
}

/* Десктопная версия */
.pc-hidden {
  display: flex;
}

@media (min-width: 768px) {
  .pc-hidden {
    display: none;
  }
}

/* Стили для мобильной кнопки */
#cookie_ok_mobile {
  width: 32px;
  height: 32px;
  padding: 0;
  background-color: transparent;
  border: 2px solid #0073aa;
  border-radius: 50%;
  position: relative;
  min-width: 32px;
}

#cookie_ok_mobile::before,
#cookie_ok_mobile::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background-color: #0073aa;
  transform: translate(-50%, -50%) rotate(45deg);
}

#cookie_ok_mobile::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#cookie_ok_mobile:hover {
  background-color: #0073aa;
  border-color: #0073aa;
}

#cookie_ok_mobile:hover::before,
#cookie_ok_mobile:hover::after {
  background-color: #fff;
}



