.dialog-about-overlay {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
}
.dialog-about-overlay.active {
  display: flex;
}
.dialog-about-header {
  display: flex;
  font-size: 1em;
  color: #010101;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  padding: 0.8rem;
  border-bottom: 1px solid #F2F0F0;
}
.dialog-about-body {
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  overflow: hidden;
}
.dialog-about-body h3 {
  font-size: 1rem;
  color: #000000;
}
.dialog-about-body p {
  font-size: 0.8rem;
  color: #000000;
}

.dialog-about-body span {
  font-size: 0.8em;
  color: #000000;
}

.dialog-about-close {
  background: none;
  border: none;
  cursor: pointer;
}

.margin_vertical {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
}
