:root {
    --uncheckedColor: #717171;
    --checklistLabelCheckedColor: rgba(89, 203, 232, 0.5);
    --checklistLabelTwoCheckedColor: rgba(246, 190, 0, 0.5);
    --checklistLabelThreeCheckedColor: rgba(247, 47, 53, 0.5);
    --checklistLabelFourCheckedColor: rgba(93, 226, 60, 0.5);
}


.checklist_in_post>form.checklist-list>ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.checklist_in_post>form.checklist-list>ul>li {
    text-decoration: none;
    padding: 0px !important;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 0px;
    margin: 0;
    list-style: none;
}

.checklist_in_post li a {
    text-decoration: none;
}

.checklist_in_post form.checklist-list {
    padding: 20px;
    position: relative;
    /*box-shadow*/
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
/* 
.checklist_in_post form.checklist-list:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0%;
    bottom: 0;
    left: 10px;
    right: 10px;

} */

.checklist_in_post .checklist-wrap {
    display: block;
    position: relative;
    padding-left: 35px;
}

.checklist_in_post .checklist-wrap:last-of-type {
    /*box-shadow*/
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.checklist_in_post input[type="checkbox"] {
    position: relative;
    height: 0;
    width: 0;
    opacity: 0;
    top: 0px;
    position: absolute;
}

.checklist_in_post .checklist-label {
    display: block;
    font-weight: 200;
    padding: 5px 5px;
    position: relative;
    
}

.checklist_in_post .checklist-label tr:hover {
    cursor: default;
    
}

/* .checklist_in_post .checklist-label:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;

} */




.checklist_in_post .checklist-label .fa-check {
    position: absolute;
    z-index: 1;
    left: -40px;
    top: 10px;
    font-size: 1px;
    line-height: 36px;
    width: 36px;
    height: 36px;
    text-align: center;
    text-shadow: none;
    border-style: solid;
    border-radius: 10px;
    cursor: pointer; 
}

.checklist-label.checklist-label-checked tr {
    color: white;
    width: 100%;
    background: var(--checklistLabelCheckedColor);

    /*transition*/
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.checklist-label .fa-check:hover {
    /*box-shadow*/
    -webkit-box-shadow:  0 0 0 2px var(--uncheckedColor);
    -moz-box-shadow:  0 0 0 2px var(--uncheckedColor);
    box-shadow:  0 0 0 2px var(--uncheckedColor);
    cursor: pointer;
}

.checklist-label.checklist-label-checked-2 tr {
    color: white;
    background: var(--checklistLabelTwoCheckedColor);

    width: 100%;
    /*transition*/
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.checklist-label.checklist-label-checked-3 tr {
    color: white;
    background: var(--checklistLabelThreeCheckedColor);
    width: 100%;
    /*transition*/
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.checklist-label.checklist-label-checked-4 tr {
    color: white;
    background: var(--checklistLabelFourCheckedColor);
    width: 100%;
    /*transition*/
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

/* .checklist-label.checklist-label-checked:before {
    width: 100%;
} */

/* .checklist-label.checklist-label-checked:after {
    content: none;
    -webkit-box-shadow: inset 0 0 0 2px var(--checklistLabelTwoCheckedColor);
    -moz-box-shadow: inset 0 0 0 2px var(--checklistLabelTwoCheckedColor);
    box-shadow: inset 0 0 0 2px var(--checklistLabelTwoCheckedColor);
} */

.checklist-label.checklist-label-checked .fa-check {
    font-size: 20px;
    line-height: 20px;
    color:rgb(89, 203, 232, .8);
    /* padding-right: 30px; */
    padding-top: 6px;
    cursor: pointer;
}

.checklist-label.checklist-label-checked .fa-check:hover {
    /*box-shadow*/
    -webkit-box-shadow:  0 0 0 2px var(--checklistLabelCheckedColor);
    -moz-box-shadow:  0 0 0 2px var(--checklistLabelCheckedColor);
    box-shadow:  0 0 0 2px var(--checklistLabelCheckedColor);
    cursor: pointer;
}

/* .checklist-label.checklist-label-checked-2:before {
    width: 100%;
} */

/* .checklist-label.checklist-label-checked-2:after {

    content: none;
    color: rgb(89, 203, 232);
    -webkit-box-shadow: inset 0 0 0 2px #8dc63f;
    -moz-box-shadow: inset 0 0 0 2px #8dc63f;
    box-shadow: inset 0 0 0 2px #8dc63f;
} */

.checklist-label.checklist-label-checked-2 .fa-check {
    font-size: 20px;
    line-height: 20px;
    color: rgba(246, 190, 0, .8);
    padding-top: 6px;
    cursor: pointer;
}

.checklist-label.checklist-label-checked-2 .fa-check:hover {
    /*box-shadow*/
    -webkit-box-shadow:  0 0 0 2px rgba(246, 190, 0, .8);
    -moz-box-shadow:  0 0 0 2px rgba(246, 190, 0, .8);
    box-shadow:  0 0 0 2px rgba(246, 190, 0, .8);
    cursor: pointer;
}


/* .checklist-label.checklist-label-checked-3:before {
    width: 100%;
} */

/* .checklist-label.checklist-label-checked-3:after {
    content: none;
    -webkit-box-shadow: inset 0 0 0 2px #8dc63f;
    -moz-box-shadow: inset 0 0 0 2px #8dc63f;
    box-shadow: inset 0 0 0 2px #8dc63f;
} */

.checklist-label.checklist-label-checked-3 .fa-check {
    font-size: 20px;
    line-height: 20px;
    color: var(--checklistLabelThreeCheckedColor);
    padding-top: 6px;
    cursor: pointer;
}

.checklist-label.checklist-label-checked-3 .fa-check:hover {
    /*box-shadow*/
    -webkit-box-shadow:  0 0 0 2px var(--checklistLabelThreeCheckedColor);
    -moz-box-shadow:  0 0 0 2px var(--checklistLabelThreeCheckedColor);
    box-shadow:  0 0 0 2px var(--checklistLabelThreeCheckedColor);
    cursor: pointer;
}

/* .checklist-label.checklist-label-checked-4:before {
    width: 100%;
    order: 5;
} */

/* .checklist-label.checklist-label-checked-4:after {
    content: none;
    -webkit-box-shadow: inset 0 0 0 2px #8dc63f;
    -moz-box-shadow: inset 0 0 0 2px #8dc63f;
    box-shadow: inset 0 0 0 2px #8dc63f;
    order: 5;
} */

.checklist-label.checklist-label-checked-4 .fa-check {
    font-size: 20px;
    line-height: 20px;
    color: var(--checklistLabelFourCheckedColor);
    order: 5;
    padding-top: 6px;
    cursor: pointer;
}

.checklist-label.checklist-label-checked-4 .fa-check:hover {
    /*box-shadow*/
    -webkit-box-shadow:  0 0 0 2px var(--checklistLabelFourCheckedColor);
    -moz-box-shadow:  0 0 0 2px var(--checklistLabelFourCheckedColor);
    box-shadow:  0 0 0 2px var(--checklistLabelFourCheckedColor);
    cursor: pointer;
}

.list-item-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}


label span {
    color: white;
}

.checklist-label th {
    width: 25%;
    max-width: 25%;
}

.wpcf7 label { 
    /* form labels */
    color: white;
    }

#search-input {
    background: #2c2a2a;
    color: white;
    
}

.dateInput {
    color-scheme: dark;
  }
  
.wpcf7-response-output {
    color: white;
}

.delete-button {
color: #7a7a7a;
border: .1px solid #7a7a7a;
background-color: transparent;
transition: 0.3s;
display: flex;
align-items: center;
justify-content: center;
padding: 0em .5em;
cursor: pointer;
}

.delete-button:hover {
background-color: red;
    color: black;
border: .1px solid black;
}


.wpcf7-submit {
padding-left: 20px !important;
color: white !important;
background-color: #3b3b3b !important;
border-color: #6e6d6f !important;
}

.wpcf7-submit:hover {
background-color: green !important;
}

.wpcf7-spinner {
display: none !important;
}

.wpcf7-form-control-wrap {
    color-scheme: dark ;
}

#closeButton {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    background-color: white;
    color: black;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
  }
  
  #closeButton:hover {
    background-color: red;
    color: black;  
}