.sj_human {
    margin-bottom: 10px;
    margin-bottom: 15px;
    padding: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
    background: #f9f9f9;
    overflow: hidden;
    position: relative;
    color: #000;
    border-radius: 3px;
    border: 2px solid transparent;
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.08);
    transition: .6s all cubic-bezier(0.09, 0.65, 0.38, 0.99);
}

.sj_human.active {
    border: 2px solid #7cb342;
    cursor: auto;
    color: #7cb342;
}

.sj_human div:first-child {
    position: absolute;
    height: 100%;
    text-align: center;
    width: 60px;
    top: 0;
    left: 0;
    background: #efefef;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sj_human.active div:first-child {
    background: #7cb342;
}

.sj_human div:last-child {
    display: inline-block;
    padding: 10px 10px 10px 70px;
    vertical-align: middle;
}



.sj_human .check {
    border-radius: 2px;
    background-color: #fff;
    border: 2px solid #c1c1c1;
    height: 24px;
    width: 24px;
    display: block;
    position: relative;
    transition: .6s all cubic-bezier(0.09, 0.65, 0.38, 0.99);
}

.sj_human.active .check {
    opacity: 0;
    transform: scale(0);
}

.sj_human div span {
    display: block;
}

.sj_human div span:first-child {
    font-weight: 700;
}

.sj_human svg {
    width: 35px;
    height: 35px;
    display: none;
    opacity: .4;
}

.sj_human.active svg {
    fill: #aed581;
    opacity: 1;
}

.sj_human polyline {
    fill: none;
    stroke: #aed581;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 24px;
    stroke-dashoffset: 24px;
}

.sj_human.active polyline {
    animation-delay: .5s;
    animation: dash .5s linear forwards;
}

@keyframes dash {
    0% {
        stroke-dashoffset: 24px;
    }

    100% {
        stroke-dashoffset: 0;
    }
}