.capt-cha {
    display: inline-flex;
    align-items: center;
    height: 30px;
    /*width: 100%;*/
}

.capt-cha span {
    float: right;
    line-height: 30px;
    margin-left: 5px;
}

.capt-cha .check {
    cursor: pointer;
    border-radius: 3px;
    width: 30px;
    height: 30px;
    border: 2px solid green;
}

.check .wrapper {
    width: 25px;
    background-color: transparent !important;
    display: inline;
    margin: 4em auto 0;
}

.check .checkmark {
    stroke: green;
    stroke-dashoffset: 745.74853515625;
    stroke-dasharray: 745.74853515625;
    -webkit-animation: dash 2s ease-out forwards;
    animation: dash 2s ease-out forwards;
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 745.74853515625;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 745.74853515625;
    }

    100% {
        stroke-dashoffset: 0;
    }
}
