&.style-13 {
  --toggle-bg-light: #EEE;
  --toggle-bg-dark: #FF6B03;
  --toggle-icon-light: #484D60;
  --toggle-icon-dark: #FFF;

  width: calc(150px * var(--toggle-scale));
  display: flex;
  align-items: center;

  @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: var(--toggle-icon-light);

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

  .toggle-prefix-icon {
    width: calc(15px * var(--toggle-scale));
    height: calc(15px * var(--toggle-scale));
    background: var(--toggle-icon-light);
    mask: url("../images/toggles/dark.svg") no-repeat center / contain;
    margin-right: 7px;
  }

  .toggle-prefix-text {
    color: #3c434a;
    font-size: calc(1rem * var(--toggle-scale));
    line-height: 1;
    margin-bottom: 2px;
  }


  &.mode-dark {

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

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

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

  }

}