@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .custom-radio-button input[type=checkbox],
.custom-radio-button input[type=radio] {
    --active: #1ABB9C;
    --active-inner: #fff;
    --focus: 2px rgba(39, 94, 254, .3);
    --border: #BBC1E1;
    --border-hover: #1ABB9C;
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  }
  .custom-radio-button input[type=checkbox]:after,
.custom-radio-button input[type=radio]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }
  .custom-radio-button input[type=checkbox]:checked,
.custom-radio-button input[type=radio]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
  .custom-radio-button input[type=checkbox]:disabled,
.custom-radio-button input[type=radio]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }
  .custom-radio-button input[type=checkbox]:disabled:checked,
.custom-radio-button input[type=radio]:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  .custom-radio-button input[type=checkbox]:disabled + label,
.custom-radio-button input[type=radio]:disabled + label {
    cursor: not-allowed;
  }
  .custom-radio-button input[type=checkbox]:hover:not(:checked):not(:disabled),
.custom-radio-button input[type=radio]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  .custom-radio-button input[type=checkbox]:focus,
.custom-radio-button input[type=radio]:focus {
    box-shadow: 0 0 0 var(--focus);
  }
  .custom-radio-button input[type=checkbox]:not(.switch),
.custom-radio-button input[type=radio]:not(.switch) {
    width: 21px;
  }
  .custom-radio-button input[type=checkbox]:not(.switch):after,
.custom-radio-button input[type=radio]:not(.switch):after {
    opacity: var(--o, 0);
  }
  .custom-radio-button input[type=checkbox]:not(.switch):checked,
.custom-radio-button input[type=radio]:not(.switch):checked {
    --o: 1;
  }
  .custom-radio-button input[type=checkbox] + label,
.custom-radio-button input[type=radio] + label {
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
  }
  .custom-radio-button input[type=checkbox]:not(.switch) {
    border-radius: 7px;
    margin-right: 10px;
  }
  .custom-radio-button input[type=checkbox]:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    transform: rotate(var(--r, 20deg));
  }
  .custom-radio-button input[type=checkbox]:not(.switch):checked {
    --r: 43deg;
  }
  .custom-radio-button input[type=checkbox].switch {
    width: 38px;
    border-radius: 11px;
  }
  .custom-radio-button input[type=checkbox].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    transform: translateX(var(--x, 0));
  }
  .custom-radio-button input[type=checkbox].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }
  .custom-radio-button input[type=checkbox].switch:disabled:not(:checked):after {
    opacity: 0.6;
  }
  .custom-radio-button input[type=radio] {
    border-radius: 50%;
  }
  .custom-radio-button input[type=radio]:after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    transform: scale(var(--s, 0.7));
  }
  .custom-radio-button input[type=radio]:checked {
    --s: .5;
  }
}
/**   ul
 *  margin: 12px
 *  padding: 0
 *  list-style: none
 *  width: 100%
 *  max-width: 320px
 *  li
 *    margin: 16px 0
 *    position: relative
 *
 * html
 *  box-sizing: border-box
 *
 * *
 *  box-sizing: inherit
 *  &:before,
 *  &:after
 *    box-sizing: inherit
 *
 * // Center & dribbble
 * body
 *  min-height: 100vh
 *  font-family: 'Inter', Arial, sans-serif
 *  color: #8A91B4
 *  display: flex
 *  justify-content: center
 *  align-items: center
 *  background: #F6F8FF
 *  @media(max-width: 800px)
 *    flex-direction: column **/

/*# sourceMappingURL=styleButtons.css.map */
