:root {
  --icon-size: 24px;
  --padding: calc(12px + var(--icon-size));
}

.our_criteria_metabox ul
,.toc_metabox ul {
  list-style: none;
  padding-left: 1rem;
  margin: 0;
}

.our_criteria_metabox ul li
/*,.toc_metabox ul li*/ {
  line-height: var(--icon-size);
  position: relative;
  padding-left: var(--padding);
}

.our_criteria_metabox ul li::before
/*,.toc_metabox ul li::before*/ {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  -webkit-mask-size: cover;
  mask-size: cover;
  width: var(--icon-size);
  height: var(--icon-size);
}

.our_criteria_metabox ul li::before {
  -webkit-mask: url("../../img/icons/green_check.svg") no-repeat 50% 50%;
  mask: url("../../img/icons/green_check.svg") no-repeat 50% 50%;
  background-color: #2E46E8FF;
}

/*.toc_metabox ul li::before {
  -webkit-mask: url("../../img/icons/check_in_circle.svg") no-repeat 50% 50%;
  mask: url("../../img/icons/check_in_circle.svg") no-repeat 50% 50%;
  background-color: #000;
}*/

.list-style-check {
  list-style: none;
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%22128%22%20height%3D%22128%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%202.25C6.62391%202.25%202.25%206.62391%202.25%2012C2.25%2017.3761%206.62391%2021.75%2012%2021.75C17.3761%2021.75%2021.75%2017.3761%2021.75%2012C21.75%206.62391%2017.3761%202.25%2012%202.25ZM17.0742%208.73234L10.7742%2016.2323C10.7051%2016.3147%2010.6191%2016.3812%2010.5221%2016.4273C10.425%2016.4735%2010.3192%2016.4983%2010.2117%2016.5H10.1991C10.0939%2016.5%209.99%2016.4778%209.89398%2016.435C9.79797%2016.3922%209.71202%2016.3297%209.64172%2016.2516L6.94172%2013.2516C6.87315%2013.1788%206.81981%2013.0931%206.78483%2012.9995C6.74986%2012.9059%206.73395%2012.8062%206.73805%2012.7063C6.74215%2012.6064%206.76617%2012.5084%206.8087%2012.4179C6.85124%2012.3275%206.91142%2012.2464%206.98572%2012.1796C7.06002%2012.1127%207.14694%2012.0614%207.24136%2012.0286C7.33579%2011.9958%207.43581%2011.9822%207.53556%2011.9886C7.63531%2011.995%207.73277%2012.0213%207.82222%2012.0659C7.91166%2012.1106%207.99128%2012.1726%208.05641%2012.2484L10.1794%2014.6072L15.9258%207.76766C16.0547%207.61863%2016.237%207.52631%2016.4335%207.51066C16.6299%207.49501%2016.8246%207.55728%2016.9754%207.68402C17.1263%207.81075%2017.2212%207.99176%2017.2397%208.18793C17.2582%208.3841%2017.1988%208.57966%2017.0742%208.73234V8.73234Z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-size: var(--icon-size) var(--icon-size);
  line-height: var(--icon-size);
  padding-left: var(--padding);
}
.our_criteria_trigger {
  padding-right: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.our_criteria_trigger::after {
  content: '\25C0';
  font-size: 1rem;
  transition: transform 0.2s ease-in-out;
  line-height: 1rem;
}
.our_criteria_trigger:not(.collapsed)::after {
  transform: rotate(-90deg);
}