#mvct-app-faq2{
    margin-top: 10px;
  }
  .SBA-input-search {
      display: flex;
      justify-content: center;
      padding: 0px 20px;
      max-width: 500px;
      width: 100%;
      margin: auto;
  }
  .SBA-input-search input {
      border: none;
      height: 3em;
      width: 100%;
      max-width: 500px;
      outline: none;
      border-radius: unset;
  }
  .SBA-input-search button {
      border: none;
      outline: none;
      border-radius: 0px 2px 2px 0px;
      cursor: pointer;
      height: 3em;
      background-color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
  }
  .SBA-input-search-loading {
      border-radius: 2px 0px 0px 2px;
      display: flex;
      background-color: #fff;
      height: 3em;
      flex-direction: column;
      justify-content: center;
      padding: 0px 10px;
  }
  .SBA-loading {
      background: url(../asset/circle-notch-solid.svg);
      height: 1em;
      width: 1em;
      display: block;
      opacity: 0;
  }
  .SBA-loading-on {
    opacity: 1;
  }
  .rotate-center {
    -webkit-animation: rotate-center 2s linear infinite both;
            animation: rotate-center 2s linear infinite both;
  }
  @-webkit-keyframes rotate-center {
      0% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
      }
      100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
      }
    }
  @keyframes rotate-center {
      0% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
      }
      100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
      }
    }
    
  .SBA-autocompletion-container{
    max-width: 500px;
    width: 100%;
    padding-right: 40px;
    margin: auto;
    position: absolute;
    z-index: 999999;
  }
  .SBA-autocompletion, #SBA-autocomplete-ul-additional-option {
    background-color: #fff;
    border-radius: 0px 0px 2px 2px;
    color: #717171;
    text-align: left;
    box-shadow: 0px 3px 4px -3px;
  }

  #SBA-autocomplete-ul-additional-option {
    list-style-type: none;
    margin: 0px;
    padding: 0px
  }
  
  .SBA-autocomplete-open .SBA-input-search-loading {
    border-radius: 2px 0px 0px 0px;
  }
  .SBA-autocomplete-open button {
    border-radius: 0px 2px 0px 0px;
  }
  .SBA-autocomplete-line{
    display: block;
    cursor: pointer;
    padding: 5px 10px;
    text-decoration: none;
    color: #717171;
  }
  .SBA-autocomplete-line:last-of-type {
    border-radius: 0px 0px 2px 2px;
  }
  .SBA-autocomplete-line:hover{
    background-color: #F4F4F4;
  }
  
  .SBA-autocomplete-content {
    margin-left: 10px;
  }
  .SBA-autocompletion-box {
  }
  .SBA-result-box {
    max-width: 500px;
    width: 100%;
    padding-right: 40px;
    position: absolute;
    z-index: 999999;
  }
  .SBA-result-container {
    display: flex;
    flex-direction: column;
    text-align: left;
    background-color: #fff;
    box-shadow: 0px 3px 4px -3px;
    padding-bottom: 1px;
  }
  .SBA-result-container a {
    padding: 5px;
    text-decoration: none;
    color: #242832;
  }
  .SBA-result-container a:hover{
    background-color: #F4F4F4;
  }
  .SBA-info-line {
    background-color: #1170bb;
    color: #fff;
    padding: 10px;
    text-align: center;
  }
  .SBA-no-result {
    background-color: #797979;
  }
  .SBA-result-container a.SBA-focus, .SBA-autocomplete-line.SBA-focus{
    outline: none;
    background-color: #cccccc;
  }
  .SBA-loop-search {
    height: 1em;
    width: 1em;
    display: block;
  }
  .SBA-database-icon {
    height: 15px;
    width: 15px;
    display: inline-block;
    background-repeat: no-repeat;
  }
  .SBA-postQuestion-line {
    text-align: center;
      color: #127dbb;
      padding: 7px 0px;
  }
  .SBA-postQuestion-line:hover {
    background-color: #0c6192;
    color: #fff;
  }
  .SBA-postQuestion-line.SBA-focus {
    background-color: #127dbb;
    color: #fff;
  }
  .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap; /* added line */
      border: 0;
  }