.locale-suggestion {
  position: fixed;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(560px, calc(100% - 32px));
  padding: 12px 14px;
  border: 1px solid rgba(20, 34, 45, 0.16);
  border-radius: 6px;
  color: #13232c;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(20, 34, 45, 0.16);
  font-size: 13px;
  line-height: 1.45;
}

.locale-suggestion span {
  min-width: 0;
  flex: 1 1 auto;
}

.locale-suggestion a,
.locale-suggestion button {
  flex: 0 0 auto;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.locale-suggestion a {
  color: #00606a;
  background: #eef8f7;
}

.locale-suggestion button {
  color: rgba(19, 35, 44, 0.68);
  background: transparent;
}

.locale-suggestion a:hover,
.locale-suggestion a:focus-visible,
.locale-suggestion button:hover,
.locale-suggestion button:focus-visible {
  background: #dcefee;
}

@media (max-width: 600px) {
  .locale-suggestion {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: calc(100% - 24px);
    flex-wrap: wrap;
    gap: 8px;
  }

  .locale-suggestion span {
    flex-basis: 100%;
  }
}
