.style-switcher{
  position: fixed;
  top: 20px;
  right: 0;
  z-index: 10;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #d4d4e3;
  border-right: none;
  border-radius: 0 0 0 5px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.style-switcher.open{
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.style-switcher h5{
  font-size: 16px;
  color: #302e4d;
  font-weight: 600;
  padding-bottom: 5px;
  margin-bottom: 10px;
  text-transform: capitalize;
  border-bottom: 1px solid #e8dfec;
}
.style-switcher ul{
  margin: 3px 0 8px;
  padding: 0;
  line-height: 1;
  list-style: none;
}
.style-switcher ul li{
  display: inline-block;
}
.style-switcher ul li button{
  width: 30px;
  height: 30px;
  display: block;
  border: 0;
  outline: none;
  border-radius: 50%;
  margin-right: 2px;
}
.style-switcher .toggle-style-switcher{
  position: absolute;
  height: 45px;
  width: 45px;
  left: -45px;
  top: -1px;
  background-color: #fff;
  border: 1px solid #d4d4e3;
  border-right: none;
  text-align: center;
  cursor: pointer;
  border-radius: 4px 0 0 4px;
}
.style-switcher .toggle-style-switcher i{
  font-size: 20px;
  line-height: 43px;
}
.style-switcher label{
  margin-bottom: 0;
}