:where([class^="ri-"])::before { content: "\f3c2"; }
.custom-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}
.custom-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
input:checked + .toggle-slider {
  background-color: #0284c7;
}
input:checked + .toggle-slider:before {
  transform: translateX(24px);
}
.custom-checkbox {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.custom-checkbox input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.checkbox-mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.custom-checkbox input:checked ~ .checkbox-mark {
  background-color: #0284c7;
  border-color: #0284c7;
}
.checkbox-mark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.custom-checkbox input:checked ~ .checkbox-mark:after {
  display: block;
}
.faq-item {
  overflow: hidden;
  transition: max-height 0.3s ease;
}