.skins {
  position: fixed;
  top: 120px;
  left: -222px;
  transition: .3s ease-in-out;
}

.skins:hover {
  left: 0;
}

.skin-colors {
  list-style: none;
  padding: 20px;
  margin: 0;
  background-color: #fff;
  width: 222px;
  border: 1px solid #e7e7e7;
}

.skin-colors li {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  cursor: pointer;
  margin: 4px;
  transition: .3s ease-in-out;
}

.skin-colors li:hover {
  opacity: .7;
}

.skin-colors li.active::before {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 20px;
  width: 34px;
  line-height: 34px;
  text-align: center;
  position: absolute;
  color: #fff;
}

.skin-toggler {
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 50px;
  right: -49px;
  top: 0;
  background-color: #fff;
  font-size: 30px;
  text-align: center;
  line-height: 50px;
  color: #888;
  border: 1px solid #e7e7e7;
  border-left: 0;
}

@media (max-width: 767px){
.skins {
  top: 80px;
}
}