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

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

.style_switcher .s_icon {
  position: absolute;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 20px;
  background: var(--bg-black-100);
  color: var(--text-black-900);
  right: 100%;
  border: 1px solid var(--bg-black-50);
  margin-right: 25px;
  cursor: pointer;
  border-radius: 50%;
  line-height: 40px;
  transition: all 0.5s ease;
}

@media(max-width:767px) {
  .style_switcher .s_icon {
    position: absolute;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 20px;
    background: var(--bg-black-100);
    color: var(--text-black-900);
    right: 95%;
    border: 1px solid var(--bg-black-50);
    margin-right: 25px;
    cursor: pointer;
    border-radius: 50%;
    line-height: 27.5px;
    transition: all 0.5s ease;
  }

  .style_switcher .s_icon i {
    font-size: 17px;
  }
}

.style_switcher .day_night {
  top: 55px;
}

.fa-gear {
  animation: spinner 2s infinite linear;
}

@keyframes spinner {
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.style_switcher .style_switcher_toggler {
  top: 0;
}

.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;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  /* border: 1px solid red; */
}

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