.inv-md-checkbox input[type='checkbox'] {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
}

.inv-md-checkbox input[type='checkbox']:active+label:before {
    transition-duration: 0s;
}

.inv-md-checkbox input[type='checkbox']+label {
    position: relative !important;
    padding-left: 30px;
    vertical-align: top;
    user-select: none;
    cursor: pointer;
}

.inv-md-checkbox input[type='checkbox']+label:before {
    box-sizing: content-box;
    content: '';
    color: #4f8196;
    position: absolute !important;
    top: 11px;
    left: 0;
    width: 14px;
    height: 14px;
    margin-top: -9px;
    border: 2px solid #4f8196;
    text-align: center;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.inv-md-checkbox input[type='checkbox']+label:after {
    box-sizing: content-box;
    content: '';
    background-color: #4f8196;
    position: absolute !important;
    top: 50%;
    left: 4px;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    transform: scale(0);
    transform-origin: 50%;
    transition: transform 200ms ease-out;
}

.inv-md-checkbox input[type='checkbox']:disabled+label:before {
    border-color: #cccccc;
}

.inv-md-checkbox input[type='checkbox']:disabled:focus+label:before,
.inv-md-checkbox input[type='checkbox']:disabled:hover+label:before {
    background-color: inherit;
}

.inv-md-checkbox input[type='checkbox']:disabled:checked+label:before {
    background-color: #cccccc;
}

.inv-md-checkbox input[type='checkbox']+label:after {
    background-color: transparent;
    top: 12px;
    left: 4px;
    width: 8px;
    height: 3px;
    margin-top: -4px;
    border-style: solid;
    border-color: #ffffff;
    border-width: 0 0 3px 3px;
    border-image: none;
    transform: rotate(-45deg) scale(0);
}

.inv-md-checkbox input[type='checkbox']:checked+label:after {
    content: '';
    transform: rotate(-45deg) scale(1);
    transition: transform 200ms ease-out;
}

.inv-md-checkbox input[type='checkbox']:checked+label:before {
    animation: invMdBorderscale 200ms ease-in;
    background: #4f8196;
}

.inv-md-checkbox input[type='checkbox']:checked+label:after {
    transform: rotate(-45deg) scale(1);
}

@keyframes invMdBorderscale {
    50% {
        box-shadow: 0 0 0 2px #4f8196;
    }
}

.form-check.ui-checkbox-nonwrapped {
    padding-left: 0;
}

.form-check.ui-checkbox-nonwrapped label {
    width: 100%;
}