.addTask {
    background-color: #bbb;
    text-align: center;
    padding: 1rem;
}

/* Conversion from mm to rem seemed to work best by multiplying mm * .175 */
.taskOverview input[type=checkbox] {
    width: 2.45rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 2.45rem;
    border: 0.0175rem solid black;
    background-color: white;
}

.taskOverview input[type=checkbox]:checked {
    background-color: lightblue;
}

.taskOverview input[type=checkbox]:checked:after {
    margin-left: .7525rem;
    margin-top: -0.007rem;
    width: .525rem;
    height: 1.75rem;
    border: solid white;
    border-width: 0 0.35rem 0.35rem 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
    display: inline-block;
    box-sizing: revert;
}

input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 2.45rem !important;
    height: 2.45rem !important;
    border: 0.0175rem solid black;
    content: "";
    display: inline-block;
    border-radius: 50px;
    background-color: white;
}

input[type=radio]:checked {
    width: 2.45rem;
    height: 2.45rem;
    border: 0.0175rem solid black;
    border-radius: 50px;
}

input[type=radio]:checked:after {
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 2.3625rem !important;
    height: 2.3625rem !important;
    border: 0.4375rem solid white;
    content: "";
    display: inline-block;
    border-radius: 50px;
    background-color: lightblue;
}

input[type=radio]:focus, input:focus {
    outline: none;
}

.recurring-title {
    font-weight: 700;
    font-size: 1.2rem !important;
    color: black;
    margin-top: revert;
    margin-left: revert;
}

.reqdoc-title {
    font-weight: 700;
    font-size: 1.2rem !important;
    color: black;
}

.reqphoto-title {
    font-weight: 700;
    font-size: 1.2rem !important;
    color: black;
}

.requirement-field {
    font-size: 1rem;
}