.styleswitcher {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 10000;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  border-bottom-left-radius: 2px;
  -webkit-transform: translateY(-50%) translateX(100%);
  -moz-transform: translateY(-50%) translateX(100%);
  -ms-transform: translateY(-50%) translateX(100%);
  -o-transform: translateY(-50%) translateX(100%);
  transform: translateY(-50%) translateX(100%);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.175);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.175);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.175);
}
.styleswitcher.styleswitcher-open {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.styleswitcher .styleswitcher-body {
  padding: 15px;
}
.styleswitcher .styleswitcher-title {
  margin-bottom: 10px;
  font-size: 18px;
  font-family: 'Yellowtail', cursive;
}
.styleswitcher .toggle-styleswitcher {
  position: absolute;
  top: 0;
  left: -32px;
  width: 32px;
  height: 32px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
}
.styleswitcher .toggle-styleswitcher .icon {
  font-size: 14px;
}
.styleswitcher .toggle-styleswitcher:hover .icon {
  -webkit-animation: 0.7s toggleStyleswitcher infinite;
  -o-animation: 0.7s toggleStyleswitcher infinite;
  animation: 0.7s toggleStyleswitcher infinite;
}
.styleswitcher .title {
  margin-bottom: 20px;
  color: #333;
  font-size: 18px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
}
.styleswitcher .colors-list {
  list-style: none;
  margin: 0 0 2px;
  padding: 0;
  width: 100%;
  line-height: 1;
  text-align: center;
}
.styleswitcher .colors-list:last-child {
  margin: 0;
}
.styleswitcher .colors-list li {
  display: inline-block;
}
.styleswitcher .colors-list li a {
  display: block;
  width: 35px;
  height: 35px;
  position: relative;
}
.styleswitcher .colors-list li a::after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=1);
}
@keyframes toggleStyleswitcher {
  from {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
