/* custom checkboxes and radios begin */

.custom-input input[type="checkbox"],
.custom-input input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.custom-input .form-check {
    padding-left: 0;
}
.custom-input label {
    display: block;
    position: relative;
    cursor: pointer;
    padding-left: 35px;
    margin-bottom: 10px;
}

.custom-input label:before,
.custom-input label:after {
    display: block;
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    top: 3px;
    left: 3px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.custom-input label:before {
    background-color: #eee;
    transition: all 300ms ease;

    outline: 3px solid #0d034c;
    border: 3px solid #fff;
}
.custom-input input[type="radio"] + label:before,
.custom-input input[type="radio"] + label:after {
    border-radius: 100%;
}
.custom-input label:after {
    content: " ";
    opacity: 0;
    border: 2px solid #fff;
    background: #0d034c;
    transition: all 300ms ease;
}
.custom-input input:checked + label:after {
    background: #0d034c;
    border-width: 4px;
    opacity: 1;
}

/* 
.input.checkbox label .check,
.input.radio label .check {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    transition: all 300ms ease;
    border: 2px solid #0d034c;
}

.input.radio label span {
    border-radius: 100%;
}

.input.checkbox label:hover input ~ .check,
.input.radio label:hover input ~ .check {
    background-color: #ccc;
}

.input.checkbox label input:checked ~ .check,
.input.radio label input:checked ~ .check {
    background-color: #0d034c;
}

.input.checkbox label span:after,
.input.radio label span:after {
    position: absolute;
    content: "";
    opacity: 0;
    transition: all 600ms ease;
    left: 7px;
    top: 2px;
    width: 8px;
    height: 14px;
    border: solid transparent;
    transform: rotate(45deg);
    border-width: 0 3px 3px 0;
}

.input.checkbox label input:checked ~ .check:after,
.input.radio label input:checked ~ .check:after {
    border-color: #fff;
    opacity: 1;
} */

/* custom checkboxes and radios end */
