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

.fvr-widget {
  width: 100%;
  font-family: "Poppins", sans-serif;
}

.fvr__item {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #dedede;
  border-radius: 0;
  background: #fff;
  transition: background-color .3s ease, border-radius .3s ease, padding .3s ease;
}

.fvr__question {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  min-height: 64px;
  margin: 0;
  padding: 14px 14px 14px 0;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0;
  background: transparent !important;
  box-shadow: none !important;
  color: #242526;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}

.fvr__question:hover,
.fvr__question:focus,
.fvr__question:active {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: inherit;
}

.fvr__question:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -4px;
}

.fvr__question-text {
  flex: 1 1 auto;
}

.fvr__icon {
  display: inline-flex;
  flex: 0 0 22px;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #8aaec4;
  font-family: inherit;
  font-size: 21px;
  font-weight: 300;
  line-height: 1;
  transform: rotate(0deg);
  transform-origin: center;
  transition: transform .28s ease;
}

.fvr__answer {
  display: block;
  max-width: 940px;
  margin: 0;
  padding: 0 56px 30px 0;
  color: #818892;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.fvr__answer[hidden] {
  display: none !important;
}

.fvr__answer > :first-child {
  margin-top: 0;
}

.fvr__answer > :last-child {
  margin-bottom: 0;
}

.fvr__item.is-open {
  padding-right: 20px;
  padding-left: 20px;
  border-bottom-color: transparent;
  border-radius: 28px;
  background: #e4f1fd;
}

.fvr__item.is-open .fvr__question {
  font-weight: 600;
}

.fvr__item.is-open .fvr__icon {
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  .fvr__question {
    gap: 20px;
    min-height: 62px;
    padding-right: 6px;
    font-size: 15px;
    line-height: 1.5;
  }

  .fvr__answer {
    max-width: none;
    padding-right: 34px;
    padding-bottom: 28px;
    font-size: 14px;
    line-height: 1.65;
  }

  .fvr__item.is-open {
    padding-right: 12px;
    padding-left: 12px;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fvr__item,
  .fvr__icon {
    transition: none;
  }
}
