/* Hide the browser's default checkbox */
#floater input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0px;
    width: 0px;
}

/* Create a custom checkbox */
#floater .checkmark {
    position: relative;
    display: inline-block;
    top: 0;
    left: 0;
    height: 11px;
    width: 11px;
    background-color: #fff;
    border: 1px solid #1369AC;
    border-radius: 25%;
}

#floater .checkmark:hover {
    cursor: pointer;
}
/* On mouse-over, add a grey background color */
#floater label:hover>input[type="checkbox"]~.checkmark,
#floater input[type="checkbox"]:hover~.checkmark {
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
#floater label:hover>input[type="checkbox"]:checked~.checkmark,
#floater input[type="checkbox"]:checked:hover~.checkmark {
    background-color: #105f9b;
}

/* When the checkbox is checked, add a blue background */
#floater input[type="checkbox"]:checked~.checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
#floater .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
#floater input[type="checkbox"]:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
#floater .checkmark:after {
    left: 2px;
    top: 0px;
    width: 5px;
    height: 7px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}