.etobalon-auth-ru {
  width: 100%;
  min-width: 0;
  margin-top: 1rem;
  box-sizing: border-box;
}

.etobalon-auth-ru__title {
  margin: 0 0 0.75rem;
  color: #008f98;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.lwa .etobalon-auth-ru__title {
  color: #fff;
}

.etobalon-auth-ru__buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  width: 100%;
}

.etobalon-auth-ru__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: filter 160ms ease, box-shadow 160ms ease;
}

.etobalon-auth-ru__button:hover {
  filter: brightness(0.96);
  text-decoration: none;
}

.etobalon-auth-ru__button:focus-visible {
  outline: 3px solid rgba(0, 143, 152, 0.35);
  outline-offset: 2px;
}

.etobalon-auth-ru__button--yandex {
  border-color: #d8d8d8;
  color: #1f1f1f;
  background: #fff;
}

.etobalon-auth-ru__button--vk {
  color: #fff;
  background: #07f;
}

.etobalon-auth-ru__icon {
  display: inline-flex;
  flex: 0 0 1.75rem;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1;
}

.etobalon-auth-ru__button--yandex .etobalon-auth-ru__icon {
  color: #fff;
  background: #fc3f1d;
}

.etobalon-auth-ru__button--vk .etobalon-auth-ru__icon {
  color: #07f;
  background: #fff;
}

.etobalon-auth-ru__notice {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 10001;
  max-width: min(28rem, calc(100vw - 2rem));
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  color: #fff;
  background: #8b1e2d;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

@media (min-width: 48rem) {
  .etobalon-auth-ru__buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

