/**
 * Checkbox Toggle UI
 */
input[type="checkbox"].hmba-ui-toggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    -webkit-tap-highlight-color: transparent;

    width: auto;
    height: auto;
    vertical-align: middle;
    position: relative;
    border: 0;
    outline: 0;
    cursor: pointer;
    margin: 0 4px;
    background: none;
    box-shadow: none;
}
input[type="checkbox"].hmba-ui-toggle:focus {
    box-shadow: none;
}
input[type="checkbox"].hmba-ui-toggle:after {
    content: '';
    font-size: 8px;
    font-weight: 400;
    line-height: 18px;
    text-indent: -14px;
    color: #ffffff;
    width: 36px;
    height: 18px;
    display: inline-block;
    background-color: #a7aaad;
    border-radius: 72px;
    box-shadow: 0 0 12px rgb(0 0 0 / 15%) inset;
}
input[type="checkbox"].hmba-ui-toggle:before {
    content: '';
    width: 14px;
    height: 14px;
    display: block;
    position: absolute;
    top: 2px;
    left: 2px;
    margin: 0;
    border-radius: 50%;
    background-color: #ffffff;
}
input[type="checkbox"].hmba-ui-toggle:checked:before {
    left: 20px;
    margin: 0;
    background-color: #ffffff;
}
input[type="checkbox"].hmba-ui-toggle,
input[type="checkbox"].hmba-ui-toggle:before,
input[type="checkbox"].hmba-ui-toggle:after,
input[type="checkbox"].hmba-ui-toggle:checked:before,
input[type="checkbox"].hmba-ui-toggle:checked:after {
    transition: ease .15s;
}
input[type="checkbox"].hmba-ui-toggle:checked:after {
    content: '';
    background-color: #77C26A;
}