.style-switcher {
    position: fixed;
    right: 0;
    top: 10px; /* era 60px */
    padding: 15px;
    width: 200px;
    border-radius: 5px;
    border: 1px solid var(--bg-black-50);
    background-color: var(--bg-black-100);
    transition: all 0.3s ease;
    transform: translateX(100%);
    z-index: 101;
  }
  
  .style-switcher.open {
    transform: translateX(-25px);
  }
  
  .style-switcher .s-icon {
    position: absolute;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 20px;
    background-color: var(--bg-black-100);
    color: var(--text-black-900);
    right: 100%;
    border-radius: 50%;
    border: 1px solid var(--bg-black-50);
    margin-right: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .style-switcher .s-icon em {
    line-height: 40px;
  }
  
  .style-switcher .style-switcher-toggler {
    top: 0;
  }
  
  .style-switcher .day-night {
    top: 55px;
  }
  
  .style-switcher h4 {
    margin: 0 0 10px;
    color: var(--text-black-700);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
  }
  
  .style-switcher .colors {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .style-switcher .colors span {
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
  }
  
  .style-switcher .color-1 {
    background-color: #7400b0;
  }
  
  .style-switcher .color-2 {
    background-color: #fa5b0f;
  }
  
  .style-switcher .color-3 {
    background-color: #37b182;
  }
  
  .style-switcher .color-4 {
    background-color: #1854b4;
  }
  
  .style-switcher .color-5 {
    background-color: #e22828;
  }