a.decorated-with-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
button.decorated-with-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.decorated-with-icon-button svg {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}

.decorated-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.decorated-with-icon svg {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#content h2.section-title {
  margin: 32px 0 16px 0;
  padding: 32px 16px 16px 0px;
  display: flex;
  align-items: center;
}
#content h2.section-title span {
  font-size: 22px;
  font-weight: 700;
}
#content h2.section-title svg {
  width: 30px;
  height: 30px;
  color: #6caa17;
  flex-shrink: 0;
}

#content ul.mark-green li {
  display: flex;
  align-items: center;
  padding: 0;
}

#content ul.mark-green svg {
  width: 20px;
  height: 20px;
  color: #6caa17;
}
