#style-switcher {
  position: fixed;
  top: 60px;
  width: 250px;
  right: -250px;
  transition: 0.3s all;
  font-family: 'Roboto';
  z-index: 1000;
}
#style-switcher * {
  box-sizing: border-box !important;
}
#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: 300px;
  box-sizing: border-box;
  overflow: hidden;
  overflow-y: auto;
}
#style-switcher .box .options-box {
  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 .radio-list label {
  display: block;
  font-size: 14px;
}
#style-switcher .box .options-box .radio-list label span {
  font-size: 0.9em;
  color: #999;
  display: block;
}
#style-switcher .style-switcher-toggle {
  display: block;
  width: 51px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  left: -50px;
  bottom: 50%;
  margin-bottom: -25px;
  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;
}
@media (max-height: 460px) {
  #style-switcher {
    top: -5px;
    height: 100%;
  }
  #style-switcher .box {
    height: 100%;
    min-height: 100%;
  }
}
.demo-links a {
  display: block;
  width: 360px;
  padding: 15px 20px 10px 20px;
  box-sizing: border-box;
  margin: 20px auto;
  text-align: center;
  font-size: 30px;
  line-height: 30px;
  text-decoration: none;
  font-family: 'Roboto';
  background: #2ECC71;
  color: #fff;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.12);
  font-weight: 300;
  border-radius: 3px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.33);
  transition: 0.3s all;
}
.demo-links a span {
  font-size: 14px;
  opacity: 0.8;
  text-shadow: none;
}
.demo-links a:hover {
  border-bottom: 1px solid #26A65B;
  background: #26A65B;
}
