.style-switcher {
  background: var(--bg-black-100);
  position: fixed;
  right: 0;
  top: 20px;
  padding: 15px;
  width: 300px;
  border: 1px solid var(--bg-black-50);
  z-index: 101;
  border-radius: 5px;
  transition: all 0.3s ease;
  transform: translateX(100%);
}

.style-switcher.open {
  transform: translateX(-25px);
}

.style-switcher .s-icon {
  position: absolute;
  height: 50px;
  width: 50px;
  font-size: 30px;
  text-align: center;
  background: var(--bg-black-100);
  color: var(--text-black-900);
  right: 100%;
  border: 1px solid var(--bg-black-50);
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.style-switcher .s-icon i {
  line-height: 50px;
}

.style-switcher .style-switcher-toggler {
  top: 0;
}

.fa-cog {
  transition: transform 0.3s linear; /* Geçiş efekti */
}

.fa-cog:hover {
  animation: spin 1s infinite linear; /* Fare üzerine gelindiğinde sürekli dönen animasyon */
}
@keyframes spin {
  to {
    transform: rotate(360deg); /* 360 derece dönme */
  }
}

.style-switcher .day-night {
  top: 65px;
}

.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: 50px;
  width: 50px;
  border-radius: 50%;
  border: 1px solid var(--bg-black-50);
  transition: background-color 0.3s ease; /* Renk değiştirme animasyonu */
}

.style-switcher .colors span:hover {
  transform: scale(1.05); /* Renk üzerine gelince büyüme animasyonu */
}

.style-switcher .color-1 {
  background: #ec1839;
}

.style-switcher .color-2 {
  background: #fa5b0f;
}

.style-switcher .color-3 {
  background: #37b182;
}

.style-switcher .color-4 {
  background: #1854b4;
}

.style-switcher .color-5 {
  background: #f021b2;
}

@media (max-width: 991px) {
  .style-switcher {
    width: 250px;
    height: 90px;
  }
  .style-switcher h4 {
    margin: 0 0 5px;
    font-size: 13px;
  }
  .style-switcher .s-icon,
  .style-switcher .colors span {
    height: 40px;
    width: 40px;
    font-size: 20px;
  }
  .style-switcher .s-icon {
    margin-right: 10px;
  }
  .style-switcher .s-icon i {
    line-height: 38px;
  }
  .style-switcher .day-night {
    top: 50px;
  }
}

@media (max-width: 767px) {
  .style-switcher {
    width: 170px;
    height: 70px;
  }
  .style-switcher h4 {
    margin: 0 0 5px;
    font-size: 10px;
  }
  .style-switcher .s-icon,
  .style-switcher .colors span {
    height: 25px;
    width: 25px;
    font-size: 15px;
  }
  .style-switcher .s-icon {
    margin-right: 5px;
  }
  .style-switcher .s-icon {
    height: 30px;
    width: 30px;
    font-size: 15px;
  }
  .style-switcher .s-icon i {
    line-height: 30px;
  }
  .style-switcher .day-night {
    top: 35px;
  }
}
