&-wrap[data-style='15'] {
  --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-15 {
  --toggle-bg-light: #EEEEEE;
  --toggle-bg-dark: #A9CBFF;
  --toggle-icon-light: #FFF;
  --toggle-icon-dark: #FFF;
  --toggle-icon-bg-light: #484D60;
  --toggle-icon-bg-dark: #484D60;

  width: calc(50px * var(--toggle-scale));
  aspect-ratio: 1/2;
  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;
  transition: background 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  @keyframes dracula-slide-bottom {
    from {
      top: 0;
      bottom: auto;
    }
    to {
      top: auto;
      bottom: 0;
    }
  }

  @keyframes dracula-slide-top {
    from {
      top: auto;
      bottom: 0;
    }
    to {
      top: 0;
      bottom: auto;
    }
  }

  .dracula-toggle-icon {
    aspect-ratio: 1;
    width: 25px;
    position: relative;
    z-index: 1;

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

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

    &-wrap {
      aspect-ratio: 1;
      width: 100%;
      background: var(--toggle-icon-bg-light);
      position: absolute;
      top: 0;
      bottom: auto;
      animation: dracula-slide-top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
  }

  &:not(.mode-dark) {
  }

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

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

      &.--light {
        background: var(--toggle-icon-bg-light);
      }

      &-wrap {
        background: var(--toggle-icon-bg-dark);
        top: auto;
        bottom: 0;
        animation: dracula-slide-bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }
    }

  }

}