#cart input[type=checkbox]{
    height: 0;
    width: 0;
    visibility: hidden;
}

#cart #toogle-cursor {
    display: inline-block;
    cursor: pointer;
    text-indent: -9999px;
    width: 60px;
    height: 30px;
    margin-right:10px;
    background: #ededed;
    border-radius: 50px;
    position: relative;
}

#cart #toogle-cursor:after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 30px;
    transition: 0.3s;
}

#cart input:checked + #toogle-cursor {
    background: #00b3fe;
}

#cart input:checked + #toogle-cursor:after {
    left: calc(100% - 5px);
    transform: translateX(-100%);
}

#cart #toogle-cursor:active:after {
    width: 40px;
}

#cart .student-question {
    display: inline-block;
}

#cart .student-descr {
    font-size: 11px;
}