﻿/* ============================================================
 * bootstrapSwitch v1.3 by Larentis Mattia @spiritualGuru
 * http://www.larentis.eu/switch/
 * ============================================================
 * Licensed under the Apache License, Version 2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 * ============================================================ */
/*primary text color*/
/*icons hover*/
/*icons normal*/
/*row hover*/
/*header bg*/
.has-switch {
  border-radius: 30px;
  display: inline-block;
  cursor: pointer;
  line-height: 1.42857143;
  overflow: hidden;
  position: relative;
  text-align: left;
  width: 52px;
  -webkit-mask: url('../../../content/lib/bootstrap-switch/mask.png') 0 0 no-repeat;
  mask: url('../../../content/lib/bootstrap-switch/mask.png') 0 0 no-repeat;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.has-switch.deactivate {
  opacity: 0.9;
  filter: alpha(opacity=90);
  cursor: default !important;
}
.has-switch.deactivate label,
.has-switch.deactivate span {
  cursor: default !important;
}
.has-switch > div {
  width: 76px;
  position: relative;
  top: 0;
}
.has-switch > div.switch-animate {
  -webkit-transition: left 0.25s ease-out;
  -o-transition: left 0.25s ease-out;
  transition: left 0.25s ease-out;
}
.has-switch > div.switch-off {
  left: -24px;
}
.has-switch > div.switch-off label {
  background-color: white;
  border-color: #ff988a;
  -webkit-box-shadow: -1px 0 0 rgba(204, 110, 97, 0.5);
  box-shadow: -1px 0 0 rgba(204, 110, 97, 0.5);
}
.has-switch > div.switch-on {
  left: 0;
}
.has-switch > div.switch-on label {
  background-color: white;
}
.has-switch input[type=checkbox] {
  display: none;
}
.has-switch span {
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  float: left;
  height: 26px;
  line-height: 16px;
  margin: 0;
  padding-bottom: 6px;
  padding-top: 5px;
  position: relative;
  text-align: center;
  width: 50%;
  z-index: 1;
  -webkit-transition: 0.25s ease-out;
  -o-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
}
.has-switch span.switch-left {
  border-radius: 30px 0 0 30px;
  background-color: #77bd7f;
  color: #4e9e57;
  border-left: 1px solid transparent;
  text-indent: -5px;
}
.has-switch span.switch-right {
  border-radius: 0 30px 30px 0;
  background-color: #ff988a;
  color: #cc6e61;
}
.has-switch span.switch-right [class*="fui-"] {
  text-indent: 0;
}
.has-switch label {
  border: 4px solid #77bd7f;
  border-radius: 50%;
  float: left;
  height: 26px;
  margin: 0 -15px;
  padding: 0;
  position: relative;
  vertical-align: middle;
  width: 26px;
  z-index: 100;
  -webkit-transition: 0.25s ease-out;
  -o-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
}
.switch-square {
  border-radius: 20px;
  -webkit-mask: "url('../../../content/lib/bootstrap-switch/mask.png') 0 0 no-repeat";
  mask: "url('../../../content/lib/bootstrap-switch/mask.png') 0 0 no-repeat";
}
.switch-square > div.switch-off label {
  border-color: #a9d5ae;
  border-radius: 20px 0 0 20px;
}
.switch-square span.switch-left {
  border-radius: 20px 0 0 20px;
}
.switch-square span.switch-left [class*="fui-"] {
  text-indent: -10px;
}
.switch-square span.switch-right {
  border-radius: 0 20px 20px 0;
}
.switch-square span.switch-right [class*="fui-"] {
  text-indent: 5px;
}
.switch-square label {
  border-radius: 0 20px 20px 0;
  border-color: #4e9e57;
}