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

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

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

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

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

@media (max-width: 1199px) {
  .style-switcher .s-icon {
    height: 45px;
    width: 45px;
    font-size: 22px;
    margin-right: 15px;
  }
  
  .style-switcher .s-icon i {
    line-height: 45px;
  }
  
  .style-switcher .style-switcher-toggler {
    top: 10px;
  }
}

@media (max-width: 767px) {
  .style-switcher {
    top: 20px;
    z-index: 1050;
  }
  
  .style-switcher .s-icon {
    height: 40px;
    width: 40px;
    font-size: 18px;
    margin-right: 10px;
  }
  
  .style-switcher .s-icon i {
    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%;
  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;
}

/* Language Switcher */
.language-switcher {
  margin-top: 20px;
}

.language-switcher h4 {
  margin-bottom: 10px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}