.vfh-widget-root {
  --mmn-bg: #fbfbfa;
  --mmn-white: #ffffff;
  --mmn-black: #050609;
  --mmn-text: #050505;
  --mmn-red: #9b1f18;
  --mmn-title-red: #9b070b;
  width: 100%;
  font-family: "Poppins", "Inter", Arial, sans-serif;
  color: var(--mmn-text);
  overflow-x: clip;
}

.vfh-widget-root,
.vfh-widget-root * {
  box-sizing: border-box;
}

.vfh-widget-root .mmn_faq_section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--mmn-bg);
  padding: 48px 20px 66px;
}

.vfh-widget-root .mmn_faq_container {
  width: 100%;
  max-width: var(--vfh-container-width, 1128px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 455px 613px;
  column-gap: 48px;
  align-items: start;
}

.vfh-widget-root .mmn_faq_title {
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 1.7px;
  color: var(--mmn-black);
  margin: 0 0 13px;
  white-space: nowrap;
}

.vfh-widget-root .mmn_faq_title span {
  display: block;
  color: var(--mmn-title-red);
  white-space: nowrap;
}

.vfh-widget-root .mmn_faq_line {
  width: 166px;
  height: 3px;
  background: var(--mmn-red);
  margin-bottom: 35px;
}

.vfh-widget-root .mmn_faq_text {
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 16.4px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.05px;
  color: var(--mmn-text);
  max-width: 445px;
  margin: 0;
}

.vfh-widget-root .mmn_faq_help {
  margin-top: 45px;
}

.vfh-widget-root .mmn_faq_help_title {
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 19.5px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.45px;
  color: var(--mmn-red);
  margin: 0 0 14px;
}

.vfh-widget-root .mmn_faq_right {
  padding-top: 6px;
}

.vfh-widget-root .mmn_faq_accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vfh-widget-root .mmn_faq_item {
  width: 100%;
  background: transparent;
  overflow: hidden;
}

.vfh-widget-root .mmn_faq_button {
  width: 100%;
  min-height: 47px;
  background: var(--mmn-white);
  border: 0;
  outline: 0;
  padding: 0 24px 0 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0.1px;
  color: var(--mmn-text);
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.vfh-widget-root .mmn_faq_button:hover,
.vfh-widget-root .mmn_faq_button:focus {
  background: var(--mmn-white);
  color: var(--mmn-text);
  outline: none;
}

.vfh-widget-root .mmn_faq_item.mmn_is_open .mmn_faq_button {
  margin-bottom: 9px;
}

.vfh-widget-root .mmn_faq_icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mmn-red);
}

.vfh-widget-root .mmn_faq_icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.vfh-widget-root .mmn_faq_item.mmn_is_open .mmn_icon_plus {
  display: none;
}

.vfh-widget-root .mmn_faq_panel {
  max-height: 0;
  overflow: hidden;
  background: transparent;
  transition: max-height 0.32s ease;
}

.vfh-widget-root .mmn_faq_item.mmn_is_open .mmn_faq_panel {
  max-height: 250px;
}

.vfh-widget-root .mmn_faq_panel_inner {
  background: var(--mmn-white);
  padding: 21px 22px 30px 21px;
}

.vfh-widget-root .mmn_faq_answer {
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 15.2px;
  line-height: 1.48;
  font-weight: 400;
  letter-spacing: 0.08px;
  color: #060606;
  max-width: 560px;
  margin: 0;
}

@media (max-width: 1200px) {
  .vfh-widget-root .mmn_faq_container {
    max-width: 980px;
    grid-template-columns: 390px 1fr;
    column-gap: 40px;
  }

  .vfh-widget-root .mmn_faq_title {
    font-size: 31px;
    letter-spacing: 1.2px;
  }

  .vfh-widget-root .mmn_faq_text {
    font-size: 15.5px;
  }
}

@media (max-width: 900px) {
  .vfh-widget-root .mmn_faq_section {
    padding: 48px 18px 60px;
  }

  .vfh-widget-root .mmn_faq_container {
    grid-template-columns: 1fr;
    row-gap: 38px;
    max-width: 720px;
  }

  .vfh-widget-root .mmn_faq_right {
    padding-top: 0;
  }

  .vfh-widget-root .mmn_faq_text {
    max-width: 100%;
  }

  .vfh-widget-root .mmn_faq_help {
    margin-top: 32px;
  }
}

@media (max-width: 575px) {
  .vfh-widget-root .mmn_faq_section {
    padding: 40px 16px 52px;
  }

  .vfh-widget-root .mmn_faq_title {
    font-size: 27px;
    letter-spacing: 0.5px;
    white-space: normal;
  }

  .vfh-widget-root .mmn_faq_title span {
    white-space: nowrap;
  }

  .vfh-widget-root .mmn_faq_line {
    width: 145px;
    margin-bottom: 28px;
  }

  .vfh-widget-root .mmn_faq_text {
    font-size: 14.5px;
  }

  .vfh-widget-root .mmn_faq_help_title {
    font-size: 18px;
  }

  .vfh-widget-root .mmn_faq_button {
    min-height: 52px;
    padding-left: 17px;
    padding-right: 18px;
    font-size: 14.5px;
  }

  .vfh-widget-root .mmn_faq_panel_inner {
    padding: 18px 17px 24px;
  }

  .vfh-widget-root .mmn_faq_answer {
    font-size: 14px;
  }
}

@media (max-width: 390px) {
  .vfh-widget-root .mmn_faq_title {
    font-size: 24px;
  }
}
