/* Customize the label (the container) */
.custom {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: start;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.custom input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    height: 1.25em;
    width: 1.25em;
    background-color: #fff;
    margin: 0.625em;
    border: 0.06em solid #004A6E;
    border-radius: .25em;
    overflow: hidden;
}

/*!* On mouse-over, add a grey background color *!*/
/*.custom:hover input ~ .checkmark {*/
/*    background-color: #ccc;*/
/*}*/

/* When the checkbox is checked, add a blue background */
/*.custom input:checked ~ .checkmark {*/
/*    background-color: #004A6E;*/
/*}*/

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    height: 100%;
    width: 100%;

    display: block;
}

/* Show the checkmark when checked */
.custom input:checked ~ .checkmark:after {
    background-image: url("/images/icons/checkmark.svg");
    background-size: .75em;
    background-position: center;
    background-repeat: no-repeat;
}

/* Style the checkmark/indicator */
.custom .checkmark:after {

}
