.style-switcher {
  position: fixed;
  right: 0;
  top: 4rem;
  padding: 1rem;
  width: 13.2rem;
  border: solid 1px var(--bg-color-50);
  background: var(--bg-color-100);
  z-index: 101;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
  transform: translateX(100%);

  &.open {
    transform: translateX(-10%);
  }

  h4 {
    margin: 0 0 0.6rem;
    color: var(--text-black-700);
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
  }
  .s-icon {
    position: absolute;
    height: 2.5rem;
    width: 2.5rem;
    text-align: center;
    font-size: 1.5rem;
    background: var(--bg-color-100);
    color: var(--text-black-900);
    right: 100%;
    border: solid 1px var(--bg-color-50);
    margin-right: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;

    i {
      line-height: 2.5rem;
    }
  }
  .style-switcher-toggler {
    top: 0;
  }
  .day-night {
    top: 3.5rem;
  }
  .colors {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

    span {
      display: inline-block;
      height: 2rem;
      width: 2rem;
      border-radius: 50%;
      cursor: pointer;
    }
  }
  .color-1 {
    background: #ec1839;
  }
  .color-2 {
    background: #fa5b0f;
  }
  .color-3 {
    background: #37b182;
  }
  .color-4 {
    background: #1854b4;
  }
  .color-5 {
    background: #f021b2;
  }
}
