.ToggleInput {
    &-toggle-bg {
        background-color: $blue;
        border-radius: 12px;
        cursor: pointer;
        display: inline-block;
        height: 18px;
        margin-left: 8px;
        margin-right: 8px;
        position: relative;
        transition: background-color .2s ease-in-out;
        vertical-align: middle;
        width: 32px;
    }

    &-toggle-bg-off {
        background-color: $gray-400;
    }

    &-toggle-bg-disabled {
        background-color: $gray-200;
    }

    &-toggle {
        background-color: white;
        border-radius: 7px;
        box-shadow: 0 1px 4px 0 rgba(4, 30, 45, 0.42);
        height: 14px;
        position: absolute;
        top: 2px;
        transition: left .2s ease-in-out;
        width: 14px;
    }

    &-toggle-left {
        left: 3px;
    }

    &-toggle-right {
        left: 15px;
    }
}
