.stm-lms-admin-checkbox {
    margin-bottom: 30px;
    + p {
        display: block;
        margin-top: -15px !important;
    }
    label {
        display: inline-block !important;
        margin: 0 !important;
    }
    .stm-lms-admin-checkbox-wrapper {
        position: relative;
        display: inline-block;
        margin: 1px 0 0 5px;
        width: 44px;
        height: 24px;
        border: 2px solid #bfbfbf;
        background-color: #bfbfbf;
        vertical-align: top;
        border-radius: 20px;
        input {
            position: absolute;
            width: 100%;
            height: 100%;
            display: block;
            margin: 0 !important;
            opacity: 0;
            z-index: 30;
        }
        .stm-lms-checkbox-switcher {
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            background-color: #fff;
            border-radius: 20px;
            z-index: 10;
            transition: .3s ease;
        }
        &.active {
            background-color: #195ec8;
            border-color: #195ec8;
            .stm-lms-checkbox-switcher {
                transform: translateX(20px);
            }
        }
    }
}

.stm_lms_checkbox {
    position: relative;
    i.fa-check {
        position: absolute;
        top: 4px;
        left: 0;
        width: 16px;
        height: 16px;
        border: 1px solid #bfbfbf;
        background-color: #f1f1f1;
        font-size: 8px;
        line-height: 14px;
        text-align: center;
        color: #fff;
        border-radius: 3px;
        transition: .3s ease;
        &:before {
            content: '';
        }
    }
    input[type="checkbox"] {
        opacity: 0;
        &:checked {
            + i {
                background-color: #195ec8;
                border-color: #195ec8;
                &:before {
                    content: "\f00c";
                }
            }
        }
    }
}

.stm_lms_radio {
    position: relative;
    i {
        position: absolute;
        top: 9px;
        left: 0;
        width: 16px;
        height: 16px;
        border: 1px solid #bfbfbf;
        background-color: #f1f1f1;
        border-radius: 50%;
        transition: .3s ease;
        &:before {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            display: block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }
    }
    span {
        font-size: 15px;
        font-weight: 400;
        opacity: .6;
    }
    input[type="radio"] {
        opacity: 0;
        &:checked {
            + i {
                border-color: #195ec8;
                background: #fff;
                &:before {
                    background-color: #195ec8;
                }
                + span {
                    opacity: 1;
                }
            }
        }
    }
}