/*#region Switch*/
.switch .switch-element {
  background-color: white;
  border: 1px solid #678D3C;
  float: left;
  height: 20px;
  overflow: hidden;
  position: relative;
  padding: 0;
  width: 36px;
}
.switch.disabled .switch-element {
  border: 1px solid #a2a2a2;
}
.switch.ng-dirty .switch-element {
  background-color: rgba(192, 161, 107, 0.25);
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #c0a16b;
}
.switch .switch-background {
  background-color: #e5efd9;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.switch.disabled .switch-background {
  background-color: #eeeeee;
}
.switch.on .switch-background {
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -moz-transition: all 750ms ease;
  -o-transition: all 750ms ease;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
}
.switch.off .switch-background {
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -moz-transition: all 750ms ease;
  -o-transition: all 750ms ease;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
}
.switch .switch-element,
.switch .switch-switch,
.switch .switch-background {
  border-radius: 20px;
}
.switch .switch-switch {
  background-color: #678D3C;
  border: 1px solid #678D3C;
  height: 100%;
  position: relative;
  -moz-transition: all 750ms ease;
  -o-transition: all 750ms ease;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  width: 50%;
}
.switch.disabled .switch-switch {
  background-color: #c8c8c8;
  border: 1px solid #a2a2a2;
}
.switch.on .switch-switch {
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.switch .switch-labels {
  display: none;
  margin-left: 10px;
  -moz-transform: translateY(10%);
  -ms-transform: translateY(10%);
  -o-transform: translateY(10%);
  -webkit-transform: translateY(10%);
  transform: translateY(10%);
}
.panel-switch-report .switch-labels {
  margin-left: -1px;
}
.switch.on .switch-labels,
.switch.off .switch-labels {
  display: inline;
}
/*#endregion Switch*/

