/*!****************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/block-toggle/style.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************/
/* The switch - the box around the slider */
.wcb-toggle__switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  /* Hide default HTML checkbox */
}
.wcb-toggle__switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.wcb-toggle__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}
.wcb-toggle__slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .wcb-toggle__slider {
  background-color: #2196f3;
}

input:focus + .wcb-toggle__slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .wcb-toggle__slider:before {
  transform: translateX(26px);
}

/* Rounded sliders */
.wcb-toggle__slider.round {
  border-radius: 9999px !important;
}
.wcb-toggle__slider.round:before {
  border-radius: 9999px !important;
}

/*# sourceMappingURL=style-index.css.map*/