#style-switcher {
  position: fixed;
  top: 60px;
  right: 100px;
  width: 240px;
  right: -240px;
  transition: 0.3s all;
  font-family: 'Roboto';
  z-index: 1000;
}
#style-switcher * {
  box-sizing: border-box;
}
#style-switcher.active {
  right: 0;
}
#style-switcher .box {
  background: #fff;
  border: 1px solid #423d2a;
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: 20px 25px;
  min-height: 120px;
  height: 240px;
  box-sizing: border-box;
  overflow-y: scroll;
  overflow-x: visible;
}
#style-switcher .box .box-inner {
  padding-bottom: 20px;
}
#style-switcher .box .options-box h3 {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  color: #555;
}
#style-switcher .box .options-box .colors-list {
  padding: 10px 0 0 0;
  margin: 0 -5px;
  display: table;
  width: 100%;
  clear: both;
}
#style-switcher .box .options-box .colors-list a {
  display: block;
  float: left;
  width: 25%;
  padding: 5px;
  cursor: pointer;
  position: relative;
}
#style-switcher .box .options-box .colors-list a span {
  display: block;
  height: 30px;
  background: #e5e5e5;
  position: relative;
  z-index: 3;
}
#style-switcher .box .options-box .colors-list a span.color-black {
  background: #111111;
}
#style-switcher .box .options-box .colors-list a span.color-silver {
  background: #d6d2d0;
}
#style-switcher .box .options-box .colors-list a span.color-white {
  background: #ffffff;
}
#style-switcher .box .options-box .colors-list a span.color-violet {
  background: #415e9b;
}
#style-switcher .box .options-box .colors-list a span.color-red {
  background: #cb2026;
}
#style-switcher .box .options-box .colors-list a span.color-yellow {
  background: #efda39;
}
#style-switcher .box .options-box .colors-list a span.color-green {
  background: #94d631;
}
#style-switcher .box .options-box .colors-list a span.color-blue {
  background: #32b8e5;
}
#style-switcher .box .options-box .colors-list a:after {
  content: '';
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #f2f2f2;
  z-index: 2;
  border: 3px solid #fff;
  transition: 0.3s all;
}
#style-switcher .box .options-box .colors-list a:hover:after {
  background: #fff;
  border: 3px solid #eee;
}
#style-switcher .box .options-box .colors-list a.active:after {
  background: #fff;
  border: 3px solid #999;
}
#style-switcher .box .options-box + .options-box {
  padding-top: 15px;
}
#style-switcher .box .options-box .sa-toggler {
  display: inline-block;
  padding: 3px 8px;
  background: #fff;
  color: #b22c37;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  transition: 0.3s all;
}
#style-switcher .box .options-box .sa-toggler > .on {
  display: none;
}
#style-switcher .box .options-box .sa-toggler > .off {
  display: block;
}
#style-switcher .box .options-box .sa-toggler.on {
  background: #89e84e;
  color: #fff;
  border: 1px solid #89e84e;
}
#style-switcher .box .options-box .sa-toggler.on > .on {
  display: block;
}
#style-switcher .box .options-box .sa-toggler.on > .off {
  display: none;
}
#style-switcher .style-switcher-toggle {
  display: block;
  width: 51px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  left: -50px;
  bottom: 20px;
  font-size: 36px;
  background: #fff;
  border: 1px solid #423d2a;
  border-right: none;
  border-radius: 4px 0 0 4px;
  color: #423d2a;
  cursor: pointer;
}
#style-switcher-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  backgorund: #fff;
  z-index: 1100;
}
#style-switcher-loader span {
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -25px 0 0 -25px;
  line-height: 50px;
  text-align: center;
  font-size: 36px;
  color: #423d2a;
}
/*# sourceMappingURL=style.switcher.css.map */