.e-check-box {
    position: relative;
    width: 100%;
    height: 38px;
    line-height: 38px;
    box-sizing: border-box;
}

.e-check-box > .input {
    position: absolute;
    width: 100%;
    height: 100%;
    line-height: 100%;
    top: 0;
    left: 0;
    outline: none;
    padding: 0;
    margin: 0;
    border: none;
    z-index: 100;
    opacity: 0;
}

.e-check-box > .label {
    position: absolute;
    width: 100%;
    height: 100%;
    line-height: 38px;
    top: 0;
    left: 0; 
    text-align: center;
    box-sizing: border-box;
    outline: none;
    padding: 0;
    margin: 0;
    border: none;
}

.e-check-box > .input:checked + .label {
    border: 1px solid #38a8d4;
    border-radius: 10px;
}