.wrapper {
    font-family: "Inter";
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 24px;
    max-width: 100%;
    color: #323436;
    border-radius: 8px;
    background-color: var(--color-white);
  }
  
  .container-wrapper {
    width: 100%;
  }
  .question.show svg > g {
    display: none;
  }
  .question {
    border: 1px solid var(--grey-medium);
    box-sizing: border-box;
    border-radius: 2px;
    justify-content: space-between;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
  }
  
  .question.show svg {
    background-image: url("../../../../images/svg/menos.svg") !important;
  }
  
  .question-container {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
  }
  
  .question p {
    padding: 16px 0;
    max-width: 80%;
    user-select: none;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    left: 50px;
  }
  
  .answer .btn {
    padding: 8px 5px;
  }
  
  .answer {
    height: 0;
    width: 100%;
    text-align: justify;
  }
  
  .answer p {
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    font-family: "Inter";
    padding: 15px 10px;
  }
  
  .answer p a {
    color: var(--color-primary);
    text-decoration: underline;
  }
  
  .answer button {
    margin-top: 15px;
  }
  
  .answer.show {
    height: auto;
    gap: 16px;
    display: flex;
  
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
  }
  
  .answer.show span {
    background: var(--color-primary);
    border-radius: 15px;
    padding: 2px 10px;
    margin-bottom: 8px;
    color: #000000;
    font-weight: bold;
  }
  
  .fade-height-enter-active,
  .fade-height-leave-active {
    max-height: 360px;
  
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
  }
  
  .fade-height-enter-from,
  .fade-height-leave-to {
    opacity: 0;
    max-height: 0px;
  }
  
  b {
    font-weight: bolder !important;
  }
  
  p.answer-container {
    padding-bottom: 0;
  }
  
  
  @media (max-width: 1199px) {
    .question-container {
      left: 2%!important;
    }

    .question-container {
      left: 5%;
    }
  } 
  
  @media screen and (max-width: 767px) {
    #duvidas .container .flex-container {
      flex-direction: column;
    }
    #duvidas .question.flex-container {
      flex-direction: row;
    }
    .container-wrapper:nth-child(1) {
      margin-right: 0px;
    }
    .wrapper {
      margin: 0 auto 24px auto;
    }
  
    .question-container {
      left: 8%!important;
    }
  }
  
  
