﻿.div-divider {
    height: 8px;
    background-color: lightgray;
    margin: 16px 0;
}

.div-task-type {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: unset !important;
    background-color: #025FAC;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    text-align: center;
    padding: 12px !important;
    margin-bottom: 15px;
    aspect-ratio: 1 / 1;
    width: 100%;
    position: relative;
}

    .div-task-type img {
        display: block;
        margin: auto;
        max-height: 100px;
    }

div#div-task-types .col-xs-2:nth-of-type(1), div#div-task-types .col-xs-2:nth-of-type(7) {
    padding-left: 0px;
}

div#div-task-types .col-xs-2:nth-of-type(6), div#div-task-types .col-xs-2:nth-of-type(12) {
    padding-right: 0px;
}

div#div-task-types .col-xs-2 {
    padding-left: 7.5px;
    padding-right: 7.5px;
}


.div-task-type span {
    display: block;
    margin: auto;
    margin-top: 0;
    font-family: "Poppins", sans-serif; font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 16px;
    margin-top: 10px;
}



    .div-task-type > span {
        color: white;
    }

    .div-task-type.selected-task-type {
        background-color: #D4362E;
    }

div#div-task-types {
    margin-top: 10px;
}

.checkboxWrapper input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 30px;
    height: 30px;
    min-height: 30px;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    display: grid !important;
    place-content: center;
    background-color: rgba(255,255,255,0.75) !important;
    border: 2px solid white !important;
}

.checkboxWrapper.fullWidth {
    width: 100%;
}

    .checkboxWrapper input[type=checkbox]::before {
        content: "";
        width: 0.65em;
        height: 0.65em;
        -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
        clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
        transform: scale(0);
        transform-origin: bottom left;
        transition: 120ms transform ease-in-out;
        background-color: CanvasText;
        margin-left: -10px;
        margin-top: 9px;
    }

    .checkboxWrapper input[type=checkbox]:checked::before {
        transform: scale(2);
    }

    .checkboxWrapper input[type=checkbox]:focus {
        outline: none;
        outline-offset: none;
    }

    .checkboxWrapper input[type=checkbox]:disabled {
        --form-control-color: var(--form-control-disabled);
        color: var(--form-control-disabled);
        cursor: not-allowed;
    }

.checkboxWrapper {
    display: flex;
    align-items: center;
    margin-right: 7.5px;
}

.checkboxWrapper {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0px 15px 0px 0px;
    width: 100%;
    background-color: #dededf !important;
    border: none !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0) !important;
    min-height: 55px;
    border-radius: 5px;
    margin-bottom: 15px;
    flex-direction: row-reverse;
}

    .checkboxWrapper span {
        background: #d4362d;
        display: flex;
        height: 55px;
        width: 55px;
        align-items: center;
        justify-content: center;
        border-radius: 5px 0px 0px 5px;
        margin-right: 20px;
    }

    .checkboxWrapper label {
        margin-bottom: 0px;
        margin-top: 3px;
    }

#div-sub-task-descriptions {
    margin-top: 16px;
}



@media (min-width: 767px) {
    div#div-task-types .col-xs-6.col-sm-4:nth-child(3n+1) {
        padding-left: 0px;
        padding-right: 8.5px
    }

    div#div-task-types .col-xs-6.col-sm-4:nth-child(3n+2) {
        padding-right: 4.25px;
        padding-left: 4.25px
    }

    div#div-task-types .col-xs-6.col-sm-4:nth-child(3n+3) {
        padding-right: 0px;
        padding-left: 8.5px
    }
}

@media (max-width: 767px) {
    div#div-task-types .col-xs-6.col-sm-4:nth-child(2n+1) {
        padding-left: 0px;
        padding-right: 7.5px;
    }

    div#div-task-types .col-xs-6.col-sm-4:nth-child(2n+2) {
        padding-left: 7.5px;
        padding-right: 0px;
    }

}



@media (max-width: 767px) {
    .checkboxWrapper span {
        width: 55px !important;
        min-width: 55px;
    }
}
