/**
 * Subtargets related - block checkbox
 */
.is-open .ga-more-opener {
    display: none;
}

.form-check-input.opener:indeterminate, .form-check-input.opener.indeterminate {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2020%2020'%3E%3Cpath%20fill='none'%20stroke='%23fff'%20stroke-linecap='round'%20stroke-width='2.5'%20d='M10%204v12M4%2010h12'/%3E%3C/svg%3E");
}

/* if is open, always show -*/
.is-open .form-check-input.opener, .is-open .form-check-input.opener:indeterminate, .is-open .form-check-input.opener.indeterminate {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2020%2020'%3E%3Cpath%20fill='none'%20stroke='%23fff'%20stroke-linecap='round'%20stroke-width='2.5'%20d='M4%2010h12'/%3E%3C/svg%3E");
}
/**/

.form-check-input.plus:checked[type="checkbox"]
, .form-check-input.fold-toggle[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2020%2020'%3E%3Cpath%20fill='none'%20stroke='%23fff'%20stroke-linecap='round'%20stroke-width='2.5'%20d='M10%204v12M4%2010h12'/%3E%3C/svg%3E");
}

.form-check-input.fold-toggle:disabled[type="checkbox"] {
    background-color: var(--bs-primary);
}

.form-check-input.fold-toggle[type="checkbox"] {
  background-color: var(--bs-primary);
}

.is-open .form-check-input.plus[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2020%2020'%3E%3Cpath%20fill='none'%20stroke='%23fff'%20stroke-linecap='round'%20stroke-width='2.5'%20d='M4%2010h12'/%3E%3C/svg%3E");
  background-color: var(--bs-primary);
}

.is-open .form-check-input.plus:checked[type="checkbox"]
, .form-check-input.fold-toggle:checked[type="checkbox"]
{
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2020%2020'%3E%3Cpath%20fill='none'%20stroke='%23fff'%20stroke-linecap='round'%20stroke-width='2.5'%20d='M4%2010h12'/%3E%3C/svg%3E");
  background-color: var(--bs-primary);
}


.form-check-input.inverse[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2020%2020'%3E%3Cpath%20fill='none'%20stroke='%232f3478'%20stroke-linecap='round'%20stroke-width='2.5'%20d='M10%204v12M4%2010h12'/%3E%3C/svg%3E");
  background-color: white;
}

.form-check-input.inverse:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2020%2020'%3E%3Cpath%20fill='none'%20stroke='%232f3478'%20stroke-linecap='round'%20stroke-width='2.5'%20d='M4%2010h12'/%3E%3C/svg%3E");
  background-color: white;
}

.ga-col-subtarget {
    padding-left: 35px;
}

.ga-block-subtargets {
    display: none;
}

.is-open .ga-block-subtargets {
    display: block;
}

.ga-toggle-subtargets {
    display: none;
}

.is-open .ga-toggle-subtargets {
    display: block;
}