&-wrap[data-style='18'] {
}

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

  width: calc(90px * var(--toggle-scale));
  aspect-ratio: 2/1;
  background: var(--toggle-bg-light);
  display: flex;
  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;
  border-radius: 5px;
  transition: background 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  &:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    background: #DDD;
  }

  .dracula-toggle-icon {
    aspect-ratio: 1;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 0;
    position: relative;
    z-index: 1;

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

    &.--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;
    }
  }

  &:not(.mode-dark) {
  }

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

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

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

      &-wrap {
        background: var(--toggle-icon-bg-dark);
        top: auto;
        bottom: 0;
      }
    }

  }

}