.wow-how-it-works {
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 16px;
  margin: 16px 0;
  background: var(--form-panel-bg, #121212);
  color: var(--text-body, #f4f4f4);
  font-family: 'Assistant', 'Heebo', sans-serif;
}

.wow-how-it-works--light {
  background: #f7f7f7;
  border-color: rgba(0, 0, 0, 0.08);
  color: #353535;
}

.wow-how-it-works__title {
  margin: 0 0 24px 0;
  font-size: 24px;
  font-weight: 800;
  white-space: pre-line;
}

.wow-how-it-works__title-handle {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.wow-how-it-works__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wow-how-it-works__item {
  display: flex;
  /*lex-direction: row-reverse;*/
  align-items: center;
  gap: 10px;
  line-height: 1.6;
}

.wow-how-it-works__item-icon {
  flex: 0 0 auto;
  font-size: 6px;
  line-height: 1;
  color: #ff7a1f;
  text-shadow: 0 0 6px rgba(255, 122, 31, 0.4);
}

.wow-how-it-works__item-icon::before {
  content: '★';
}

.wow-how-it-works--light .wow-how-it-works__item-icon {
  color: #ff8423;
  text-shadow: 0 0 4px rgba(255, 132, 35, 0.35);
}

.wow-how-it-works__item-text {
  flex: 1;
  text-align: right;
  font-size: 12px;
}

.wow-how-it-works__cta-row {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.wow-how-it-works__cta {
  padding: 6px 16px;
  border-radius: 4px;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  font-weight: 600;
  cursor: pointer;
}

.wow-how-it-works--light .wow-how-it-works__cta {
  color: inherit;
}

.wow-how-it-works__cta {
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #ff8640, #ff3c19);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: currentColor;
}

.wow-how-it-works-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.wow-how-it-works-modal__frame {
  position: relative;
  width: min(800px, 90vw);
  height: min(600px, 80vh);
  background: var(--bg-1, #fff);
  border-radius: 4px;
  overflow: hidden;
}

.wow-how-it-works-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 1;
}

.wow-how-it-works-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}
