.tasks__actions {
    background-color: white;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 1rem 0;
}

.tasks__legend {
    font-size: 1rem;
}

.task-rq-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: .25rem;
}

.task-req-container {
    margin: 1rem 0 1rem 0;
}

.task-req-line-item {
    margin: .5rem 0 .5rem 0;
    font-weight: bold;
    height: calc(100% - 6px);
    padding: 2px 6px;
    display: table;
}
.task-req-line-item-delete {
    cursor: pointer;
    margin-left: 7px;
}


.tasks-backarrow-container .fa {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.task-tab-controls {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
}

.check-title-flex {
    display: flex;
    justify-content: space-around;
}

/* .complete-task .ql-editor {
    /*line-height: 10rem;
} */

.task-email-list li {
    font-size: 1rem;
    font-weight: bold;
    padding-bottom: 4px;
    cursor: pointer;
}

.task-email-list li:nth-child(even) {
    background: lightgrey;
}

.task-email-list {
    overflow-y: scroll;
    max-height: 300px;
    list-style-type: none;
    padding-left: 1rem;
    margin: 0;
}

.requirement-card-wrapper {
    margin: 1.0rem;
}

.requirement-card-wrapper.complete .requirement-description {
    color: #2bbe69;
}

.requirement-description {
    font-size: 1.4rem;
    font-weight: bold;
    color: red;
}

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

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

.addTask 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;
    padding-left: 1rem;
    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;
}

.requirements__section, .requirements__section--active {
    width: calc(50% - 1.5rem);
    height: calc(100% - 1.5rem);
    overflow-y: hidden;
    margin: .75rem;
    display: inline-block;
    background-color: white;
    box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.3);
    vertical-align: top;
}
.completion__section, .completion__section--active {
    width: calc(50% - 1.5rem);
    height: calc(100% - 1.5rem);
    overflow-y: hidden;
    margin: .75rem;
    display: inline-block;
    background-color: white;
    box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.3);
    vertical-align: top;
}

@media screen and (max-width: 991px) {

    .requirements__section, .requirements__section--active {
        width: 97%;
        height: 100%;
        margin: 6;
        box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.3);
        transition: all 200ms linear;
    }

    /* .requirements__section {
        position: absolute;
        right: 0;
    } */

    .completion__section, .completion__section--active {
        width: 97%;
        height: 100%;
        margin: 6;
        box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.3);
        transition: all 200ms linear;
    }
/* 
    .completion__section {
        position: absolute;
        right: 0%;
        top:+200%

    } */


}
