/* height */
/* width */
/* toggle dimensions */
/* font size */
/* toggle's border thickness */
/* toggle box shadow */
/* labels animation time */
/* label text color */
/* colors: yes, unselected, no */
/* line 43, app/assets/stylesheets/toggle-switch.scss */
.switch-wrapper {
  display: flex;
}

/* line 47, app/assets/stylesheets/toggle-switch.scss */
.switch {
  width: 3em;
  height: 1em;
  position: relative;
  margin: 10px 0px;
  border-radius: 0.5em;
  background: #bbbbbb;
}

/* line 55, app/assets/stylesheets/toggle-switch.scss */
.switch .toggle {
  width: 1.2em;
  height: 1.2em;
  position: absolute;
  left: 0.9em;
  top: -0.1em;
  border-radius: 50%;
  box-sizing: border-box;
  border: 0px solid #676767;
  background: #818181;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* line 71, app/assets/stylesheets/toggle-switch.scss */
.switch label {
  cursor: pointer;
  width: 1em;
  height: 1em;
  position: absolute;
  margin: 0;
  padding: 0;
  z-index: 1;
  display: inline-block;
  text-align: center;
  line-height: 1em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  font-size: 1em;
  font-weight: bold;
  color: white;
  -webkit-animation: 6s rot-label ease-in-out infinite;
  animation: 6s rot-label ease-in-out infinite;
}

/* line 91, app/assets/stylesheets/toggle-switch.scss */
.switch input {
  position: absolute;
  left: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
}

/* line 99, app/assets/stylesheets/toggle-switch.scss */
.switch input.yes:checked {
  background: red;
}

/* line 102, app/assets/stylesheets/toggle-switch.scss */
.switch input.yes:checked ~ .toggle {
  border: 0px solid #008000;
  background: #00b300;
  left: -0.1em;
}

/* line 108, app/assets/stylesheets/toggle-switch.scss */
.switch input.no:checked {
  background: red;
}

/* line 111, app/assets/stylesheets/toggle-switch.scss */
.switch input.no:checked ~ .toggle {
  border: 0px solid #ff0000;
  background: #ff3333;
  left: 1.9em;
}

/* line 117, app/assets/stylesheets/toggle-switch.scss */
.switch input.unselected, .switch label.unselected {
  left: 33.3333333333%;
}

/* line 121, app/assets/stylesheets/toggle-switch.scss */
.switch input.no, .switch label.no {
  left: 66.6666666667%;
}

/* line 125, app/assets/stylesheets/toggle-switch.scss */
.switch label.unselected {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/* line 129, app/assets/stylesheets/toggle-switch.scss */
.switch label.no {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

/* line 134, app/assets/stylesheets/toggle-switch.scss */
.switch-label {
  margin-top: 0.4em;
  margin-left: 10px;
}
