.Secao-arquivos {
  .filtro-categorias {
    display: flex;
    justify-content: space-between;

    > p {
      color: #9b9aa6;
    }

    select {
      height: 40px;
      min-width: 170px;
      padding: 8px 16px;
      border: 1px solid $gray;
      border-radius: 8px;
      font-family: $family-primary;
      font-size: $text-df;
      font-weight: 600;
      color: $green-dark;
      background: transparent;
      background-repeat: no-repeat;
      background-position: right 12px center;
      background-image: url(../../assets/images/icon-down-green.svg);
      background-size: 20px;
      -webkit-appearance: none;
      -moz-appearance: none;
      transition: all 250ms ease-in-out;
      cursor: pointer;

      &:focus {
        outline: none;
      }
    }
  }
}
._dark-mode {
  .Secao-arquivos {
    .filtro-categorias {
      > p {
        color: #fff;
      }
    }
  }
}
