.switcher {
  position: fixed;
  z-index: 2;
  top: 72px;
  left: -220px;
  width: 220px;
  background-color: #e6e6e6;
  border-radius: 0px 5px 5px 0px;
}
.switcher_button {
  position: absolute;
  top: 0;
  right: -50px;
  border-radius: 0px 5px 5px 0px;
  width: 50px;
  height: 50px;
  background: #474747 url(switcher-icon.png) no-repeat right 10px center;
  cursor: pointer;
}
.switcher_header {
  background-color: #474747;
  position: relative;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  padding: 16px 20px;
}
.switcher_content {
  color: #333;
  padding: 16px 20px;
}
.switcher_title {
  font-size: 14px;
  line-height: 20px;
}
.switcher_value {
  font-size: 0;
  margin-bottom: 10px;
}
.switcher_value:last-child {
  margin-bottom: 0;
}
.switcher_option.selected{
  outline: 2px solid red;
}
.switcher_option {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin: 5px 10px 5px 0;
  cursor: pointer;
}
.switcher_option-large {
  width: 50px;
  height: 30px;
}
