.faq {
  background-color: #EFEDEA;
  border-radius: 5px;
  width: 48%;
  height: 60px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.faq:nth-child(odd) {
  margin-right: 20px;
}

.faq .icon {
  min-height: 16px;
  min-width: 16px;
  margin-right: 10px;
}

.answer-content {
  display: unset;
}

.text-red {
  color: #E81919;
}

@media screen and (max-width: 560px) {
  .faq {
    width: 100%;
    height: 44px;
    margin-bottom: 10px;
    padding: 15px 10px;
  }
  .faq .text-bold {
    font-size: 14px;
    font-weight: 200;
  }
  .faq .icon {
    min-height: 14px;
    min-width: 14px;
  }
  .faq:nth-child(odd) {
    margin-right: 0px;
  }
}
