/* Last update: 2025-07-07T04:12:04+00:00 */

@charset "UTF-8";




:root {
  --wa-helpbox-bg-main: var(--wa-bg-primary);
  --wa-helpbox-radius-main: var(--wa-radius-primary);
  --wa-helpbox-radius-secondary: var(--wa-radius-secondary);
}
.wa-helpbox {
  display: flex;
  flex-direction: row;
  padding: var(--space-m);
  gap: var(--space-s);
  justify-content: center;
  align-items: center;
  background-color: var(--wa-helpbox-bg-main);
  border-radius: var(--wa-helpbox-radius-main);
}
.wa-helpbox__img {
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  overflow: hidden;
}
.wa-helpbox__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wa-helpbox__text {
  font-size: var(--text-m);
  font-weight: 500;
  transition: 0.2s all ease-in-out;
  text-align: center;
}
.wa-helpbox__text--link {
  font-size: var(--text-l);
  font-weight: 700;
}
.wa-helpbox__text--link:hover {
  color: var(--primary-hover);
}
.wa-helpbox__shortcode {
  position: sticky;
  top: 10rem;
}
