.custom-toggle-wrapper .custom-toggle-panel {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.custom-toggle-wrapper .custom-toggle-panel:first-child .custom-toggle-header {
  padding-top: 0;
}
.custom-toggle-wrapper .custom-toggle-panel.is-open .custom-toggle-icon i {
  transform: rotate(180deg);
}
.custom-toggle-wrapper .custom-toggle-panel.is-open .custom-toggle-icon i::before {
  color: #0b0b0b;
}
.custom-toggle-wrapper .custom-toggle-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.3s ease;
}
.custom-toggle-wrapper .custom-toggle-header:hover .custom-toggle-icon i::before {
  color: #0b0b0b;
}
.custom-toggle-wrapper .custom-toggle-header:hover .custom-toggle-title {
  color: #0e4362;
}
.custom-toggle-wrapper .custom-toggle-title {
  font-size: 1rem;
  font-weight: 300;
  color: #0b0b0b;
  transition: color 0.3s ease;
  display: flex;
  padding-right: 24px;
}
.custom-toggle-wrapper .custom-toggle-title .toggle-prefix {
  color: #858585;
  font-weight: 600;
  margin-right: 24px;
}
.custom-toggle-wrapper .custom-toggle-icon i {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 1.75rem;
  line-height: 1;
}
.custom-toggle-wrapper .custom-toggle-icon i::before {
  color: #0e4362;
  transition: color 0.3s ease;
  display: inline-block;
}

.custom-toggle-body {
  display: none;
}
.custom-toggle-body .custom-toggle-inner {
  padding-bottom: 2rem;
  color: #666;
  line-height: 1.6;
}