.dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  padding: 9px;
  opacity: 0;
  display: flex;
  transition:
    transform 0.3s cubic-bezier(0.23, 1, 0.32, 1.4),
    opacity 0.3s;
  width: 280px;
  height: 110px;
  border-radius: 1rem;
  align-items: center;
  backdrop-filter: blur(5px) saturate(180%);
  justify-content: center;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.38),
    var(--glass-effect);
  flex-direction: column;
  gap: 1rem;
  background: var(--transparent);
}
.dialog.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.section-bar {
  width: 220px;
  position: relative;
  height: 6px;
  border-radius: 3rem;
  background: var(--color-accent-blue);
}
.title-dialog {
  display: flex;
  font-family: "Inter";
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 0.4rem;
}
.title-dialog svg {
  width: 29px;
  height: 29px;
}
#toggled {
  width: 28px;
  position: absolute;
  backdrop-filter: blur(3px) !important;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1.84);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.38);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 3rem;
  height: 20px;
  background: #fff;
}
#toggled:active {
  width: 40px;
  z-index: 1 !important;
  box-shadow: var(--glass-effect);
  background: var(--transparent);
  height: 34px;
}
