

/* Start:/pwa/pwa-style.css?17771964171768*/
/* PWA install UI styles, scoped to the install banner */

.pwa-install-container {
  position: static;        /* Рендерится там, куда вставлен HTML */
  display: inline-flex;    /* Компактный блок, который можно вставить в любую область */
  align-items: center;
  gap: 8px;

  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);

  padding: 8px 12px;
  box-sizing: border-box;
}

.pwa-install-button {
  cursor: pointer;
  border: none;
  outline: none;

  padding: 8px 14px;
  border-radius: 6px;

  background-color: #0094d9;
  color: #ffffff;

  font-family: inherit;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;

  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease;
}

.pwa-install-button:hover {
  background-color: #007bb3;
  box-shadow: 0 4px 12px rgba(0, 148, 217, 0.45);
  transform: translateY(-1px);
}

.pwa-install-button:active {
  background-color: #006691;
  box-shadow: 0 2px 6px rgba(0, 148, 217, 0.4);
  transform: translateY(0);
}

.pwa-install-close {
  cursor: pointer;
  border: none;
  outline: none;

  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;

  border-radius: 50%;
  background: transparent;
  color: #888888;

  font-size: 18px;
  line-height: 1;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

.pwa-install-close:hover {
  background-color: rgba(0, 0, 0, 0.04);
  color: #555555;
}


/* End */
/* /pwa/pwa-style.css?17771964171768 */
