/*  Checkbox CSS code import. */
.switch input:checked + span {
  background-color: #5d9cec;
  border-color: #5d9cec;
  transition: all 0.5s;
}
.switch .switch-lg span {
  width: 50px;
  height: 25px;
}
.switch span {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 100px;
  transition: all 0.5s;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1) inset;
  vertical-align: middle;
}
.switch * {
  cursor: pointer;
}
.switch span::after {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  border: 1px solid #ddd;
  border-radius: 400px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.switch input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.switch input:checked + span::after {
  left: 50%;
  transition: all 0.2s;
}
.switch .switch-lg span::after {
  height: 23px;
  width: 23px;
}
/* ProgressBar CSS code import. */
.ProgressBar {
  background: #d2d7d7;
  box-shadow: inset 0 1.5px 3px #969696;
  -webkit-box-shadow: inset 0 1.5px 3px #969696;
  border-radius: 3px;
  height: 20px;
}
.PP {
  overflow: hidden;
  background: #337ab7;
  transition: width 1s;
  width: 1%;
  height: 20px;
  border-radius: 5px;
  text-align: center;
  color: white;
}
.ProgressBar_animated {
  background: #d2dcdc;
  box-shadow: inset 0 1.5px 3px #969696;
  -webkit-box-shadow: inset 0 1.5px 3px #969696;
  border-radius: 3px;
  height: 20px;
}
@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
.PP_animated {
  background-image: url(https://raw.githubusercontent.com/RSG-Group/rsg-components/master/images/Progress.png);
  background-position: 0 0;
  background-repeat: repeat-x;
  animation: animatedBackground 75s linear infinite;
  overflow: hidden;
  transition: width 1s;
  height: 20px;
  border-radius: 5px;
  text-align: center;
  color: white;
}
.ProgressBar_checkered {
  background: #d2d7d7;
  box-shadow: inset 0 1.5px 3px #969696;
  -webkit-box-shadow: inset 0 1.5px 3px #969696;
  border-radius: 3px;
  height: 20px;
}
.PP_checkered {
  overflow: hidden;
  background: url(https://raw.githubusercontent.com/RSG-Group/rsg-components/master/images/Progress.png);
  transition: width 1s;
  height: 20px;
  border-radius: 5px;
  text-align: center;
  color: white;
}
