/*

    Remove up and down arrows from number input fields

*/

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    appearance: none;
}

input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

/*

    Make tick boxes nicer

*/

input[type=checkbox] {
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    margin: 0;
    padding: 0;
}
