.customCheckbox {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.customCheckbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 23px;
    width: 23px;
    border: 2px solid #ffc107;
    border-radius: 5px;
}

.customCheckbox:hover input~.checkmark {
    background-color: #fff;
}

.customCheckbox input:checked~.checkmark {
    background-color: #ffc107;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.customCheckbox input:checked~.checkmark:after {
    display: block;
}

.customCheckbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}