&-wrap[data-style='16'] {
  --side-offset: 0;
  --bottom-offset: 220px;

  &.position-left {
    .dracula-toggle {
      border-top-right-radius: 5px;
      border-bottom-right-radius: 5px;
    }
  }

  &.position-right {
    .dracula-toggle {
      border-top-left-radius: 5px;
      border-bottom-left-radius: 5px;
    }
  }

}

&.style-16 {
  --toggle-bg-light: #FFF;
  --toggle-bg-dark: #A9CBFF;
  --toggle-icon-light: #FB9C0D;
  --toggle-icon-dark: #484D60;
  --toggle-icon-bg-light: #FB9C0D;
  --toggle-icon-bg-dark: #484D60;

  width: calc(60px * var(--toggle-scale));
  aspect-ratio: 1/1.9;
  background: var(--toggle-bg-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  overflow: hidden;
  padding-top: 3px;
  padding-bottom: 3px;
  transition: background 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  @keyframes dracula-slide-right {
    from {
      justify-content: flex-start;
    }
    to {
      justify-content: flex-end;
    }
  }

  @keyframes dracula-slide-left {
    from {
      justify-content: flex-end;
    }
    to {
      justify-content: flex-start;
    }
  }

  .dracula-toggle-icon {
    aspect-ratio: 1;
    height: 100%;
    border-radius: 50%;
    background: #FFF;

    &-wrap {
      width: calc(40px * var(--toggle-scale));
      aspect-ratio: 2 / 1;
      padding: .125rem;
      border-radius: 30px;
      background: #484D60;
      box-shadow: 0 .2rem .2rem rgba(0, 0, 0, 0.2);
      display: flex;
      justify-content: flex-start;
      animation: dracula-slide-left 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
  }

  .toggle-prefix-icon {
    aspect-ratio: 1;
    width: calc(25px * var(--toggle-scale));
    background: var(--toggle-icon-light);
    mask: url("../images/toggles/light.svg") no-repeat center / contain;
  }

  .toggle-prefix-text {
    color: #3c434a;
    font-size: calc(14px * var(--toggle-scale));
    line-height: 1.2;
    text-align: center;
  }

  &:not(.mode-dark) {
  }

  &.mode-dark {
    background: var(--toggle-bg-dark);

    .toggle-prefix-text {
      color: var(--toggle-icon-dark);
    }

    .toggle-prefix-icon {
      mask: url("../images/toggles/dark.svg") no-repeat center / contain;
      background: var(--toggle-icon-dark);
    }

    .dracula-toggle-icon {
      background: var(--toggle-bg-dark);

      &-wrap {
        justify-content: flex-end;
        animation: dracula-slide-right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }
    }

  }

}