/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
section.intro .tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
section.intro .tabs > * {
  flex: 1;
}
section.intro .tab_content {
  display: none;
}
section.intro .tab_content.is_active {
  animation: fade-in-025 0.5s ease-in-out;
  display: block;
}
section.intro hr {
  margin: 32px 0;
}
@media screen and (max-width: 600px) {
  section.intro hr {
    margin: 24px 0;
  }
}
section.intro .payment_systems {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 600px) {
  section.intro .payment_systems {
    flex-direction: column;
    gap: 12px;
  }
}
section.intro .payment_systems_category {
  width: 220px;
  flex-shrink: 0;
  word-wrap: break-word;
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  section.intro .payment_systems_category {
    width: 100%;
  }
}
section.intro .payment_systems_cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 600px) {
  section.intro .payment_systems_cards {
    gap: 12px;
  }
}
section.intro .note {
  font-size: 14px;
  text-align: right;
  margin-top: 24px;
}